diff --git a/.github/workflows/extralit.yml b/.github/workflows/extralit.yml index 8bf89dae0..460bb2295 100644 --- a/.github/workflows/extralit.yml +++ b/.github/workflows/extralit.yml @@ -96,6 +96,10 @@ jobs: run: | pdm run test-cov tests/unit + - name: Check test status + if: steps.tests-unit.outcome == 'failure' + run: exit 1 + - name: Run integration tests id: tests-integration continue-on-error: true @@ -119,7 +123,7 @@ jobs: fail_ci_if_error: false - name: Check test status - if: steps.tests-unit.outcome == 'failure' || steps.tests-integration.outcome == 'failure' + if: steps.tests-integration.outcome == 'failure' run: exit 1 - name: Build package diff --git a/.kiro/specs/papers-library-importer/design.md b/.kiro/specs/papers-library-importer/design.md index 6a2995055..fa90f3016 100644 --- a/.kiro/specs/papers-library-importer/design.md +++ b/.kiro/specs/papers-library-importer/design.md @@ -134,7 +134,7 @@ async def upload_reference_documents_job( Note to reuse existing styles in extralit-frontend/assets/scss/base/base.scss, extralit-frontend/assets/scss/abstract/variables/_variables.scss and existing components in `components/base` where possible to keep similar the design system and code reuse and best practices. - `extralit-frontend/components/base`: - base-action-tooltip, base-badge, base-banner, base-brand-icon, base-breadcrumbs, base-button, base-card, base-checkbox, base-code, base-collpasable-panel, base-date, base-documentation-viewer, base-dropdown, base-feedback, base-icon, base-input, base-loading, base-modal, base-pdf-viewer, base-progress, base-radio-button, base-range, base-render-html, base-render-markdown, base-render-table, base-resizable, base-scroll, base-search-bar, base-separator, base-shapes, base-slider, base-spinner, base-switch, base-tabs, base-tag, base-toast, base-tooltip, base-topbar-brand + BaseActionTooltip, base-badge, base-banner, base-brand-icon, base-breadcrumbs, base-button, base-card, base-checkbox, base-code, base-collpasable-panel, base-date, base-documentation-viewer, base-dropdown, base-feedback, base-icon, base-input, base-loading, base-modal, base-pdf-viewer, base-progress, base-radio-button, base-range, base-render-html, base-render-markdown, base-render-table, base-resizable, base-scroll, base-search-bar, base-separator, base-shapes, base-slider, base-spinner, base-switch, base-tabs, base-tag, base-toast, base-tooltip, base-topbar-brand #### 1. Home Page Integration (`extralit-frontend/pages/index.vue`) diff --git a/.kiro/steering/structure.md b/.kiro/steering/structure.md index 6a2a1dd49..3b1319c1a 100644 --- a/.kiro/steering/structure.md +++ b/.kiro/steering/structure.md @@ -78,15 +78,15 @@ extralit-frontend/ ```typescript export const useMyViewModel = (props) => { const dependency = useResolve(MyUseCase); - + const methodOne = () => { // implementation }; - + const methodTwo = async (param) => { // implementation }; - + return { dependency, methodOne, @@ -222,4 +222,4 @@ examples/ - **Vue/TypeScript**: PascalCase for components, camelCase for utilities - **API endpoints**: kebab-case in URLs, snake_case in Python - **Database**: snake_case for tables and columns -- **CSS classes**: kebab-case with BEM methodology where applicable \ No newline at end of file +- **CSS classes**: kebab-case with BEM methodology where applicable diff --git a/codecov.yml b/codecov.yml index 7a2d72942..6cd801cd1 100644 --- a/codecov.yml +++ b/codecov.yml @@ -6,6 +6,7 @@ coverage: patch: default: enabled: false +comment: false flags: frontend: diff --git a/examples/document_extraction/LLM_extractions.ipynb b/examples/document_extraction/LLM_extractions.ipynb deleted file mode 100644 index fe1bbd227..000000000 --- a/examples/document_extraction/LLM_extractions.ipynb +++ /dev/null @@ -1,19233 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 2, - "id": "25e3624f-beb0-4a8a-a02f-20d7525d9d5b", - "metadata": {}, - "outputs": [], - "source": [ - "%load_ext autoreload\n", - "%autoreload 2\n", - "# %load_ext heat" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "32c1921b-c936-4a0d-90d7-eb02cfcedc68", - "metadata": { - "editable": true, - "slideshow": { - "slide_type": "" - }, - "tags": [] - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/var/folders/1_/cmltqwn11bqfmnz786mfyhgc0000gn/T/ipykernel_19247/3721118118.py:4: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\n", - " from tqdm.autonotebook import tqdm\n", - "/Users/jonny/micromamba/envs/extralit/lib/python3.9/site-packages/pydantic/_internal/_config.py:295: PydanticDeprecatedSince20: Support for class-based `config` is deprecated, use ConfigDict instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.10/migration/\n", - " warnings.warn(DEPRECATION_MESSAGE, DeprecationWarning)\n" - ] - }, - { - "ename": "ModuleNotFoundError", - "evalue": "No module named 'argilla.client.feedback'; 'argilla.client' is not a package", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)", - "Cell \u001b[0;32mIn[3], line 14\u001b[0m\n\u001b[1;32m 11\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01margilla\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mas\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mrg\u001b[39;00m\n\u001b[1;32m 13\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mextralit\u001b[39;00m\n\u001b[0;32m---> 14\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mextralit\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mpipeline\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mingest\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mpaper\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m get_paper_extractions\n\u001b[1;32m 16\u001b[0m \u001b[38;5;66;03m# TEMP fix to use create_extraction_records from v0.2.3\u001b[39;00m\n\u001b[1;32m 17\u001b[0m \u001b[38;5;66;03m# from extralit.pipeline.export.record import create_extraction_records\u001b[39;00m\n\u001b[1;32m 18\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mpatch_pipeline_export_record\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m create_extraction_records\n", - "File \u001b[0;32m~/Projects/extralit/argilla-v1/src/extralit/pipeline/ingest/paper.py:6\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01margilla\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mas\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mrg\u001b[39;00m\n\u001b[1;32m 5\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mpandas\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mas\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mpd\u001b[39;00m\n\u001b[0;32m----> 6\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01margilla\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mclient\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mfeedback\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mschemas\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mremote\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mrecords\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m RemoteFeedbackRecord\n\u001b[1;32m 8\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mextralit\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mconvert\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mjson_table\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m json_to_df, is_json_table\n\u001b[1;32m 9\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mextralit\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mextraction\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mmodels\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mpaper\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m PaperExtraction\n", - "\u001b[0;31mModuleNotFoundError\u001b[0m: No module named 'argilla.client.feedback'; 'argilla.client' is not a package" - ] - } - ], - "source": [ - "import uuid, sys, os, io, json, re, rich, glob, dill, itertools, ast\n", - "from IPython.display import HTML, JSON\n", - "from collections import Counter, defaultdict\n", - "from tqdm.autonotebook import tqdm\n", - "from dotenv import load_dotenv\n", - "load_dotenv(override=True)\n", - "# sys.path.insert(0, 'src')\n", - "\n", - "import pandas as pd\n", - "# import plotly.express as px\n", - "import extralit as ex\n", - "\n", - "import extralit\n", - "from extralit.pipeline.ingest.paper import get_paper_extractions\n", - "\n", - "# TEMP fix to use create_extraction_records from v0.2.3\n", - "# from extralit.pipeline.export.record import create_extraction_records\n", - "from patch_pipeline_export_record import create_extraction_records\n", - "\n", - "from extralit.pipeline.ingest.record import get_record_data\n", - "#from extralit.pipeline.ingest.trace import get_langfuse_traces\n", - "from extralit.pipeline.update import *\n", - "from extralit.metrics.extraction import grits_from_pandas, grits_from_batch, grits_paper, grits_multi_tables\n", - "from extralit.convert.json_table import df_to_json\n", - "from extralit.convert.markdown import read_markdown_table_to_df\n", - "from extralit.extraction.models import PaperExtraction, SchemaStructure\n", - "from extralit.convert.json_table import schema_to_json, json_to_df\n", - "\n", - "from extralit.extraction.schema import get_extraction_schema_model\n", - "from extralit.extraction.prompts import *\n", - "from extralit.extraction.extraction import *\n", - "from extralit.extraction.vector_index import *\n", - "\n", - "from extralit.server.models.extraction import ExtractionRequest\n", - "from extralit.server.context.datasets import get_argilla_dataset\n", - "from extralit.server.context.files import get_minio_client\n", - "from extralit.server.context.vectordb import get_weaviate_client\n", - "from extralit.server.context.llamaindex import get_langfuse_callback\n", - "\n", - "from llama_index.core.output_parsers import PydanticOutputParser\n", - "from llama_index.core.response.notebook_utils import display_source_node, display_response\n", - "from llama_index.core import set_global_handler, Settings, callbacks, PromptTemplate" - ] - }, - { - "cell_type": "markdown", - "id": "ec9a9f71-1b32-4f36-8f29-12ec428dcac9", - "metadata": {}, - "source": [ - "## Connect clients" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "1a209a15", - "metadata": {}, - "outputs": [ - { - "ename": "KeyboardInterrupt", - "evalue": "", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", - "Cell \u001b[0;32mIn[1], line 2\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mweaviate\u001b[39;00m\n\u001b[0;32m----> 2\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mllama_index\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mvector_stores\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mweaviate\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m WeaviateVectorStore\n\u001b[1;32m 4\u001b[0m weaviate_client \u001b[38;5;241m=\u001b[39m get_weaviate_client()\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/llama_index/vector_stores/weaviate/__init__.py:1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mllama_index\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mvector_stores\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mweaviate\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mbase\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m WeaviateVectorStore\n\u001b[1;32m 3\u001b[0m __all__ \u001b[38;5;241m=\u001b[39m [\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mWeaviateVectorStore\u001b[39m\u001b[38;5;124m\"\u001b[39m]\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/llama_index/vector_stores/weaviate/base.py:11\u001b[0m\n\u001b[1;32m 8\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mtyping\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m Any, Dict, List, Optional, Union, cast\n\u001b[1;32m 9\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01muuid\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m uuid4\n\u001b[0;32m---> 11\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mllama_index\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcore\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mbridge\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mpydantic\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m Field, PrivateAttr\n\u001b[1;32m 12\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mllama_index\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcore\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mschema\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m BaseNode\n\u001b[1;32m 13\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mllama_index\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcore\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mvector_stores\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mtypes\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m (\n\u001b[1;32m 14\u001b[0m BasePydanticVectorStore,\n\u001b[1;32m 15\u001b[0m MetadataFilters,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 18\u001b[0m VectorStoreQueryResult,\n\u001b[1;32m 19\u001b[0m )\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/llama_index/core/__init__.py:10\u001b[0m\n\u001b[1;32m 7\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mtyping\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m Callable, Optional\n\u001b[1;32m 9\u001b[0m \u001b[38;5;66;03m# response\u001b[39;00m\n\u001b[0;32m---> 10\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mllama_index\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcore\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mbase\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mresponse\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mschema\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m Response\n\u001b[1;32m 12\u001b[0m \u001b[38;5;66;03m# import global eval handler\u001b[39;00m\n\u001b[1;32m 13\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mllama_index\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcore\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcallbacks\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mglobal_handlers\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m set_global_handler\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/llama_index/core/base/response/schema.py:9\u001b[0m\n\u001b[1;32m 7\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mllama_index\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcore\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01masync_utils\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m asyncio_run\n\u001b[1;32m 8\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mllama_index\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcore\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mbridge\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mpydantic\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m BaseModel\n\u001b[0;32m----> 9\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mllama_index\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcore\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mschema\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m NodeWithScore\n\u001b[1;32m 10\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mllama_index\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcore\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mtypes\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m TokenGen, TokenAsyncGen\n\u001b[1;32m 11\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mllama_index\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcore\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mutils\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m truncate_text\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/llama_index/core/schema.py:18\u001b[0m\n\u001b[1;32m 16\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mllama_index\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcore\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mbridge\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mpydantic\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m BaseModel, Field\n\u001b[1;32m 17\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mllama_index\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcore\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01minstrumentation\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m DispatcherSpanMixin\n\u001b[0;32m---> 18\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mllama_index\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcore\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mutils\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m SAMPLE_TEXT, truncate_text\n\u001b[1;32m 19\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mtyping_extensions\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m Self\n\u001b[1;32m 21\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m TYPE_CHECKING:\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/llama_index/core/utils.py:89\u001b[0m\n\u001b[1;32m 85\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_stopwords \u001b[38;5;241m=\u001b[39m stopwords\u001b[38;5;241m.\u001b[39mwords(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124menglish\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 86\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_stopwords\n\u001b[0;32m---> 89\u001b[0m globals_helper \u001b[38;5;241m=\u001b[39m \u001b[43mGlobalsHelper\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 92\u001b[0m \u001b[38;5;66;03m# Global Tokenizer\u001b[39;00m\n\u001b[1;32m 93\u001b[0m \u001b[38;5;129m@runtime_checkable\u001b[39m\n\u001b[1;32m 94\u001b[0m \u001b[38;5;28;01mclass\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mTokenizer\u001b[39;00m(Protocol):\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/llama_index/core/utils.py:45\u001b[0m, in \u001b[0;36mGlobalsHelper.__init__\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 43\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21m__init__\u001b[39m(\u001b[38;5;28mself\u001b[39m) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 44\u001b[0m \u001b[38;5;250m \u001b[39m\u001b[38;5;124;03m\"\"\"Initialize NLTK stopwords and punkt.\"\"\"\u001b[39;00m\n\u001b[0;32m---> 45\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\n\u001b[1;32m 47\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_nltk_data_dir \u001b[38;5;241m=\u001b[39m os\u001b[38;5;241m.\u001b[39menviron\u001b[38;5;241m.\u001b[39mget(\n\u001b[1;32m 48\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mNLTK_DATA\u001b[39m\u001b[38;5;124m\"\u001b[39m,\n\u001b[1;32m 49\u001b[0m os\u001b[38;5;241m.\u001b[39mpath\u001b[38;5;241m.\u001b[39mjoin(\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 52\u001b[0m ),\n\u001b[1;32m 53\u001b[0m )\n\u001b[1;32m 55\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_nltk_data_dir \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;129;01min\u001b[39;00m nltk\u001b[38;5;241m.\u001b[39mdata\u001b[38;5;241m.\u001b[39mpath:\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/nltk/__init__.py:146\u001b[0m\n\u001b[1;32m 140\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mjsontags\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;241m*\u001b[39m\n\u001b[1;32m 142\u001b[0m \u001b[38;5;66;03m###########################################################\u001b[39;00m\n\u001b[1;32m 143\u001b[0m \u001b[38;5;66;03m# PACKAGES\u001b[39;00m\n\u001b[1;32m 144\u001b[0m \u001b[38;5;66;03m###########################################################\u001b[39;00m\n\u001b[0;32m--> 146\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mchunk\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;241m*\u001b[39m\n\u001b[1;32m 147\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mclassify\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;241m*\u001b[39m\n\u001b[1;32m 148\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01minference\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;241m*\u001b[39m\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/nltk/chunk/__init__.py:155\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;66;03m# Natural Language Toolkit: Chunkers\u001b[39;00m\n\u001b[1;32m 2\u001b[0m \u001b[38;5;66;03m#\u001b[39;00m\n\u001b[1;32m 3\u001b[0m \u001b[38;5;66;03m# Copyright (C) 2001-2024 NLTK Project\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 7\u001b[0m \u001b[38;5;66;03m# For license information, see LICENSE.TXT\u001b[39;00m\n\u001b[1;32m 8\u001b[0m \u001b[38;5;66;03m#\u001b[39;00m\n\u001b[1;32m 10\u001b[0m \u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 11\u001b[0m \u001b[38;5;124;03mClasses and interfaces for identifying non-overlapping linguistic\u001b[39;00m\n\u001b[1;32m 12\u001b[0m \u001b[38;5;124;03mgroups (such as base noun phrases) in unrestricted text. This task is\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 152\u001b[0m \u001b[38;5;124;03m pattern is valid.\u001b[39;00m\n\u001b[1;32m 153\u001b[0m \u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[0;32m--> 155\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mchunk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mapi\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m ChunkParserI\n\u001b[1;32m 156\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mchunk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mnamed_entity\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m Maxent_NE_Chunker\n\u001b[1;32m 157\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mchunk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mregexp\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m RegexpChunkParser, RegexpParser\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/nltk/chunk/api.py:13\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;66;03m# Natural Language Toolkit: Chunk parsing API\u001b[39;00m\n\u001b[1;32m 2\u001b[0m \u001b[38;5;66;03m#\u001b[39;00m\n\u001b[1;32m 3\u001b[0m \u001b[38;5;66;03m# Copyright (C) 2001-2024 NLTK Project\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 10\u001b[0m \u001b[38;5;66;03m## Chunk Parser Interface\u001b[39;00m\n\u001b[1;32m 11\u001b[0m \u001b[38;5;66;03m##//////////////////////////////////////////////////////\u001b[39;00m\n\u001b[0;32m---> 13\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mchunk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mutil\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m ChunkScore\n\u001b[1;32m 14\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01minternals\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m deprecated\n\u001b[1;32m 15\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mparse\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m ParserI\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/nltk/chunk/util.py:12\u001b[0m\n\u001b[1;32m 9\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mre\u001b[39;00m\n\u001b[1;32m 11\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mmetrics\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m accuracy \u001b[38;5;28;01mas\u001b[39;00m _accuracy\n\u001b[0;32m---> 12\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mtag\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mmapping\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m map_tag\n\u001b[1;32m 13\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mtag\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mutil\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m str2tuple\n\u001b[1;32m 14\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mtree\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m Tree\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/nltk/tag/__init__.py:72\u001b[0m\n\u001b[1;32m 70\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mtag\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mapi\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m TaggerI\n\u001b[1;32m 71\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mtag\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mutil\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m str2tuple, tuple2str, untag\n\u001b[0;32m---> 72\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mtag\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01msequential\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m (\n\u001b[1;32m 73\u001b[0m SequentialBackoffTagger,\n\u001b[1;32m 74\u001b[0m ContextTagger,\n\u001b[1;32m 75\u001b[0m DefaultTagger,\n\u001b[1;32m 76\u001b[0m NgramTagger,\n\u001b[1;32m 77\u001b[0m UnigramTagger,\n\u001b[1;32m 78\u001b[0m BigramTagger,\n\u001b[1;32m 79\u001b[0m TrigramTagger,\n\u001b[1;32m 80\u001b[0m AffixTagger,\n\u001b[1;32m 81\u001b[0m RegexpTagger,\n\u001b[1;32m 82\u001b[0m ClassifierBasedTagger,\n\u001b[1;32m 83\u001b[0m ClassifierBasedPOSTagger,\n\u001b[1;32m 84\u001b[0m )\n\u001b[1;32m 85\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mtag\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mbrill\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m BrillTagger\n\u001b[1;32m 86\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mtag\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mbrill_trainer\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m BrillTaggerTrainer\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/nltk/tag/sequential.py:26\u001b[0m\n\u001b[1;32m 23\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mtyping\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m List, Optional, Tuple\n\u001b[1;32m 25\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m jsontags\n\u001b[0;32m---> 26\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mclassify\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m NaiveBayesClassifier\n\u001b[1;32m 27\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mprobability\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m ConditionalFreqDist\n\u001b[1;32m 28\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mtag\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mapi\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m FeaturesetTaggerI, TaggerI\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/nltk/classify/__init__.py:97\u001b[0m\n\u001b[1;32m 95\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mclassify\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mpositivenaivebayes\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m PositiveNaiveBayesClassifier\n\u001b[1;32m 96\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mclassify\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mrte_classify\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m RTEFeatureExtractor, rte_classifier, rte_features\n\u001b[0;32m---> 97\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mclassify\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mscikitlearn\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m SklearnClassifier\n\u001b[1;32m 98\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mclassify\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01msenna\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m Senna\n\u001b[1;32m 99\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mclassify\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mtextcat\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m TextCat\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/nltk/classify/scikitlearn.py:38\u001b[0m\n\u001b[1;32m 35\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mprobability\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m DictionaryProbDist\n\u001b[1;32m 37\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m---> 38\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01msklearn\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mfeature_extraction\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m DictVectorizer\n\u001b[1;32m 39\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01msklearn\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mpreprocessing\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m LabelEncoder\n\u001b[1;32m 40\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mImportError\u001b[39;00m:\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/sklearn/__init__.py:84\u001b[0m\n\u001b[1;32m 70\u001b[0m \u001b[38;5;66;03m# We are not importing the rest of scikit-learn during the build\u001b[39;00m\n\u001b[1;32m 71\u001b[0m \u001b[38;5;66;03m# process, as it may not be compiled yet\u001b[39;00m\n\u001b[1;32m 72\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 78\u001b[0m \u001b[38;5;66;03m# later is linked to the OpenMP runtime to make it possible to introspect\u001b[39;00m\n\u001b[1;32m 79\u001b[0m \u001b[38;5;66;03m# it and importing it first would fail if the OpenMP dll cannot be found.\u001b[39;00m\n\u001b[1;32m 80\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m (\n\u001b[1;32m 81\u001b[0m __check_build, \u001b[38;5;66;03m# noqa: F401\u001b[39;00m\n\u001b[1;32m 82\u001b[0m _distributor_init, \u001b[38;5;66;03m# noqa: F401\u001b[39;00m\n\u001b[1;32m 83\u001b[0m )\n\u001b[0;32m---> 84\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mbase\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m clone\n\u001b[1;32m 85\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mutils\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01m_show_versions\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m show_versions\n\u001b[1;32m 87\u001b[0m __all__ \u001b[38;5;241m=\u001b[39m [\n\u001b[1;32m 88\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mcalibration\u001b[39m\u001b[38;5;124m\"\u001b[39m,\n\u001b[1;32m 89\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mcluster\u001b[39m\u001b[38;5;124m\"\u001b[39m,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 130\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mshow_versions\u001b[39m\u001b[38;5;124m\"\u001b[39m,\n\u001b[1;32m 131\u001b[0m ]\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/sklearn/base.py:19\u001b[0m\n\u001b[1;32m 17\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01m_config\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m config_context, get_config\n\u001b[1;32m 18\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mexceptions\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m InconsistentVersionWarning\n\u001b[0;32m---> 19\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mutils\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01m_estimator_html_repr\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m _HTMLDocumentationLinkMixin, estimator_html_repr\n\u001b[1;32m 20\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mutils\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01m_metadata_requests\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m _MetadataRequester, _routing_enabled\n\u001b[1;32m 21\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mutils\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01m_param_validation\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m validate_parameter_constraints\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/sklearn/utils/__init__.py:11\u001b[0m\n\u001b[1;32m 9\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m _joblib, metadata_routing\n\u001b[1;32m 10\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01m_bunch\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m Bunch\n\u001b[0;32m---> 11\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01m_chunking\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m gen_batches, gen_even_slices\n\u001b[1;32m 12\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01m_estimator_html_repr\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m estimator_html_repr\n\u001b[1;32m 14\u001b[0m \u001b[38;5;66;03m# Make _safe_indexing importable from here for backward compat as this particular\u001b[39;00m\n\u001b[1;32m 15\u001b[0m \u001b[38;5;66;03m# helper is considered semi-private and typically very useful for third-party\u001b[39;00m\n\u001b[1;32m 16\u001b[0m \u001b[38;5;66;03m# libraries that want to comply with scikit-learn's estimator API. In particular,\u001b[39;00m\n\u001b[1;32m 17\u001b[0m \u001b[38;5;66;03m# _safe_indexing was included in our public API documentation despite the leading\u001b[39;00m\n\u001b[1;32m 18\u001b[0m \u001b[38;5;66;03m# `_` in its name.\u001b[39;00m\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/sklearn/utils/_chunking.py:8\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnumpy\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mas\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnp\u001b[39;00m\n\u001b[1;32m 7\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01m_config\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m get_config\n\u001b[0;32m----> 8\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01m_param_validation\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m Interval, validate_params\n\u001b[1;32m 11\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21mchunk_generator\u001b[39m(gen, chunksize):\n\u001b[1;32m 12\u001b[0m \u001b[38;5;250m \u001b[39m\u001b[38;5;124;03m\"\"\"Chunk generator, ``gen`` into lists of length ``chunksize``. The last\u001b[39;00m\n\u001b[1;32m 13\u001b[0m \u001b[38;5;124;03m chunk may have a length less than ``chunksize``.\"\"\"\u001b[39;00m\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/sklearn/utils/_param_validation.py:14\u001b[0m\n\u001b[1;32m 11\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mscipy\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01msparse\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m csr_matrix, issparse\n\u001b[1;32m 13\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01m_config\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m config_context, get_config\n\u001b[0;32m---> 14\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mvalidation\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m _is_arraylike_not_scalar\n\u001b[1;32m 17\u001b[0m \u001b[38;5;28;01mclass\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mInvalidParameterError\u001b[39;00m(\u001b[38;5;167;01mValueError\u001b[39;00m, \u001b[38;5;167;01mTypeError\u001b[39;00m):\n\u001b[1;32m 18\u001b[0m \u001b[38;5;250m \u001b[39m\u001b[38;5;124;03m\"\"\"Custom exception to be raised when the parameter of a class/method/function\u001b[39;00m\n\u001b[1;32m 19\u001b[0m \u001b[38;5;124;03m does not have a valid type or value.\u001b[39;00m\n\u001b[1;32m 20\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/sklearn/utils/validation.py:26\u001b[0m\n\u001b[1;32m 24\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m get_config \u001b[38;5;28;01mas\u001b[39;00m _get_config\n\u001b[1;32m 25\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mexceptions\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m DataConversionWarning, NotFittedError, PositiveSpectrumWarning\n\u001b[0;32m---> 26\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mutils\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01m_array_api\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m _asarray_with_order, _is_numpy_namespace, get_namespace\n\u001b[1;32m 27\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mutils\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mfixes\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m ComplexWarning, _preserve_dia_indices_dtype\n\u001b[1;32m 28\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01m_isfinite\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m FiniteStatus, cy_isfinite\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/sklearn/utils/_array_api.py:11\u001b[0m\n\u001b[1;32m 8\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mscipy\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mspecial\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mas\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mspecial\u001b[39;00m\n\u001b[1;32m 10\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01m_config\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m get_config\n\u001b[0;32m---> 11\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mfixes\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m parse_version\n\u001b[1;32m 13\u001b[0m _NUMPY_NAMESPACE_NAMES \u001b[38;5;241m=\u001b[39m {\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mnumpy\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124marray_api_compat.numpy\u001b[39m\u001b[38;5;124m\"\u001b[39m}\n\u001b[1;32m 16\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21myield_namespaces\u001b[39m(include_numpy_namespaces\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m):\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/sklearn/utils/fixes.py:24\u001b[0m\n\u001b[1;32m 21\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mscipy\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mstats\u001b[39;00m\n\u001b[1;32m 23\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m---> 24\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mpandas\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mas\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mpd\u001b[39;00m\n\u001b[1;32m 25\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mImportError\u001b[39;00m:\n\u001b[1;32m 26\u001b[0m pd \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/pandas/__init__.py:26\u001b[0m\n\u001b[1;32m 22\u001b[0m \u001b[38;5;28;01mdel\u001b[39;00m _hard_dependencies, _dependency, _missing_dependencies\n\u001b[1;32m 24\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[1;32m 25\u001b[0m \u001b[38;5;66;03m# numpy compat\u001b[39;00m\n\u001b[0;32m---> 26\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mpandas\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcompat\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m (\n\u001b[1;32m 27\u001b[0m is_numpy_dev \u001b[38;5;28;01mas\u001b[39;00m _is_numpy_dev, \u001b[38;5;66;03m# pyright: ignore[reportUnusedImport] # noqa: F401\u001b[39;00m\n\u001b[1;32m 28\u001b[0m )\n\u001b[1;32m 29\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mImportError\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m _err: \u001b[38;5;66;03m# pragma: no cover\u001b[39;00m\n\u001b[1;32m 30\u001b[0m _module \u001b[38;5;241m=\u001b[39m _err\u001b[38;5;241m.\u001b[39mname\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/pandas/compat/__init__.py:27\u001b[0m\n\u001b[1;32m 25\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mpandas\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcompat\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcompressors\u001b[39;00m\n\u001b[1;32m 26\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mpandas\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcompat\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mnumpy\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m is_numpy_dev\n\u001b[0;32m---> 27\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mpandas\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcompat\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mpyarrow\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m (\n\u001b[1;32m 28\u001b[0m pa_version_under10p1,\n\u001b[1;32m 29\u001b[0m pa_version_under11p0,\n\u001b[1;32m 30\u001b[0m pa_version_under13p0,\n\u001b[1;32m 31\u001b[0m pa_version_under14p0,\n\u001b[1;32m 32\u001b[0m pa_version_under14p1,\n\u001b[1;32m 33\u001b[0m pa_version_under16p0,\n\u001b[1;32m 34\u001b[0m pa_version_under17p0,\n\u001b[1;32m 35\u001b[0m )\n\u001b[1;32m 37\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m TYPE_CHECKING:\n\u001b[1;32m 38\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mpandas\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01m_typing\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m F\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/pandas/compat/pyarrow.py:8\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mpandas\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mutil\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mversion\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m Version\n\u001b[1;32m 7\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m----> 8\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mpyarrow\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mas\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mpa\u001b[39;00m\n\u001b[1;32m 10\u001b[0m _palv \u001b[38;5;241m=\u001b[39m Version(Version(pa\u001b[38;5;241m.\u001b[39m__version__)\u001b[38;5;241m.\u001b[39mbase_version)\n\u001b[1;32m 11\u001b[0m pa_version_under10p1 \u001b[38;5;241m=\u001b[39m _palv \u001b[38;5;241m<\u001b[39m Version(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m10.0.1\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/pyarrow/__init__.py:65\u001b[0m\n\u001b[1;32m 63\u001b[0m _gc_enabled \u001b[38;5;241m=\u001b[39m _gc\u001b[38;5;241m.\u001b[39misenabled()\n\u001b[1;32m 64\u001b[0m _gc\u001b[38;5;241m.\u001b[39mdisable()\n\u001b[0;32m---> 65\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mpyarrow\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mlib\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mas\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01m_lib\u001b[39;00m\n\u001b[1;32m 66\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m _gc_enabled:\n\u001b[1;32m 67\u001b[0m _gc\u001b[38;5;241m.\u001b[39menable()\n", - "File \u001b[0;32m:398\u001b[0m, in \u001b[0;36mparent\u001b[0;34m(self)\u001b[0m\n", - "\u001b[0;31mKeyboardInterrupt\u001b[0m: " - ] - } - ], - "source": [ - "import weaviate\n", - "from llama_index.vector_stores.weaviate import WeaviateVectorStore\n", - "\n", - "weaviate_client = get_weaviate_client()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "d8998e65-c4f8-4af2-8ef7-a8d822288307", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "dict_keys(['Extralit_itn_recalibration', 'LlamaIndexDocumentSections', 'Test_DSM_Embeddings'])" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Confirm weaviate connection and display available indexes\n", - "weaviate_client.is_connected()\n", - "collections = weaviate_client.collections.list_all(simple=False)\n", - "collections.keys()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "3db50810-1602-4ad8-8b12-8c3ab04a68bf", - "metadata": { - "jupyter": { - "is_executing": true - } - }, - "outputs": [], - "source": [ - "#len(set([x['ref_doc_id'] for x in res.get['Extralit_itn_recalibration']]))\n", - "#res.get['Extralit_itn_recalibration']" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "4dc7bb0d-18e4-4dc5-8671-2229e39d611d", - "metadata": {}, - "outputs": [], - "source": [ - "# minio_client = get_minio_client()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "ba6e8fae-c005-40c4-92c8-a6b966fb60d8", - "metadata": {}, - "outputs": [], - "source": [ - "### comment out langfuse code \n", - "# import langfuse\n", - "# from langfuse.llama_index import LlamaIndexCallbackHandler\n", - "\n", - "# langfuse_callback_handler = LlamaIndexCallbackHandler(\n", - "# public_key=os.environ['LANGFUSE_PUBLIC_KEY'],\n", - "# secret_key=os.environ['LANGFUSE_SECRET_KEY'],\n", - "# host=os.environ['LANGFUSE_HOST'],\n", - "# )\n", - "# if not Settings.callback_manager.handlers:\n", - "# Settings.callback_manager.add_handler(langfuse_callback_handler)\n", - "# set_global_handler(\"langfuse\")\n", - "\n", - "# from llama_index.core import global_handler\n", - "# global_handler\n", - "\n", - "# Ensure the global handler is NOT set to langfuse\n", - "set_global_handler(\"simple\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "80fd1176-dfb1-4dfe-b318-94bce659b1a8", - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "ex.init(\n", - " api_url='http://extralit-public-demo.hf.space/',\n", - " api_key=\"386a5806-0182-41f6-8076-f4b557818f0b\", #argilla\n", - " # api_key='9df5c40e-b5ce-4d19-ac07-50381a5c79aa', #abv \n", - " workspace='itn-recalibration',\n", - ")\n", - "papers_dataset = ex.FeedbackDataset.from_argilla(name=\"1-Master-Paper-List\", workspace=\"itn-recalibration\", )\n", - "extraction_dataset = ex.FeedbackDataset.from_argilla(name=\"2-Data-Extractions\", workspace=\"itn-recalibration\", )\n", - "preprocessing_dataset = ex.FeedbackDataset.from_argilla(name=\"Table-Preprocessing\", workspace=\"itn-recalibration\")" - ] - }, - { - "cell_type": "markdown", - "id": "054f734f-a69e-4d5d-8f1a-e4ffed74d18a", - "metadata": {}, - "source": [ - "## Load papers" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "8ac5c2db-ea2c-44d6-bf4a-cf9e632df058", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "sys:1: ResourceWarning: unclosed \n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n" - ] - } - ], - "source": [ - "papers = pd.read_parquet('config/extraction_queue_197papers_2024-04-03.parquet')\n", - "\n", - "# papers_preprocessed = list({r.metadata['reference'] \\\n", - "# for r in preprocessing_dataset.filter_by(\n", - "# response_status=['submitted'], \n", - "# metadata_filters=ex.TermsMetadataFilter(name='type', values=['table', 'Table'])).records})\n", - "# papers_uploaded = list({r.metadata['reference'] \\\n", - "# for r in extraction_dataset.filter_by(response_status=['submitted', 'draft']).records})\n", - "\n", - "# papers_queue = papers_preprocessed\n", - "# len(papers_preprocessed), len(papers_uploaded)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "a21a61ef-7ec3-437a-93fe-370a683d79c7", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "(91, 32)" - ] - }, - "execution_count": 10, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "papers_queue = papers.loc[papers.index.isin(papers_preprocessed)]\n", - "papers_queue.shape" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "28993312-b191-47a0-9fdd-a278853342f2", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Mendeley Reference KeyMeasured_outcomeApprox_num_rowsTables_countNotes_on_approx_num_rowsCheck_out_byCheck_in_byNeeds_digitizationNotes_on_extractiontitle...issnpmiddoicollectionsfile_idmime_typefile_namesizefilehashfile_path
reference
abdella2009doesAbdella2009Incidence (u5)42NoneCBCBFalseNoneDoes Insecticide Treated Mosquito Nets (ITNs) ......1573-3610 (Electronic)1895860710.1007/s10900-008-9132-6[Human Health Outcomes]6428579b-3ee9-2f91-2ec9-66250ba74834application/pdfAdbella_et_al_2009_J_Community_Health.pdf213444cada6d5613eff1204416c1e2a63038931eff40f2data/pdf/Adbella_et_al_2009_J_Community_Health...
abdulla2001impactAbdulla2001Parasitemia (u2)43NoneJSJSFalseNoneImpact on malaria morbidity of a programme sup......0959-8138 (Print)1115752710.1136/bmj.322.7281.270[Human Health Outcomes]177972f6-b129-e7c1-220d-03e95856f758application/pdfAbdulla_et_al___2001___Impact_on_malaria_morbi...285528ed77ef48bf6ca690b635d080eb3e1f38b8438fa5data/pdf/Abdulla_et_al___2001___Impact_on_mala...
abilio2015bioAbilio2015Vector susceptibility201-3, 5, 6NoneKBKBFalseNoneBio-efficacy of new long-lasting insecticide-t......NoneNone10.1186/s12936-015-0885-y[Entomological Outcomes]54ede4f1-a9e8-5e79-6cab-5b66c556bf18application/pdf12936_2015_Article_885_pdf.pdf2577795a507d55efd4cb88d2ebaf5cf8508a12dd92b1332data/pdf/12936_2015_Article_885_pdf.pdf
agossa2014laboratoryAgossa2014Vector susceptibility371-4Large row count due to repetition of experieme...KBKBTruedigitization updatedLaboratory and field evaluation of the impact ......1475-2875 (Electronic)2488450210.1186/1475-2875-13-193[Entomological Outcomes]64a054f4-66a9-8885-2345-13b33b3671c0application/pdfAgossa_et_al_2014_Mal_J.pdf6161758b4d0a6f39dc33ec547170e3c2629501a6960d64data/pdf/Agossa_et_al_2014_Mal_J.pdf
agossa2015impactAgossa2015Vector susceptibility231-4Maybe need to digitize/extract from fig 3KBKBFalseNoneImpact of Insecticide Resistance on the Effect......1932-6203 (Electronic)2667464310.1371/journal.pone.0145207[Entomological Outcomes]0aa9c155-7306-a71f-52fe-944db8e633a4application/pdf2015-Impact_of_Insecticide_Resistance_on_the_E...764912d4b9abf675a1604a02dd66231b62816d790b533adata/pdf/2015-Impact_of_Insecticide_Resistance...
..................................................................
lindblade2005evaluationLindblade2005Net durabilityNoneNoneNoneNoneNoneNoneNoneEvaluation of long-lasting insecticidal nets a......1360-2276None10.1111/j.1365-3156.2005.01501.x[Entomological Outcomes]15294800-a4a4-d26d-14b4-99c8b396e948application/pdflindblade2005evaluation.pdf1211405cfed926ae656cc33fb366423a257059585a1e4bdata/pdf/lindblade2005evaluation.pdf
norris2011efficacyNorris2011Vector susceptibilityNoneNoneNoneNoneNoneNoneNoneEfficacy of long-lasting insecticidal nets in ......1475-2875 (Electronic)2188014310.1186/1475-2875-10-254[Entomological Outcomes]11ea9233-51f9-4cff-377d-b585d8267094application/pdfEfficacy_of_long_lasting_insecticidal_nets_in_...143974296a5f52cd8d7ec1aba424a881c5d01aa940ca5fbdata/pdf/Efficacy_of_long_lasting_insecticidal...
ohashi2012efficacyOhashi2012Vector susceptibilityNoneNoneNoneNoneNoneNoneNoneEfficacy of pyriproxyfen-treated nets in steri......0022-2585 (Print)2302518610.1603/me12006[Entomological Outcomes]37e8cc37-85fa-6c5b-3e5d-ed37d0566158application/pdfEfficacy_of_pyriproxyfen_treated_nets_in_steri...284647a30942a6ef6ce47354e34ab23d4a0a22e6cdb179data/pdf/Efficacy_of_pyriproxyfen_treated_nets...
okumu2012implicationsOkumu2012Vector susceptibilityNoneNoneNoneNoneNoneNoneNoneImplications of bio-efficacy and persistence o......1475-2875 (Electronic)2316406210.1186/1475-2875-11-378[Entomological Outcomes]2525cc93-97af-6ef1-0860-3cd04be66be4application/pdfImplications_of_bio_efficacy_and_persistence_o...1032638e452bf88ce21236d63599f701156fab11520b304data/pdf/Implications_of_bio_efficacy_and_pers...
riveron2018highRiveron2018Vector susceptibilityNoneNoneNoneNoneNoneNoneNoneHigh Plasmodium Infection Rate and Reduced Bed......1537-6613 (Electronic)2908748410.1093/infdis/jix570[Entomological Outcomes]7ce097cb-884a-6401-3dc1-e552dee6a424application/pdfHigh_Plasmodium_Infection_Rate_and_Reduced_Bed...1131111cb0a6a5a59693e4406af3defddb2d223878592dedata/pdf/High_Plasmodium_Infection_Rate_and_Re...
\n", - "

111 rows × 32 columns

\n", - "
" - ], - "text/plain": [ - " Mendeley Reference Key Measured_outcome \\\n", - "reference \n", - "abdella2009does Abdella2009 Incidence (u5) \n", - "abdulla2001impact Abdulla2001 Parasitemia (u2) \n", - "abilio2015bio Abilio2015 Vector susceptibility \n", - "agossa2014laboratory Agossa2014 Vector susceptibility \n", - "agossa2015impact Agossa2015 Vector susceptibility \n", - "... ... ... \n", - "lindblade2005evaluation Lindblade2005 Net durability \n", - "norris2011efficacy Norris2011 Vector susceptibility \n", - "ohashi2012efficacy Ohashi2012 Vector susceptibility \n", - "okumu2012implications Okumu2012 Vector susceptibility \n", - "riveron2018high Riveron2018 Vector susceptibility \n", - "\n", - " Approx_num_rows Tables_count \\\n", - "reference \n", - "abdella2009does 4 2 \n", - "abdulla2001impact 4 3 \n", - "abilio2015bio 20 1-3, 5, 6 \n", - "agossa2014laboratory 37 1-4 \n", - "agossa2015impact 23 1-4 \n", - "... ... ... \n", - "lindblade2005evaluation None None \n", - "norris2011efficacy None None \n", - "ohashi2012efficacy None None \n", - "okumu2012implications None None \n", - "riveron2018high None None \n", - "\n", - " Notes_on_approx_num_rows \\\n", - "reference \n", - "abdella2009does None \n", - "abdulla2001impact None \n", - "abilio2015bio None \n", - "agossa2014laboratory Large row count due to repetition of experieme... \n", - "agossa2015impact Maybe need to digitize/extract from fig 3 \n", - "... ... \n", - "lindblade2005evaluation None \n", - "norris2011efficacy None \n", - "ohashi2012efficacy None \n", - "okumu2012implications None \n", - "riveron2018high None \n", - "\n", - " Check_out_by Check_in_by Needs_digitization \\\n", - "reference \n", - "abdella2009does CB CB False \n", - "abdulla2001impact JS JS False \n", - "abilio2015bio KB KB False \n", - "agossa2014laboratory KB KB True \n", - "agossa2015impact KB KB False \n", - "... ... ... ... \n", - "lindblade2005evaluation None None None \n", - "norris2011efficacy None None None \n", - "ohashi2012efficacy None None None \n", - "okumu2012implications None None None \n", - "riveron2018high None None None \n", - "\n", - " Notes_on_extraction \\\n", - "reference \n", - "abdella2009does None \n", - "abdulla2001impact None \n", - "abilio2015bio None \n", - "agossa2014laboratory digitization updated \n", - "agossa2015impact None \n", - "... ... \n", - "lindblade2005evaluation None \n", - "norris2011efficacy None \n", - "ohashi2012efficacy None \n", - "okumu2012implications None \n", - "riveron2018high None \n", - "\n", - " title \\\n", - "reference \n", - "abdella2009does Does Insecticide Treated Mosquito Nets (ITNs) ... \n", - "abdulla2001impact Impact on malaria morbidity of a programme sup... \n", - "abilio2015bio Bio-efficacy of new long-lasting insecticide-t... \n", - "agossa2014laboratory Laboratory and field evaluation of the impact ... \n", - "agossa2015impact Impact of Insecticide Resistance on the Effect... \n", - "... ... \n", - "lindblade2005evaluation Evaluation of long-lasting insecticidal nets a... \n", - "norris2011efficacy Efficacy of long-lasting insecticidal nets in ... \n", - "ohashi2012efficacy Efficacy of pyriproxyfen-treated nets in steri... \n", - "okumu2012implications Implications of bio-efficacy and persistence o... \n", - "riveron2018high High Plasmodium Infection Rate and Reduced Bed... \n", - "\n", - " ... issn pmid \\\n", - "reference ... \n", - "abdella2009does ... 1573-3610 (Electronic) 18958607 \n", - "abdulla2001impact ... 0959-8138 (Print) 11157527 \n", - "abilio2015bio ... None None \n", - "agossa2014laboratory ... 1475-2875 (Electronic) 24884502 \n", - "agossa2015impact ... 1932-6203 (Electronic) 26674643 \n", - "... ... ... ... \n", - "lindblade2005evaluation ... 1360-2276 None \n", - "norris2011efficacy ... 1475-2875 (Electronic) 21880143 \n", - "ohashi2012efficacy ... 0022-2585 (Print) 23025186 \n", - "okumu2012implications ... 1475-2875 (Electronic) 23164062 \n", - "riveron2018high ... 1537-6613 (Electronic) 29087484 \n", - "\n", - " doi \\\n", - "reference \n", - "abdella2009does 10.1007/s10900-008-9132-6 \n", - "abdulla2001impact 10.1136/bmj.322.7281.270 \n", - "abilio2015bio 10.1186/s12936-015-0885-y \n", - "agossa2014laboratory 10.1186/1475-2875-13-193 \n", - "agossa2015impact 10.1371/journal.pone.0145207 \n", - "... ... \n", - "lindblade2005evaluation 10.1111/j.1365-3156.2005.01501.x \n", - "norris2011efficacy 10.1186/1475-2875-10-254 \n", - "ohashi2012efficacy 10.1603/me12006 \n", - "okumu2012implications 10.1186/1475-2875-11-378 \n", - "riveron2018high 10.1093/infdis/jix570 \n", - "\n", - " collections \\\n", - "reference \n", - "abdella2009does [Human Health Outcomes] \n", - "abdulla2001impact [Human Health Outcomes] \n", - "abilio2015bio [Entomological Outcomes] \n", - "agossa2014laboratory [Entomological Outcomes] \n", - "agossa2015impact [Entomological Outcomes] \n", - "... ... \n", - "lindblade2005evaluation [Entomological Outcomes] \n", - "norris2011efficacy [Entomological Outcomes] \n", - "ohashi2012efficacy [Entomological Outcomes] \n", - "okumu2012implications [Entomological Outcomes] \n", - "riveron2018high [Entomological Outcomes] \n", - "\n", - " file_id \\\n", - "reference \n", - "abdella2009does 6428579b-3ee9-2f91-2ec9-66250ba74834 \n", - "abdulla2001impact 177972f6-b129-e7c1-220d-03e95856f758 \n", - "abilio2015bio 54ede4f1-a9e8-5e79-6cab-5b66c556bf18 \n", - "agossa2014laboratory 64a054f4-66a9-8885-2345-13b33b3671c0 \n", - "agossa2015impact 0aa9c155-7306-a71f-52fe-944db8e633a4 \n", - "... ... \n", - "lindblade2005evaluation 15294800-a4a4-d26d-14b4-99c8b396e948 \n", - "norris2011efficacy 11ea9233-51f9-4cff-377d-b585d8267094 \n", - "ohashi2012efficacy 37e8cc37-85fa-6c5b-3e5d-ed37d0566158 \n", - "okumu2012implications 2525cc93-97af-6ef1-0860-3cd04be66be4 \n", - "riveron2018high 7ce097cb-884a-6401-3dc1-e552dee6a424 \n", - "\n", - " mime_type \\\n", - "reference \n", - "abdella2009does application/pdf \n", - "abdulla2001impact application/pdf \n", - "abilio2015bio application/pdf \n", - "agossa2014laboratory application/pdf \n", - "agossa2015impact application/pdf \n", - "... ... \n", - "lindblade2005evaluation application/pdf \n", - "norris2011efficacy application/pdf \n", - "ohashi2012efficacy application/pdf \n", - "okumu2012implications application/pdf \n", - "riveron2018high application/pdf \n", - "\n", - " file_name \\\n", - "reference \n", - "abdella2009does Adbella_et_al_2009_J_Community_Health.pdf \n", - "abdulla2001impact Abdulla_et_al___2001___Impact_on_malaria_morbi... \n", - "abilio2015bio 12936_2015_Article_885_pdf.pdf \n", - "agossa2014laboratory Agossa_et_al_2014_Mal_J.pdf \n", - "agossa2015impact 2015-Impact_of_Insecticide_Resistance_on_the_E... \n", - "... ... \n", - "lindblade2005evaluation lindblade2005evaluation.pdf \n", - "norris2011efficacy Efficacy_of_long_lasting_insecticidal_nets_in_... \n", - "ohashi2012efficacy Efficacy_of_pyriproxyfen_treated_nets_in_steri... \n", - "okumu2012implications Implications_of_bio_efficacy_and_persistence_o... \n", - "riveron2018high High_Plasmodium_Infection_Rate_and_Reduced_Bed... \n", - "\n", - " size filehash \\\n", - "reference \n", - "abdella2009does 213444 cada6d5613eff1204416c1e2a63038931eff40f2 \n", - "abdulla2001impact 285528 ed77ef48bf6ca690b635d080eb3e1f38b8438fa5 \n", - "abilio2015bio 2577795 a507d55efd4cb88d2ebaf5cf8508a12dd92b1332 \n", - "agossa2014laboratory 616175 8b4d0a6f39dc33ec547170e3c2629501a6960d64 \n", - "agossa2015impact 764912 d4b9abf675a1604a02dd66231b62816d790b533a \n", - "... ... ... \n", - "lindblade2005evaluation 121140 5cfed926ae656cc33fb366423a257059585a1e4b \n", - "norris2011efficacy 1439742 96a5f52cd8d7ec1aba424a881c5d01aa940ca5fb \n", - "ohashi2012efficacy 284647 a30942a6ef6ce47354e34ab23d4a0a22e6cdb179 \n", - "okumu2012implications 1032638 e452bf88ce21236d63599f701156fab11520b304 \n", - "riveron2018high 1131111 cb0a6a5a59693e4406af3defddb2d223878592de \n", - "\n", - " file_path \n", - "reference \n", - "abdella2009does data/pdf/Adbella_et_al_2009_J_Community_Health... \n", - "abdulla2001impact data/pdf/Abdulla_et_al___2001___Impact_on_mala... \n", - "abilio2015bio data/pdf/12936_2015_Article_885_pdf.pdf \n", - "agossa2014laboratory data/pdf/Agossa_et_al_2014_Mal_J.pdf \n", - "agossa2015impact data/pdf/2015-Impact_of_Insecticide_Resistance... \n", - "... ... \n", - "lindblade2005evaluation data/pdf/lindblade2005evaluation.pdf \n", - "norris2011efficacy data/pdf/Efficacy_of_long_lasting_insecticidal... \n", - "ohashi2012efficacy data/pdf/Efficacy_of_pyriproxyfen_treated_nets... \n", - "okumu2012implications data/pdf/Implications_of_bio_efficacy_and_pers... \n", - "riveron2018high data/pdf/High_Plasmodium_Infection_Rate_and_Re... \n", - "\n", - "[111 rows x 32 columns]" - ] - }, - "execution_count": 11, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# prejonny papers\n", - "references = ['abdella2009does','abdulla2001impact','abilio2015bio','agossa2014laboratory','agossa2015impact','akoton2018experimental','allossogbe2017who','alonso1993malaria','anshebo2014estimation','asale2014evaluation','asidi2004experimental','asidi2005experimental','asidi2012loss','atieli2010effect','awolola2014impact','badolo2012experimental','bayili2017evaluation','bayili2019experimental','birhanu2019bio','bobanga2013field','bogh1998permethrin','boussougou2017physical','camara2018efficacy','chandre2010field','chouaibou2006efficacy','corbel2010field','curtis2003insecticide','curtis1998comparison','dabire2006personal','dalessandro1995mortality','darriet2011combining','djenontin2009managing','djenontin2010indoor','djenontin2015insecticidal','djenontin2018field','etang2004reduced','etang2007preliminary','fadel2019combination','fane2012anopheles','glunt2015long','guillet2001combined','hassan2008retention','hassan2012bioassay','hauser2019ability','hawley2003community','henry2005protective','hougard2002useful','howard2000evidence','hughes2020anopheles','ibrahim2019high','jones2012aging','kilian2015field','kolaczinski2000experimental','koudou2011efficacy','kulkarni2007efficacy','kweka2011durability','kweka2017efficacy','kweka2019bio','lines1987experimental','magbity1997effects','mahande2018bio','malima2008experimental','malima2009behavioural','malima2013evaluation','masalu2018potential','massue2016durability','maxwell1999comparison','maxwell2002effect','maxwell2003variation','maxwell2006tests','mosha2008experimental','msangi2008effects','murray2020barrier','musa2020long','nguessan2007reduced','nguessan2016chlorfenapyr','ngufor2014olyset','ngufor2014combining','ngufor2017which','obi2020monitoring','ochomo2017insecticide','okoyo2015comparing','omondi2017quantifying','oumbouke2019evaluation','oxborough2013itn','oxborough2015new','pmi2019tanzania','pmi2017madagascar','randriamaherijaona2017durability','sheikhi2017wash','solomon2018bed','soremekun2004measuring','spitzen2017effect','tami2004evaluation','tiono2018efficacy','tungu2015evaluation','vatandoost2006comparative','vatandoost2013wash','pmi2018mozambique','winkler2012efficacy','zhou2016insecticide','duchon2009mixture','etang2013evaluation','etang2016when','kayedi2015entomological','kolaczinski2000comparison','lindblade2005evaluation','norris2011efficacy','ohashi2012efficacy','okumu2012implications','riveron2018high']\n", - "papers_queue = papers.loc[references]\n", - "papers_queue" - ] - }, - { - "cell_type": "markdown", - "id": "69e52c30-f07e-4341-976d-45e1c76725aa", - "metadata": {}, - "source": [ - "# Predict extractions" - ] - }, - { - "cell_type": "markdown", - "id": "7c611c47-8c41-4dbb-a30c-7861d7a37914", - "metadata": {}, - "source": [ - "## Load schemas" - ] - }, - { - "cell_type": "markdown", - "id": "c27c5844-09c4-410d-9704-4c50f3bf4f80", - "metadata": {}, - "source": [ - "### Fetch latest schema version\n", - "Loading schemas into `SchemaStructure` is needed so the LLM can extract a table for each schemas in `schemas` argument" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "84797356-25f1-429f-a302-017adf890643", - "metadata": { - "editable": true, - "scrolled": true, - "slideshow": { - "slide_type": "" - }, - "tags": [] - }, - "outputs": [], - "source": [ - "# ignore this until fetching schemas from minio works\n", - "\n", - "# ss = SchemaStructure.from_s3(workspace='itn-recalibration', minio_client=get_minio_client())\n", - "# ss.ordering" - ] - }, - { - "cell_type": "markdown", - "id": "373baa81-6b3c-43f7-ac25-77100842faa2", - "metadata": {}, - "source": [ - "### How to update schemas\n", - "\n", - "These steps are to easily make versioned updates to *existing* schemas or to add new schemas:\n", - "1. Update the schema specs in the `pandera.DataFrameSchema` classes located in the `schemas/*.py` files, then import the classes to load the changes.\n", - "2. Apply the changes to the server using `.to_s3`, which uploads these schema .json files to a MinIO file object storage server. If a schema already exists, then it would create a new version of the schema file, while keeping the old versions intact.\n", - " - Make sures that the `workspace` argument matches the Extralit workspace name for your project.\n", - " - You may browse and manipulate all uploaded files in the MinIO Console, if connected to the K8s cluster\n", - "3. The extraction tables in the Extralit web UI will automatically fetch the latest version of the schemas that were uploaded, or allow you to update to a new schema version if the table was built with an older version." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "87394620-24db-478d-8ad1-3134b60ec29b", - "metadata": { - "editable": true, - "scrolled": true, - "slideshow": { - "slide_type": "" - }, - "tags": [] - }, - "outputs": [ - { - "data": { - "text/plain": [ - "['ITNCondition', 'Observation', 'ClinicalOutcome', 'EntomologicalOutcome']" - ] - }, - "execution_count": 12, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "from schemas import Observation, ITNCondition, EntomologicalOutcome, ClinicalOutcome, Publication\n", - "\n", - "ss = SchemaStructure(schemas=[Observation, ITNCondition, EntomologicalOutcome, ClinicalOutcome])\n", - "ss.ordering" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "b94adb50-694d-4b6c-8243-a8b62f09cf15", - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "# also ignore?\n", - "\n", - "# ss.to_s3(workspace='itn-recalibration', minio_client=minio_client)" - ] - }, - { - "cell_type": "markdown", - "id": "04c20e3d-a40d-42b3-ac0b-dbaff2a9a144", - "metadata": {}, - "source": [ - "## Select extraction references" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "7b577217-8ff2-4b02-99e4-baff82c25eb1", - "metadata": { - "editable": true, - "slideshow": { - "slide_type": "" - }, - "tags": [] - }, - "outputs": [ - { - "data": { - "text/plain": [ - "'pinder2015efficacy, terlouw2010impact, tokponnon2014impact'" - ] - }, - "execution_count": 14, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# references = ['Atieli2010effectgambiaeMalaria', 'Dabire2006personalpyrethroidsMalaria', 'Ochomo2017insecticidekenyaEmerging', 'Vatandoost2013washtestArthropod']\n", - "# references = ['apetogbo2022insecticide', 'azizi2022implementing', 'bamou2021increased', 'clegban2021evaluation',]\n", - "# references = ['padonou2012decreased', 'robert1991influence', 'curtis2000comparison', 'pwalia2019high', 'darriet2002experimental', 'mosqueira2015pilot']\n", - "# references = ['ketoh2018efficacy', 'darriet2005pyrethoid', 'magesa1991trial', 'quinones1998permethrin', 'kawada2014small', 'kawada2014preventive', 'randriamaherijaona2015do', 'kilian2011evidence',]\n", - "# references = ['mbogo1996impact', 'menze2020experimental', 'kitau2012species', 'kilian2008long', 'mnzava2001malaria', 'hougard2003efficacy', 'pennetier2013efficacy',]\n", - "# references = ['ngufor2016efficacy', 'okia2013bioefficacy', 'mosha2008comparative', 'quinones1997anopheles', 'ahoua2012status', 'sreehari2009wash', 'abdulla2005spatial', 'tan2016longitudinal',\n", - "# 'wills2013physical', 'marchant2002socially', 'nevill1996insecticide', 'msuya1991trial', 'tungu2021efficacy']\n", - "# references = ['hamel2011combination', 'ter2003impact', 'moiroux2014human', 'schellenberg2001effect', 'tamari2020protective', 'yewhalaw2022experimental', 'tungu2021field', 'sanou2021insecticide', 'kouassi2020susceptibility', 'mulatier2019prior', \n", - "# 'ngongang2022reduced', 'lorenz2020comparative', 'hien2021evidence', 'ngufor2020efficacy', 'sovi2022physical', 'adageba2022bio', 'githinji2020impact', 'grisales2021pyriproxyfen', 'tungu2021bio', 'tungu2021effectiveness',]\n", - "\n", - "references = ['pinder2015efficacy', 'terlouw2010impact', 'tokponnon2014impact']\n", - "\n", - "# references = [ 'accrombessi2023efficacy', 'mieguim2021insights', 'gebremariam2021evaluation', 'gichuki2021bioefficacy', 'syme2021which', 'zahouli2023small', 'diouf2022evaluation', 'ibrahim2020exploring', 'kibondo2022influence', 'meiwald2022association', 'menze2022experimental', 'syme2022pyrethroid', 'toe2018do', 'yewhalaw2022experimental', 'ngufor2022comparative' ]\n", - "\n", - "\n", - "', '.join(references)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "9db560c2-f130-45d5-8b0e-46b5083d24d0", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "15" - ] - }, - "execution_count": 16, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(references)" - ] - }, - { - "cell_type": "markdown", - "id": "508c3959-e4c9-44e8-a3bb-f8c258ebccf0", - "metadata": {}, - "source": [ - "## Run LLM extractions" - ] - }, - { - "cell_type": "markdown", - "id": "5143f215-378b-4ded-bee0-65366b7ca2ca", - "metadata": {}, - "source": [ - "### Select LLM and embedding models" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "d2938dbc-a94e-47f3-8349-9f6ea9eca993", - "metadata": {}, - "outputs": [], - "source": [ - "# llm_model = 'gpt-3.5-turbo'\n", - "# llm_model = 'gpt-4-turbo'\n", - "llm_model = 'gpt-4o'\n", - "\n", - "embed_model = 'text-embedding-3-small'\n", - "# embed_model = 'text-embedding-3-large'\n", - "\n", - "pred_extractions = defaultdict(lambda: {})\n", - "indexes = {}\n", - "responses = {}" - ] - }, - { - "cell_type": "markdown", - "id": "8183742a-9082-47f0-b502-2f9daadccc3f", - "metadata": {}, - "source": [ - "### Add model segments to Weaviate vector db" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "24742f9a-efcf-4bb2-b54f-74b17e13d827", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "_RawGQLReturn(aggregate={'LlamaIndexDocumentSections': [{'meta': {'count': 3828}}]}, explore={}, get={}, errors=None)" - ] - }, - "execution_count": 18, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Verify the number of items in the index before\n", - "weaviate_client.graphql_raw_query(\"\"\"\n", - "{\n", - " Aggregate {\n", - " LlamaIndexDocumentSections {\n", - " meta {\n", - " count\n", - " }\n", - " }\n", - " }\n", - "}\n", - "\"\"\"\n", - ")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "0bc3ddf2-bd99-4423-964c-33fd1d262f76", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "a22619b907694ee79b5b0a0993f5b91a", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/15 [00:0037.5degC or reported fever in the previous 48 h, and positive malaria rapid diagnostic test) in children enrolled in the active case detection cohort in the 2 years after net distribution. Visits of children in the cohort at health facilities were monitored and the results of malaria rapid diagnostic tests and any treatment given were recorded. However, it was difficult to assess with certainty if malaria rapid diagnostic tests were used only if the child was symptomatic (as our protocol specified); therefore, the passive data was not included in the primary analyses.\n", - "\n", - "Secondary clinical outcomes were malaria infection prevalence in all age groups and anaemia (defined as haemoglobin concentration <10 g/dL) prevalence in children aged 5 years or younger at 6 months and 18 months after net distribution.\n", - "\n", - "Type and duration of adverse events related to usage of nets were recorded using a prespecified questionnaire at each cohort visit and during net usage and cross-sectional surveys. Data on hospitalisation and death in children in the cohort were collected by interviewing the child's guardian and reviewing the hospital record, following receipt of consent.\n", - "\n", - "The primary entomological outcome was entomological inoculation rate, measured as the mean number of _Plasmodium_ spp infective malaria vectors collected per person per night measured indoors and outdoors. Secondary entomological outcomes were vector density (number of mosquitoes caught per person per night), sporozoite rate, and species composition. Centers for Disease Control and Prevention bottle bioassays were performed by exposing adult female _An gambiae_, collected as larvae, to alpha-cypermethrin for 30 min (1, 2, 5, and 10 times the diagnostic dose), and to chlorfenrapy (100 mg/bottle) and pyriproxyfen (100 mg/bottle) for 60 min each year.(r) Mortality was recorded at 30 min for all four doses of alpha-cypermethrin (insectidic resistance intensity measurement), and at 24, 48, and 72 h after exposure for chlorfenapyr. The reduction in fecundity rate induced by pyriproxyfen relative to unexposed mosquitoes was assessed by ovarian dissection, 3 days after pyriproxyfen exposure. Other outcomes included in the protocol (parity, resting behaviour, survivorship, and other resistance measures) are still to be analysed and will be published elsewhere.\n", - "\n", - "header: Statistical analysis\n", - "\n", - "The sample size calculations for epidemiological data collection were calculated using the method of Hayes and Moulton.(r) The study was designed to detect a 30% difference in malaria case incidence, assuming a control group incidence of 1 malaria case per child-year and a coefficient of variation of 0-3 between clusters. This design required 20 clusters per group and 25 (20+5 allowing for loss to follow-up) children per cluster followed up for 2 years to give 80% power. Due to the delay in enrolment, which resulted in a shorter follow-up time, the number of children per cluster was increased to 30 (1800 children total). This sample size calculation includes adjustment for multiple testing (allowing for the three groups) using a Bonferroni-corrected two-sided a of 2.5%.\n", - "\n", - "For malaria infection prevalence, it was assumed that the prevalence in the reference group was 40%, with a coefficient of variation between clusters of 0-3. With 72 individuals per cluster, the study had 80% power to detect a 30% lower prevalence in the intervention groups compared with the reference group, using a Bonferroni-corrected a for multiple comparisons.\n", - "\n", - "The primary intention-to-treat analysis was a comparison of incidence of clinical malaria episodes between each dual active-ingredient LLIN group and the\n", - "\n", - "header: Abstract\n", - "\n", - "Efficacy of pyriproxyfen-pyrethroid long-lasting insecticidalnets (LLINs) and chlorfenapyr-pyrethroid LLINs compared with pyrethroid-only LLINs for malaria control in Benin: a cluster-randomised, superiority trial\n", - "\n", - "Manfred Accomphesi\n", - "\n", - "\n", - "Background New classes of long-lasting insecticidal nets (LLINs) combining mixtures of insecticides with different modes of action could put malaria control back on track after rebounds in transmission across sub-Saharan Africa. We evaluated the relative efficacy of pyriproxyfen-pyrethroid LLINs and chlorfenapyr-pyrethroid LLINs compared with standard LLINs against malaria transmission in an area of high pyrethroid resistance in Benin.\n", - "\n", - "header: Results\n", - "\n", - "Between May 23 and June 24, 2019, 53854 households and 216 289 inhabitants were accounted for in the initial census and included in the study. The households were delineated into 61 clusters, with one subsequently excluded due to extensive seasonal flooding (figure). Baseline cross-sectional epidemiological and entomological surveys were conducted between October and November, 2019 (table 1). The malaria infection prevalence was 43 5% (1924 of 4428 participants, cluster range 15 1-72 796) and population self-reported LLIN usage was 95 7% (3913 of 4088 participants). Cluster demographics and malaria prevalence were similar between groups (table 1). Entomological inoculation rate was 0 68 _Plasmodium_ spp infective bites per person per night (cluster range 0 00-3 80) indoors and 0 26 per person per night (0 00-1 88) outdoors.\n", - "\n", - "Between March 19 and 22, 2020, 115 323 LLINs were distributed to 54 300 households in an updated census, with 97 1% of households receiving at least one net per household. Active ingredients in the new nets were found to be within or higher than the acceptable target limits depending on LLIN brand (appendix p 4). Study net usage was highest (5532 [76 8%] of 7206 participants) at 9 months after distribution, following a second hang-up campaign, but had decreased by 24 months (4032 [60 6%] of 6654). Study net coverage and usage indicators were similar between study groups up to 18 months after net distribution. At 24 months, pyriproxyfen-pyrethroid LLIN usage and ownership was the lowest (appendix pp 5-6). Use of any type of LLIN (study LLINs and others) remained greater than 80% up to 24 months after distribution (appendix p 7).\n", - "\n", - "In the 2283 households that were randomly selected for post-intervention cohort follow-up, 3129 children were eligible, 1829 of whom were randomly selected, and consent was obtained for 1806 (figure). Among the 2849 and 2771 households randomly selected at 6 months and 18 months after LLIN distribution for the malaria prevalence cross-sectional surveys, 4781 (85 1%) of 5620 households consent, with a similar proportion in the two surveys. The remaining households were either not available during the visit (775 [13 8%] of) or declined to participate (64 [1 1%]; appendix p 8).\n", - "\n", - "Children aged 6 months-9 years enrolled for active case detection were monitored for 21 months, for a total follow-up time of 2645 4- child-years at risk. Loss to follow-up was similar between groups (figure). At enrolment, children were balanced on age, sex, and net usage. During the 21-month follow-up period, we detected 2135 malaria cases through active case detection (table 2). The mean malaria case incidence over 21 months of follow-up was 1 03 cases per child-year (95% CI 0 96-1 09) in the pyrethroid-only LLIN reference group, 0 84 cases per child-year (0 78-70 90) in the pyriproxyfen-pyrethroid LLIN group (hazard ratio [HR] 0 86, 95% CI 0 65-1 46; p = 0 - 28), and 0 56 cases per child-year (0 51-0 64) in the chlorfenapry-pyrethroid LLIN group (HR 0 54, 95% CI 0 - 42-0 70; p < 0 0001; table 2). The strongest effect was observed in the first year of follow-up in the chlorfenapry-pyrethroid group (HR 0 46, 95% CI 0 30-0 72; p = 0 - 0005; table 2). When combining active and passive visits, the number of cases detected nearly doubled; however, the effect size in comparison to the reference group was similar for both intervention nets (appendix p 9).\n", - "\n", - "Malaria infection prevalence was 23 5% (1037 of 4409 participants) at 6 months and 34 9% (1554 of 4450) at 18 months after net distribution (table 3). There was strong evidence for a reduction of malaria infection prevalence in the chlorfenapry-pyrethroid LLIN group at 6 months (15 7%; odds ratio [OR] 0 47, 95% CI 0 32-0 69; p = 0 0002) and at 18 months (27 9%; OR 0 60 - 60, 0 - 43-0 85; p = 0 004) compared with the reference group (28 - 0% at 6 months and 38 7% at 18 months; table 3). In the pyriproxyfen-pyrethroid group, there was no evidence for a reduction in malaria prevalence at 6 months (26 9%; OR 0 - 92, 95% CI 0 63-1 35; p = 0 - 67) or 18 months (38 2%; OR 0 97 0, 0 69-1 37; p = 0 87) compared with the reference group. Results were similar for the per-protocol analysis (appendix p 1). There was no evidence of a reduction in moderate to severe anaemia prevalence in either intervention group (table 3). The post-hoc analysis adjusting for covariates used in the randomisation did not change the interpretation of the results (appendix pp 12-13).\n", - "\n", - "\n", - "Adverse events related to study nets were reported in 528 (45-496) of 1162 participants surveyed at 1 month after net distribution. The highest proportion of adverse events was reported in the pyrethroid-only LLIN group (247 [63-8%] of 387 participants), followed by the pyriproyfen-pyrethroid LLIN group (212 [52-5%] of 404) and then the chlorfenapy-pyrethroid LLIN group (69 [18-6%] of 371). Facial burning (392 [33-7%] of 1162 participants), and skin irritation or itchiness (244 [20-9%]) were the most common adverse events in all groups. Adverse events were rare in all three groups at all later timepoints (appendix P 14-15). We recorded 44 serious adverse events (including three deaths) in the cohort children, with 32 (72-7%) documented as severe malaria (11 cases in the pyriproyfen-pyrethroid LLIN group, ten in the chlorfenapy-pyrethroid LLIN group, and 11 in the pyrethroid-only LLIN group). No serious adverse events related to net use were reported.\n", - "\n", - "A total of 259265 mosquitoes were collected over 3840 collection nights indoors and outdoors, of which 20-9% (29814 from indoors and 24436 from outdoors) were malaria vectors, with _An gambiae_ sensu that the most predominant. Overall, indoor entomological inoculation rate was lower in both intervention groups than in the reference group, with a mean entomological inoculation rate of 0-90 infectious bites per night per person in the chlorfenapy-pyrethroid LLIN group (rate ratio [RR] 0-34, 95% CI 0-18-0-62; p=0-0005), 0-12 in the pyriproyfen-pyrethroid LLIN group (RR 0-42, 0-2-3-0-74; p=0-0028), and 0-28 in the pyrethroid-only LLIN group (table 4). Mean indoor vector density appeared to be lower in the chlorfenapy-pyrethroid LLIN group (10-18 bites per person per night, density ratio 0-44, 95% CI 0-2-30-84; p=0-014), and in the pyriproyfen-pyrethroid LLIN group (13-6 bites per person per night, density ratio 0-58, 0-30-1-12; p=0-011) than in the reference group (23-0 bites per person per night, but the latter difference was not statistically significant (table 4). Adjusting for baseline vector density in the models gave similar results (appendix P 16). There was no significant difference in sporozoite rate in any of the intervention groups compared with the reference group (table 4).\n", - "\n", - "Reduction in outdoor entomological inoculation rate compared with the reference group was observed only in the chlorfenapy-pyrethroid LLIN group (RR 0-30, 95% CI 0-13-0-67; p=0-0035; appendix P 17). There was very weak evidence for a reduction in outdoor entomological inoculation rate in the pyriproyfen-pyrethroid LLIN group compared with the pyrethroid-only group (RR 0-58, 0-30-1-13; p=0-11). Similar effects were observed for outdoor vector density for both intervention nets (appendix P 17).\n", - "\n", - "Post-intervention pyrethrold resistance intensity was high across the study groups in _An gambiae_ sensu lato, with mean mortality of 85% or less after exposure to 10 times the diagnostic concentrations of alpha-cypentrohin in year 2 (appendix P 18). No resistance to chlorfenapy was observed during either year after net distribution (appendix P 18). Exposure of _An gambiae_ sensu lato to pyriproyfen led to a high reduction in fecundity rate relative to unexposed control mosquitoes over the 2 years after net distribution (73-2%, 95% CI 62-2-82-4 in year 1, and 76-6%, 66-6-84-9 in year 2).\n", - "\n", - "header: Implications of all the available evidence\n", - "\n", - "Given the positive findings, both in Benin and Tanzania, for chlorfenapyr-pyrethroid LLINs, they are likely to become the first WHO-recommended LLINs impregnated with an insecticide class other than pyrethroids. The absence of superior efficacy of pyrioxyfen-pyrethroid LLINs compared with standard pyrethroid-only LLINs is consistent with the results of the previous Tanzania study and calls into question the role of the current pyrioxyfen-pyrethroid LLINs in future malaria vector strategies.\n", - "\n", - "header: Role of the funding source\n", - "\n", - "The funders of the study had no role in study design, data collection, data analysis, data interpretation, writing of the report, or in the decision to submit for publication.\n", - "\n", - "header: Procedures\n", - "\n", - "The nets tested in the trial were: Royal Guard (Disease Control Technologies, Greer, SC, USA), polyethylene netting (I20 deniers incorporating 220 mg/m2 pyriproyfen and 220 mg/m2 alpha-cypermethrin); Interceptor G2 (BASF SE, Ludwigshafen, Germany), polyester netting (100 deniers coated with 200 mg/m2 chlorfenapyr and 100 mg/m2 alpha-cypermethrin); and the reference net, Interceptor (BASF SE, Ludwigshafen, Germany), polyester netting (100 deniers coated with 200 mg/m2 of alpha-cypermethrin). Nets were distributed in collaboration with the Benin National Malaria Control Program. Households were asked to collect their nets from a central point and received one net per every two residents in their household, rounded up for odd numbers. Nets already in houses were not removed but households were encouraged to use the new study nets. Additionally, net hang-up campaigns to encourage net use took place at 1 month and 7 months after distribution. Net coverage surveys to assess net ownership and usage were done at 1, 9, and 24 months after distribution. Throughout the follow-up period, children enrolled in the analysis cohort and participants enrolled in the cross-sectional surveys were also asked about their net use.\n", - "\n", - "Insecticide content at baseline was assessed on 30 randomly selected new nets per LLIN brand, by gas chromatography with Flame Ionisation Detection, at the\n", - "Centre Wallon de Recherches Agronomiques, Gembloux, Belgium. The insecticidal and physical durability of the study nets is being assessed in a separate study.\n", - "\n", - "Due to the COVID-19 pandemic, there was a 3-month gap between the distribution of the nets and the enrolment of children in the cohort. At enrolment and at 1 year after distribution (April, 2021), children were treated with antimalarial drugs (atremether-lumefantrinity to clear any underlying infection. The cohort was monitored from August, 2020, to April, 2022, a 21-month period, which encompassed the first 2 years after net distribution. Study nurses visited children every 2 weeks during the transmission season (April-October) and every 1 month in the dry season (November-March). At each visit, children were clinically examined and if they were febrile or had a history of fever in the past 48 h, they were tested for malaria using a malaria rapid diagnostic test. If the test was positive, the child was treated with artemether-lumefantrine, according to national guidelines.\n", - "\n", - "During cross-sectional surveys, all participants were tested for malaria using a malaria rapid diagnostic test and received treatment if the test was positive, and children younger than 5 years were tested for anaemia. Information regarding net ownership and usage, and other household-level indicators were collected at the same time.\n", - "\n", - "Entomological monitoring was also delayed and took place every 3 months between June, 2020, and April, 2022. Volunteers recruited from study clusters collected mosquitoes that landed on their legs between 1900 h and 0700 h for 1 night at four randomly selected houses in each cluster at each timepoint. Mosquitoes were morphologically identified to species and a subsample of _Anopheles_ spp was tested for molecular species using PCR.(r) A random sample of _Anopheles_ spp (up to 30% from each nightly catch in each cluster) were tested for sporozoites using the ELISA circumsporozoite protein technique.(r)\n", - "\n", - "header: Discussion\n", - "\n", - "This trial assessed the efficacy of two dual active-ingredient LLINs in an area of Benin with malaria vectors that are highly resistant to pyrethroids and found that chlorfenapy-pyrethroid LLINs provided significantly better protection against malaria for up to 2 years after net distribution compared with pyrethroid-only LLINs. Children aged 6 months-10 years living in clusters that received chlorfenapy-pyrethroid LLINs had a 46% lower incidence of malaria over 2 years after LLIN distribution;\n", - "\n", - "\\begin{table}\n", - "\\begin{tabular}{c c c c c c c c c c} & **Malaria infection** & \\multicolumn{6}{c}{**Anaemia in children younger than 5 years**} \\\\ \\hline n/N & Prevalence & OR & 95\\% CI & p valuea & n/N & Prevalence & OR & 95\\% CI & p valuea \\\\ \\hline\n", - "**6 months after net distribution** & & & & & & & & \\\\ Pyrethroid-only LLIN group & 412/1471 & 28\\(\\,\\)0\\% & 1 (ref) & – & – & 992/41 & 41\\(\\,\\)1\\% & 1 (ref) & – & – \\\\ Pyriproyfen-pyrethroid & 394/1463 & 26\\(\\,\\)9\\% & 0\\(\\,\\)92 & 0\\(\\,\\)\n", - "\n", - "63\\(\\,\\)45 & 0\\(\\,\\)67 & 117/250 & 46\\(\\,\\)8\\% & 124 & 0.71–218 & 0.45 \\\\ LLIN group & & & & & & & & & \\\\ Chlorfenapy-pyrethroid & 231/1475 & 157\\(\\,\\)\\% & 0\\(\\,\\)47 & 0\\(\\,\\)32\\(\\,\\)0\\(\\,\\)669 & 0\\(\\,\\)0002 & 82/241 & 34\\(\\,\\)0\\% & 0.71 & 0.40–126 & 0.24 \\\\ LLIN group & & & & & & & & & \\\\\n", - "**18 months after net distribution** & & & & & & & & \\\\ Pyrethroid-only LLIN group & 576/14/849 & 38\\(\\,\\)7\\% & 1 (ref) & – & – & 118/25 & 46\\(\\,\\)8\\% & 1 (ref) & – & – \\\\ Pyriproyfen-pyrethroid & 564/14/83 & 38\\(\\,\\)2\\% & 0\\(\\,\\)97 & 0\\(\\,\\)69\\(\\,\\)13\\(\\,\\)07 & 0\\(\\,\\)87 & 108/245 & 44\\(\\,\\)1\\% & 0.84 & 0.40–179\n", - "\n", - "\n", - "participants of any age had 53% lower odds of malaria infection at 6 months and 40% lower odds at 18 months after LLIN distribution, and were exposed to a 66% reduction in entomological inoculation rate compared with those living in clusters that received pyrethroid-only LLINs. Similar gains were not observed with the pyriproxyfen-pyrethroid LLIN, with a small reduction in malaria incidence in the first year of the study that was attenuated in year 2, and no effect on malaria infection prevalence in either year, compared with the pyrethroid-only reference group. However, a 58% reduction in indoor entomological inoculation rate was detected with the pyriproxyfen-pyrethroid LLIN. Both dual active-ingredient LLINs provided a similar safety profile compared with standard pyrethroid-only LLINs, with short-lasting skin irritation and facial burning (commonly associated with the pyrethroid alpha-Cybermethrin) most frequently reported in participants using pyrethroid-only LLINs and pyriproxyfen-pyrethroid LLINs. A similar observation has been reported in another randomised controlled trial evaluating the same LLINs, and this is likely to be associated with the high concentration of alpha-Cybermethrin in those nets compared with the chlorfenapy-pyrethroid LLINs.\n", - "\n", - "To our knowledge, this is the second cluster-randomised trial to provide strong evidence of increased efficacy of chlorfenapy-pyrethroid LLINs relative to pyrethroid-only LLINs for malaria control in areas with pyrethroid-resistant vectors. Chlorfenapyr insecticide on nets has already shown improved control of pyrethroid-resistant _An gambiae_ in laboratory and semi-field experimental huts against resistant malaria vectors.3- The previous trial in Tanzania reported a malaria case incidence reduction of 44%, a 55% decrease in odds of malaria prevalence, and 85% reduction in entomological inoculation rate compared with the pyrethroid-only group, consistent with these results, despite the differing malaria vector populations and intensity of pyrethroid resistance in the mosquitoes.4 In both trials, per-protocol analyses suggested that individuals living in the chlorfenapy-pyrethroid clusters benefited regardless of whether they were using a study net, suggesting a community effect of the net, which was likely to be obtained by the overall reduction of mosquito density, which remained considerably lower than in the pyrethroid-only group in both years of this trial after net distribution. Community effect is also indicated by the reduction in both indoor and outdoor entomological indices in the chlorfenapy-pyrethroid group in the present study.\n", - "\n", - "Similar to the trial in Tanzania,4 the pyriproxyfen-pyrethroid LLINs we tested did not provide additional protection against malaria infection or disease compared with pyrethroid-only LLINs. However, there was evidence of an effect on indoor transmission, with the strongest effect seen in the first year after net distribution. Tino and colleagues5 have previously reported a 12% reduction in malaria incidence and 49% reduction in entomological \n", - "inoculation rate with a pyriproxyfen-pyrethroid LLIN compared with pyrethroid-only LLINs over 18 months in a stepped-wedge randomised trial in Burkina Faso. The different study design, length of follow-up, and brand of net might explain the differences seen between the two studies. In Benin, laboratory and semi-field experimental hut studies have shown the superior efficacy of pyriproxyfen-pyrethroid nets on entomological indicators compared with standard pyrethroid-only LLINs,2,3 and are consistent with the decrease in indoor vector density observed in our trial. However, the decrease in indoor vector density did not translate into significant disease reduction, suggesting that a larger effect on malaria transmission (entomological inoculation rate) is crucial to provide community protection. Although lower net usage in the pyriproxyfen-pyrethroid LLIN group could have partially contributed to the lack of effect, we are also assessing textile durability, sterilisation effects, and chemical content of pyriproxyfen-pyrethroid LLINs to fully understand these results.\n", - "\n", - "With several trials now showing the superior efficacy of next-generation LLINs over pyrethroid-only nets, the importance of developing new active ingredients to use on nets in the future is brought to the fore. The distribution of next-generation LLINs across sub-Saharan Africa has already begun, with the development of the brands of chlorfenapry-pyrethroid nets underway,3 as well as the development of chlorfenapry product formulations for indoor residual spraying.3 Although chlorfenapry-pyrethroid nets offer a superior alternative to pyrethroid-only nets in areas of pyrethroid resistance, to preserve their effectiveness optimal resistance-management strategies should be used. There was no evidence of the development of resistance to chlorfenapry during the 2 years of this trial; however, the wide-scale deployment of one type of insecticide risks the rapid development of resistance, which could result in a similar situation to the current widespread resistance to pyrethroids. The nets should be deployed ideally alongside other insecticides as part of a strategy aimed to reduce selection pressure for development of resistance in mosquito vectors. Given the significant effect of the pyriproxyfen-pyrethroid LLINs on malaria transmission during the first year after net distribution, additional studies are necessary to evaluate the potential value of active ingredients such as pyriproxyfen, which are not primarily intended to kill resistant adult mosquitoes but rather to sterilise them. There might still be a role for these hormone growth-regulator insecticides in combination with other active ingredients for net treatment in long-term resistance management.\n", - "\n", - "If WHO policy recommendations are made on the basis of this trial's results, future chlorfenapry-pyrethroid nets might not have to undergo the rigorous trial testing that Interceptor G2 has. Caution should, however, be taken to assess the comparative efficacy, quality, and durability of the second-in-class chlorfenapry-pyrethroid nets as they might use different concentrations of chlorfenapry, different pyrethroids, or different net materials. Considering the time and resources required to generate evidence of epidemiological effect using randomised trials, non-inferiority experimental hut trials, recently proposed by WHO,3 might be a useful alternative for second-in-class chlorfenapry-pyrethroid LLINs. Further work to investigate the capacity of such entomological studies to predict the performance of the trial nets against clinical malaria is ongoing.3\n", - "\n", - "Footnote 3: endnote: [https://www.thelanct.com/Vol.401](https://www.thelanct.com/Vol.401). February 11, 2023\n", - "\n", - "Our study has some limitations. First, net ownership and use were high throughout the study; however, this did not always equate to study net use, which was approximately 60% at 2 years after net distribution, with overall usage of greater than 80%. Similar findings have been observed in other bednet trials, and probably indicate populations choosing to discard damaged nets when other nets are readily available. Second, the three types of nets were not completely identical and differences in textile material and size might have resulted in differential net usage between the groups. As our net use indicator was primarily self-reporting, it is also possible that net usage was overestimated. Third, our primary measure of incidence was based on active detection, involving visits every 2 weeks or every month. The passive data collected alongside the trial suggests that this frequency of visit resulted in some cases being missed, meaning the absolute effect of the nets might be greater than reported here. However, the relative effect of the nets remained similar when the active and passive data were combined. Finally, cost-effectiveness was not assessed; however, the trial in Tanzania' showed that dual active-ingredient LLINs can be highly cost-effective and even cost-saving compared with pyrethroid-only LLINs when providing sufficient protection.\n", - "\n", - "New classes of vector control interventions currently require clinical trial evaluation in two different geographical settings, after 24 months of community use.4 Currently, the only class of next-generation LLIN to receive a WHO recommendation are the PBO synergism nets. However, previous publications have shown concerns about the durability of these nets.5 This trial provides the second key evidence for the effectiveness of chlorfenapry-pyrethroid nets in an area with pyrethroid-resistant vectors and will therefore support a WHO policy recommendation. However, the effect of the nets was reduced in the second year of the trial, and there is no evidence for the efficacy of the nets in their third year of use. Many studies report that the durability of nets is much less than the 3 years required to be designated as long lasting.5 The next-generation LLINs might face the same problems of fabric integrity and durability of insecticidal content unless standards of manufacture are improved. Different channels of distribution (eg, school-based, antenatal care visits, or expanded programme immunisation visits) could play a key role in maintaining high levels of net use in communities.5\n", - "Although generating this evidence to support a WHO recommendation for another class of bednet is a key turning point in malaria control, without new insecticides and new ways to deploy them, we risk repeating the mistakes of the past. Now is the time for more innovation and less complacency.\n", - "\n", - "header: Study design and participants: Randomisation and masking\n", - "\n", - "We used restricted randomisation to randomly assign 60 clusters to one of three LLIN groups (1:1:1), to receive nets containing either pyriproxyfen and alpha-cypermethrin (pyrethroid), chlorfenapyr and alpha-cypermethrin, or alpha-cypermethrin only (reference). Restricted randomisation was used to ensure balanced cluster allocation between study groups with respect to population size, malaria infection prevalence (measured in the baseline survey), district (n=3), and socioeconomic status.\n", - "\n", - "To mask the net types from the participants and the field workers, the nets were designed to look as similar as possible. Each net was rectangular, was requested to be the same size (1-8 m length, 1-9 m width, and 1-8 m height), and blue. To differentiate the nets in the field, a colour-coded loop was attached to the net. All data analyses were performed masked.\n", - "\n", - "header: Methods\n", - "\n", - "We conducted a cluster-randomised, superiority trial in Zou Department, Benin. Clusters were villages or groups of villages with a minimum of 100 houses. We used restricted randomisation to randomly assign 60 clusters to one of three LLIN groups (I:1:1): to receive nets containing either pyriproxyfen and alpha-Cypermethrin (pyrethroid), chlorfenapyr and alpha-Cypermethrin only (reference). Households received one LLIN for every two people. The field team, laboratory staff, analyses team, and community members were masked to the group allocation. The primary outcome was malaria case incidence measured over 2 years after net distribution in a cohort of children aged 6 months-10 years, in the intention-to-treat population. This study is ongoing and is registered with ClinicalTrials.gov, NCT03931473.\n", - "\n", - "Findings Between May 23 and June 24, 2019, 53 854 households and 216 289 inhabitants were accounted for in the initial census and included in the study. Between March 19 and 22, 2020, 115 323 LLINs were distributed to 54030 households in an updated census. A cross-sectional survey showed that study LLIN usage was highest 9 months after distribution (5532 [76 * 986] of 7206 participants), but decreased by 24 months (4032 [60 * 696] of 6654). Mean malaria incidence over 2 years after LLIN distribution was 1-03 cases per child-year (95% CI 0 * 96-1 * 09) in the pyrethroid-only LLIN reference group. 0 * 84 cases per child-year (0.78-0 * 90) in the pyriproxyfen-pyrethroid LLIN group (hazard ratio [HR] 0 * 86, 95% CI 0 * 65-1* 14; p=0 * 28), and 0 * 56 cases per child-year (0 * 51-0 * 61) in the chlorfenapyr-pyrethroid LLIN group (HR 0 * 54, 95% CI 0 * 42-0 * 70; p<0 * 0001).\n", - "\n", - "Interpretation Over 2 years, chlorfenapyr-pyrethroid LLINs provided greater protection from malaria than pyrethroid-only LLINs in an area with pyrethroid-resistant mosquitoes. Pyriproxyfen-pyrethroid LLINs conferred protection similar to pyrethroid-only LLINs. These findings provide crucial second-trial evidence to enable WHO to make policy recommendations on these new LLIN classes. This study confirms the importance of chlorfenapyr as an LLIN treatment to control malaria in areas with pyrethroid-resistant vectors. However, an arsenal of new active ingredients is required for successful long-term resistance management, and additional innovations, including pyriproxyfen, need to be further investigated for effective vector control strategies.\n", - "\n", - "header: Contributions\n", - "\n", - "NP, JC, and CN conceived and designed the study, with contributions from MR, IK, LAM, and MCA, JC and MA led the development of the analysis plan, with input from BA, Aso, and NP, MA, CA, JC, NP, FT, and MCA coordinated the trial implementation with local and national authorities, RA, and AO-H. MA, BF, HA, Aso, and LA led the data collection in the field with and Aso, and AP, each of them, MCA, JC, and NP and NP. Also, BC, BA, and KAB led the molecular laboratory work.\n", - "\n", - "header: Methods\n", - "\n", - "We conducted a three-group, cluster-randomised, superiority trial in three districts (Cove, Zagnanado, and Ouinhi) in Zou Department, central Benin. Malaria is highly endemic in the region, with a peak during the wet season (May-October). The main vector control strategy in the study area is use of pyrethroid-only LLINs distributed en masse once every 3 years, and through routine service delivery by antenatal clinics and vaccination programmes. The primary vectors in the setting are _Anopheles coluzzi_ and _Anopheles gambiae_. There is a high intensity of pyrethroid resistance in the main local vector populations.11\n", - "\n", - "A demographic census of all 123 villages in the study area was done in June, 2019. Clusters consisted of villages, or several villages. To reduce contamination between study groups, clusters consisted of a core (minimum 100 households) surrounded by a buffer, ensuring that core areas of neighbouring clusters were separated by at least 1000 m. Households in the buffer and core received the intervention, but measurement of outcomes only took place in core areas. A detailed description of the study protocol is published elsewhere.\"\n", - "\n", - "Ethics approval was obtained from the Benin Ministry of Health ethics committee (6/30/MS/DC/SGM/DRFMT/CNERS/SA), the London School of Hygiene & Tropical Medicine ethics committee (16237), and the WHO Research Ethics Review Committee (ERC.0003153). The trial was independently monitored by a data safety monitoring board and a trial steering committee.\n", - "\n", - "Epidemiological effect was estimated through measuring malaria case incidence in the 2 years after net distribution by active case detection in a cohort of children. A cohort of approximately 30 children aged 6 months-9 years randomly selected (by simple random sampling using a random number generator) from each cluster (1800 in total) was enrolled in July, 2020. Children were eligible for inclusion if they were permanent residents in the cluster, had no serious illnesses, and written informed consent was obtained from their guardians.\n", - "\n", - "Malaria infection prevalence (in all ages) was measured by cross-sectional surveys at 6 months and 18 months after net distribution. 72 individuals residing in the core of each cluster were randomly selected (using a random number generator) from the census for each cross-sectional survey. Each prevalence surveyed collected data on malaria infection, measured using malaria rapid diagnostic tests (CareStart malaria HRP2/PLDH [pf/pan] combo, DiaSy, UK), net ownership and use, sex, and household assets (as a proxy for socioeconomic status).\n", - "\n", - "Entomological effects were measured using human landing catches in four randomly selected houses every 3 months in each cluster. Insecticide resistance intensity was measured in two clusters per group (six clusters total) at baseline and in each follow-up year.\n", - "\n", - "Written informed consent was obtained from all participants, or from guardians for participants younger than 18 years. Assent was sought for children aged between 10 and 18 years. Written consent was also obtained from volunteer mosquito collectors who were all aged 18 years or older and who were vaccinated against yellow fever. All participation was voluntary, and participants could withdraw at any time. Study investigators sought consent in French or local languages.\n", - "\n", - "header: Table 1: Baseline characteristics\n", - "footer: Data are n or %; n/N unless otherwise stated. EIR=entomological inoculation rate. LLIN=long-lasting insecticidal net. *Proportion of households in the poorest tercile based on the wealth index of the entire study area. †Anaemia defined as haemoglobin concentration of <10 g/dL. ‡Malaria vectors included Anopheles gambiae, Anophelesfunestus, and Anopheles nili\n", - "columns: ['Unnamed: 0_level_0 - Clusters', 'Pyriproxyfen-pyrethroid LLIN group - Clusters', 'Chlorfenapyr-pyrethroid LLIN group - Clusters', 'Pyrethroid-only LLIN group - Clusters']\n", - "\n", - "{\"0\":{\"Unnamed: 0_level_0 - Clusters\":\"Number of clusters\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"20\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"20\",\"Pyrethroid-only LLIN group - Clusters\":\"20\"},\"1\":{\"Unnamed: 0_level_0 - Clusters\":\"Total population in core and buffer areas\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"74822\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"70989\",\"Pyrethroid-only LLIN group - Clusters\":\"69239\"},\"2\":{\"Unnamed: 0_level_0 - Clusters\":\"Mean population in core area of clusters (range)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"1096.1 (225-4524)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"1120.5 (243-5040)\",\"Pyrethroid-only LLIN group - Clusters\":\"1058.1 (252-5217)\"},\"3\":{\"Unnamed: 0_level_0 - Clusters\":\"Number of people per household, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"4.0 (2.3)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"3.9 (2.3)\",\"Pyrethroid-only LLIN group - Clusters\":\"4.1 (2.4)\"},\"4\":{\"Unnamed: 0_level_0 - Clusters\":\"Number of sleeping spaces per household, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"2.2 (1.2)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"2.1 (1.1)\",\"Pyrethroid-only LLIN group - Clusters\":\"2.2 (1.2)\"},\"5\":{\"Unnamed: 0_level_0 - Clusters\":\"Household and participant characteristics in the baseline cross-sectional survey\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"Household and participant characteristics in the baseline cross-sectional survey\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"Household and participant characteristics in the baseline cross-sectional survey\",\"Pyrethroid-only LLIN group - Clusters\":\"Household and participant characteristics in the baseline cross-sectional survey\"},\"6\":{\"Unnamed: 0_level_0 - Clusters\":\"Low socioeconomic status*\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"35.8%; 529\\/1479\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"36.2%; 533\\/1474\",\"Pyrethroid-only LLIN group - Clusters\":\"29.0%; 431\\/1487\"},\"7\":{\"Unnamed: 0_level_0 - Clusters\":\"LLIN ownership (at least one LLIN in the household)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"96.4%; 1426\\/1479\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"97.1%; 1431\\/1474\",\"Pyrethroid-only LLIN group - Clusters\":\"95.1%; 1415\\/1488\"},\"8\":{\"Unnamed: 0_level_0 - Clusters\":\"LLIN usage in all age groups the night before survey\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"95.8%; 1312\\/1370\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"94.9%; 1258\\/1326\",\"Pyrethroid-only LLIN group - Clusters\":\"96.5%; 1343\\/1392\"},\"9\":{\"Unnamed: 0_level_0 - Clusters\":\"Malaria infection prevalence in all age groups\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"43.1%; 636\\/1475\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"40.7%; 598\\/1468\",\"Pyrethroid-only LLIN group - Clusters\":\"46.5%; 690\\/1485\"},\"10\":{\"Unnamed: 0_level_0 - Clusters\":\"Anaemia prevalence in children aged 6 months-4 years\\u2020\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"53.3%; 136\\/255\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"53.3%; 131\\/246\",\"Pyrethroid-only LLIN group - Clusters\":\"50.2%; 122\\/243\"},\"11\":{\"Unnamed: 0_level_0 - Clusters\":\"Entomological characteristics\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"Entomological characteristics\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"Entomological characteristics\",\"Pyrethroid-only LLIN group - Clusters\":\"Entomological characteristics\"},\"12\":{\"Unnamed: 0_level_0 - Clusters\":\"Human biting density per person per night indoors\\u2021, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"32.9 (28.9)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"21.6 (21.0)\",\"Pyrethroid-only LLIN group - Clusters\":\"29.2 (25.3)\"},\"13\":{\"Unnamed: 0_level_0 - Clusters\":\"Human biting density per person per night outdoors\\u2021, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"20.3 (17.6)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"16.4 (17.4)\",\"Pyrethroid-only LLIN group - Clusters\":\"20.6 (20.2)\"},\"14\":{\"Unnamed: 0_level_0 - Clusters\":\"Indoor EIR per person per night, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"0.62 (0.93)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"0.48 (0.65)\",\"Pyrethroid-only LLIN group - Clusters\":\"0.96 (1.18)\"},\"15\":{\"Unnamed: 0_level_0 - Clusters\":\"Outdoor EIR per person per night, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"0.27 (0.45)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"0.17 (0.44)\",\"Pyrethroid-only LLIN group - Clusters\":\"0.33 (0.45)\"},\"16\":{\"Unnamed: 0_level_0 - Clusters\":\"Children (aged 6 months-10 years) at cohort enrolment\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"Children (aged 6 months-10 years) at cohort enrolment\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"Children (aged 6 months-10 years) at cohort enrolment\",\"Pyrethroid-only LLIN group - Clusters\":\"Children (aged 6 months-10 years) at cohort enrolment\"},\"17\":{\"Unnamed: 0_level_0 - Clusters\":\"Proportion of children younger than 5 years\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"52.3%; 316\\/604\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"50.6%; 304\\/601\",\"Pyrethroid-only LLIN group - Clusters\":\"53.6%; 322\\/601\"},\"18\":{\"Unnamed: 0_level_0 - Clusters\":\"Proportion of female children\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"47.2%; 285\\/604\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"48.4%; 291\\/601\",\"Pyrethroid-only LLIN group - Clusters\":\"48.8%; 293\\/601\"},\"19\":{\"Unnamed: 0_level_0 - Clusters\":\"Net usage the night before survey\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"99.0%; 598\\/604\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"98.7%; 593\\/601\",\"Pyrethroid-only LLIN group - Clusters\":\"99.2%; 596\\/601\"}}\n", - "\n", - "header: Methods\n", - "\n", - "Data collected for the study, including deidentified participant data and data dictionaries, might be made available at the end of the third year of trial follow-up upon reasonable request to the corresponding author.\n", - "\n", - "header: Funding UNITAID, The Global Fund.\n", - "\n", - "Pyrethroid-treated long-lasting insecticidal nets (LLINs) are the main malaria prevention intervention in sub-Saharan Africa and have been the major contributor to the estimated 1 * 5 billion malaria cases and 7 * 6 million malaria deaths averted in the past two decades. However, since 2015, the decline in malaria cases has stalled, and between 2019 and 2020, a rebound in malaria transmission was reported in some areas of sub-Saharan Africa.1 This rebound is likely to be a consequence of the continued spread of resistance to pyrethroid insecticides in malaria-transmitting mosquitoes, coinciding with a plateau in malaria control investment, leading to suboptimal coverage of interventions. Urgent actions are needed to prevent malaria resurgences, which were previously observed in sub-Saharan Africa in the 1980s after malaria control measures were scaled down.2\n", - "In the past 10 years, new insecticide-treated nets containing non-pyrethroid insecticides and insecticide synergists, in combination with pyrethroids, have been shown to be safe and efficacious against malaria mosquito vectors.14 The first net combined a pyrethroid insecticide and the synergistic piperonyl butoxide (PBO) and, following a randomised controlled trial,1 received a WHO policy recommendation in 2017. Other next-generation LLINs have shown encouraging results against resistant vectors in laboratory and small-scale entomological studies.47 One of these nets is a dual active-ingredient LLIN combining a pyrethroid and a pyrrole (chlorfenapyr). Both insecticides lead to mosquito mortality, with chlorfenapyr disrupting the production of cellular energy rather than targeting the nervous system, as pyrethroids do. Another dual active-ingredient LLIN combines a pyrethroid with an insect growth regulator (pyriprosyfen), which leads to sterility in exposed adult mosquitoes.\n", - "\n", - "The first randomised trial of these two products was conducted in Tanzania and showed that the chlorfenapyr-pyrethroid LLINs nearly halved malaria infection over 2 years in villages that received chlorfenapyr-pyrethroid LLINs compared with villages that received pyrethroid-only LLINs. PBO-pyrethroid LLINs were consistently found to be more effective than pyrethroid-only LLINs; however, the duration of the superior effect varied from 12 months to 21 months according to the different trials.\n", - "\n", - "header: Table 2: Malaria case incidence in children aged 6 months–10 years per year of follow-up and overall (including active visits only)\n", - "footer: Each intervention was compared with the pyrethroid-only LLIN group for the same timepoint. LLIN=long-lasting insecticidal net. *A p value of <0·025 was considered significant after Bonferroni correction\n", - "columns: ['Unnamed: 0_level_0 - Overall', 'Number of clinical malaria episodes - Overall', 'Child- years of follow-up - Overall', 'Incidence, cases per child-year (95% Cl) - Overall', 'Hazard ratio - Overall', '95%Cl - Overall', 'p value* - Overall']\n", - "\n", - "{\"0\":{\"Unnamed: 0_level_0 - Overall\":\"Pyrethroid-only LLIN group\",\"Number of clinical malaria episodes - Overall\":\"897\",\"Child- years of follow-up - Overall\":\"874.3\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"1.03 (0.96-1.09)\",\"Hazard ratio - Overall\":\"1 (ref)\",\"95%Cl - Overall\":null,\"p value* - Overall\":null},\"1\":{\"Unnamed: 0_level_0 - Overall\":\"Pyriproxyfen-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"744\",\"Child- years of follow-up - Overall\":\"883.8\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.84 (0.78-0.90)\",\"Hazard ratio - Overall\":\"0.86\",\"95%Cl - Overall\":\"0.65-1.14\",\"p value* - Overall\":\"0.28\"},\"2\":{\"Unnamed: 0_level_0 - Overall\":\"Chlorfenapyr-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"494\",\"Child- years of follow-up - Overall\":\"887.3\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.56 (0.51-0.61)\",\"Hazard ratio - Overall\":\"0.54\",\"95%Cl - Overall\":\"0.42-0.70\",\"p value* - Overall\":\"<0.0001\"},\"3\":{\"Unnamed: 0_level_0 - Overall\":\"Year 1\",\"Number of clinical malaria episodes - Overall\":\"Year 1\",\"Child- years of follow-up - Overall\":\"Year 1\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"Year 1\",\"Hazard ratio - Overall\":\"Year 1\",\"95%Cl - Overall\":\"Year 1\",\"p value* - Overall\":\"Year 1\"},\"4\":{\"Unnamed: 0_level_0 - Overall\":\"Pyrethroid-only LLIN group\",\"Number of clinical malaria episodes - Overall\":\"267\",\"Child- years of follow-up - Overall\":\"344.4\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.77 (0.69-0.87)\",\"Hazard ratio - Overall\":\"1 (ref)\",\"95%Cl - Overall\":null,\"p value* - Overall\":null},\"5\":{\"Unnamed: 0_level_0 - Overall\":\"Pyriproxyfen-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"211\",\"Child- years of follow-up - Overall\":\"342.7\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.62 (0.54-0.70)\",\"Hazard ratio - Overall\":\"0.83\",\"95%Cl - Overall\":\"0.51-1.35\",\"p value* - Overall\":\"0.46\"},\"6\":{\"Unnamed: 0_level_0 - Overall\":\"Chlorfenapyr-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"124\",\"Child- years of follow-up - Overall\":\"349.2\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.36 (0.30-0.42)\",\"Hazard ratio - Overall\":\"0.46\",\"95%Cl - Overall\":\"0.30-0.72\",\"p value* - Overall\":\"0.0005\"},\"7\":{\"Unnamed: 0_level_0 - Overall\":\"Year 2\",\"Number of clinical malaria episodes - Overall\":\"Year 2\",\"Child- years of follow-up - Overall\":\"Year 2\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"Year 2\",\"Hazard ratio - Overall\":\"Year 2\",\"95%Cl - Overall\":\"Year 2\",\"p value* - Overall\":\"Year 2\"},\"8\":{\"Unnamed: 0_level_0 - Overall\":\"Pyrethroid-only LLIN group\",\"Number of clinical malaria episodes - Overall\":\"630\",\"Child- years of follow-up - Overall\":\"529.9\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"1.19 (1.10-1.29)\",\"Hazard ratio - Overall\":\"1 (ref)\",\"95%Cl - Overall\":null,\"p value* - Overall\":null},\"9\":{\"Unnamed: 0_level_0 - Overall\":\"Pyriproxyfen-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"533\",\"Child- years of follow-up - Overall\":\"541.1\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.98 (0.90-1.07)\",\"Hazard ratio - Overall\":\"0.88\",\"95%Cl - Overall\":\"0.68-1.13\",\"p value* - Overall\":\"0.31\"},\"10\":{\"Unnamed: 0_level_0 - Overall\":\"Chlorfenapyr-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"370\",\"Child- years of follow-up - Overall\":\"538.1\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.69 (0.62-0.76)\",\"Hazard ratio - Overall\":\"0.57\",\"95%Cl - Overall\":\"0.45-0.73\",\"p value* - Overall\":\"<0.0001\"}}\n", - "\n", - "header: Table 3: Malaria infection and anaemia prevalence in the study population at 6 months and 18 months after net distribution (intention-to-treat analysis)\n", - "footer: Anaemia was defined as a haemogloblin concentration of <10 g/dL. LLIN=long-lasting insecticidal net. OR=odds ratio. *A p value of <0·025 was considered significant after Bonferroni correction\n", - "columns: ['Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution', 'Malaria infection - n/N - 6 months after net distribution', 'Malaria infection - Prevalence - 6 months after net distribution', 'Malaria infection - OR - 6 months after net distribution', 'Malaria infection - 95% Cl - 6 months after net distribution', 'Malaria infection - p value* - 6 months after net distribution', 'Anaemia in children younger than 5 years - n/N - 6 months after net distribution', 'Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution', 'Anaemia in children younger than 5 years - OR - 6 months after net distribution', 'Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution', 'Anaemia in children younger than 5 years - p value* - 6 months after net distribution']\n", - "\n", - "{\"0\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Pyrethroid-only LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"412\\/1471\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"28.0%\",\"Malaria infection - OR - 6 months after net distribution\":\"1 (ref)\",\"Malaria infection - 95% Cl - 6 months after net distribution\":null,\"Malaria infection - p value* - 6 months after net distribution\":null,\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"99\\/241\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"41.1%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"1 (ref)\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":null,\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":null},\"1\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Pyriproxyfen-pyrethroid LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"394\\/1463\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"26.9 %\",\"Malaria infection - OR - 6 months after net distribution\":\"0.92\",\"Malaria infection - 95% Cl - 6 months after net distribution\":\"0.63-1.35\",\"Malaria infection - p value* - 6 months after net distribution\":\"0.67\",\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"117\\/250\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"46.8%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"1.24\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":\"0.71-2.18\",\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":\"0.45\"},\"2\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Chlorfenapyr-pyrethroid LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"231\\/1475\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"15.7%\",\"Malaria infection - OR - 6 months after net distribution\":\"0.47\",\"Malaria infection - 95% Cl - 6 months after net distribution\":\"0.32-0.69\",\"Malaria infection - p value* - 6 months after net distribution\":\"0.0002\",\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"82\\/241\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"34.0%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"0.71\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":\"0.40-1.26\",\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":\"0-24\"},\"3\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"18 months after net distribution\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"18 months after net distribution\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"18 months after net distribution\",\"Malaria infection - OR - 6 months after net distribution\":\"18 months after net distribution\",\"Malaria infection - 95% Cl - 6 months after net distribution\":\"18 months after net distribution\",\"Malaria infection - p value* - 6 months after net distribution\":\"18 months after net distribution\",\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"18 months after net distribution\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"18 months after net distribution\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"18 months after net distribution\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":\"18 months after net distribution\",\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":\"18 months after net distribution\"},\"4\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Pyrethroid-only LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"576\\/1489\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"38.7%\",\"Malaria infection - OR - 6 months after net distribution\":\"1 (ref)\",\"Malaria infection - 95% Cl - 6 months after net distribution\":null,\"Malaria infection - p value* - 6 months after net distribution\":null,\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"118\\/252\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"46.8%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"1 (ref)\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":null,\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":null},\"5\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Pyriproxyfen-pyrethroid LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"564\\/1478\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"38.2%\",\"Malaria infection - OR - 6 months after net distribution\":\"0.97\",\"Malaria infection - 95% Cl - 6 months after net distribution\":\"0.69-1.37.\",\"Malaria infection - p value* - 6 months after net distribution\":\"0.87\",\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"108\\/245\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"44.1%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"0.84\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":\"0.40-1.79\",\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":\"0.65\"},\"6\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Chlorfenapyr-pyrethroid LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"414\\/1483\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"27.9%\",\"Malaria infection - OR - 6 months after net distribution\":\"0.60\",\"Malaria infection - 95% Cl - 6 months after net distribution\":\"0.43-0.85\",\"Malaria infection - p value* - 6 months after net distribution\":\"0.0041\",\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"118\\/246\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"48.0%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"1.08\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":\"0.51-2.28\",\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":\"0.84\"}}\n", - "\n", - "header: Introduction: Added value of this study\n", - "\n", - "To our knowledge, this is the second study aiming to compare the efficacy of the next generation of LLINs combining _p_iprosyfen or chlorfenapyr and pyrethroid versus standard pyrethroid-only LLINs, and the first of its kind to be conducted in west Africa. This trial confirmed the superior efficacy of chlorfenapyr-pyrethroid LLINs, in terms of malaria case incidence, prevalence, and transmission in children, over 2 years of use in the community, in an area of moderate malaria transmission and with high insecticide resistance intensity in malaria vectors, in Benin. However, pyrioxyfen-pyrethroid LLINs did not offer additional protection against malaria outcomes compared with pyrethroid-only LLINs.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ITNCondition` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Data sharing: Acknowledgments\n", - "\n", - "This trial was funded by a grant to the London School of Hygiene & Tropical Medicine from UNITAD and The Global Fund via the Innovative Vector Control Consortium. This trial is part of a larger project. The New Nets project: We thank the communities from the three study districts (Cow, Zagnanado, Ouinhi), particularly the participants, children and their parents, community health workers, staff in health clinics, and the regional study team. We thank colleagues and staff at the Centre de Recherche Entomologique de Cotonou and those at the National Malaria Control Program. We also thank the trial system committee, the data safety monitoring board, and Charles Dickinson (School of Epidemiology and Public Health, University of Ottawa, Ottawa, ON, Canada) for supporting the mapping and cluster delineation.\n", - "\n", - "header: Methods\n", - "\n", - "Data collected for the study, including deidentified participant data and data dictionaries, might be made available at the end of the third year of trial follow-up upon reasonable request to the corresponding author.\n", - "\n", - "header: Outcomes\n", - "\n", - "The primary outcome was malaria case incidence (infrared frontal temperature >37.5degC or reported fever in the previous 48 h, and positive malaria rapid diagnostic test) in children enrolled in the active case detection cohort in the 2 years after net distribution. Visits of children in the cohort at health facilities were monitored and the results of malaria rapid diagnostic tests and any treatment given were recorded. However, it was difficult to assess with certainty if malaria rapid diagnostic tests were used only if the child was symptomatic (as our protocol specified); therefore, the passive data was not included in the primary analyses.\n", - "\n", - "Secondary clinical outcomes were malaria infection prevalence in all age groups and anaemia (defined as haemoglobin concentration <10 g/dL) prevalence in children aged 5 years or younger at 6 months and 18 months after net distribution.\n", - "\n", - "Type and duration of adverse events related to usage of nets were recorded using a prespecified questionnaire at each cohort visit and during net usage and cross-sectional surveys. Data on hospitalisation and death in children in the cohort were collected by interviewing the child's guardian and reviewing the hospital record, following receipt of consent.\n", - "\n", - "The primary entomological outcome was entomological inoculation rate, measured as the mean number of _Plasmodium_ spp infective malaria vectors collected per person per night measured indoors and outdoors. Secondary entomological outcomes were vector density (number of mosquitoes caught per person per night), sporozoite rate, and species composition. Centers for Disease Control and Prevention bottle bioassays were performed by exposing adult female _An gambiae_, collected as larvae, to alpha-cypermethrin for 30 min (1, 2, 5, and 10 times the diagnostic dose), and to chlorfenrapy (100 mg/bottle) and pyriproxyfen (100 mg/bottle) for 60 min each year.(r) Mortality was recorded at 30 min for all four doses of alpha-cypermethrin (insectidic resistance intensity measurement), and at 24, 48, and 72 h after exposure for chlorfenapyr. The reduction in fecundity rate induced by pyriproxyfen relative to unexposed mosquitoes was assessed by ovarian dissection, 3 days after pyriproxyfen exposure. Other outcomes included in the protocol (parity, resting behaviour, survivorship, and other resistance measures) are still to be analysed and will be published elsewhere.\n", - "\n", - "header: Statistical analysis\n", - "\n", - "The sample size calculations for epidemiological data collection were calculated using the method of Hayes and Moulton.(r) The study was designed to detect a 30% difference in malaria case incidence, assuming a control group incidence of 1 malaria case per child-year and a coefficient of variation of 0-3 between clusters. This design required 20 clusters per group and 25 (20+5 allowing for loss to follow-up) children per cluster followed up for 2 years to give 80% power. Due to the delay in enrolment, which resulted in a shorter follow-up time, the number of children per cluster was increased to 30 (1800 children total). This sample size calculation includes adjustment for multiple testing (allowing for the three groups) using a Bonferroni-corrected two-sided a of 2.5%.\n", - "\n", - "For malaria infection prevalence, it was assumed that the prevalence in the reference group was 40%, with a coefficient of variation between clusters of 0-3. With 72 individuals per cluster, the study had 80% power to detect a 30% lower prevalence in the intervention groups compared with the reference group, using a Bonferroni-corrected a for multiple comparisons.\n", - "\n", - "The primary intention-to-treat analysis was a comparison of incidence of clinical malaria episodes between each dual active-ingredient LLIN group and the\n", - "\n", - "header: Abstract\n", - "\n", - "Efficacy of pyriproxyfen-pyrethroid long-lasting insecticidalnets (LLINs) and chlorfenapyr-pyrethroid LLINs compared with pyrethroid-only LLINs for malaria control in Benin: a cluster-randomised, superiority trial\n", - "\n", - "Manfred Accomphesi\n", - "\n", - "\n", - "Background New classes of long-lasting insecticidal nets (LLINs) combining mixtures of insecticides with different modes of action could put malaria control back on track after rebounds in transmission across sub-Saharan Africa. We evaluated the relative efficacy of pyriproxyfen-pyrethroid LLINs and chlorfenapyr-pyrethroid LLINs compared with standard LLINs against malaria transmission in an area of high pyrethroid resistance in Benin.\n", - "\n", - "header: Implications of all the available evidence\n", - "\n", - "Given the positive findings, both in Benin and Tanzania, for chlorfenapyr-pyrethroid LLINs, they are likely to become the first WHO-recommended LLINs impregnated with an insecticide class other than pyrethroids. The absence of superior efficacy of pyrioxyfen-pyrethroid LLINs compared with standard pyrethroid-only LLINs is consistent with the results of the previous Tanzania study and calls into question the role of the current pyrioxyfen-pyrethroid LLINs in future malaria vector strategies.\n", - "\n", - "header: Study design and participants: Randomisation and masking\n", - "\n", - "We used restricted randomisation to randomly assign 60 clusters to one of three LLIN groups (1:1:1), to receive nets containing either pyriproxyfen and alpha-cypermethrin (pyrethroid), chlorfenapyr and alpha-cypermethrin, or alpha-cypermethrin only (reference). Restricted randomisation was used to ensure balanced cluster allocation between study groups with respect to population size, malaria infection prevalence (measured in the baseline survey), district (n=3), and socioeconomic status.\n", - "\n", - "To mask the net types from the participants and the field workers, the nets were designed to look as similar as possible. Each net was rectangular, was requested to be the same size (1-8 m length, 1-9 m width, and 1-8 m height), and blue. To differentiate the nets in the field, a colour-coded loop was attached to the net. All data analyses were performed masked.\n", - "\n", - "header: Role of the funding source\n", - "\n", - "The funders of the study had no role in study design, data collection, data analysis, data interpretation, writing of the report, or in the decision to submit for publication.\n", - "\n", - "header: Results\n", - "\n", - "Between May 23 and June 24, 2019, 53854 households and 216 289 inhabitants were accounted for in the initial census and included in the study. The households were delineated into 61 clusters, with one subsequently excluded due to extensive seasonal flooding (figure). Baseline cross-sectional epidemiological and entomological surveys were conducted between October and November, 2019 (table 1). The malaria infection prevalence was 43 5% (1924 of 4428 participants, cluster range 15 1-72 796) and population self-reported LLIN usage was 95 7% (3913 of 4088 participants). Cluster demographics and malaria prevalence were similar between groups (table 1). Entomological inoculation rate was 0 68 _Plasmodium_ spp infective bites per person per night (cluster range 0 00-3 80) indoors and 0 26 per person per night (0 00-1 88) outdoors.\n", - "\n", - "Between March 19 and 22, 2020, 115 323 LLINs were distributed to 54 300 households in an updated census, with 97 1% of households receiving at least one net per household. Active ingredients in the new nets were found to be within or higher than the acceptable target limits depending on LLIN brand (appendix p 4). Study net usage was highest (5532 [76 8%] of 7206 participants) at 9 months after distribution, following a second hang-up campaign, but had decreased by 24 months (4032 [60 6%] of 6654). Study net coverage and usage indicators were similar between study groups up to 18 months after net distribution. At 24 months, pyriproxyfen-pyrethroid LLIN usage and ownership was the lowest (appendix pp 5-6). Use of any type of LLIN (study LLINs and others) remained greater than 80% up to 24 months after distribution (appendix p 7).\n", - "\n", - "In the 2283 households that were randomly selected for post-intervention cohort follow-up, 3129 children were eligible, 1829 of whom were randomly selected, and consent was obtained for 1806 (figure). Among the 2849 and 2771 households randomly selected at 6 months and 18 months after LLIN distribution for the malaria prevalence cross-sectional surveys, 4781 (85 1%) of 5620 households consent, with a similar proportion in the two surveys. The remaining households were either not available during the visit (775 [13 8%] of) or declined to participate (64 [1 1%]; appendix p 8).\n", - "\n", - "Children aged 6 months-9 years enrolled for active case detection were monitored for 21 months, for a total follow-up time of 2645 4- child-years at risk. Loss to follow-up was similar between groups (figure). At enrolment, children were balanced on age, sex, and net usage. During the 21-month follow-up period, we detected 2135 malaria cases through active case detection (table 2). The mean malaria case incidence over 21 months of follow-up was 1 03 cases per child-year (95% CI 0 96-1 09) in the pyrethroid-only LLIN reference group, 0 84 cases per child-year (0 78-70 90) in the pyriproxyfen-pyrethroid LLIN group (hazard ratio [HR] 0 86, 95% CI 0 65-1 46; p = 0 - 28), and 0 56 cases per child-year (0 51-0 64) in the chlorfenapry-pyrethroid LLIN group (HR 0 54, 95% CI 0 - 42-0 70; p < 0 0001; table 2). The strongest effect was observed in the first year of follow-up in the chlorfenapry-pyrethroid group (HR 0 46, 95% CI 0 30-0 72; p = 0 - 0005; table 2). When combining active and passive visits, the number of cases detected nearly doubled; however, the effect size in comparison to the reference group was similar for both intervention nets (appendix p 9).\n", - "\n", - "Malaria infection prevalence was 23 5% (1037 of 4409 participants) at 6 months and 34 9% (1554 of 4450) at 18 months after net distribution (table 3). There was strong evidence for a reduction of malaria infection prevalence in the chlorfenapry-pyrethroid LLIN group at 6 months (15 7%; odds ratio [OR] 0 47, 95% CI 0 32-0 69; p = 0 0002) and at 18 months (27 9%; OR 0 60 - 60, 0 - 43-0 85; p = 0 004) compared with the reference group (28 - 0% at 6 months and 38 7% at 18 months; table 3). In the pyriproxyfen-pyrethroid group, there was no evidence for a reduction in malaria prevalence at 6 months (26 9%; OR 0 - 92, 95% CI 0 63-1 35; p = 0 - 67) or 18 months (38 2%; OR 0 97 0, 0 69-1 37; p = 0 87) compared with the reference group. Results were similar for the per-protocol analysis (appendix p 1). There was no evidence of a reduction in moderate to severe anaemia prevalence in either intervention group (table 3). The post-hoc analysis adjusting for covariates used in the randomisation did not change the interpretation of the results (appendix pp 12-13).\n", - "\n", - "\n", - "Adverse events related to study nets were reported in 528 (45-496) of 1162 participants surveyed at 1 month after net distribution. The highest proportion of adverse events was reported in the pyrethroid-only LLIN group (247 [63-8%] of 387 participants), followed by the pyriproyfen-pyrethroid LLIN group (212 [52-5%] of 404) and then the chlorfenapy-pyrethroid LLIN group (69 [18-6%] of 371). Facial burning (392 [33-7%] of 1162 participants), and skin irritation or itchiness (244 [20-9%]) were the most common adverse events in all groups. Adverse events were rare in all three groups at all later timepoints (appendix P 14-15). We recorded 44 serious adverse events (including three deaths) in the cohort children, with 32 (72-7%) documented as severe malaria (11 cases in the pyriproyfen-pyrethroid LLIN group, ten in the chlorfenapy-pyrethroid LLIN group, and 11 in the pyrethroid-only LLIN group). No serious adverse events related to net use were reported.\n", - "\n", - "A total of 259265 mosquitoes were collected over 3840 collection nights indoors and outdoors, of which 20-9% (29814 from indoors and 24436 from outdoors) were malaria vectors, with _An gambiae_ sensu that the most predominant. Overall, indoor entomological inoculation rate was lower in both intervention groups than in the reference group, with a mean entomological inoculation rate of 0-90 infectious bites per night per person in the chlorfenapy-pyrethroid LLIN group (rate ratio [RR] 0-34, 95% CI 0-18-0-62; p=0-0005), 0-12 in the pyriproyfen-pyrethroid LLIN group (RR 0-42, 0-2-3-0-74; p=0-0028), and 0-28 in the pyrethroid-only LLIN group (table 4). Mean indoor vector density appeared to be lower in the chlorfenapy-pyrethroid LLIN group (10-18 bites per person per night, density ratio 0-44, 95% CI 0-2-30-84; p=0-014), and in the pyriproyfen-pyrethroid LLIN group (13-6 bites per person per night, density ratio 0-58, 0-30-1-12; p=0-011) than in the reference group (23-0 bites per person per night, but the latter difference was not statistically significant (table 4). Adjusting for baseline vector density in the models gave similar results (appendix P 16). There was no significant difference in sporozoite rate in any of the intervention groups compared with the reference group (table 4).\n", - "\n", - "Reduction in outdoor entomological inoculation rate compared with the reference group was observed only in the chlorfenapy-pyrethroid LLIN group (RR 0-30, 95% CI 0-13-0-67; p=0-0035; appendix P 17). There was very weak evidence for a reduction in outdoor entomological inoculation rate in the pyriproyfen-pyrethroid LLIN group compared with the pyrethroid-only group (RR 0-58, 0-30-1-13; p=0-11). Similar effects were observed for outdoor vector density for both intervention nets (appendix P 17).\n", - "\n", - "Post-intervention pyrethrold resistance intensity was high across the study groups in _An gambiae_ sensu lato, with mean mortality of 85% or less after exposure to 10 times the diagnostic concentrations of alpha-cypentrohin in year 2 (appendix P 18). No resistance to chlorfenapy was observed during either year after net distribution (appendix P 18). Exposure of _An gambiae_ sensu lato to pyriproyfen led to a high reduction in fecundity rate relative to unexposed control mosquitoes over the 2 years after net distribution (73-2%, 95% CI 62-2-82-4 in year 1, and 76-6%, 66-6-84-9 in year 2).\n", - "\n", - "header: Discussion\n", - "\n", - "This trial assessed the efficacy of two dual active-ingredient LLINs in an area of Benin with malaria vectors that are highly resistant to pyrethroids and found that chlorfenapy-pyrethroid LLINs provided significantly better protection against malaria for up to 2 years after net distribution compared with pyrethroid-only LLINs. Children aged 6 months-10 years living in clusters that received chlorfenapy-pyrethroid LLINs had a 46% lower incidence of malaria over 2 years after LLIN distribution;\n", - "\n", - "\\begin{table}\n", - "\\begin{tabular}{c c c c c c c c c c} & **Malaria infection** & \\multicolumn{6}{c}{**Anaemia in children younger than 5 years**} \\\\ \\hline n/N & Prevalence & OR & 95\\% CI & p valuea & n/N & Prevalence & OR & 95\\% CI & p valuea \\\\ \\hline\n", - "**6 months after net distribution** & & & & & & & & \\\\ Pyrethroid-only LLIN group & 412/1471 & 28\\(\\,\\)0\\% & 1 (ref) & – & – & 992/41 & 41\\(\\,\\)1\\% & 1 (ref) & – & – \\\\ Pyriproyfen-pyrethroid & 394/1463 & 26\\(\\,\\)9\\% & 0\\(\\,\\)92 & 0\\(\\,\\)\n", - "\n", - "63\\(\\,\\)45 & 0\\(\\,\\)67 & 117/250 & 46\\(\\,\\)8\\% & 124 & 0.71–218 & 0.45 \\\\ LLIN group & & & & & & & & & \\\\ Chlorfenapy-pyrethroid & 231/1475 & 157\\(\\,\\)\\% & 0\\(\\,\\)47 & 0\\(\\,\\)32\\(\\,\\)0\\(\\,\\)669 & 0\\(\\,\\)0002 & 82/241 & 34\\(\\,\\)0\\% & 0.71 & 0.40–126 & 0.24 \\\\ LLIN group & & & & & & & & & \\\\\n", - "**18 months after net distribution** & & & & & & & & \\\\ Pyrethroid-only LLIN group & 576/14/849 & 38\\(\\,\\)7\\% & 1 (ref) & – & – & 118/25 & 46\\(\\,\\)8\\% & 1 (ref) & – & – \\\\ Pyriproyfen-pyrethroid & 564/14/83 & 38\\(\\,\\)2\\% & 0\\(\\,\\)97 & 0\\(\\,\\)69\\(\\,\\)13\\(\\,\\)07 & 0\\(\\,\\)87 & 108/245 & 44\\(\\,\\)1\\% & 0.84 & 0.40–179\n", - "\n", - "\n", - "participants of any age had 53% lower odds of malaria infection at 6 months and 40% lower odds at 18 months after LLIN distribution, and were exposed to a 66% reduction in entomological inoculation rate compared with those living in clusters that received pyrethroid-only LLINs. Similar gains were not observed with the pyriproxyfen-pyrethroid LLIN, with a small reduction in malaria incidence in the first year of the study that was attenuated in year 2, and no effect on malaria infection prevalence in either year, compared with the pyrethroid-only reference group. However, a 58% reduction in indoor entomological inoculation rate was detected with the pyriproxyfen-pyrethroid LLIN. Both dual active-ingredient LLINs provided a similar safety profile compared with standard pyrethroid-only LLINs, with short-lasting skin irritation and facial burning (commonly associated with the pyrethroid alpha-Cybermethrin) most frequently reported in participants using pyrethroid-only LLINs and pyriproxyfen-pyrethroid LLINs. A similar observation has been reported in another randomised controlled trial evaluating the same LLINs, and this is likely to be associated with the high concentration of alpha-Cybermethrin in those nets compared with the chlorfenapy-pyrethroid LLINs.\n", - "\n", - "To our knowledge, this is the second cluster-randomised trial to provide strong evidence of increased efficacy of chlorfenapy-pyrethroid LLINs relative to pyrethroid-only LLINs for malaria control in areas with pyrethroid-resistant vectors. Chlorfenapyr insecticide on nets has already shown improved control of pyrethroid-resistant _An gambiae_ in laboratory and semi-field experimental huts against resistant malaria vectors.3- The previous trial in Tanzania reported a malaria case incidence reduction of 44%, a 55% decrease in odds of malaria prevalence, and 85% reduction in entomological inoculation rate compared with the pyrethroid-only group, consistent with these results, despite the differing malaria vector populations and intensity of pyrethroid resistance in the mosquitoes.4 In both trials, per-protocol analyses suggested that individuals living in the chlorfenapy-pyrethroid clusters benefited regardless of whether they were using a study net, suggesting a community effect of the net, which was likely to be obtained by the overall reduction of mosquito density, which remained considerably lower than in the pyrethroid-only group in both years of this trial after net distribution. Community effect is also indicated by the reduction in both indoor and outdoor entomological indices in the chlorfenapy-pyrethroid group in the present study.\n", - "\n", - "Similar to the trial in Tanzania,4 the pyriproxyfen-pyrethroid LLINs we tested did not provide additional protection against malaria infection or disease compared with pyrethroid-only LLINs. However, there was evidence of an effect on indoor transmission, with the strongest effect seen in the first year after net distribution. Tino and colleagues5 have previously reported a 12% reduction in malaria incidence and 49% reduction in entomological \n", - "inoculation rate with a pyriproxyfen-pyrethroid LLIN compared with pyrethroid-only LLINs over 18 months in a stepped-wedge randomised trial in Burkina Faso. The different study design, length of follow-up, and brand of net might explain the differences seen between the two studies. In Benin, laboratory and semi-field experimental hut studies have shown the superior efficacy of pyriproxyfen-pyrethroid nets on entomological indicators compared with standard pyrethroid-only LLINs,2,3 and are consistent with the decrease in indoor vector density observed in our trial. However, the decrease in indoor vector density did not translate into significant disease reduction, suggesting that a larger effect on malaria transmission (entomological inoculation rate) is crucial to provide community protection. Although lower net usage in the pyriproxyfen-pyrethroid LLIN group could have partially contributed to the lack of effect, we are also assessing textile durability, sterilisation effects, and chemical content of pyriproxyfen-pyrethroid LLINs to fully understand these results.\n", - "\n", - "With several trials now showing the superior efficacy of next-generation LLINs over pyrethroid-only nets, the importance of developing new active ingredients to use on nets in the future is brought to the fore. The distribution of next-generation LLINs across sub-Saharan Africa has already begun, with the development of the brands of chlorfenapry-pyrethroid nets underway,3 as well as the development of chlorfenapry product formulations for indoor residual spraying.3 Although chlorfenapry-pyrethroid nets offer a superior alternative to pyrethroid-only nets in areas of pyrethroid resistance, to preserve their effectiveness optimal resistance-management strategies should be used. There was no evidence of the development of resistance to chlorfenapry during the 2 years of this trial; however, the wide-scale deployment of one type of insecticide risks the rapid development of resistance, which could result in a similar situation to the current widespread resistance to pyrethroids. The nets should be deployed ideally alongside other insecticides as part of a strategy aimed to reduce selection pressure for development of resistance in mosquito vectors. Given the significant effect of the pyriproxyfen-pyrethroid LLINs on malaria transmission during the first year after net distribution, additional studies are necessary to evaluate the potential value of active ingredients such as pyriproxyfen, which are not primarily intended to kill resistant adult mosquitoes but rather to sterilise them. There might still be a role for these hormone growth-regulator insecticides in combination with other active ingredients for net treatment in long-term resistance management.\n", - "\n", - "If WHO policy recommendations are made on the basis of this trial's results, future chlorfenapry-pyrethroid nets might not have to undergo the rigorous trial testing that Interceptor G2 has. Caution should, however, be taken to assess the comparative efficacy, quality, and durability of the second-in-class chlorfenapry-pyrethroid nets as they might use different concentrations of chlorfenapry, different pyrethroids, or different net materials. Considering the time and resources required to generate evidence of epidemiological effect using randomised trials, non-inferiority experimental hut trials, recently proposed by WHO,3 might be a useful alternative for second-in-class chlorfenapry-pyrethroid LLINs. Further work to investigate the capacity of such entomological studies to predict the performance of the trial nets against clinical malaria is ongoing.3\n", - "\n", - "Footnote 3: endnote: [https://www.thelanct.com/Vol.401](https://www.thelanct.com/Vol.401). February 11, 2023\n", - "\n", - "Our study has some limitations. First, net ownership and use were high throughout the study; however, this did not always equate to study net use, which was approximately 60% at 2 years after net distribution, with overall usage of greater than 80%. Similar findings have been observed in other bednet trials, and probably indicate populations choosing to discard damaged nets when other nets are readily available. Second, the three types of nets were not completely identical and differences in textile material and size might have resulted in differential net usage between the groups. As our net use indicator was primarily self-reporting, it is also possible that net usage was overestimated. Third, our primary measure of incidence was based on active detection, involving visits every 2 weeks or every month. The passive data collected alongside the trial suggests that this frequency of visit resulted in some cases being missed, meaning the absolute effect of the nets might be greater than reported here. However, the relative effect of the nets remained similar when the active and passive data were combined. Finally, cost-effectiveness was not assessed; however, the trial in Tanzania' showed that dual active-ingredient LLINs can be highly cost-effective and even cost-saving compared with pyrethroid-only LLINs when providing sufficient protection.\n", - "\n", - "New classes of vector control interventions currently require clinical trial evaluation in two different geographical settings, after 24 months of community use.4 Currently, the only class of next-generation LLIN to receive a WHO recommendation are the PBO synergism nets. However, previous publications have shown concerns about the durability of these nets.5 This trial provides the second key evidence for the effectiveness of chlorfenapry-pyrethroid nets in an area with pyrethroid-resistant vectors and will therefore support a WHO policy recommendation. However, the effect of the nets was reduced in the second year of the trial, and there is no evidence for the efficacy of the nets in their third year of use. Many studies report that the durability of nets is much less than the 3 years required to be designated as long lasting.5 The next-generation LLINs might face the same problems of fabric integrity and durability of insecticidal content unless standards of manufacture are improved. Different channels of distribution (eg, school-based, antenatal care visits, or expanded programme immunisation visits) could play a key role in maintaining high levels of net use in communities.5\n", - "Although generating this evidence to support a WHO recommendation for another class of bednet is a key turning point in malaria control, without new insecticides and new ways to deploy them, we risk repeating the mistakes of the past. Now is the time for more innovation and less complacency.\n", - "\n", - "header: Methods\n", - "\n", - "We conducted a cluster-randomised, superiority trial in Zou Department, Benin. Clusters were villages or groups of villages with a minimum of 100 houses. We used restricted randomisation to randomly assign 60 clusters to one of three LLIN groups (I:1:1): to receive nets containing either pyriproxyfen and alpha-Cypermethrin (pyrethroid), chlorfenapyr and alpha-Cypermethrin only (reference). Households received one LLIN for every two people. The field team, laboratory staff, analyses team, and community members were masked to the group allocation. The primary outcome was malaria case incidence measured over 2 years after net distribution in a cohort of children aged 6 months-10 years, in the intention-to-treat population. This study is ongoing and is registered with ClinicalTrials.gov, NCT03931473.\n", - "\n", - "Findings Between May 23 and June 24, 2019, 53 854 households and 216 289 inhabitants were accounted for in the initial census and included in the study. Between March 19 and 22, 2020, 115 323 LLINs were distributed to 54030 households in an updated census. A cross-sectional survey showed that study LLIN usage was highest 9 months after distribution (5532 [76 * 986] of 7206 participants), but decreased by 24 months (4032 [60 * 696] of 6654). Mean malaria incidence over 2 years after LLIN distribution was 1-03 cases per child-year (95% CI 0 * 96-1 * 09) in the pyrethroid-only LLIN reference group. 0 * 84 cases per child-year (0.78-0 * 90) in the pyriproxyfen-pyrethroid LLIN group (hazard ratio [HR] 0 * 86, 95% CI 0 * 65-1* 14; p=0 * 28), and 0 * 56 cases per child-year (0 * 51-0 * 61) in the chlorfenapyr-pyrethroid LLIN group (HR 0 * 54, 95% CI 0 * 42-0 * 70; p<0 * 0001).\n", - "\n", - "Interpretation Over 2 years, chlorfenapyr-pyrethroid LLINs provided greater protection from malaria than pyrethroid-only LLINs in an area with pyrethroid-resistant mosquitoes. Pyriproxyfen-pyrethroid LLINs conferred protection similar to pyrethroid-only LLINs. These findings provide crucial second-trial evidence to enable WHO to make policy recommendations on these new LLIN classes. This study confirms the importance of chlorfenapyr as an LLIN treatment to control malaria in areas with pyrethroid-resistant vectors. However, an arsenal of new active ingredients is required for successful long-term resistance management, and additional innovations, including pyriproxyfen, need to be further investigated for effective vector control strategies.\n", - "\n", - "header: Contributions\n", - "\n", - "NP, JC, and CN conceived and designed the study, with contributions from MR, IK, LAM, and MCA, JC and MA led the development of the analysis plan, with input from BA, Aso, and NP, MA, CA, JC, NP, FT, and MCA coordinated the trial implementation with local and national authorities, RA, and AO-H. MA, BF, HA, Aso, and LA led the data collection in the field with and Aso, and AP, each of them, MCA, JC, and NP and NP. Also, BC, BA, and KAB led the molecular laboratory work.\n", - "\n", - "header: Funding UNITAID, The Global Fund.\n", - "\n", - "Pyrethroid-treated long-lasting insecticidal nets (LLINs) are the main malaria prevention intervention in sub-Saharan Africa and have been the major contributor to the estimated 1 * 5 billion malaria cases and 7 * 6 million malaria deaths averted in the past two decades. However, since 2015, the decline in malaria cases has stalled, and between 2019 and 2020, a rebound in malaria transmission was reported in some areas of sub-Saharan Africa.1 This rebound is likely to be a consequence of the continued spread of resistance to pyrethroid insecticides in malaria-transmitting mosquitoes, coinciding with a plateau in malaria control investment, leading to suboptimal coverage of interventions. Urgent actions are needed to prevent malaria resurgences, which were previously observed in sub-Saharan Africa in the 1980s after malaria control measures were scaled down.2\n", - "In the past 10 years, new insecticide-treated nets containing non-pyrethroid insecticides and insecticide synergists, in combination with pyrethroids, have been shown to be safe and efficacious against malaria mosquito vectors.14 The first net combined a pyrethroid insecticide and the synergistic piperonyl butoxide (PBO) and, following a randomised controlled trial,1 received a WHO policy recommendation in 2017. Other next-generation LLINs have shown encouraging results against resistant vectors in laboratory and small-scale entomological studies.47 One of these nets is a dual active-ingredient LLIN combining a pyrethroid and a pyrrole (chlorfenapyr). Both insecticides lead to mosquito mortality, with chlorfenapyr disrupting the production of cellular energy rather than targeting the nervous system, as pyrethroids do. Another dual active-ingredient LLIN combines a pyrethroid with an insect growth regulator (pyriprosyfen), which leads to sterility in exposed adult mosquitoes.\n", - "\n", - "The first randomised trial of these two products was conducted in Tanzania and showed that the chlorfenapyr-pyrethroid LLINs nearly halved malaria infection over 2 years in villages that received chlorfenapyr-pyrethroid LLINs compared with villages that received pyrethroid-only LLINs. PBO-pyrethroid LLINs were consistently found to be more effective than pyrethroid-only LLINs; however, the duration of the superior effect varied from 12 months to 21 months according to the different trials.\n", - "\n", - "header: Procedures\n", - "\n", - "The nets tested in the trial were: Royal Guard (Disease Control Technologies, Greer, SC, USA), polyethylene netting (I20 deniers incorporating 220 mg/m2 pyriproyfen and 220 mg/m2 alpha-cypermethrin); Interceptor G2 (BASF SE, Ludwigshafen, Germany), polyester netting (100 deniers coated with 200 mg/m2 chlorfenapyr and 100 mg/m2 alpha-cypermethrin); and the reference net, Interceptor (BASF SE, Ludwigshafen, Germany), polyester netting (100 deniers coated with 200 mg/m2 of alpha-cypermethrin). Nets were distributed in collaboration with the Benin National Malaria Control Program. Households were asked to collect their nets from a central point and received one net per every two residents in their household, rounded up for odd numbers. Nets already in houses were not removed but households were encouraged to use the new study nets. Additionally, net hang-up campaigns to encourage net use took place at 1 month and 7 months after distribution. Net coverage surveys to assess net ownership and usage were done at 1, 9, and 24 months after distribution. Throughout the follow-up period, children enrolled in the analysis cohort and participants enrolled in the cross-sectional surveys were also asked about their net use.\n", - "\n", - "Insecticide content at baseline was assessed on 30 randomly selected new nets per LLIN brand, by gas chromatography with Flame Ionisation Detection, at the\n", - "Centre Wallon de Recherches Agronomiques, Gembloux, Belgium. The insecticidal and physical durability of the study nets is being assessed in a separate study.\n", - "\n", - "Due to the COVID-19 pandemic, there was a 3-month gap between the distribution of the nets and the enrolment of children in the cohort. At enrolment and at 1 year after distribution (April, 2021), children were treated with antimalarial drugs (atremether-lumefantrinity to clear any underlying infection. The cohort was monitored from August, 2020, to April, 2022, a 21-month period, which encompassed the first 2 years after net distribution. Study nurses visited children every 2 weeks during the transmission season (April-October) and every 1 month in the dry season (November-March). At each visit, children were clinically examined and if they were febrile or had a history of fever in the past 48 h, they were tested for malaria using a malaria rapid diagnostic test. If the test was positive, the child was treated with artemether-lumefantrine, according to national guidelines.\n", - "\n", - "During cross-sectional surveys, all participants were tested for malaria using a malaria rapid diagnostic test and received treatment if the test was positive, and children younger than 5 years were tested for anaemia. Information regarding net ownership and usage, and other household-level indicators were collected at the same time.\n", - "\n", - "Entomological monitoring was also delayed and took place every 3 months between June, 2020, and April, 2022. Volunteers recruited from study clusters collected mosquitoes that landed on their legs between 1900 h and 0700 h for 1 night at four randomly selected houses in each cluster at each timepoint. Mosquitoes were morphologically identified to species and a subsample of _Anopheles_ spp was tested for molecular species using PCR.(r) A random sample of _Anopheles_ spp (up to 30% from each nightly catch in each cluster) were tested for sporozoites using the ELISA circumsporozoite protein technique.(r)\n", - "\n", - "header: Methods\n", - "\n", - "We conducted a three-group, cluster-randomised, superiority trial in three districts (Cove, Zagnanado, and Ouinhi) in Zou Department, central Benin. Malaria is highly endemic in the region, with a peak during the wet season (May-October). The main vector control strategy in the study area is use of pyrethroid-only LLINs distributed en masse once every 3 years, and through routine service delivery by antenatal clinics and vaccination programmes. The primary vectors in the setting are _Anopheles coluzzi_ and _Anopheles gambiae_. There is a high intensity of pyrethroid resistance in the main local vector populations.11\n", - "\n", - "A demographic census of all 123 villages in the study area was done in June, 2019. Clusters consisted of villages, or several villages. To reduce contamination between study groups, clusters consisted of a core (minimum 100 households) surrounded by a buffer, ensuring that core areas of neighbouring clusters were separated by at least 1000 m. Households in the buffer and core received the intervention, but measurement of outcomes only took place in core areas. A detailed description of the study protocol is published elsewhere.\"\n", - "\n", - "Ethics approval was obtained from the Benin Ministry of Health ethics committee (6/30/MS/DC/SGM/DRFMT/CNERS/SA), the London School of Hygiene & Tropical Medicine ethics committee (16237), and the WHO Research Ethics Review Committee (ERC.0003153). The trial was independently monitored by a data safety monitoring board and a trial steering committee.\n", - "\n", - "Epidemiological effect was estimated through measuring malaria case incidence in the 2 years after net distribution by active case detection in a cohort of children. A cohort of approximately 30 children aged 6 months-9 years randomly selected (by simple random sampling using a random number generator) from each cluster (1800 in total) was enrolled in July, 2020. Children were eligible for inclusion if they were permanent residents in the cluster, had no serious illnesses, and written informed consent was obtained from their guardians.\n", - "\n", - "Malaria infection prevalence (in all ages) was measured by cross-sectional surveys at 6 months and 18 months after net distribution. 72 individuals residing in the core of each cluster were randomly selected (using a random number generator) from the census for each cross-sectional survey. Each prevalence surveyed collected data on malaria infection, measured using malaria rapid diagnostic tests (CareStart malaria HRP2/PLDH [pf/pan] combo, DiaSy, UK), net ownership and use, sex, and household assets (as a proxy for socioeconomic status).\n", - "\n", - "Entomological effects were measured using human landing catches in four randomly selected houses every 3 months in each cluster. Insecticide resistance intensity was measured in two clusters per group (six clusters total) at baseline and in each follow-up year.\n", - "\n", - "Written informed consent was obtained from all participants, or from guardians for participants younger than 18 years. Assent was sought for children aged between 10 and 18 years. Written consent was also obtained from volunteer mosquito collectors who were all aged 18 years or older and who were vaccinated against yellow fever. All participation was voluntary, and participants could withdraw at any time. Study investigators sought consent in French or local languages.\n", - "\n", - "header: Table 2: Malaria case incidence in children aged 6 months–10 years per year of follow-up and overall (including active visits only)\n", - "footer: Each intervention was compared with the pyrethroid-only LLIN group for the same timepoint. LLIN=long-lasting insecticidal net. *A p value of <0·025 was considered significant after Bonferroni correction\n", - "columns: ['Unnamed: 0_level_0 - Overall', 'Number of clinical malaria episodes - Overall', 'Child- years of follow-up - Overall', 'Incidence, cases per child-year (95% Cl) - Overall', 'Hazard ratio - Overall', '95%Cl - Overall', 'p value* - Overall']\n", - "\n", - "{\"0\":{\"Unnamed: 0_level_0 - Overall\":\"Pyrethroid-only LLIN group\",\"Number of clinical malaria episodes - Overall\":\"897\",\"Child- years of follow-up - Overall\":\"874.3\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"1.03 (0.96-1.09)\",\"Hazard ratio - Overall\":\"1 (ref)\",\"95%Cl - Overall\":null,\"p value* - Overall\":null},\"1\":{\"Unnamed: 0_level_0 - Overall\":\"Pyriproxyfen-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"744\",\"Child- years of follow-up - Overall\":\"883.8\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.84 (0.78-0.90)\",\"Hazard ratio - Overall\":\"0.86\",\"95%Cl - Overall\":\"0.65-1.14\",\"p value* - Overall\":\"0.28\"},\"2\":{\"Unnamed: 0_level_0 - Overall\":\"Chlorfenapyr-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"494\",\"Child- years of follow-up - Overall\":\"887.3\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.56 (0.51-0.61)\",\"Hazard ratio - Overall\":\"0.54\",\"95%Cl - Overall\":\"0.42-0.70\",\"p value* - Overall\":\"<0.0001\"},\"3\":{\"Unnamed: 0_level_0 - Overall\":\"Year 1\",\"Number of clinical malaria episodes - Overall\":\"Year 1\",\"Child- years of follow-up - Overall\":\"Year 1\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"Year 1\",\"Hazard ratio - Overall\":\"Year 1\",\"95%Cl - Overall\":\"Year 1\",\"p value* - Overall\":\"Year 1\"},\"4\":{\"Unnamed: 0_level_0 - Overall\":\"Pyrethroid-only LLIN group\",\"Number of clinical malaria episodes - Overall\":\"267\",\"Child- years of follow-up - Overall\":\"344.4\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.77 (0.69-0.87)\",\"Hazard ratio - Overall\":\"1 (ref)\",\"95%Cl - Overall\":null,\"p value* - Overall\":null},\"5\":{\"Unnamed: 0_level_0 - Overall\":\"Pyriproxyfen-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"211\",\"Child- years of follow-up - Overall\":\"342.7\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.62 (0.54-0.70)\",\"Hazard ratio - Overall\":\"0.83\",\"95%Cl - Overall\":\"0.51-1.35\",\"p value* - Overall\":\"0.46\"},\"6\":{\"Unnamed: 0_level_0 - Overall\":\"Chlorfenapyr-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"124\",\"Child- years of follow-up - Overall\":\"349.2\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.36 (0.30-0.42)\",\"Hazard ratio - Overall\":\"0.46\",\"95%Cl - Overall\":\"0.30-0.72\",\"p value* - Overall\":\"0.0005\"},\"7\":{\"Unnamed: 0_level_0 - Overall\":\"Year 2\",\"Number of clinical malaria episodes - Overall\":\"Year 2\",\"Child- years of follow-up - Overall\":\"Year 2\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"Year 2\",\"Hazard ratio - Overall\":\"Year 2\",\"95%Cl - Overall\":\"Year 2\",\"p value* - Overall\":\"Year 2\"},\"8\":{\"Unnamed: 0_level_0 - Overall\":\"Pyrethroid-only LLIN group\",\"Number of clinical malaria episodes - Overall\":\"630\",\"Child- years of follow-up - Overall\":\"529.9\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"1.19 (1.10-1.29)\",\"Hazard ratio - Overall\":\"1 (ref)\",\"95%Cl - Overall\":null,\"p value* - Overall\":null},\"9\":{\"Unnamed: 0_level_0 - Overall\":\"Pyriproxyfen-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"533\",\"Child- years of follow-up - Overall\":\"541.1\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.98 (0.90-1.07)\",\"Hazard ratio - Overall\":\"0.88\",\"95%Cl - Overall\":\"0.68-1.13\",\"p value* - Overall\":\"0.31\"},\"10\":{\"Unnamed: 0_level_0 - Overall\":\"Chlorfenapyr-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"370\",\"Child- years of follow-up - Overall\":\"538.1\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.69 (0.62-0.76)\",\"Hazard ratio - Overall\":\"0.57\",\"95%Cl - Overall\":\"0.45-0.73\",\"p value* - Overall\":\"<0.0001\"}}\n", - "\n", - "header: Table 1: Baseline characteristics\n", - "footer: Data are n or %; n/N unless otherwise stated. EIR=entomological inoculation rate. LLIN=long-lasting insecticidal net. *Proportion of households in the poorest tercile based on the wealth index of the entire study area. †Anaemia defined as haemoglobin concentration of <10 g/dL. ‡Malaria vectors included Anopheles gambiae, Anophelesfunestus, and Anopheles nili\n", - "columns: ['Unnamed: 0_level_0 - Clusters', 'Pyriproxyfen-pyrethroid LLIN group - Clusters', 'Chlorfenapyr-pyrethroid LLIN group - Clusters', 'Pyrethroid-only LLIN group - Clusters']\n", - "\n", - "{\"0\":{\"Unnamed: 0_level_0 - Clusters\":\"Number of clusters\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"20\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"20\",\"Pyrethroid-only LLIN group - Clusters\":\"20\"},\"1\":{\"Unnamed: 0_level_0 - Clusters\":\"Total population in core and buffer areas\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"74822\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"70989\",\"Pyrethroid-only LLIN group - Clusters\":\"69239\"},\"2\":{\"Unnamed: 0_level_0 - Clusters\":\"Mean population in core area of clusters (range)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"1096.1 (225-4524)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"1120.5 (243-5040)\",\"Pyrethroid-only LLIN group - Clusters\":\"1058.1 (252-5217)\"},\"3\":{\"Unnamed: 0_level_0 - Clusters\":\"Number of people per household, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"4.0 (2.3)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"3.9 (2.3)\",\"Pyrethroid-only LLIN group - Clusters\":\"4.1 (2.4)\"},\"4\":{\"Unnamed: 0_level_0 - Clusters\":\"Number of sleeping spaces per household, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"2.2 (1.2)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"2.1 (1.1)\",\"Pyrethroid-only LLIN group - Clusters\":\"2.2 (1.2)\"},\"5\":{\"Unnamed: 0_level_0 - Clusters\":\"Household and participant characteristics in the baseline cross-sectional survey\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"Household and participant characteristics in the baseline cross-sectional survey\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"Household and participant characteristics in the baseline cross-sectional survey\",\"Pyrethroid-only LLIN group - Clusters\":\"Household and participant characteristics in the baseline cross-sectional survey\"},\"6\":{\"Unnamed: 0_level_0 - Clusters\":\"Low socioeconomic status*\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"35.8%; 529\\/1479\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"36.2%; 533\\/1474\",\"Pyrethroid-only LLIN group - Clusters\":\"29.0%; 431\\/1487\"},\"7\":{\"Unnamed: 0_level_0 - Clusters\":\"LLIN ownership (at least one LLIN in the household)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"96.4%; 1426\\/1479\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"97.1%; 1431\\/1474\",\"Pyrethroid-only LLIN group - Clusters\":\"95.1%; 1415\\/1488\"},\"8\":{\"Unnamed: 0_level_0 - Clusters\":\"LLIN usage in all age groups the night before survey\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"95.8%; 1312\\/1370\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"94.9%; 1258\\/1326\",\"Pyrethroid-only LLIN group - Clusters\":\"96.5%; 1343\\/1392\"},\"9\":{\"Unnamed: 0_level_0 - Clusters\":\"Malaria infection prevalence in all age groups\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"43.1%; 636\\/1475\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"40.7%; 598\\/1468\",\"Pyrethroid-only LLIN group - Clusters\":\"46.5%; 690\\/1485\"},\"10\":{\"Unnamed: 0_level_0 - Clusters\":\"Anaemia prevalence in children aged 6 months-4 years\\u2020\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"53.3%; 136\\/255\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"53.3%; 131\\/246\",\"Pyrethroid-only LLIN group - Clusters\":\"50.2%; 122\\/243\"},\"11\":{\"Unnamed: 0_level_0 - Clusters\":\"Entomological characteristics\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"Entomological characteristics\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"Entomological characteristics\",\"Pyrethroid-only LLIN group - Clusters\":\"Entomological characteristics\"},\"12\":{\"Unnamed: 0_level_0 - Clusters\":\"Human biting density per person per night indoors\\u2021, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"32.9 (28.9)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"21.6 (21.0)\",\"Pyrethroid-only LLIN group - Clusters\":\"29.2 (25.3)\"},\"13\":{\"Unnamed: 0_level_0 - Clusters\":\"Human biting density per person per night outdoors\\u2021, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"20.3 (17.6)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"16.4 (17.4)\",\"Pyrethroid-only LLIN group - Clusters\":\"20.6 (20.2)\"},\"14\":{\"Unnamed: 0_level_0 - Clusters\":\"Indoor EIR per person per night, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"0.62 (0.93)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"0.48 (0.65)\",\"Pyrethroid-only LLIN group - Clusters\":\"0.96 (1.18)\"},\"15\":{\"Unnamed: 0_level_0 - Clusters\":\"Outdoor EIR per person per night, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"0.27 (0.45)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"0.17 (0.44)\",\"Pyrethroid-only LLIN group - Clusters\":\"0.33 (0.45)\"},\"16\":{\"Unnamed: 0_level_0 - Clusters\":\"Children (aged 6 months-10 years) at cohort enrolment\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"Children (aged 6 months-10 years) at cohort enrolment\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"Children (aged 6 months-10 years) at cohort enrolment\",\"Pyrethroid-only LLIN group - Clusters\":\"Children (aged 6 months-10 years) at cohort enrolment\"},\"17\":{\"Unnamed: 0_level_0 - Clusters\":\"Proportion of children younger than 5 years\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"52.3%; 316\\/604\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"50.6%; 304\\/601\",\"Pyrethroid-only LLIN group - Clusters\":\"53.6%; 322\\/601\"},\"18\":{\"Unnamed: 0_level_0 - Clusters\":\"Proportion of female children\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"47.2%; 285\\/604\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"48.4%; 291\\/601\",\"Pyrethroid-only LLIN group - Clusters\":\"48.8%; 293\\/601\"},\"19\":{\"Unnamed: 0_level_0 - Clusters\":\"Net usage the night before survey\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"99.0%; 598\\/604\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"98.7%; 593\\/601\",\"Pyrethroid-only LLIN group - Clusters\":\"99.2%; 596\\/601\"}}\n", - "\n", - "header: Introduction: Added value of this study\n", - "\n", - "To our knowledge, this is the second study aiming to compare the efficacy of the next generation of LLINs combining _p_iprosyfen or chlorfenapyr and pyrethroid versus standard pyrethroid-only LLINs, and the first of its kind to be conducted in west Africa. This trial confirmed the superior efficacy of chlorfenapyr-pyrethroid LLINs, in terms of malaria case incidence, prevalence, and transmission in children, over 2 years of use in the community, in an area of moderate malaria transmission and with high insecticide resistance intensity in malaria vectors, in Benin. However, pyrioxyfen-pyrethroid LLINs did not offer additional protection against malaria outcomes compared with pyrethroid-only LLINs.\n", - "\n", - "header: Table 3: Malaria infection and anaemia prevalence in the study population at 6 months and 18 months after net distribution (intention-to-treat analysis)\n", - "footer: Anaemia was defined as a haemogloblin concentration of <10 g/dL. LLIN=long-lasting insecticidal net. OR=odds ratio. *A p value of <0·025 was considered significant after Bonferroni correction\n", - "columns: ['Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution', 'Malaria infection - n/N - 6 months after net distribution', 'Malaria infection - Prevalence - 6 months after net distribution', 'Malaria infection - OR - 6 months after net distribution', 'Malaria infection - 95% Cl - 6 months after net distribution', 'Malaria infection - p value* - 6 months after net distribution', 'Anaemia in children younger than 5 years - n/N - 6 months after net distribution', 'Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution', 'Anaemia in children younger than 5 years - OR - 6 months after net distribution', 'Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution', 'Anaemia in children younger than 5 years - p value* - 6 months after net distribution']\n", - "\n", - "{\"0\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Pyrethroid-only LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"412\\/1471\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"28.0%\",\"Malaria infection - OR - 6 months after net distribution\":\"1 (ref)\",\"Malaria infection - 95% Cl - 6 months after net distribution\":null,\"Malaria infection - p value* - 6 months after net distribution\":null,\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"99\\/241\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"41.1%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"1 (ref)\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":null,\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":null},\"1\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Pyriproxyfen-pyrethroid LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"394\\/1463\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"26.9 %\",\"Malaria infection - OR - 6 months after net distribution\":\"0.92\",\"Malaria infection - 95% Cl - 6 months after net distribution\":\"0.63-1.35\",\"Malaria infection - p value* - 6 months after net distribution\":\"0.67\",\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"117\\/250\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"46.8%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"1.24\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":\"0.71-2.18\",\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":\"0.45\"},\"2\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Chlorfenapyr-pyrethroid LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"231\\/1475\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"15.7%\",\"Malaria infection - OR - 6 months after net distribution\":\"0.47\",\"Malaria infection - 95% Cl - 6 months after net distribution\":\"0.32-0.69\",\"Malaria infection - p value* - 6 months after net distribution\":\"0.0002\",\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"82\\/241\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"34.0%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"0.71\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":\"0.40-1.26\",\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":\"0-24\"},\"3\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"18 months after net distribution\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"18 months after net distribution\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"18 months after net distribution\",\"Malaria infection - OR - 6 months after net distribution\":\"18 months after net distribution\",\"Malaria infection - 95% Cl - 6 months after net distribution\":\"18 months after net distribution\",\"Malaria infection - p value* - 6 months after net distribution\":\"18 months after net distribution\",\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"18 months after net distribution\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"18 months after net distribution\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"18 months after net distribution\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":\"18 months after net distribution\",\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":\"18 months after net distribution\"},\"4\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Pyrethroid-only LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"576\\/1489\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"38.7%\",\"Malaria infection - OR - 6 months after net distribution\":\"1 (ref)\",\"Malaria infection - 95% Cl - 6 months after net distribution\":null,\"Malaria infection - p value* - 6 months after net distribution\":null,\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"118\\/252\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"46.8%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"1 (ref)\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":null,\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":null},\"5\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Pyriproxyfen-pyrethroid LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"564\\/1478\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"38.2%\",\"Malaria infection - OR - 6 months after net distribution\":\"0.97\",\"Malaria infection - 95% Cl - 6 months after net distribution\":\"0.69-1.37.\",\"Malaria infection - p value* - 6 months after net distribution\":\"0.87\",\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"108\\/245\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"44.1%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"0.84\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":\"0.40-1.79\",\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":\"0.65\"},\"6\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Chlorfenapyr-pyrethroid LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"414\\/1483\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"27.9%\",\"Malaria infection - OR - 6 months after net distribution\":\"0.60\",\"Malaria infection - 95% Cl - 6 months after net distribution\":\"0.43-0.85\",\"Malaria infection - p value* - 6 months after net distribution\":\"0.0041\",\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"118\\/246\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"48.0%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"1.08\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":\"0.51-2.28\",\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":\"0.84\"}}\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `Observation` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Data sharing: Acknowledgments\n", - "\n", - "This trial was funded by a grant to the London School of Hygiene & Tropical Medicine from UNITAD and The Global Fund via the Innovative Vector Control Consortium. This trial is part of a larger project. The New Nets project: We thank the communities from the three study districts (Cow, Zagnanado, Ouinhi), particularly the participants, children and their parents, community health workers, staff in health clinics, and the regional study team. We thank colleagues and staff at the Centre de Recherche Entomologique de Cotonou and those at the National Malaria Control Program. We also thank the trial system committee, the data safety monitoring board, and Charles Dickinson (School of Epidemiology and Public Health, University of Ottawa, Ottawa, ON, Canada) for supporting the mapping and cluster delineation.\n", - "\n", - "header: Role of the funding source\n", - "\n", - "The funders of the study had no role in study design, data collection, data analysis, data interpretation, writing of the report, or in the decision to submit for publication.\n", - "\n", - "header: Outcomes\n", - "\n", - "The primary outcome was malaria case incidence (infrared frontal temperature >37.5degC or reported fever in the previous 48 h, and positive malaria rapid diagnostic test) in children enrolled in the active case detection cohort in the 2 years after net distribution. Visits of children in the cohort at health facilities were monitored and the results of malaria rapid diagnostic tests and any treatment given were recorded. However, it was difficult to assess with certainty if malaria rapid diagnostic tests were used only if the child was symptomatic (as our protocol specified); therefore, the passive data was not included in the primary analyses.\n", - "\n", - "Secondary clinical outcomes were malaria infection prevalence in all age groups and anaemia (defined as haemoglobin concentration <10 g/dL) prevalence in children aged 5 years or younger at 6 months and 18 months after net distribution.\n", - "\n", - "Type and duration of adverse events related to usage of nets were recorded using a prespecified questionnaire at each cohort visit and during net usage and cross-sectional surveys. Data on hospitalisation and death in children in the cohort were collected by interviewing the child's guardian and reviewing the hospital record, following receipt of consent.\n", - "\n", - "The primary entomological outcome was entomological inoculation rate, measured as the mean number of _Plasmodium_ spp infective malaria vectors collected per person per night measured indoors and outdoors. Secondary entomological outcomes were vector density (number of mosquitoes caught per person per night), sporozoite rate, and species composition. Centers for Disease Control and Prevention bottle bioassays were performed by exposing adult female _An gambiae_, collected as larvae, to alpha-cypermethrin for 30 min (1, 2, 5, and 10 times the diagnostic dose), and to chlorfenrapy (100 mg/bottle) and pyriproxyfen (100 mg/bottle) for 60 min each year.(r) Mortality was recorded at 30 min for all four doses of alpha-cypermethrin (insectidic resistance intensity measurement), and at 24, 48, and 72 h after exposure for chlorfenapyr. The reduction in fecundity rate induced by pyriproxyfen relative to unexposed mosquitoes was assessed by ovarian dissection, 3 days after pyriproxyfen exposure. Other outcomes included in the protocol (parity, resting behaviour, survivorship, and other resistance measures) are still to be analysed and will be published elsewhere.\n", - "\n", - "header: Statistical analysis\n", - "\n", - "The sample size calculations for epidemiological data collection were calculated using the method of Hayes and Moulton.(r) The study was designed to detect a 30% difference in malaria case incidence, assuming a control group incidence of 1 malaria case per child-year and a coefficient of variation of 0-3 between clusters. This design required 20 clusters per group and 25 (20+5 allowing for loss to follow-up) children per cluster followed up for 2 years to give 80% power. Due to the delay in enrolment, which resulted in a shorter follow-up time, the number of children per cluster was increased to 30 (1800 children total). This sample size calculation includes adjustment for multiple testing (allowing for the three groups) using a Bonferroni-corrected two-sided a of 2.5%.\n", - "\n", - "For malaria infection prevalence, it was assumed that the prevalence in the reference group was 40%, with a coefficient of variation between clusters of 0-3. With 72 individuals per cluster, the study had 80% power to detect a 30% lower prevalence in the intervention groups compared with the reference group, using a Bonferroni-corrected a for multiple comparisons.\n", - "\n", - "The primary intention-to-treat analysis was a comparison of incidence of clinical malaria episodes between each dual active-ingredient LLIN group and the\n", - "\n", - "header: Implications of all the available evidence\n", - "\n", - "Given the positive findings, both in Benin and Tanzania, for chlorfenapyr-pyrethroid LLINs, they are likely to become the first WHO-recommended LLINs impregnated with an insecticide class other than pyrethroids. The absence of superior efficacy of pyrioxyfen-pyrethroid LLINs compared with standard pyrethroid-only LLINs is consistent with the results of the previous Tanzania study and calls into question the role of the current pyrioxyfen-pyrethroid LLINs in future malaria vector strategies.\n", - "\n", - "header: Methods\n", - "\n", - "Data collected for the study, including deidentified participant data and data dictionaries, might be made available at the end of the third year of trial follow-up upon reasonable request to the corresponding author.\n", - "\n", - "header: Results\n", - "\n", - "Between May 23 and June 24, 2019, 53854 households and 216 289 inhabitants were accounted for in the initial census and included in the study. The households were delineated into 61 clusters, with one subsequently excluded due to extensive seasonal flooding (figure). Baseline cross-sectional epidemiological and entomological surveys were conducted between October and November, 2019 (table 1). The malaria infection prevalence was 43 5% (1924 of 4428 participants, cluster range 15 1-72 796) and population self-reported LLIN usage was 95 7% (3913 of 4088 participants). Cluster demographics and malaria prevalence were similar between groups (table 1). Entomological inoculation rate was 0 68 _Plasmodium_ spp infective bites per person per night (cluster range 0 00-3 80) indoors and 0 26 per person per night (0 00-1 88) outdoors.\n", - "\n", - "Between March 19 and 22, 2020, 115 323 LLINs were distributed to 54 300 households in an updated census, with 97 1% of households receiving at least one net per household. Active ingredients in the new nets were found to be within or higher than the acceptable target limits depending on LLIN brand (appendix p 4). Study net usage was highest (5532 [76 8%] of 7206 participants) at 9 months after distribution, following a second hang-up campaign, but had decreased by 24 months (4032 [60 6%] of 6654). Study net coverage and usage indicators were similar between study groups up to 18 months after net distribution. At 24 months, pyriproxyfen-pyrethroid LLIN usage and ownership was the lowest (appendix pp 5-6). Use of any type of LLIN (study LLINs and others) remained greater than 80% up to 24 months after distribution (appendix p 7).\n", - "\n", - "In the 2283 households that were randomly selected for post-intervention cohort follow-up, 3129 children were eligible, 1829 of whom were randomly selected, and consent was obtained for 1806 (figure). Among the 2849 and 2771 households randomly selected at 6 months and 18 months after LLIN distribution for the malaria prevalence cross-sectional surveys, 4781 (85 1%) of 5620 households consent, with a similar proportion in the two surveys. The remaining households were either not available during the visit (775 [13 8%] of) or declined to participate (64 [1 1%]; appendix p 8).\n", - "\n", - "Children aged 6 months-9 years enrolled for active case detection were monitored for 21 months, for a total follow-up time of 2645 4- child-years at risk. Loss to follow-up was similar between groups (figure). At enrolment, children were balanced on age, sex, and net usage. During the 21-month follow-up period, we detected 2135 malaria cases through active case detection (table 2). The mean malaria case incidence over 21 months of follow-up was 1 03 cases per child-year (95% CI 0 96-1 09) in the pyrethroid-only LLIN reference group, 0 84 cases per child-year (0 78-70 90) in the pyriproxyfen-pyrethroid LLIN group (hazard ratio [HR] 0 86, 95% CI 0 65-1 46; p = 0 - 28), and 0 56 cases per child-year (0 51-0 64) in the chlorfenapry-pyrethroid LLIN group (HR 0 54, 95% CI 0 - 42-0 70; p < 0 0001; table 2). The strongest effect was observed in the first year of follow-up in the chlorfenapry-pyrethroid group (HR 0 46, 95% CI 0 30-0 72; p = 0 - 0005; table 2). When combining active and passive visits, the number of cases detected nearly doubled; however, the effect size in comparison to the reference group was similar for both intervention nets (appendix p 9).\n", - "\n", - "Malaria infection prevalence was 23 5% (1037 of 4409 participants) at 6 months and 34 9% (1554 of 4450) at 18 months after net distribution (table 3). There was strong evidence for a reduction of malaria infection prevalence in the chlorfenapry-pyrethroid LLIN group at 6 months (15 7%; odds ratio [OR] 0 47, 95% CI 0 32-0 69; p = 0 0002) and at 18 months (27 9%; OR 0 60 - 60, 0 - 43-0 85; p = 0 004) compared with the reference group (28 - 0% at 6 months and 38 7% at 18 months; table 3). In the pyriproxyfen-pyrethroid group, there was no evidence for a reduction in malaria prevalence at 6 months (26 9%; OR 0 - 92, 95% CI 0 63-1 35; p = 0 - 67) or 18 months (38 2%; OR 0 97 0, 0 69-1 37; p = 0 87) compared with the reference group. Results were similar for the per-protocol analysis (appendix p 1). There was no evidence of a reduction in moderate to severe anaemia prevalence in either intervention group (table 3). The post-hoc analysis adjusting for covariates used in the randomisation did not change the interpretation of the results (appendix pp 12-13).\n", - "\n", - "\n", - "Adverse events related to study nets were reported in 528 (45-496) of 1162 participants surveyed at 1 month after net distribution. The highest proportion of adverse events was reported in the pyrethroid-only LLIN group (247 [63-8%] of 387 participants), followed by the pyriproyfen-pyrethroid LLIN group (212 [52-5%] of 404) and then the chlorfenapy-pyrethroid LLIN group (69 [18-6%] of 371). Facial burning (392 [33-7%] of 1162 participants), and skin irritation or itchiness (244 [20-9%]) were the most common adverse events in all groups. Adverse events were rare in all three groups at all later timepoints (appendix P 14-15). We recorded 44 serious adverse events (including three deaths) in the cohort children, with 32 (72-7%) documented as severe malaria (11 cases in the pyriproyfen-pyrethroid LLIN group, ten in the chlorfenapy-pyrethroid LLIN group, and 11 in the pyrethroid-only LLIN group). No serious adverse events related to net use were reported.\n", - "\n", - "A total of 259265 mosquitoes were collected over 3840 collection nights indoors and outdoors, of which 20-9% (29814 from indoors and 24436 from outdoors) were malaria vectors, with _An gambiae_ sensu that the most predominant. Overall, indoor entomological inoculation rate was lower in both intervention groups than in the reference group, with a mean entomological inoculation rate of 0-90 infectious bites per night per person in the chlorfenapy-pyrethroid LLIN group (rate ratio [RR] 0-34, 95% CI 0-18-0-62; p=0-0005), 0-12 in the pyriproyfen-pyrethroid LLIN group (RR 0-42, 0-2-3-0-74; p=0-0028), and 0-28 in the pyrethroid-only LLIN group (table 4). Mean indoor vector density appeared to be lower in the chlorfenapy-pyrethroid LLIN group (10-18 bites per person per night, density ratio 0-44, 95% CI 0-2-30-84; p=0-014), and in the pyriproyfen-pyrethroid LLIN group (13-6 bites per person per night, density ratio 0-58, 0-30-1-12; p=0-011) than in the reference group (23-0 bites per person per night, but the latter difference was not statistically significant (table 4). Adjusting for baseline vector density in the models gave similar results (appendix P 16). There was no significant difference in sporozoite rate in any of the intervention groups compared with the reference group (table 4).\n", - "\n", - "Reduction in outdoor entomological inoculation rate compared with the reference group was observed only in the chlorfenapy-pyrethroid LLIN group (RR 0-30, 95% CI 0-13-0-67; p=0-0035; appendix P 17). There was very weak evidence for a reduction in outdoor entomological inoculation rate in the pyriproyfen-pyrethroid LLIN group compared with the pyrethroid-only group (RR 0-58, 0-30-1-13; p=0-11). Similar effects were observed for outdoor vector density for both intervention nets (appendix P 17).\n", - "\n", - "Post-intervention pyrethrold resistance intensity was high across the study groups in _An gambiae_ sensu lato, with mean mortality of 85% or less after exposure to 10 times the diagnostic concentrations of alpha-cypentrohin in year 2 (appendix P 18). No resistance to chlorfenapy was observed during either year after net distribution (appendix P 18). Exposure of _An gambiae_ sensu lato to pyriproyfen led to a high reduction in fecundity rate relative to unexposed control mosquitoes over the 2 years after net distribution (73-2%, 95% CI 62-2-82-4 in year 1, and 76-6%, 66-6-84-9 in year 2).\n", - "\n", - "header: Discussion\n", - "\n", - "This trial assessed the efficacy of two dual active-ingredient LLINs in an area of Benin with malaria vectors that are highly resistant to pyrethroids and found that chlorfenapy-pyrethroid LLINs provided significantly better protection against malaria for up to 2 years after net distribution compared with pyrethroid-only LLINs. Children aged 6 months-10 years living in clusters that received chlorfenapy-pyrethroid LLINs had a 46% lower incidence of malaria over 2 years after LLIN distribution;\n", - "\n", - "\\begin{table}\n", - "\\begin{tabular}{c c c c c c c c c c} & **Malaria infection** & \\multicolumn{6}{c}{**Anaemia in children younger than 5 years**} \\\\ \\hline n/N & Prevalence & OR & 95\\% CI & p valuea & n/N & Prevalence & OR & 95\\% CI & p valuea \\\\ \\hline\n", - "**6 months after net distribution** & & & & & & & & \\\\ Pyrethroid-only LLIN group & 412/1471 & 28\\(\\,\\)0\\% & 1 (ref) & – & – & 992/41 & 41\\(\\,\\)1\\% & 1 (ref) & – & – \\\\ Pyriproyfen-pyrethroid & 394/1463 & 26\\(\\,\\)9\\% & 0\\(\\,\\)92 & 0\\(\\,\\)\n", - "\n", - "63\\(\\,\\)45 & 0\\(\\,\\)67 & 117/250 & 46\\(\\,\\)8\\% & 124 & 0.71–218 & 0.45 \\\\ LLIN group & & & & & & & & & \\\\ Chlorfenapy-pyrethroid & 231/1475 & 157\\(\\,\\)\\% & 0\\(\\,\\)47 & 0\\(\\,\\)32\\(\\,\\)0\\(\\,\\)669 & 0\\(\\,\\)0002 & 82/241 & 34\\(\\,\\)0\\% & 0.71 & 0.40–126 & 0.24 \\\\ LLIN group & & & & & & & & & \\\\\n", - "**18 months after net distribution** & & & & & & & & \\\\ Pyrethroid-only LLIN group & 576/14/849 & 38\\(\\,\\)7\\% & 1 (ref) & – & – & 118/25 & 46\\(\\,\\)8\\% & 1 (ref) & – & – \\\\ Pyriproyfen-pyrethroid & 564/14/83 & 38\\(\\,\\)2\\% & 0\\(\\,\\)97 & 0\\(\\,\\)69\\(\\,\\)13\\(\\,\\)07 & 0\\(\\,\\)87 & 108/245 & 44\\(\\,\\)1\\% & 0.84 & 0.40–179\n", - "\n", - "\n", - "participants of any age had 53% lower odds of malaria infection at 6 months and 40% lower odds at 18 months after LLIN distribution, and were exposed to a 66% reduction in entomological inoculation rate compared with those living in clusters that received pyrethroid-only LLINs. Similar gains were not observed with the pyriproxyfen-pyrethroid LLIN, with a small reduction in malaria incidence in the first year of the study that was attenuated in year 2, and no effect on malaria infection prevalence in either year, compared with the pyrethroid-only reference group. However, a 58% reduction in indoor entomological inoculation rate was detected with the pyriproxyfen-pyrethroid LLIN. Both dual active-ingredient LLINs provided a similar safety profile compared with standard pyrethroid-only LLINs, with short-lasting skin irritation and facial burning (commonly associated with the pyrethroid alpha-Cybermethrin) most frequently reported in participants using pyrethroid-only LLINs and pyriproxyfen-pyrethroid LLINs. A similar observation has been reported in another randomised controlled trial evaluating the same LLINs, and this is likely to be associated with the high concentration of alpha-Cybermethrin in those nets compared with the chlorfenapy-pyrethroid LLINs.\n", - "\n", - "To our knowledge, this is the second cluster-randomised trial to provide strong evidence of increased efficacy of chlorfenapy-pyrethroid LLINs relative to pyrethroid-only LLINs for malaria control in areas with pyrethroid-resistant vectors. Chlorfenapyr insecticide on nets has already shown improved control of pyrethroid-resistant _An gambiae_ in laboratory and semi-field experimental huts against resistant malaria vectors.3- The previous trial in Tanzania reported a malaria case incidence reduction of 44%, a 55% decrease in odds of malaria prevalence, and 85% reduction in entomological inoculation rate compared with the pyrethroid-only group, consistent with these results, despite the differing malaria vector populations and intensity of pyrethroid resistance in the mosquitoes.4 In both trials, per-protocol analyses suggested that individuals living in the chlorfenapy-pyrethroid clusters benefited regardless of whether they were using a study net, suggesting a community effect of the net, which was likely to be obtained by the overall reduction of mosquito density, which remained considerably lower than in the pyrethroid-only group in both years of this trial after net distribution. Community effect is also indicated by the reduction in both indoor and outdoor entomological indices in the chlorfenapy-pyrethroid group in the present study.\n", - "\n", - "Similar to the trial in Tanzania,4 the pyriproxyfen-pyrethroid LLINs we tested did not provide additional protection against malaria infection or disease compared with pyrethroid-only LLINs. However, there was evidence of an effect on indoor transmission, with the strongest effect seen in the first year after net distribution. Tino and colleagues5 have previously reported a 12% reduction in malaria incidence and 49% reduction in entomological \n", - "inoculation rate with a pyriproxyfen-pyrethroid LLIN compared with pyrethroid-only LLINs over 18 months in a stepped-wedge randomised trial in Burkina Faso. The different study design, length of follow-up, and brand of net might explain the differences seen between the two studies. In Benin, laboratory and semi-field experimental hut studies have shown the superior efficacy of pyriproxyfen-pyrethroid nets on entomological indicators compared with standard pyrethroid-only LLINs,2,3 and are consistent with the decrease in indoor vector density observed in our trial. However, the decrease in indoor vector density did not translate into significant disease reduction, suggesting that a larger effect on malaria transmission (entomological inoculation rate) is crucial to provide community protection. Although lower net usage in the pyriproxyfen-pyrethroid LLIN group could have partially contributed to the lack of effect, we are also assessing textile durability, sterilisation effects, and chemical content of pyriproxyfen-pyrethroid LLINs to fully understand these results.\n", - "\n", - "With several trials now showing the superior efficacy of next-generation LLINs over pyrethroid-only nets, the importance of developing new active ingredients to use on nets in the future is brought to the fore. The distribution of next-generation LLINs across sub-Saharan Africa has already begun, with the development of the brands of chlorfenapry-pyrethroid nets underway,3 as well as the development of chlorfenapry product formulations for indoor residual spraying.3 Although chlorfenapry-pyrethroid nets offer a superior alternative to pyrethroid-only nets in areas of pyrethroid resistance, to preserve their effectiveness optimal resistance-management strategies should be used. There was no evidence of the development of resistance to chlorfenapry during the 2 years of this trial; however, the wide-scale deployment of one type of insecticide risks the rapid development of resistance, which could result in a similar situation to the current widespread resistance to pyrethroids. The nets should be deployed ideally alongside other insecticides as part of a strategy aimed to reduce selection pressure for development of resistance in mosquito vectors. Given the significant effect of the pyriproxyfen-pyrethroid LLINs on malaria transmission during the first year after net distribution, additional studies are necessary to evaluate the potential value of active ingredients such as pyriproxyfen, which are not primarily intended to kill resistant adult mosquitoes but rather to sterilise them. There might still be a role for these hormone growth-regulator insecticides in combination with other active ingredients for net treatment in long-term resistance management.\n", - "\n", - "If WHO policy recommendations are made on the basis of this trial's results, future chlorfenapry-pyrethroid nets might not have to undergo the rigorous trial testing that Interceptor G2 has. Caution should, however, be taken to assess the comparative efficacy, quality, and durability of the second-in-class chlorfenapry-pyrethroid nets as they might use different concentrations of chlorfenapry, different pyrethroids, or different net materials. Considering the time and resources required to generate evidence of epidemiological effect using randomised trials, non-inferiority experimental hut trials, recently proposed by WHO,3 might be a useful alternative for second-in-class chlorfenapry-pyrethroid LLINs. Further work to investigate the capacity of such entomological studies to predict the performance of the trial nets against clinical malaria is ongoing.3\n", - "\n", - "Footnote 3: endnote: [https://www.thelanct.com/Vol.401](https://www.thelanct.com/Vol.401). February 11, 2023\n", - "\n", - "Our study has some limitations. First, net ownership and use were high throughout the study; however, this did not always equate to study net use, which was approximately 60% at 2 years after net distribution, with overall usage of greater than 80%. Similar findings have been observed in other bednet trials, and probably indicate populations choosing to discard damaged nets when other nets are readily available. Second, the three types of nets were not completely identical and differences in textile material and size might have resulted in differential net usage between the groups. As our net use indicator was primarily self-reporting, it is also possible that net usage was overestimated. Third, our primary measure of incidence was based on active detection, involving visits every 2 weeks or every month. The passive data collected alongside the trial suggests that this frequency of visit resulted in some cases being missed, meaning the absolute effect of the nets might be greater than reported here. However, the relative effect of the nets remained similar when the active and passive data were combined. Finally, cost-effectiveness was not assessed; however, the trial in Tanzania' showed that dual active-ingredient LLINs can be highly cost-effective and even cost-saving compared with pyrethroid-only LLINs when providing sufficient protection.\n", - "\n", - "New classes of vector control interventions currently require clinical trial evaluation in two different geographical settings, after 24 months of community use.4 Currently, the only class of next-generation LLIN to receive a WHO recommendation are the PBO synergism nets. However, previous publications have shown concerns about the durability of these nets.5 This trial provides the second key evidence for the effectiveness of chlorfenapry-pyrethroid nets in an area with pyrethroid-resistant vectors and will therefore support a WHO policy recommendation. However, the effect of the nets was reduced in the second year of the trial, and there is no evidence for the efficacy of the nets in their third year of use. Many studies report that the durability of nets is much less than the 3 years required to be designated as long lasting.5 The next-generation LLINs might face the same problems of fabric integrity and durability of insecticidal content unless standards of manufacture are improved. Different channels of distribution (eg, school-based, antenatal care visits, or expanded programme immunisation visits) could play a key role in maintaining high levels of net use in communities.5\n", - "Although generating this evidence to support a WHO recommendation for another class of bednet is a key turning point in malaria control, without new insecticides and new ways to deploy them, we risk repeating the mistakes of the past. Now is the time for more innovation and less complacency.\n", - "\n", - "header: Abstract\n", - "\n", - "Efficacy of pyriproxyfen-pyrethroid long-lasting insecticidalnets (LLINs) and chlorfenapyr-pyrethroid LLINs compared with pyrethroid-only LLINs for malaria control in Benin: a cluster-randomised, superiority trial\n", - "\n", - "Manfred Accomphesi\n", - "\n", - "\n", - "Background New classes of long-lasting insecticidal nets (LLINs) combining mixtures of insecticides with different modes of action could put malaria control back on track after rebounds in transmission across sub-Saharan Africa. We evaluated the relative efficacy of pyriproxyfen-pyrethroid LLINs and chlorfenapyr-pyrethroid LLINs compared with standard LLINs against malaria transmission in an area of high pyrethroid resistance in Benin.\n", - "\n", - "header: Procedures\n", - "\n", - "The nets tested in the trial were: Royal Guard (Disease Control Technologies, Greer, SC, USA), polyethylene netting (I20 deniers incorporating 220 mg/m2 pyriproyfen and 220 mg/m2 alpha-cypermethrin); Interceptor G2 (BASF SE, Ludwigshafen, Germany), polyester netting (100 deniers coated with 200 mg/m2 chlorfenapyr and 100 mg/m2 alpha-cypermethrin); and the reference net, Interceptor (BASF SE, Ludwigshafen, Germany), polyester netting (100 deniers coated with 200 mg/m2 of alpha-cypermethrin). Nets were distributed in collaboration with the Benin National Malaria Control Program. Households were asked to collect their nets from a central point and received one net per every two residents in their household, rounded up for odd numbers. Nets already in houses were not removed but households were encouraged to use the new study nets. Additionally, net hang-up campaigns to encourage net use took place at 1 month and 7 months after distribution. Net coverage surveys to assess net ownership and usage were done at 1, 9, and 24 months after distribution. Throughout the follow-up period, children enrolled in the analysis cohort and participants enrolled in the cross-sectional surveys were also asked about their net use.\n", - "\n", - "Insecticide content at baseline was assessed on 30 randomly selected new nets per LLIN brand, by gas chromatography with Flame Ionisation Detection, at the\n", - "Centre Wallon de Recherches Agronomiques, Gembloux, Belgium. The insecticidal and physical durability of the study nets is being assessed in a separate study.\n", - "\n", - "Due to the COVID-19 pandemic, there was a 3-month gap between the distribution of the nets and the enrolment of children in the cohort. At enrolment and at 1 year after distribution (April, 2021), children were treated with antimalarial drugs (atremether-lumefantrinity to clear any underlying infection. The cohort was monitored from August, 2020, to April, 2022, a 21-month period, which encompassed the first 2 years after net distribution. Study nurses visited children every 2 weeks during the transmission season (April-October) and every 1 month in the dry season (November-March). At each visit, children were clinically examined and if they were febrile or had a history of fever in the past 48 h, they were tested for malaria using a malaria rapid diagnostic test. If the test was positive, the child was treated with artemether-lumefantrine, according to national guidelines.\n", - "\n", - "During cross-sectional surveys, all participants were tested for malaria using a malaria rapid diagnostic test and received treatment if the test was positive, and children younger than 5 years were tested for anaemia. Information regarding net ownership and usage, and other household-level indicators were collected at the same time.\n", - "\n", - "Entomological monitoring was also delayed and took place every 3 months between June, 2020, and April, 2022. Volunteers recruited from study clusters collected mosquitoes that landed on their legs between 1900 h and 0700 h for 1 night at four randomly selected houses in each cluster at each timepoint. Mosquitoes were morphologically identified to species and a subsample of _Anopheles_ spp was tested for molecular species using PCR.(r) A random sample of _Anopheles_ spp (up to 30% from each nightly catch in each cluster) were tested for sporozoites using the ELISA circumsporozoite protein technique.(r)\n", - "\n", - "header: Contributions\n", - "\n", - "NP, JC, and CN conceived and designed the study, with contributions from MR, IK, LAM, and MCA, JC and MA led the development of the analysis plan, with input from BA, Aso, and NP, MA, CA, JC, NP, FT, and MCA coordinated the trial implementation with local and national authorities, RA, and AO-H. MA, BF, HA, Aso, and LA led the data collection in the field with and Aso, and AP, each of them, MCA, JC, and NP and NP. Also, BC, BA, and KAB led the molecular laboratory work.\n", - "\n", - "header: Methods\n", - "\n", - "We conducted a cluster-randomised, superiority trial in Zou Department, Benin. Clusters were villages or groups of villages with a minimum of 100 houses. We used restricted randomisation to randomly assign 60 clusters to one of three LLIN groups (I:1:1): to receive nets containing either pyriproxyfen and alpha-Cypermethrin (pyrethroid), chlorfenapyr and alpha-Cypermethrin only (reference). Households received one LLIN for every two people. The field team, laboratory staff, analyses team, and community members were masked to the group allocation. The primary outcome was malaria case incidence measured over 2 years after net distribution in a cohort of children aged 6 months-10 years, in the intention-to-treat population. This study is ongoing and is registered with ClinicalTrials.gov, NCT03931473.\n", - "\n", - "Findings Between May 23 and June 24, 2019, 53 854 households and 216 289 inhabitants were accounted for in the initial census and included in the study. Between March 19 and 22, 2020, 115 323 LLINs were distributed to 54030 households in an updated census. A cross-sectional survey showed that study LLIN usage was highest 9 months after distribution (5532 [76 * 986] of 7206 participants), but decreased by 24 months (4032 [60 * 696] of 6654). Mean malaria incidence over 2 years after LLIN distribution was 1-03 cases per child-year (95% CI 0 * 96-1 * 09) in the pyrethroid-only LLIN reference group. 0 * 84 cases per child-year (0.78-0 * 90) in the pyriproxyfen-pyrethroid LLIN group (hazard ratio [HR] 0 * 86, 95% CI 0 * 65-1* 14; p=0 * 28), and 0 * 56 cases per child-year (0 * 51-0 * 61) in the chlorfenapyr-pyrethroid LLIN group (HR 0 * 54, 95% CI 0 * 42-0 * 70; p<0 * 0001).\n", - "\n", - "Interpretation Over 2 years, chlorfenapyr-pyrethroid LLINs provided greater protection from malaria than pyrethroid-only LLINs in an area with pyrethroid-resistant mosquitoes. Pyriproxyfen-pyrethroid LLINs conferred protection similar to pyrethroid-only LLINs. These findings provide crucial second-trial evidence to enable WHO to make policy recommendations on these new LLIN classes. This study confirms the importance of chlorfenapyr as an LLIN treatment to control malaria in areas with pyrethroid-resistant vectors. However, an arsenal of new active ingredients is required for successful long-term resistance management, and additional innovations, including pyriproxyfen, need to be further investigated for effective vector control strategies.\n", - "\n", - "header: Methods\n", - "\n", - "We conducted a three-group, cluster-randomised, superiority trial in three districts (Cove, Zagnanado, and Ouinhi) in Zou Department, central Benin. Malaria is highly endemic in the region, with a peak during the wet season (May-October). The main vector control strategy in the study area is use of pyrethroid-only LLINs distributed en masse once every 3 years, and through routine service delivery by antenatal clinics and vaccination programmes. The primary vectors in the setting are _Anopheles coluzzi_ and _Anopheles gambiae_. There is a high intensity of pyrethroid resistance in the main local vector populations.11\n", - "\n", - "A demographic census of all 123 villages in the study area was done in June, 2019. Clusters consisted of villages, or several villages. To reduce contamination between study groups, clusters consisted of a core (minimum 100 households) surrounded by a buffer, ensuring that core areas of neighbouring clusters were separated by at least 1000 m. Households in the buffer and core received the intervention, but measurement of outcomes only took place in core areas. A detailed description of the study protocol is published elsewhere.\"\n", - "\n", - "Ethics approval was obtained from the Benin Ministry of Health ethics committee (6/30/MS/DC/SGM/DRFMT/CNERS/SA), the London School of Hygiene & Tropical Medicine ethics committee (16237), and the WHO Research Ethics Review Committee (ERC.0003153). The trial was independently monitored by a data safety monitoring board and a trial steering committee.\n", - "\n", - "Epidemiological effect was estimated through measuring malaria case incidence in the 2 years after net distribution by active case detection in a cohort of children. A cohort of approximately 30 children aged 6 months-9 years randomly selected (by simple random sampling using a random number generator) from each cluster (1800 in total) was enrolled in July, 2020. Children were eligible for inclusion if they were permanent residents in the cluster, had no serious illnesses, and written informed consent was obtained from their guardians.\n", - "\n", - "Malaria infection prevalence (in all ages) was measured by cross-sectional surveys at 6 months and 18 months after net distribution. 72 individuals residing in the core of each cluster were randomly selected (using a random number generator) from the census for each cross-sectional survey. Each prevalence surveyed collected data on malaria infection, measured using malaria rapid diagnostic tests (CareStart malaria HRP2/PLDH [pf/pan] combo, DiaSy, UK), net ownership and use, sex, and household assets (as a proxy for socioeconomic status).\n", - "\n", - "Entomological effects were measured using human landing catches in four randomly selected houses every 3 months in each cluster. Insecticide resistance intensity was measured in two clusters per group (six clusters total) at baseline and in each follow-up year.\n", - "\n", - "Written informed consent was obtained from all participants, or from guardians for participants younger than 18 years. Assent was sought for children aged between 10 and 18 years. Written consent was also obtained from volunteer mosquito collectors who were all aged 18 years or older and who were vaccinated against yellow fever. All participation was voluntary, and participants could withdraw at any time. Study investigators sought consent in French or local languages.\n", - "\n", - "header: Funding UNITAID, The Global Fund.\n", - "\n", - "Pyrethroid-treated long-lasting insecticidal nets (LLINs) are the main malaria prevention intervention in sub-Saharan Africa and have been the major contributor to the estimated 1 * 5 billion malaria cases and 7 * 6 million malaria deaths averted in the past two decades. However, since 2015, the decline in malaria cases has stalled, and between 2019 and 2020, a rebound in malaria transmission was reported in some areas of sub-Saharan Africa.1 This rebound is likely to be a consequence of the continued spread of resistance to pyrethroid insecticides in malaria-transmitting mosquitoes, coinciding with a plateau in malaria control investment, leading to suboptimal coverage of interventions. Urgent actions are needed to prevent malaria resurgences, which were previously observed in sub-Saharan Africa in the 1980s after malaria control measures were scaled down.2\n", - "In the past 10 years, new insecticide-treated nets containing non-pyrethroid insecticides and insecticide synergists, in combination with pyrethroids, have been shown to be safe and efficacious against malaria mosquito vectors.14 The first net combined a pyrethroid insecticide and the synergistic piperonyl butoxide (PBO) and, following a randomised controlled trial,1 received a WHO policy recommendation in 2017. Other next-generation LLINs have shown encouraging results against resistant vectors in laboratory and small-scale entomological studies.47 One of these nets is a dual active-ingredient LLIN combining a pyrethroid and a pyrrole (chlorfenapyr). Both insecticides lead to mosquito mortality, with chlorfenapyr disrupting the production of cellular energy rather than targeting the nervous system, as pyrethroids do. Another dual active-ingredient LLIN combines a pyrethroid with an insect growth regulator (pyriprosyfen), which leads to sterility in exposed adult mosquitoes.\n", - "\n", - "The first randomised trial of these two products was conducted in Tanzania and showed that the chlorfenapyr-pyrethroid LLINs nearly halved malaria infection over 2 years in villages that received chlorfenapyr-pyrethroid LLINs compared with villages that received pyrethroid-only LLINs. PBO-pyrethroid LLINs were consistently found to be more effective than pyrethroid-only LLINs; however, the duration of the superior effect varied from 12 months to 21 months according to the different trials.\n", - "\n", - "header: Table 1: Baseline characteristics\n", - "footer: Data are n or %; n/N unless otherwise stated. EIR=entomological inoculation rate. LLIN=long-lasting insecticidal net. *Proportion of households in the poorest tercile based on the wealth index of the entire study area. †Anaemia defined as haemoglobin concentration of <10 g/dL. ‡Malaria vectors included Anopheles gambiae, Anophelesfunestus, and Anopheles nili\n", - "columns: ['Unnamed: 0_level_0 - Clusters', 'Pyriproxyfen-pyrethroid LLIN group - Clusters', 'Chlorfenapyr-pyrethroid LLIN group - Clusters', 'Pyrethroid-only LLIN group - Clusters']\n", - "\n", - "{\"0\":{\"Unnamed: 0_level_0 - Clusters\":\"Number of clusters\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"20\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"20\",\"Pyrethroid-only LLIN group - Clusters\":\"20\"},\"1\":{\"Unnamed: 0_level_0 - Clusters\":\"Total population in core and buffer areas\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"74822\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"70989\",\"Pyrethroid-only LLIN group - Clusters\":\"69239\"},\"2\":{\"Unnamed: 0_level_0 - Clusters\":\"Mean population in core area of clusters (range)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"1096.1 (225-4524)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"1120.5 (243-5040)\",\"Pyrethroid-only LLIN group - Clusters\":\"1058.1 (252-5217)\"},\"3\":{\"Unnamed: 0_level_0 - Clusters\":\"Number of people per household, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"4.0 (2.3)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"3.9 (2.3)\",\"Pyrethroid-only LLIN group - Clusters\":\"4.1 (2.4)\"},\"4\":{\"Unnamed: 0_level_0 - Clusters\":\"Number of sleeping spaces per household, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"2.2 (1.2)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"2.1 (1.1)\",\"Pyrethroid-only LLIN group - Clusters\":\"2.2 (1.2)\"},\"5\":{\"Unnamed: 0_level_0 - Clusters\":\"Household and participant characteristics in the baseline cross-sectional survey\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"Household and participant characteristics in the baseline cross-sectional survey\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"Household and participant characteristics in the baseline cross-sectional survey\",\"Pyrethroid-only LLIN group - Clusters\":\"Household and participant characteristics in the baseline cross-sectional survey\"},\"6\":{\"Unnamed: 0_level_0 - Clusters\":\"Low socioeconomic status*\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"35.8%; 529\\/1479\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"36.2%; 533\\/1474\",\"Pyrethroid-only LLIN group - Clusters\":\"29.0%; 431\\/1487\"},\"7\":{\"Unnamed: 0_level_0 - Clusters\":\"LLIN ownership (at least one LLIN in the household)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"96.4%; 1426\\/1479\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"97.1%; 1431\\/1474\",\"Pyrethroid-only LLIN group - Clusters\":\"95.1%; 1415\\/1488\"},\"8\":{\"Unnamed: 0_level_0 - Clusters\":\"LLIN usage in all age groups the night before survey\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"95.8%; 1312\\/1370\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"94.9%; 1258\\/1326\",\"Pyrethroid-only LLIN group - Clusters\":\"96.5%; 1343\\/1392\"},\"9\":{\"Unnamed: 0_level_0 - Clusters\":\"Malaria infection prevalence in all age groups\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"43.1%; 636\\/1475\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"40.7%; 598\\/1468\",\"Pyrethroid-only LLIN group - Clusters\":\"46.5%; 690\\/1485\"},\"10\":{\"Unnamed: 0_level_0 - Clusters\":\"Anaemia prevalence in children aged 6 months-4 years\\u2020\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"53.3%; 136\\/255\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"53.3%; 131\\/246\",\"Pyrethroid-only LLIN group - Clusters\":\"50.2%; 122\\/243\"},\"11\":{\"Unnamed: 0_level_0 - Clusters\":\"Entomological characteristics\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"Entomological characteristics\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"Entomological characteristics\",\"Pyrethroid-only LLIN group - Clusters\":\"Entomological characteristics\"},\"12\":{\"Unnamed: 0_level_0 - Clusters\":\"Human biting density per person per night indoors\\u2021, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"32.9 (28.9)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"21.6 (21.0)\",\"Pyrethroid-only LLIN group - Clusters\":\"29.2 (25.3)\"},\"13\":{\"Unnamed: 0_level_0 - Clusters\":\"Human biting density per person per night outdoors\\u2021, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"20.3 (17.6)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"16.4 (17.4)\",\"Pyrethroid-only LLIN group - Clusters\":\"20.6 (20.2)\"},\"14\":{\"Unnamed: 0_level_0 - Clusters\":\"Indoor EIR per person per night, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"0.62 (0.93)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"0.48 (0.65)\",\"Pyrethroid-only LLIN group - Clusters\":\"0.96 (1.18)\"},\"15\":{\"Unnamed: 0_level_0 - Clusters\":\"Outdoor EIR per person per night, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"0.27 (0.45)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"0.17 (0.44)\",\"Pyrethroid-only LLIN group - Clusters\":\"0.33 (0.45)\"},\"16\":{\"Unnamed: 0_level_0 - Clusters\":\"Children (aged 6 months-10 years) at cohort enrolment\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"Children (aged 6 months-10 years) at cohort enrolment\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"Children (aged 6 months-10 years) at cohort enrolment\",\"Pyrethroid-only LLIN group - Clusters\":\"Children (aged 6 months-10 years) at cohort enrolment\"},\"17\":{\"Unnamed: 0_level_0 - Clusters\":\"Proportion of children younger than 5 years\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"52.3%; 316\\/604\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"50.6%; 304\\/601\",\"Pyrethroid-only LLIN group - Clusters\":\"53.6%; 322\\/601\"},\"18\":{\"Unnamed: 0_level_0 - Clusters\":\"Proportion of female children\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"47.2%; 285\\/604\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"48.4%; 291\\/601\",\"Pyrethroid-only LLIN group - Clusters\":\"48.8%; 293\\/601\"},\"19\":{\"Unnamed: 0_level_0 - Clusters\":\"Net usage the night before survey\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"99.0%; 598\\/604\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"98.7%; 593\\/601\",\"Pyrethroid-only LLIN group - Clusters\":\"99.2%; 596\\/601\"}}\n", - "\n", - "header: Study design and participants: Randomisation and masking\n", - "\n", - "We used restricted randomisation to randomly assign 60 clusters to one of three LLIN groups (1:1:1), to receive nets containing either pyriproxyfen and alpha-cypermethrin (pyrethroid), chlorfenapyr and alpha-cypermethrin, or alpha-cypermethrin only (reference). Restricted randomisation was used to ensure balanced cluster allocation between study groups with respect to population size, malaria infection prevalence (measured in the baseline survey), district (n=3), and socioeconomic status.\n", - "\n", - "To mask the net types from the participants and the field workers, the nets were designed to look as similar as possible. Each net was rectangular, was requested to be the same size (1-8 m length, 1-9 m width, and 1-8 m height), and blue. To differentiate the nets in the field, a colour-coded loop was attached to the net. All data analyses were performed masked.\n", - "\n", - "header: Table 2: Malaria case incidence in children aged 6 months–10 years per year of follow-up and overall (including active visits only)\n", - "footer: Each intervention was compared with the pyrethroid-only LLIN group for the same timepoint. LLIN=long-lasting insecticidal net. *A p value of <0·025 was considered significant after Bonferroni correction\n", - "columns: ['Unnamed: 0_level_0 - Overall', 'Number of clinical malaria episodes - Overall', 'Child- years of follow-up - Overall', 'Incidence, cases per child-year (95% Cl) - Overall', 'Hazard ratio - Overall', '95%Cl - Overall', 'p value* - Overall']\n", - "\n", - "{\"0\":{\"Unnamed: 0_level_0 - Overall\":\"Pyrethroid-only LLIN group\",\"Number of clinical malaria episodes - Overall\":\"897\",\"Child- years of follow-up - Overall\":\"874.3\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"1.03 (0.96-1.09)\",\"Hazard ratio - Overall\":\"1 (ref)\",\"95%Cl - Overall\":null,\"p value* - Overall\":null},\"1\":{\"Unnamed: 0_level_0 - Overall\":\"Pyriproxyfen-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"744\",\"Child- years of follow-up - Overall\":\"883.8\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.84 (0.78-0.90)\",\"Hazard ratio - Overall\":\"0.86\",\"95%Cl - Overall\":\"0.65-1.14\",\"p value* - Overall\":\"0.28\"},\"2\":{\"Unnamed: 0_level_0 - Overall\":\"Chlorfenapyr-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"494\",\"Child- years of follow-up - Overall\":\"887.3\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.56 (0.51-0.61)\",\"Hazard ratio - Overall\":\"0.54\",\"95%Cl - Overall\":\"0.42-0.70\",\"p value* - Overall\":\"<0.0001\"},\"3\":{\"Unnamed: 0_level_0 - Overall\":\"Year 1\",\"Number of clinical malaria episodes - Overall\":\"Year 1\",\"Child- years of follow-up - Overall\":\"Year 1\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"Year 1\",\"Hazard ratio - Overall\":\"Year 1\",\"95%Cl - Overall\":\"Year 1\",\"p value* - Overall\":\"Year 1\"},\"4\":{\"Unnamed: 0_level_0 - Overall\":\"Pyrethroid-only LLIN group\",\"Number of clinical malaria episodes - Overall\":\"267\",\"Child- years of follow-up - Overall\":\"344.4\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.77 (0.69-0.87)\",\"Hazard ratio - Overall\":\"1 (ref)\",\"95%Cl - Overall\":null,\"p value* - Overall\":null},\"5\":{\"Unnamed: 0_level_0 - Overall\":\"Pyriproxyfen-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"211\",\"Child- years of follow-up - Overall\":\"342.7\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.62 (0.54-0.70)\",\"Hazard ratio - Overall\":\"0.83\",\"95%Cl - Overall\":\"0.51-1.35\",\"p value* - Overall\":\"0.46\"},\"6\":{\"Unnamed: 0_level_0 - Overall\":\"Chlorfenapyr-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"124\",\"Child- years of follow-up - Overall\":\"349.2\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.36 (0.30-0.42)\",\"Hazard ratio - Overall\":\"0.46\",\"95%Cl - Overall\":\"0.30-0.72\",\"p value* - Overall\":\"0.0005\"},\"7\":{\"Unnamed: 0_level_0 - Overall\":\"Year 2\",\"Number of clinical malaria episodes - Overall\":\"Year 2\",\"Child- years of follow-up - Overall\":\"Year 2\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"Year 2\",\"Hazard ratio - Overall\":\"Year 2\",\"95%Cl - Overall\":\"Year 2\",\"p value* - Overall\":\"Year 2\"},\"8\":{\"Unnamed: 0_level_0 - Overall\":\"Pyrethroid-only LLIN group\",\"Number of clinical malaria episodes - Overall\":\"630\",\"Child- years of follow-up - Overall\":\"529.9\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"1.19 (1.10-1.29)\",\"Hazard ratio - Overall\":\"1 (ref)\",\"95%Cl - Overall\":null,\"p value* - Overall\":null},\"9\":{\"Unnamed: 0_level_0 - Overall\":\"Pyriproxyfen-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"533\",\"Child- years of follow-up - Overall\":\"541.1\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.98 (0.90-1.07)\",\"Hazard ratio - Overall\":\"0.88\",\"95%Cl - Overall\":\"0.68-1.13\",\"p value* - Overall\":\"0.31\"},\"10\":{\"Unnamed: 0_level_0 - Overall\":\"Chlorfenapyr-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"370\",\"Child- years of follow-up - Overall\":\"538.1\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.69 (0.62-0.76)\",\"Hazard ratio - Overall\":\"0.57\",\"95%Cl - Overall\":\"0.45-0.73\",\"p value* - Overall\":\"<0.0001\"}}\n", - "\n", - "header: Table 3: Malaria infection and anaemia prevalence in the study population at 6 months and 18 months after net distribution (intention-to-treat analysis)\n", - "footer: Anaemia was defined as a haemogloblin concentration of <10 g/dL. LLIN=long-lasting insecticidal net. OR=odds ratio. *A p value of <0·025 was considered significant after Bonferroni correction\n", - "columns: ['Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution', 'Malaria infection - n/N - 6 months after net distribution', 'Malaria infection - Prevalence - 6 months after net distribution', 'Malaria infection - OR - 6 months after net distribution', 'Malaria infection - 95% Cl - 6 months after net distribution', 'Malaria infection - p value* - 6 months after net distribution', 'Anaemia in children younger than 5 years - n/N - 6 months after net distribution', 'Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution', 'Anaemia in children younger than 5 years - OR - 6 months after net distribution', 'Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution', 'Anaemia in children younger than 5 years - p value* - 6 months after net distribution']\n", - "\n", - "{\"0\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Pyrethroid-only LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"412\\/1471\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"28.0%\",\"Malaria infection - OR - 6 months after net distribution\":\"1 (ref)\",\"Malaria infection - 95% Cl - 6 months after net distribution\":null,\"Malaria infection - p value* - 6 months after net distribution\":null,\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"99\\/241\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"41.1%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"1 (ref)\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":null,\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":null},\"1\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Pyriproxyfen-pyrethroid LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"394\\/1463\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"26.9 %\",\"Malaria infection - OR - 6 months after net distribution\":\"0.92\",\"Malaria infection - 95% Cl - 6 months after net distribution\":\"0.63-1.35\",\"Malaria infection - p value* - 6 months after net distribution\":\"0.67\",\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"117\\/250\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"46.8%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"1.24\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":\"0.71-2.18\",\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":\"0.45\"},\"2\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Chlorfenapyr-pyrethroid LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"231\\/1475\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"15.7%\",\"Malaria infection - OR - 6 months after net distribution\":\"0.47\",\"Malaria infection - 95% Cl - 6 months after net distribution\":\"0.32-0.69\",\"Malaria infection - p value* - 6 months after net distribution\":\"0.0002\",\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"82\\/241\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"34.0%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"0.71\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":\"0.40-1.26\",\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":\"0-24\"},\"3\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"18 months after net distribution\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"18 months after net distribution\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"18 months after net distribution\",\"Malaria infection - OR - 6 months after net distribution\":\"18 months after net distribution\",\"Malaria infection - 95% Cl - 6 months after net distribution\":\"18 months after net distribution\",\"Malaria infection - p value* - 6 months after net distribution\":\"18 months after net distribution\",\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"18 months after net distribution\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"18 months after net distribution\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"18 months after net distribution\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":\"18 months after net distribution\",\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":\"18 months after net distribution\"},\"4\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Pyrethroid-only LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"576\\/1489\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"38.7%\",\"Malaria infection - OR - 6 months after net distribution\":\"1 (ref)\",\"Malaria infection - 95% Cl - 6 months after net distribution\":null,\"Malaria infection - p value* - 6 months after net distribution\":null,\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"118\\/252\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"46.8%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"1 (ref)\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":null,\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":null},\"5\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Pyriproxyfen-pyrethroid LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"564\\/1478\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"38.2%\",\"Malaria infection - OR - 6 months after net distribution\":\"0.97\",\"Malaria infection - 95% Cl - 6 months after net distribution\":\"0.69-1.37.\",\"Malaria infection - p value* - 6 months after net distribution\":\"0.87\",\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"108\\/245\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"44.1%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"0.84\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":\"0.40-1.79\",\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":\"0.65\"},\"6\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Chlorfenapyr-pyrethroid LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"414\\/1483\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"27.9%\",\"Malaria infection - OR - 6 months after net distribution\":\"0.60\",\"Malaria infection - 95% Cl - 6 months after net distribution\":\"0.43-0.85\",\"Malaria infection - p value* - 6 months after net distribution\":\"0.0041\",\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"118\\/246\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"48.0%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"1.08\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":\"0.51-2.28\",\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":\"0.84\"}}\n", - "\n", - "header: Introduction: Added value of this study\n", - "\n", - "To our knowledge, this is the second study aiming to compare the efficacy of the next generation of LLINs combining _p_iprosyfen or chlorfenapyr and pyrethroid versus standard pyrethroid-only LLINs, and the first of its kind to be conducted in west Africa. This trial confirmed the superior efficacy of chlorfenapyr-pyrethroid LLINs, in terms of malaria case incidence, prevalence, and transmission in children, over 2 years of use in the community, in an area of moderate malaria transmission and with high insecticide resistance intensity in malaria vectors, in Benin. However, pyrioxyfen-pyrethroid LLINs did not offer additional protection against malaria outcomes compared with pyrethroid-only LLINs.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ClinicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `ClinicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `ClinicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}, \"Start_month\": {\"title\": \"Start Month\", \"description\": \"Numerical start month of the reporting period (some studies may report multiple time periods)\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Village trial\",\"Country\":\"Benin\",\"Site\":\"Cove\",\"Start_month\":5,\"Start_year\":2019,\"End_month\":6,\"End_year\":2019},\"S02\":{\"Study_type\":\"Village trial\",\"Country\":\"Benin\",\"Site\":\"Zagnanado\",\"Start_month\":5,\"Start_year\":2019,\"End_month\":6,\"End_year\":2019},\"S03\":{\"Study_type\":\"Village trial\",\"Country\":\"Benin\",\"Site\":\"Ouinhi\",\"Start_month\":5,\"Start_year\":2019,\"End_month\":6,\"End_year\":2019}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Concentration_initial\": {\"title\": \"Insecticide concentration (initial)\", \"description\": \"Enter the initial concentration of the insecticide(s) for net type at the time of distribution.\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"Royal Guard\",\"Insecticide\":\"pyriproyfen, alpha-cypermethrin\",\"Concentration_initial\":\"220 mg\\/m2, 220 mg\\/m2\"},\"N02\":{\"Net_type\":\"Interceptor G2\",\"Insecticide\":\"chlorfenapyr, alpha-cypermethrin\",\"Concentration_initial\":\"200 mg\\/m2, 100 mg\\/m2\"},\"N03\":{\"Net_type\":\"Interceptor\",\"Insecticide\":\"alpha-cypermethrin\",\"Concentration_initial\":\"200 mg\\/m2\"}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Data sharing: Acknowledgments\n", - "\n", - "This trial was funded by a grant to the London School of Hygiene & Tropical Medicine from UNITAD and The Global Fund via the Innovative Vector Control Consortium. This trial is part of a larger project. The New Nets project: We thank the communities from the three study districts (Cow, Zagnanado, Ouinhi), particularly the participants, children and their parents, community health workers, staff in health clinics, and the regional study team. We thank colleagues and staff at the Centre de Recherche Entomologique de Cotonou and those at the National Malaria Control Program. We also thank the trial system committee, the data safety monitoring board, and Charles Dickinson (School of Epidemiology and Public Health, University of Ottawa, Ottawa, ON, Canada) for supporting the mapping and cluster delineation.\n", - "\n", - "header: Role of the funding source\n", - "\n", - "The funders of the study had no role in study design, data collection, data analysis, data interpretation, writing of the report, or in the decision to submit for publication.\n", - "\n", - "header: Outcomes\n", - "\n", - "The primary outcome was malaria case incidence (infrared frontal temperature >37.5degC or reported fever in the previous 48 h, and positive malaria rapid diagnostic test) in children enrolled in the active case detection cohort in the 2 years after net distribution. Visits of children in the cohort at health facilities were monitored and the results of malaria rapid diagnostic tests and any treatment given were recorded. However, it was difficult to assess with certainty if malaria rapid diagnostic tests were used only if the child was symptomatic (as our protocol specified); therefore, the passive data was not included in the primary analyses.\n", - "\n", - "Secondary clinical outcomes were malaria infection prevalence in all age groups and anaemia (defined as haemoglobin concentration <10 g/dL) prevalence in children aged 5 years or younger at 6 months and 18 months after net distribution.\n", - "\n", - "Type and duration of adverse events related to usage of nets were recorded using a prespecified questionnaire at each cohort visit and during net usage and cross-sectional surveys. Data on hospitalisation and death in children in the cohort were collected by interviewing the child's guardian and reviewing the hospital record, following receipt of consent.\n", - "\n", - "The primary entomological outcome was entomological inoculation rate, measured as the mean number of _Plasmodium_ spp infective malaria vectors collected per person per night measured indoors and outdoors. Secondary entomological outcomes were vector density (number of mosquitoes caught per person per night), sporozoite rate, and species composition. Centers for Disease Control and Prevention bottle bioassays were performed by exposing adult female _An gambiae_, collected as larvae, to alpha-cypermethrin for 30 min (1, 2, 5, and 10 times the diagnostic dose), and to chlorfenrapy (100 mg/bottle) and pyriproxyfen (100 mg/bottle) for 60 min each year.(r) Mortality was recorded at 30 min for all four doses of alpha-cypermethrin (insectidic resistance intensity measurement), and at 24, 48, and 72 h after exposure for chlorfenapyr. The reduction in fecundity rate induced by pyriproxyfen relative to unexposed mosquitoes was assessed by ovarian dissection, 3 days after pyriproxyfen exposure. Other outcomes included in the protocol (parity, resting behaviour, survivorship, and other resistance measures) are still to be analysed and will be published elsewhere.\n", - "\n", - "header: Methods\n", - "\n", - "Data collected for the study, including deidentified participant data and data dictionaries, might be made available at the end of the third year of trial follow-up upon reasonable request to the corresponding author.\n", - "\n", - "header: Statistical analysis\n", - "\n", - "The sample size calculations for epidemiological data collection were calculated using the method of Hayes and Moulton.(r) The study was designed to detect a 30% difference in malaria case incidence, assuming a control group incidence of 1 malaria case per child-year and a coefficient of variation of 0-3 between clusters. This design required 20 clusters per group and 25 (20+5 allowing for loss to follow-up) children per cluster followed up for 2 years to give 80% power. Due to the delay in enrolment, which resulted in a shorter follow-up time, the number of children per cluster was increased to 30 (1800 children total). This sample size calculation includes adjustment for multiple testing (allowing for the three groups) using a Bonferroni-corrected two-sided a of 2.5%.\n", - "\n", - "For malaria infection prevalence, it was assumed that the prevalence in the reference group was 40%, with a coefficient of variation between clusters of 0-3. With 72 individuals per cluster, the study had 80% power to detect a 30% lower prevalence in the intervention groups compared with the reference group, using a Bonferroni-corrected a for multiple comparisons.\n", - "\n", - "The primary intention-to-treat analysis was a comparison of incidence of clinical malaria episodes between each dual active-ingredient LLIN group and the\n", - "\n", - "header: Contributions\n", - "\n", - "NP, JC, and CN conceived and designed the study, with contributions from MR, IK, LAM, and MCA, JC and MA led the development of the analysis plan, with input from BA, Aso, and NP, MA, CA, JC, NP, FT, and MCA coordinated the trial implementation with local and national authorities, RA, and AO-H. MA, BF, HA, Aso, and LA led the data collection in the field with and Aso, and AP, each of them, MCA, JC, and NP and NP. Also, BC, BA, and KAB led the molecular laboratory work.\n", - "\n", - "header: Implications of all the available evidence\n", - "\n", - "Given the positive findings, both in Benin and Tanzania, for chlorfenapyr-pyrethroid LLINs, they are likely to become the first WHO-recommended LLINs impregnated with an insecticide class other than pyrethroids. The absence of superior efficacy of pyrioxyfen-pyrethroid LLINs compared with standard pyrethroid-only LLINs is consistent with the results of the previous Tanzania study and calls into question the role of the current pyrioxyfen-pyrethroid LLINs in future malaria vector strategies.\n", - "\n", - "header: Results\n", - "\n", - "Between May 23 and June 24, 2019, 53854 households and 216 289 inhabitants were accounted for in the initial census and included in the study. The households were delineated into 61 clusters, with one subsequently excluded due to extensive seasonal flooding (figure). Baseline cross-sectional epidemiological and entomological surveys were conducted between October and November, 2019 (table 1). The malaria infection prevalence was 43 5% (1924 of 4428 participants, cluster range 15 1-72 796) and population self-reported LLIN usage was 95 7% (3913 of 4088 participants). Cluster demographics and malaria prevalence were similar between groups (table 1). Entomological inoculation rate was 0 68 _Plasmodium_ spp infective bites per person per night (cluster range 0 00-3 80) indoors and 0 26 per person per night (0 00-1 88) outdoors.\n", - "\n", - "Between March 19 and 22, 2020, 115 323 LLINs were distributed to 54 300 households in an updated census, with 97 1% of households receiving at least one net per household. Active ingredients in the new nets were found to be within or higher than the acceptable target limits depending on LLIN brand (appendix p 4). Study net usage was highest (5532 [76 8%] of 7206 participants) at 9 months after distribution, following a second hang-up campaign, but had decreased by 24 months (4032 [60 6%] of 6654). Study net coverage and usage indicators were similar between study groups up to 18 months after net distribution. At 24 months, pyriproxyfen-pyrethroid LLIN usage and ownership was the lowest (appendix pp 5-6). Use of any type of LLIN (study LLINs and others) remained greater than 80% up to 24 months after distribution (appendix p 7).\n", - "\n", - "In the 2283 households that were randomly selected for post-intervention cohort follow-up, 3129 children were eligible, 1829 of whom were randomly selected, and consent was obtained for 1806 (figure). Among the 2849 and 2771 households randomly selected at 6 months and 18 months after LLIN distribution for the malaria prevalence cross-sectional surveys, 4781 (85 1%) of 5620 households consent, with a similar proportion in the two surveys. The remaining households were either not available during the visit (775 [13 8%] of) or declined to participate (64 [1 1%]; appendix p 8).\n", - "\n", - "Children aged 6 months-9 years enrolled for active case detection were monitored for 21 months, for a total follow-up time of 2645 4- child-years at risk. Loss to follow-up was similar between groups (figure). At enrolment, children were balanced on age, sex, and net usage. During the 21-month follow-up period, we detected 2135 malaria cases through active case detection (table 2). The mean malaria case incidence over 21 months of follow-up was 1 03 cases per child-year (95% CI 0 96-1 09) in the pyrethroid-only LLIN reference group, 0 84 cases per child-year (0 78-70 90) in the pyriproxyfen-pyrethroid LLIN group (hazard ratio [HR] 0 86, 95% CI 0 65-1 46; p = 0 - 28), and 0 56 cases per child-year (0 51-0 64) in the chlorfenapry-pyrethroid LLIN group (HR 0 54, 95% CI 0 - 42-0 70; p < 0 0001; table 2). The strongest effect was observed in the first year of follow-up in the chlorfenapry-pyrethroid group (HR 0 46, 95% CI 0 30-0 72; p = 0 - 0005; table 2). When combining active and passive visits, the number of cases detected nearly doubled; however, the effect size in comparison to the reference group was similar for both intervention nets (appendix p 9).\n", - "\n", - "Malaria infection prevalence was 23 5% (1037 of 4409 participants) at 6 months and 34 9% (1554 of 4450) at 18 months after net distribution (table 3). There was strong evidence for a reduction of malaria infection prevalence in the chlorfenapry-pyrethroid LLIN group at 6 months (15 7%; odds ratio [OR] 0 47, 95% CI 0 32-0 69; p = 0 0002) and at 18 months (27 9%; OR 0 60 - 60, 0 - 43-0 85; p = 0 004) compared with the reference group (28 - 0% at 6 months and 38 7% at 18 months; table 3). In the pyriproxyfen-pyrethroid group, there was no evidence for a reduction in malaria prevalence at 6 months (26 9%; OR 0 - 92, 95% CI 0 63-1 35; p = 0 - 67) or 18 months (38 2%; OR 0 97 0, 0 69-1 37; p = 0 87) compared with the reference group. Results were similar for the per-protocol analysis (appendix p 1). There was no evidence of a reduction in moderate to severe anaemia prevalence in either intervention group (table 3). The post-hoc analysis adjusting for covariates used in the randomisation did not change the interpretation of the results (appendix pp 12-13).\n", - "\n", - "\n", - "Adverse events related to study nets were reported in 528 (45-496) of 1162 participants surveyed at 1 month after net distribution. The highest proportion of adverse events was reported in the pyrethroid-only LLIN group (247 [63-8%] of 387 participants), followed by the pyriproyfen-pyrethroid LLIN group (212 [52-5%] of 404) and then the chlorfenapy-pyrethroid LLIN group (69 [18-6%] of 371). Facial burning (392 [33-7%] of 1162 participants), and skin irritation or itchiness (244 [20-9%]) were the most common adverse events in all groups. Adverse events were rare in all three groups at all later timepoints (appendix P 14-15). We recorded 44 serious adverse events (including three deaths) in the cohort children, with 32 (72-7%) documented as severe malaria (11 cases in the pyriproyfen-pyrethroid LLIN group, ten in the chlorfenapy-pyrethroid LLIN group, and 11 in the pyrethroid-only LLIN group). No serious adverse events related to net use were reported.\n", - "\n", - "A total of 259265 mosquitoes were collected over 3840 collection nights indoors and outdoors, of which 20-9% (29814 from indoors and 24436 from outdoors) were malaria vectors, with _An gambiae_ sensu that the most predominant. Overall, indoor entomological inoculation rate was lower in both intervention groups than in the reference group, with a mean entomological inoculation rate of 0-90 infectious bites per night per person in the chlorfenapy-pyrethroid LLIN group (rate ratio [RR] 0-34, 95% CI 0-18-0-62; p=0-0005), 0-12 in the pyriproyfen-pyrethroid LLIN group (RR 0-42, 0-2-3-0-74; p=0-0028), and 0-28 in the pyrethroid-only LLIN group (table 4). Mean indoor vector density appeared to be lower in the chlorfenapy-pyrethroid LLIN group (10-18 bites per person per night, density ratio 0-44, 95% CI 0-2-30-84; p=0-014), and in the pyriproyfen-pyrethroid LLIN group (13-6 bites per person per night, density ratio 0-58, 0-30-1-12; p=0-011) than in the reference group (23-0 bites per person per night, but the latter difference was not statistically significant (table 4). Adjusting for baseline vector density in the models gave similar results (appendix P 16). There was no significant difference in sporozoite rate in any of the intervention groups compared with the reference group (table 4).\n", - "\n", - "Reduction in outdoor entomological inoculation rate compared with the reference group was observed only in the chlorfenapy-pyrethroid LLIN group (RR 0-30, 95% CI 0-13-0-67; p=0-0035; appendix P 17). There was very weak evidence for a reduction in outdoor entomological inoculation rate in the pyriproyfen-pyrethroid LLIN group compared with the pyrethroid-only group (RR 0-58, 0-30-1-13; p=0-11). Similar effects were observed for outdoor vector density for both intervention nets (appendix P 17).\n", - "\n", - "Post-intervention pyrethrold resistance intensity was high across the study groups in _An gambiae_ sensu lato, with mean mortality of 85% or less after exposure to 10 times the diagnostic concentrations of alpha-cypentrohin in year 2 (appendix P 18). No resistance to chlorfenapy was observed during either year after net distribution (appendix P 18). Exposure of _An gambiae_ sensu lato to pyriproyfen led to a high reduction in fecundity rate relative to unexposed control mosquitoes over the 2 years after net distribution (73-2%, 95% CI 62-2-82-4 in year 1, and 76-6%, 66-6-84-9 in year 2).\n", - "\n", - "header: Discussion\n", - "\n", - "This trial assessed the efficacy of two dual active-ingredient LLINs in an area of Benin with malaria vectors that are highly resistant to pyrethroids and found that chlorfenapy-pyrethroid LLINs provided significantly better protection against malaria for up to 2 years after net distribution compared with pyrethroid-only LLINs. Children aged 6 months-10 years living in clusters that received chlorfenapy-pyrethroid LLINs had a 46% lower incidence of malaria over 2 years after LLIN distribution;\n", - "\n", - "\\begin{table}\n", - "\\begin{tabular}{c c c c c c c c c c} & **Malaria infection** & \\multicolumn{6}{c}{**Anaemia in children younger than 5 years**} \\\\ \\hline n/N & Prevalence & OR & 95\\% CI & p valuea & n/N & Prevalence & OR & 95\\% CI & p valuea \\\\ \\hline\n", - "**6 months after net distribution** & & & & & & & & \\\\ Pyrethroid-only LLIN group & 412/1471 & 28\\(\\,\\)0\\% & 1 (ref) & – & – & 992/41 & 41\\(\\,\\)1\\% & 1 (ref) & – & – \\\\ Pyriproyfen-pyrethroid & 394/1463 & 26\\(\\,\\)9\\% & 0\\(\\,\\)92 & 0\\(\\,\\)\n", - "\n", - "63\\(\\,\\)45 & 0\\(\\,\\)67 & 117/250 & 46\\(\\,\\)8\\% & 124 & 0.71–218 & 0.45 \\\\ LLIN group & & & & & & & & & \\\\ Chlorfenapy-pyrethroid & 231/1475 & 157\\(\\,\\)\\% & 0\\(\\,\\)47 & 0\\(\\,\\)32\\(\\,\\)0\\(\\,\\)669 & 0\\(\\,\\)0002 & 82/241 & 34\\(\\,\\)0\\% & 0.71 & 0.40–126 & 0.24 \\\\ LLIN group & & & & & & & & & \\\\\n", - "**18 months after net distribution** & & & & & & & & \\\\ Pyrethroid-only LLIN group & 576/14/849 & 38\\(\\,\\)7\\% & 1 (ref) & – & – & 118/25 & 46\\(\\,\\)8\\% & 1 (ref) & – & – \\\\ Pyriproyfen-pyrethroid & 564/14/83 & 38\\(\\,\\)2\\% & 0\\(\\,\\)97 & 0\\(\\,\\)69\\(\\,\\)13\\(\\,\\)07 & 0\\(\\,\\)87 & 108/245 & 44\\(\\,\\)1\\% & 0.84 & 0.40–179\n", - "\n", - "\n", - "participants of any age had 53% lower odds of malaria infection at 6 months and 40% lower odds at 18 months after LLIN distribution, and were exposed to a 66% reduction in entomological inoculation rate compared with those living in clusters that received pyrethroid-only LLINs. Similar gains were not observed with the pyriproxyfen-pyrethroid LLIN, with a small reduction in malaria incidence in the first year of the study that was attenuated in year 2, and no effect on malaria infection prevalence in either year, compared with the pyrethroid-only reference group. However, a 58% reduction in indoor entomological inoculation rate was detected with the pyriproxyfen-pyrethroid LLIN. Both dual active-ingredient LLINs provided a similar safety profile compared with standard pyrethroid-only LLINs, with short-lasting skin irritation and facial burning (commonly associated with the pyrethroid alpha-Cybermethrin) most frequently reported in participants using pyrethroid-only LLINs and pyriproxyfen-pyrethroid LLINs. A similar observation has been reported in another randomised controlled trial evaluating the same LLINs, and this is likely to be associated with the high concentration of alpha-Cybermethrin in those nets compared with the chlorfenapy-pyrethroid LLINs.\n", - "\n", - "To our knowledge, this is the second cluster-randomised trial to provide strong evidence of increased efficacy of chlorfenapy-pyrethroid LLINs relative to pyrethroid-only LLINs for malaria control in areas with pyrethroid-resistant vectors. Chlorfenapyr insecticide on nets has already shown improved control of pyrethroid-resistant _An gambiae_ in laboratory and semi-field experimental huts against resistant malaria vectors.3- The previous trial in Tanzania reported a malaria case incidence reduction of 44%, a 55% decrease in odds of malaria prevalence, and 85% reduction in entomological inoculation rate compared with the pyrethroid-only group, consistent with these results, despite the differing malaria vector populations and intensity of pyrethroid resistance in the mosquitoes.4 In both trials, per-protocol analyses suggested that individuals living in the chlorfenapy-pyrethroid clusters benefited regardless of whether they were using a study net, suggesting a community effect of the net, which was likely to be obtained by the overall reduction of mosquito density, which remained considerably lower than in the pyrethroid-only group in both years of this trial after net distribution. Community effect is also indicated by the reduction in both indoor and outdoor entomological indices in the chlorfenapy-pyrethroid group in the present study.\n", - "\n", - "Similar to the trial in Tanzania,4 the pyriproxyfen-pyrethroid LLINs we tested did not provide additional protection against malaria infection or disease compared with pyrethroid-only LLINs. However, there was evidence of an effect on indoor transmission, with the strongest effect seen in the first year after net distribution. Tino and colleagues5 have previously reported a 12% reduction in malaria incidence and 49% reduction in entomological \n", - "inoculation rate with a pyriproxyfen-pyrethroid LLIN compared with pyrethroid-only LLINs over 18 months in a stepped-wedge randomised trial in Burkina Faso. The different study design, length of follow-up, and brand of net might explain the differences seen between the two studies. In Benin, laboratory and semi-field experimental hut studies have shown the superior efficacy of pyriproxyfen-pyrethroid nets on entomological indicators compared with standard pyrethroid-only LLINs,2,3 and are consistent with the decrease in indoor vector density observed in our trial. However, the decrease in indoor vector density did not translate into significant disease reduction, suggesting that a larger effect on malaria transmission (entomological inoculation rate) is crucial to provide community protection. Although lower net usage in the pyriproxyfen-pyrethroid LLIN group could have partially contributed to the lack of effect, we are also assessing textile durability, sterilisation effects, and chemical content of pyriproxyfen-pyrethroid LLINs to fully understand these results.\n", - "\n", - "With several trials now showing the superior efficacy of next-generation LLINs over pyrethroid-only nets, the importance of developing new active ingredients to use on nets in the future is brought to the fore. The distribution of next-generation LLINs across sub-Saharan Africa has already begun, with the development of the brands of chlorfenapry-pyrethroid nets underway,3 as well as the development of chlorfenapry product formulations for indoor residual spraying.3 Although chlorfenapry-pyrethroid nets offer a superior alternative to pyrethroid-only nets in areas of pyrethroid resistance, to preserve their effectiveness optimal resistance-management strategies should be used. There was no evidence of the development of resistance to chlorfenapry during the 2 years of this trial; however, the wide-scale deployment of one type of insecticide risks the rapid development of resistance, which could result in a similar situation to the current widespread resistance to pyrethroids. The nets should be deployed ideally alongside other insecticides as part of a strategy aimed to reduce selection pressure for development of resistance in mosquito vectors. Given the significant effect of the pyriproxyfen-pyrethroid LLINs on malaria transmission during the first year after net distribution, additional studies are necessary to evaluate the potential value of active ingredients such as pyriproxyfen, which are not primarily intended to kill resistant adult mosquitoes but rather to sterilise them. There might still be a role for these hormone growth-regulator insecticides in combination with other active ingredients for net treatment in long-term resistance management.\n", - "\n", - "If WHO policy recommendations are made on the basis of this trial's results, future chlorfenapry-pyrethroid nets might not have to undergo the rigorous trial testing that Interceptor G2 has. Caution should, however, be taken to assess the comparative efficacy, quality, and durability of the second-in-class chlorfenapry-pyrethroid nets as they might use different concentrations of chlorfenapry, different pyrethroids, or different net materials. Considering the time and resources required to generate evidence of epidemiological effect using randomised trials, non-inferiority experimental hut trials, recently proposed by WHO,3 might be a useful alternative for second-in-class chlorfenapry-pyrethroid LLINs. Further work to investigate the capacity of such entomological studies to predict the performance of the trial nets against clinical malaria is ongoing.3\n", - "\n", - "Footnote 3: endnote: [https://www.thelanct.com/Vol.401](https://www.thelanct.com/Vol.401). February 11, 2023\n", - "\n", - "Our study has some limitations. First, net ownership and use were high throughout the study; however, this did not always equate to study net use, which was approximately 60% at 2 years after net distribution, with overall usage of greater than 80%. Similar findings have been observed in other bednet trials, and probably indicate populations choosing to discard damaged nets when other nets are readily available. Second, the three types of nets were not completely identical and differences in textile material and size might have resulted in differential net usage between the groups. As our net use indicator was primarily self-reporting, it is also possible that net usage was overestimated. Third, our primary measure of incidence was based on active detection, involving visits every 2 weeks or every month. The passive data collected alongside the trial suggests that this frequency of visit resulted in some cases being missed, meaning the absolute effect of the nets might be greater than reported here. However, the relative effect of the nets remained similar when the active and passive data were combined. Finally, cost-effectiveness was not assessed; however, the trial in Tanzania' showed that dual active-ingredient LLINs can be highly cost-effective and even cost-saving compared with pyrethroid-only LLINs when providing sufficient protection.\n", - "\n", - "New classes of vector control interventions currently require clinical trial evaluation in two different geographical settings, after 24 months of community use.4 Currently, the only class of next-generation LLIN to receive a WHO recommendation are the PBO synergism nets. However, previous publications have shown concerns about the durability of these nets.5 This trial provides the second key evidence for the effectiveness of chlorfenapry-pyrethroid nets in an area with pyrethroid-resistant vectors and will therefore support a WHO policy recommendation. However, the effect of the nets was reduced in the second year of the trial, and there is no evidence for the efficacy of the nets in their third year of use. Many studies report that the durability of nets is much less than the 3 years required to be designated as long lasting.5 The next-generation LLINs might face the same problems of fabric integrity and durability of insecticidal content unless standards of manufacture are improved. Different channels of distribution (eg, school-based, antenatal care visits, or expanded programme immunisation visits) could play a key role in maintaining high levels of net use in communities.5\n", - "Although generating this evidence to support a WHO recommendation for another class of bednet is a key turning point in malaria control, without new insecticides and new ways to deploy them, we risk repeating the mistakes of the past. Now is the time for more innovation and less complacency.\n", - "\n", - "header: Abstract\n", - "\n", - "Efficacy of pyriproxyfen-pyrethroid long-lasting insecticidalnets (LLINs) and chlorfenapyr-pyrethroid LLINs compared with pyrethroid-only LLINs for malaria control in Benin: a cluster-randomised, superiority trial\n", - "\n", - "Manfred Accomphesi\n", - "\n", - "\n", - "Background New classes of long-lasting insecticidal nets (LLINs) combining mixtures of insecticides with different modes of action could put malaria control back on track after rebounds in transmission across sub-Saharan Africa. We evaluated the relative efficacy of pyriproxyfen-pyrethroid LLINs and chlorfenapyr-pyrethroid LLINs compared with standard LLINs against malaria transmission in an area of high pyrethroid resistance in Benin.\n", - "\n", - "header: Procedures\n", - "\n", - "The nets tested in the trial were: Royal Guard (Disease Control Technologies, Greer, SC, USA), polyethylene netting (I20 deniers incorporating 220 mg/m2 pyriproyfen and 220 mg/m2 alpha-cypermethrin); Interceptor G2 (BASF SE, Ludwigshafen, Germany), polyester netting (100 deniers coated with 200 mg/m2 chlorfenapyr and 100 mg/m2 alpha-cypermethrin); and the reference net, Interceptor (BASF SE, Ludwigshafen, Germany), polyester netting (100 deniers coated with 200 mg/m2 of alpha-cypermethrin). Nets were distributed in collaboration with the Benin National Malaria Control Program. Households were asked to collect their nets from a central point and received one net per every two residents in their household, rounded up for odd numbers. Nets already in houses were not removed but households were encouraged to use the new study nets. Additionally, net hang-up campaigns to encourage net use took place at 1 month and 7 months after distribution. Net coverage surveys to assess net ownership and usage were done at 1, 9, and 24 months after distribution. Throughout the follow-up period, children enrolled in the analysis cohort and participants enrolled in the cross-sectional surveys were also asked about their net use.\n", - "\n", - "Insecticide content at baseline was assessed on 30 randomly selected new nets per LLIN brand, by gas chromatography with Flame Ionisation Detection, at the\n", - "Centre Wallon de Recherches Agronomiques, Gembloux, Belgium. The insecticidal and physical durability of the study nets is being assessed in a separate study.\n", - "\n", - "Due to the COVID-19 pandemic, there was a 3-month gap between the distribution of the nets and the enrolment of children in the cohort. At enrolment and at 1 year after distribution (April, 2021), children were treated with antimalarial drugs (atremether-lumefantrinity to clear any underlying infection. The cohort was monitored from August, 2020, to April, 2022, a 21-month period, which encompassed the first 2 years after net distribution. Study nurses visited children every 2 weeks during the transmission season (April-October) and every 1 month in the dry season (November-March). At each visit, children were clinically examined and if they were febrile or had a history of fever in the past 48 h, they were tested for malaria using a malaria rapid diagnostic test. If the test was positive, the child was treated with artemether-lumefantrine, according to national guidelines.\n", - "\n", - "During cross-sectional surveys, all participants were tested for malaria using a malaria rapid diagnostic test and received treatment if the test was positive, and children younger than 5 years were tested for anaemia. Information regarding net ownership and usage, and other household-level indicators were collected at the same time.\n", - "\n", - "Entomological monitoring was also delayed and took place every 3 months between June, 2020, and April, 2022. Volunteers recruited from study clusters collected mosquitoes that landed on their legs between 1900 h and 0700 h for 1 night at four randomly selected houses in each cluster at each timepoint. Mosquitoes were morphologically identified to species and a subsample of _Anopheles_ spp was tested for molecular species using PCR.(r) A random sample of _Anopheles_ spp (up to 30% from each nightly catch in each cluster) were tested for sporozoites using the ELISA circumsporozoite protein technique.(r)\n", - "\n", - "header: Methods\n", - "\n", - "We conducted a cluster-randomised, superiority trial in Zou Department, Benin. Clusters were villages or groups of villages with a minimum of 100 houses. We used restricted randomisation to randomly assign 60 clusters to one of three LLIN groups (I:1:1): to receive nets containing either pyriproxyfen and alpha-Cypermethrin (pyrethroid), chlorfenapyr and alpha-Cypermethrin only (reference). Households received one LLIN for every two people. The field team, laboratory staff, analyses team, and community members were masked to the group allocation. The primary outcome was malaria case incidence measured over 2 years after net distribution in a cohort of children aged 6 months-10 years, in the intention-to-treat population. This study is ongoing and is registered with ClinicalTrials.gov, NCT03931473.\n", - "\n", - "Findings Between May 23 and June 24, 2019, 53 854 households and 216 289 inhabitants were accounted for in the initial census and included in the study. Between March 19 and 22, 2020, 115 323 LLINs were distributed to 54030 households in an updated census. A cross-sectional survey showed that study LLIN usage was highest 9 months after distribution (5532 [76 * 986] of 7206 participants), but decreased by 24 months (4032 [60 * 696] of 6654). Mean malaria incidence over 2 years after LLIN distribution was 1-03 cases per child-year (95% CI 0 * 96-1 * 09) in the pyrethroid-only LLIN reference group. 0 * 84 cases per child-year (0.78-0 * 90) in the pyriproxyfen-pyrethroid LLIN group (hazard ratio [HR] 0 * 86, 95% CI 0 * 65-1* 14; p=0 * 28), and 0 * 56 cases per child-year (0 * 51-0 * 61) in the chlorfenapyr-pyrethroid LLIN group (HR 0 * 54, 95% CI 0 * 42-0 * 70; p<0 * 0001).\n", - "\n", - "Interpretation Over 2 years, chlorfenapyr-pyrethroid LLINs provided greater protection from malaria than pyrethroid-only LLINs in an area with pyrethroid-resistant mosquitoes. Pyriproxyfen-pyrethroid LLINs conferred protection similar to pyrethroid-only LLINs. These findings provide crucial second-trial evidence to enable WHO to make policy recommendations on these new LLIN classes. This study confirms the importance of chlorfenapyr as an LLIN treatment to control malaria in areas with pyrethroid-resistant vectors. However, an arsenal of new active ingredients is required for successful long-term resistance management, and additional innovations, including pyriproxyfen, need to be further investigated for effective vector control strategies.\n", - "\n", - "header: Funding UNITAID, The Global Fund.\n", - "\n", - "Pyrethroid-treated long-lasting insecticidal nets (LLINs) are the main malaria prevention intervention in sub-Saharan Africa and have been the major contributor to the estimated 1 * 5 billion malaria cases and 7 * 6 million malaria deaths averted in the past two decades. However, since 2015, the decline in malaria cases has stalled, and between 2019 and 2020, a rebound in malaria transmission was reported in some areas of sub-Saharan Africa.1 This rebound is likely to be a consequence of the continued spread of resistance to pyrethroid insecticides in malaria-transmitting mosquitoes, coinciding with a plateau in malaria control investment, leading to suboptimal coverage of interventions. Urgent actions are needed to prevent malaria resurgences, which were previously observed in sub-Saharan Africa in the 1980s after malaria control measures were scaled down.2\n", - "In the past 10 years, new insecticide-treated nets containing non-pyrethroid insecticides and insecticide synergists, in combination with pyrethroids, have been shown to be safe and efficacious against malaria mosquito vectors.14 The first net combined a pyrethroid insecticide and the synergistic piperonyl butoxide (PBO) and, following a randomised controlled trial,1 received a WHO policy recommendation in 2017. Other next-generation LLINs have shown encouraging results against resistant vectors in laboratory and small-scale entomological studies.47 One of these nets is a dual active-ingredient LLIN combining a pyrethroid and a pyrrole (chlorfenapyr). Both insecticides lead to mosquito mortality, with chlorfenapyr disrupting the production of cellular energy rather than targeting the nervous system, as pyrethroids do. Another dual active-ingredient LLIN combines a pyrethroid with an insect growth regulator (pyriprosyfen), which leads to sterility in exposed adult mosquitoes.\n", - "\n", - "The first randomised trial of these two products was conducted in Tanzania and showed that the chlorfenapyr-pyrethroid LLINs nearly halved malaria infection over 2 years in villages that received chlorfenapyr-pyrethroid LLINs compared with villages that received pyrethroid-only LLINs. PBO-pyrethroid LLINs were consistently found to be more effective than pyrethroid-only LLINs; however, the duration of the superior effect varied from 12 months to 21 months according to the different trials.\n", - "\n", - "header: Methods\n", - "\n", - "We conducted a three-group, cluster-randomised, superiority trial in three districts (Cove, Zagnanado, and Ouinhi) in Zou Department, central Benin. Malaria is highly endemic in the region, with a peak during the wet season (May-October). The main vector control strategy in the study area is use of pyrethroid-only LLINs distributed en masse once every 3 years, and through routine service delivery by antenatal clinics and vaccination programmes. The primary vectors in the setting are _Anopheles coluzzi_ and _Anopheles gambiae_. There is a high intensity of pyrethroid resistance in the main local vector populations.11\n", - "\n", - "A demographic census of all 123 villages in the study area was done in June, 2019. Clusters consisted of villages, or several villages. To reduce contamination between study groups, clusters consisted of a core (minimum 100 households) surrounded by a buffer, ensuring that core areas of neighbouring clusters were separated by at least 1000 m. Households in the buffer and core received the intervention, but measurement of outcomes only took place in core areas. A detailed description of the study protocol is published elsewhere.\"\n", - "\n", - "Ethics approval was obtained from the Benin Ministry of Health ethics committee (6/30/MS/DC/SGM/DRFMT/CNERS/SA), the London School of Hygiene & Tropical Medicine ethics committee (16237), and the WHO Research Ethics Review Committee (ERC.0003153). The trial was independently monitored by a data safety monitoring board and a trial steering committee.\n", - "\n", - "Epidemiological effect was estimated through measuring malaria case incidence in the 2 years after net distribution by active case detection in a cohort of children. A cohort of approximately 30 children aged 6 months-9 years randomly selected (by simple random sampling using a random number generator) from each cluster (1800 in total) was enrolled in July, 2020. Children were eligible for inclusion if they were permanent residents in the cluster, had no serious illnesses, and written informed consent was obtained from their guardians.\n", - "\n", - "Malaria infection prevalence (in all ages) was measured by cross-sectional surveys at 6 months and 18 months after net distribution. 72 individuals residing in the core of each cluster were randomly selected (using a random number generator) from the census for each cross-sectional survey. Each prevalence surveyed collected data on malaria infection, measured using malaria rapid diagnostic tests (CareStart malaria HRP2/PLDH [pf/pan] combo, DiaSy, UK), net ownership and use, sex, and household assets (as a proxy for socioeconomic status).\n", - "\n", - "Entomological effects were measured using human landing catches in four randomly selected houses every 3 months in each cluster. Insecticide resistance intensity was measured in two clusters per group (six clusters total) at baseline and in each follow-up year.\n", - "\n", - "Written informed consent was obtained from all participants, or from guardians for participants younger than 18 years. Assent was sought for children aged between 10 and 18 years. Written consent was also obtained from volunteer mosquito collectors who were all aged 18 years or older and who were vaccinated against yellow fever. All participation was voluntary, and participants could withdraw at any time. Study investigators sought consent in French or local languages.\n", - "\n", - "header: Study design and participants: Randomisation and masking\n", - "\n", - "We used restricted randomisation to randomly assign 60 clusters to one of three LLIN groups (1:1:1), to receive nets containing either pyriproxyfen and alpha-cypermethrin (pyrethroid), chlorfenapyr and alpha-cypermethrin, or alpha-cypermethrin only (reference). Restricted randomisation was used to ensure balanced cluster allocation between study groups with respect to population size, malaria infection prevalence (measured in the baseline survey), district (n=3), and socioeconomic status.\n", - "\n", - "To mask the net types from the participants and the field workers, the nets were designed to look as similar as possible. Each net was rectangular, was requested to be the same size (1-8 m length, 1-9 m width, and 1-8 m height), and blue. To differentiate the nets in the field, a colour-coded loop was attached to the net. All data analyses were performed masked.\n", - "\n", - "header: Table 1: Baseline characteristics\n", - "footer: Data are n or %; n/N unless otherwise stated. EIR=entomological inoculation rate. LLIN=long-lasting insecticidal net. *Proportion of households in the poorest tercile based on the wealth index of the entire study area. †Anaemia defined as haemoglobin concentration of <10 g/dL. ‡Malaria vectors included Anopheles gambiae, Anophelesfunestus, and Anopheles nili\n", - "columns: ['Unnamed: 0_level_0 - Clusters', 'Pyriproxyfen-pyrethroid LLIN group - Clusters', 'Chlorfenapyr-pyrethroid LLIN group - Clusters', 'Pyrethroid-only LLIN group - Clusters']\n", - "\n", - "{\"0\":{\"Unnamed: 0_level_0 - Clusters\":\"Number of clusters\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"20\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"20\",\"Pyrethroid-only LLIN group - Clusters\":\"20\"},\"1\":{\"Unnamed: 0_level_0 - Clusters\":\"Total population in core and buffer areas\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"74822\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"70989\",\"Pyrethroid-only LLIN group - Clusters\":\"69239\"},\"2\":{\"Unnamed: 0_level_0 - Clusters\":\"Mean population in core area of clusters (range)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"1096.1 (225-4524)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"1120.5 (243-5040)\",\"Pyrethroid-only LLIN group - Clusters\":\"1058.1 (252-5217)\"},\"3\":{\"Unnamed: 0_level_0 - Clusters\":\"Number of people per household, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"4.0 (2.3)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"3.9 (2.3)\",\"Pyrethroid-only LLIN group - Clusters\":\"4.1 (2.4)\"},\"4\":{\"Unnamed: 0_level_0 - Clusters\":\"Number of sleeping spaces per household, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"2.2 (1.2)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"2.1 (1.1)\",\"Pyrethroid-only LLIN group - Clusters\":\"2.2 (1.2)\"},\"5\":{\"Unnamed: 0_level_0 - Clusters\":\"Household and participant characteristics in the baseline cross-sectional survey\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"Household and participant characteristics in the baseline cross-sectional survey\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"Household and participant characteristics in the baseline cross-sectional survey\",\"Pyrethroid-only LLIN group - Clusters\":\"Household and participant characteristics in the baseline cross-sectional survey\"},\"6\":{\"Unnamed: 0_level_0 - Clusters\":\"Low socioeconomic status*\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"35.8%; 529\\/1479\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"36.2%; 533\\/1474\",\"Pyrethroid-only LLIN group - Clusters\":\"29.0%; 431\\/1487\"},\"7\":{\"Unnamed: 0_level_0 - Clusters\":\"LLIN ownership (at least one LLIN in the household)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"96.4%; 1426\\/1479\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"97.1%; 1431\\/1474\",\"Pyrethroid-only LLIN group - Clusters\":\"95.1%; 1415\\/1488\"},\"8\":{\"Unnamed: 0_level_0 - Clusters\":\"LLIN usage in all age groups the night before survey\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"95.8%; 1312\\/1370\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"94.9%; 1258\\/1326\",\"Pyrethroid-only LLIN group - Clusters\":\"96.5%; 1343\\/1392\"},\"9\":{\"Unnamed: 0_level_0 - Clusters\":\"Malaria infection prevalence in all age groups\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"43.1%; 636\\/1475\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"40.7%; 598\\/1468\",\"Pyrethroid-only LLIN group - Clusters\":\"46.5%; 690\\/1485\"},\"10\":{\"Unnamed: 0_level_0 - Clusters\":\"Anaemia prevalence in children aged 6 months-4 years\\u2020\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"53.3%; 136\\/255\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"53.3%; 131\\/246\",\"Pyrethroid-only LLIN group - Clusters\":\"50.2%; 122\\/243\"},\"11\":{\"Unnamed: 0_level_0 - Clusters\":\"Entomological characteristics\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"Entomological characteristics\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"Entomological characteristics\",\"Pyrethroid-only LLIN group - Clusters\":\"Entomological characteristics\"},\"12\":{\"Unnamed: 0_level_0 - Clusters\":\"Human biting density per person per night indoors\\u2021, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"32.9 (28.9)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"21.6 (21.0)\",\"Pyrethroid-only LLIN group - Clusters\":\"29.2 (25.3)\"},\"13\":{\"Unnamed: 0_level_0 - Clusters\":\"Human biting density per person per night outdoors\\u2021, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"20.3 (17.6)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"16.4 (17.4)\",\"Pyrethroid-only LLIN group - Clusters\":\"20.6 (20.2)\"},\"14\":{\"Unnamed: 0_level_0 - Clusters\":\"Indoor EIR per person per night, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"0.62 (0.93)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"0.48 (0.65)\",\"Pyrethroid-only LLIN group - Clusters\":\"0.96 (1.18)\"},\"15\":{\"Unnamed: 0_level_0 - Clusters\":\"Outdoor EIR per person per night, mean (SD)\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"0.27 (0.45)\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"0.17 (0.44)\",\"Pyrethroid-only LLIN group - Clusters\":\"0.33 (0.45)\"},\"16\":{\"Unnamed: 0_level_0 - Clusters\":\"Children (aged 6 months-10 years) at cohort enrolment\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"Children (aged 6 months-10 years) at cohort enrolment\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"Children (aged 6 months-10 years) at cohort enrolment\",\"Pyrethroid-only LLIN group - Clusters\":\"Children (aged 6 months-10 years) at cohort enrolment\"},\"17\":{\"Unnamed: 0_level_0 - Clusters\":\"Proportion of children younger than 5 years\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"52.3%; 316\\/604\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"50.6%; 304\\/601\",\"Pyrethroid-only LLIN group - Clusters\":\"53.6%; 322\\/601\"},\"18\":{\"Unnamed: 0_level_0 - Clusters\":\"Proportion of female children\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"47.2%; 285\\/604\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"48.4%; 291\\/601\",\"Pyrethroid-only LLIN group - Clusters\":\"48.8%; 293\\/601\"},\"19\":{\"Unnamed: 0_level_0 - Clusters\":\"Net usage the night before survey\",\"Pyriproxyfen-pyrethroid LLIN group - Clusters\":\"99.0%; 598\\/604\",\"Chlorfenapyr-pyrethroid LLIN group - Clusters\":\"98.7%; 593\\/601\",\"Pyrethroid-only LLIN group - Clusters\":\"99.2%; 596\\/601\"}}\n", - "\n", - "header: Table 2: Malaria case incidence in children aged 6 months–10 years per year of follow-up and overall (including active visits only)\n", - "footer: Each intervention was compared with the pyrethroid-only LLIN group for the same timepoint. LLIN=long-lasting insecticidal net. *A p value of <0·025 was considered significant after Bonferroni correction\n", - "columns: ['Unnamed: 0_level_0 - Overall', 'Number of clinical malaria episodes - Overall', 'Child- years of follow-up - Overall', 'Incidence, cases per child-year (95% Cl) - Overall', 'Hazard ratio - Overall', '95%Cl - Overall', 'p value* - Overall']\n", - "\n", - "{\"0\":{\"Unnamed: 0_level_0 - Overall\":\"Pyrethroid-only LLIN group\",\"Number of clinical malaria episodes - Overall\":\"897\",\"Child- years of follow-up - Overall\":\"874.3\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"1.03 (0.96-1.09)\",\"Hazard ratio - Overall\":\"1 (ref)\",\"95%Cl - Overall\":null,\"p value* - Overall\":null},\"1\":{\"Unnamed: 0_level_0 - Overall\":\"Pyriproxyfen-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"744\",\"Child- years of follow-up - Overall\":\"883.8\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.84 (0.78-0.90)\",\"Hazard ratio - Overall\":\"0.86\",\"95%Cl - Overall\":\"0.65-1.14\",\"p value* - Overall\":\"0.28\"},\"2\":{\"Unnamed: 0_level_0 - Overall\":\"Chlorfenapyr-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"494\",\"Child- years of follow-up - Overall\":\"887.3\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.56 (0.51-0.61)\",\"Hazard ratio - Overall\":\"0.54\",\"95%Cl - Overall\":\"0.42-0.70\",\"p value* - Overall\":\"<0.0001\"},\"3\":{\"Unnamed: 0_level_0 - Overall\":\"Year 1\",\"Number of clinical malaria episodes - Overall\":\"Year 1\",\"Child- years of follow-up - Overall\":\"Year 1\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"Year 1\",\"Hazard ratio - Overall\":\"Year 1\",\"95%Cl - Overall\":\"Year 1\",\"p value* - Overall\":\"Year 1\"},\"4\":{\"Unnamed: 0_level_0 - Overall\":\"Pyrethroid-only LLIN group\",\"Number of clinical malaria episodes - Overall\":\"267\",\"Child- years of follow-up - Overall\":\"344.4\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.77 (0.69-0.87)\",\"Hazard ratio - Overall\":\"1 (ref)\",\"95%Cl - Overall\":null,\"p value* - Overall\":null},\"5\":{\"Unnamed: 0_level_0 - Overall\":\"Pyriproxyfen-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"211\",\"Child- years of follow-up - Overall\":\"342.7\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.62 (0.54-0.70)\",\"Hazard ratio - Overall\":\"0.83\",\"95%Cl - Overall\":\"0.51-1.35\",\"p value* - Overall\":\"0.46\"},\"6\":{\"Unnamed: 0_level_0 - Overall\":\"Chlorfenapyr-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"124\",\"Child- years of follow-up - Overall\":\"349.2\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.36 (0.30-0.42)\",\"Hazard ratio - Overall\":\"0.46\",\"95%Cl - Overall\":\"0.30-0.72\",\"p value* - Overall\":\"0.0005\"},\"7\":{\"Unnamed: 0_level_0 - Overall\":\"Year 2\",\"Number of clinical malaria episodes - Overall\":\"Year 2\",\"Child- years of follow-up - Overall\":\"Year 2\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"Year 2\",\"Hazard ratio - Overall\":\"Year 2\",\"95%Cl - Overall\":\"Year 2\",\"p value* - Overall\":\"Year 2\"},\"8\":{\"Unnamed: 0_level_0 - Overall\":\"Pyrethroid-only LLIN group\",\"Number of clinical malaria episodes - Overall\":\"630\",\"Child- years of follow-up - Overall\":\"529.9\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"1.19 (1.10-1.29)\",\"Hazard ratio - Overall\":\"1 (ref)\",\"95%Cl - Overall\":null,\"p value* - Overall\":null},\"9\":{\"Unnamed: 0_level_0 - Overall\":\"Pyriproxyfen-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"533\",\"Child- years of follow-up - Overall\":\"541.1\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.98 (0.90-1.07)\",\"Hazard ratio - Overall\":\"0.88\",\"95%Cl - Overall\":\"0.68-1.13\",\"p value* - Overall\":\"0.31\"},\"10\":{\"Unnamed: 0_level_0 - Overall\":\"Chlorfenapyr-pyrethroid LLIN group\",\"Number of clinical malaria episodes - Overall\":\"370\",\"Child- years of follow-up - Overall\":\"538.1\",\"Incidence, cases per child-year (95% Cl) - Overall\":\"0.69 (0.62-0.76)\",\"Hazard ratio - Overall\":\"0.57\",\"95%Cl - Overall\":\"0.45-0.73\",\"p value* - Overall\":\"<0.0001\"}}\n", - "\n", - "header: Table 3: Malaria infection and anaemia prevalence in the study population at 6 months and 18 months after net distribution (intention-to-treat analysis)\n", - "footer: Anaemia was defined as a haemogloblin concentration of <10 g/dL. LLIN=long-lasting insecticidal net. OR=odds ratio. *A p value of <0·025 was considered significant after Bonferroni correction\n", - "columns: ['Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution', 'Malaria infection - n/N - 6 months after net distribution', 'Malaria infection - Prevalence - 6 months after net distribution', 'Malaria infection - OR - 6 months after net distribution', 'Malaria infection - 95% Cl - 6 months after net distribution', 'Malaria infection - p value* - 6 months after net distribution', 'Anaemia in children younger than 5 years - n/N - 6 months after net distribution', 'Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution', 'Anaemia in children younger than 5 years - OR - 6 months after net distribution', 'Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution', 'Anaemia in children younger than 5 years - p value* - 6 months after net distribution']\n", - "\n", - "{\"0\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Pyrethroid-only LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"412\\/1471\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"28.0%\",\"Malaria infection - OR - 6 months after net distribution\":\"1 (ref)\",\"Malaria infection - 95% Cl - 6 months after net distribution\":null,\"Malaria infection - p value* - 6 months after net distribution\":null,\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"99\\/241\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"41.1%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"1 (ref)\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":null,\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":null},\"1\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Pyriproxyfen-pyrethroid LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"394\\/1463\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"26.9 %\",\"Malaria infection - OR - 6 months after net distribution\":\"0.92\",\"Malaria infection - 95% Cl - 6 months after net distribution\":\"0.63-1.35\",\"Malaria infection - p value* - 6 months after net distribution\":\"0.67\",\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"117\\/250\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"46.8%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"1.24\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":\"0.71-2.18\",\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":\"0.45\"},\"2\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Chlorfenapyr-pyrethroid LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"231\\/1475\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"15.7%\",\"Malaria infection - OR - 6 months after net distribution\":\"0.47\",\"Malaria infection - 95% Cl - 6 months after net distribution\":\"0.32-0.69\",\"Malaria infection - p value* - 6 months after net distribution\":\"0.0002\",\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"82\\/241\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"34.0%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"0.71\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":\"0.40-1.26\",\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":\"0-24\"},\"3\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"18 months after net distribution\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"18 months after net distribution\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"18 months after net distribution\",\"Malaria infection - OR - 6 months after net distribution\":\"18 months after net distribution\",\"Malaria infection - 95% Cl - 6 months after net distribution\":\"18 months after net distribution\",\"Malaria infection - p value* - 6 months after net distribution\":\"18 months after net distribution\",\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"18 months after net distribution\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"18 months after net distribution\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"18 months after net distribution\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":\"18 months after net distribution\",\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":\"18 months after net distribution\"},\"4\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Pyrethroid-only LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"576\\/1489\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"38.7%\",\"Malaria infection - OR - 6 months after net distribution\":\"1 (ref)\",\"Malaria infection - 95% Cl - 6 months after net distribution\":null,\"Malaria infection - p value* - 6 months after net distribution\":null,\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"118\\/252\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"46.8%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"1 (ref)\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":null,\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":null},\"5\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Pyriproxyfen-pyrethroid LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"564\\/1478\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"38.2%\",\"Malaria infection - OR - 6 months after net distribution\":\"0.97\",\"Malaria infection - 95% Cl - 6 months after net distribution\":\"0.69-1.37.\",\"Malaria infection - p value* - 6 months after net distribution\":\"0.87\",\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"108\\/245\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"44.1%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"0.84\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":\"0.40-1.79\",\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":\"0.65\"},\"6\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1 - 6 months after net distribution\":\"Chlorfenapyr-pyrethroid LLIN group\",\"Malaria infection - n\\/N - 6 months after net distribution\":\"414\\/1483\",\"Malaria infection - Prevalence - 6 months after net distribution\":\"27.9%\",\"Malaria infection - OR - 6 months after net distribution\":\"0.60\",\"Malaria infection - 95% Cl - 6 months after net distribution\":\"0.43-0.85\",\"Malaria infection - p value* - 6 months after net distribution\":\"0.0041\",\"Anaemia in children younger than 5 years - n\\/N - 6 months after net distribution\":\"118\\/246\",\"Anaemia in children younger than 5 years - Prevalence - 6 months after net distribution\":\"48.0%\",\"Anaemia in children younger than 5 years - OR - 6 months after net distribution\":\"1.08\",\"Anaemia in children younger than 5 years - 95% Cl - 6 months after net distribution\":\"0.51-2.28\",\"Anaemia in children younger than 5 years - p value* - 6 months after net distribution\":\"0.84\"}}\n", - "\n", - "header: Introduction: Added value of this study\n", - "\n", - "To our knowledge, this is the second study aiming to compare the efficacy of the next generation of LLINs combining _p_iprosyfen or chlorfenapyr and pyrethroid versus standard pyrethroid-only LLINs, and the first of its kind to be conducted in west Africa. This trial confirmed the superior efficacy of chlorfenapyr-pyrethroid LLINs, in terms of malaria case incidence, prevalence, and transmission in children, over 2 years of use in the community, in an area of moderate malaria transmission and with high insecticide resistance intensity in malaria vectors, in Benin. However, pyrioxyfen-pyrethroid LLINs did not offer additional protection against malaria outcomes compared with pyrethroid-only LLINs.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `EntomologicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `EntomologicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `EntomologicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}, \"Start_month\": {\"title\": \"Start Month\", \"description\": \"Numerical start month of the reporting period (some studies may report multiple time periods)\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Village trial\",\"Country\":\"Benin\",\"Site\":\"Cove\",\"Start_month\":5,\"Start_year\":2019,\"End_month\":6,\"End_year\":2019},\"S02\":{\"Study_type\":\"Village trial\",\"Country\":\"Benin\",\"Site\":\"Zagnanado\",\"Start_month\":5,\"Start_year\":2019,\"End_month\":6,\"End_year\":2019},\"S03\":{\"Study_type\":\"Village trial\",\"Country\":\"Benin\",\"Site\":\"Ouinhi\",\"Start_month\":5,\"Start_year\":2019,\"End_month\":6,\"End_year\":2019}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Concentration_initial\": {\"title\": \"Insecticide concentration (initial)\", \"description\": \"Enter the initial concentration of the insecticide(s) for net type at the time of distribution.\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"Royal Guard\",\"Insecticide\":\"pyriproyfen, alpha-cypermethrin\",\"Concentration_initial\":\"220 mg\\/m2, 220 mg\\/m2\"},\"N02\":{\"Net_type\":\"Interceptor G2\",\"Insecticide\":\"chlorfenapyr, alpha-cypermethrin\",\"Concentration_initial\":\"200 mg\\/m2, 100 mg\\/m2\"},\"N03\":{\"Net_type\":\"Interceptor\",\"Insecticide\":\"alpha-cypermethrin\",\"Concentration_initial\":\"200 mg\\/m2\"}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Funding\n", - "\n", - "This research was funded by the Royal Society of Tropical Medicine and Hygiene (RSTM#) through a small grant awarded to DM and the Wellcome Trust through a Wellcome Trust Training fellowship in public health and tropical medicine to CN (102543/2/13/2). The RSTM# and the Wellcome Trust have no role in the design of the study and collection, analysis, and interpretation of data and in writing the manuscript.\n", - "\n", - "header: Author details\n", - "\n", - "1 Laboratory of Parasitology and Ecology, Faculty of Sciences, University of Yaoundet i P.O. Box 812, Yaoundet, Cameroon. 1 Institute for the Recherche de Yaoundet (FR), Organizing the Coordination pour la Tutte Contre les Endrines en Afrique Centrale (OCEAC), PO. Box 283, Yaoundet, Cameroon. 3 Department of Biological Sciences, Faculty of Medicine and Pharmaceutical Sciences, University of Ouala, PO. Box 2415, Ouala, Cameroon. 4 Department of Parasitology and Microbiology, Centre for Research in Infectious Diseases (RDI), PO. Box 13591, Yaounde, Cameroon. 5 Animal Organisms Laboratory, Faculty of Sciences, University of Ouala, PO. Box 24157, Douala, Cameroon.\n", - "\n", - "header: Bed net coverage, use and maintenance\n", - "\n", - "Bed net ownership was investigated in 80 of 97 the households that currently make up the village through visual inspection. The heads of these households or their representatives were questioned on their use of nets and their maintenance. The number of people living in each house was recorded to estimate net coverage. Household net ownership was defined as the percentage of households owning at least one LLIN. Net coverage defined as the percentage of households with at least one LLIN for every two people was also determined.\n", - "\n", - "header: Insecticide bioassays and knockdown resistance detection\n", - "\n", - "Larvae of _An. gambiae_ (_s.l._) were collected in stagnant pools of water and reared in the insectary of the medical entomology laboratory of OCEAC. F1 adults that emerged from those larvae were fed with 10% sucrose solution made by dissolving 100 g of ordinary white sugar in 1 L of water [22]. _Anopheles funestus_ was not tested due to the low number of adults obtained following larval collections and rearing. The susceptibility of the F1 adults to 0.75% permethrin and 0.05% deltamethrin, both pyrethroid pesticides, was assessed using a World Health Organization (WHO) standard test procedure [23]. Tests were performed at 25 +- 2 degC, 806 +- 10% relative humidity (RH). For each insecticide, four batches of 20-25 field F1 females, aged between 2 and 5 days, were exposed to insecticide-impregnated papers in WHO test-tube for 1 h. At the same time, two batches of the same number of mosquitoes were exposed to untreated papers as control. At the end of the insecticide exposure period, the number of knocked-down mosquitoes was recorded, following which the mosquitoes were transferred into holding tubes. Cotton balls that had first been soaked in a 10% sugar solution and then the moisture squeezed out were placed at the mouth of the tubes. The mortality was recorded 24 h later. Mortality rate in the tested samples was corrected using Abbott's formula [24], when the mortality in the control tubes varied between 5 to 20%. The knockdown resistance (_kdr_) mutation L1014F, which is responsible of cross resistance to DDT (dichlorodiphenyl-trichloroethane) and pyrethroids was genotyped using the protocol described by Martinez-Tores et al. [25].\n", - "\n", - "header: Abbreviations\n", - "\n", - "DDT: Dichlorodiphenyltrichloroethane; ER: Entomological inoculation rate; ELISA CSP: Enzyme-linked immunosorbent assay to detect the circumsporolite protein; HL: Human landing catch method; Adv: Knockdown resistance; LINK: long-lasting insecticidal net; pH: Proportionate hole index; WHORES: World Health Organization Pesticides Evaluation Scheme\n", - "\n", - "header: Possession, coverage and use of LLINs\n", - "\n", - "In general, 81.25% of the households inspected possessed at least one LLIN. Despite this high level of ownership, the proportion of households that met the ratio of one net for two persons was only 47.69%. Fortunately, 81.54% of the people interviewed affirmed they used their bed nets every night (Table 3). Of the LLINs available, 92.3% were acquired during the government free mass distribution campaigns of 2011-2012 and 2015-2016. Although almost 70% of the study population affirmed that they have been educated by the public health community agents during the distribution campaigns, only 10.52% knew bed nets should be dried in the shade before usage or after washing. Moreover, 56.46% of respondents had washed their bet nets at least once; 63.15% used water and ordinary soap while 36.85% used detergents soap and bleach (Table 3).\n", - "\n", - "header: Physical integrity and effectiveness of LLINs\n", - "\n", - "Ten LLINs aged 3-7 years old were sampled to assess their physical integrity and bio-efficacy. A total of 161 holes belonging to all the four different types described by WHOPES (the size of a person's thumb, fist or head, or larger than a head) were counted, with a mean of 17 holes per bed net. The proportion of these holes per type was 52.79% (thumb size), 32.29% (fist size), 9.93% (head size) and 4.96% (large than head size). Of the ten LLINs examined, seven (70%) were damaged and were found to be in poor condition (pHI > 300) (Table 4).\n", - "\n", - "A total of 2000 specimens of the _An. gambiae_ (_s.l._) susceptible Kisumu strain were exposed to the ten bed nets. Eight of these nets were effective against this strain, with mortality rates > 80%. Exposure of the same number of _An. gambiae_ (_s.l._) field F1 mosquitoes to these LLINs revealed that they were all ineffective, with mortalities ranging from 0 to 11.5% (Table 4).\n", - "\n", - "header: Bed net integrity and bio-efficacy\n", - "\n", - "Ten bed nets were randomly collected from ten selected houses and immediately replaced by new ones. The physical integrity of the nets collected was determined by counting, per category, the number of holes that were approximately the size of a person's thumb, fist or head, or larger than a head, on any of the four faces and the top of the bed net [26, 27]. The proportionate hole index (pH) was calculated using the WHO Pesticide Evaluation Scheme (WHOPES ) guidelines [11] and nets were classified into four classes accordingly [28, 29]. Nets with a pHI <25 were classified as \"good\"; those with a pH ranging between 25 and 174, as \"fair\"; those nets with a pHI ranging from 175 to 299, as \"mediocre\"; and those with a pHI > 300, as \"poor\".\n", - "\n", - "\n", - "Cone assays were performed on each net to test for its bio-efficacy as described in WHO guidelines [30]. Four cones were fixed by their widest opening onto four different parts of each face (4 sides and 1 roof) of each net. Ten unfed _An. gambiae_ (_s.l._) female mosquitoes aged 2-5 days were introduced into each cone using a mouth aspirator, for a total of 200 specimens per net. After 3 min of exposure, the mosquitoes were removed from the cones, then transferred into paper cups and fed with a 10% sugar solution. The assay was conducted at 25 +- 1 degC, 80% +- 5% RH, and the number of mosquitoes knocked-down and dead were recorded after 60 min and 24 h, respectively. An untreated net was used as the negative control.\n", - "\n", - "header: Table 3 Origin, use and maintenance of long‑lasting insecticidal nets\n", - "footer: LLIN, Long-lasting insecticidal net\n", - "columns: ['Variables related to LLIN', 'N', 'Frequency (%)']\n", - "\n", - "{\"0\":{\"Variables related to LLIN\":\"Possession\",\"N\":\"Possession\",\"Frequency (%)\":\"Possession\"},\"1\":{\"Variables related to LLIN\":\"Yes\",\"N\":\"65\",\"Frequency (%)\":\"81.25\"},\"2\":{\"Variables related to LLIN\":\"No\",\"N\":\"15\",\"Frequency (%)\":\"18.75\"},\"3\":{\"Variables related to LLIN\":\"Origin\",\"N\":\"Origin\",\"Frequency (%)\":\"Origin\"},\"4\":{\"Variables related to LLIN\":\"Government\",\"N\":\"60\",\"Frequency (%)\":\"92.3\"},\"5\":{\"Variables related to LLIN\":\"Market\",\"N\":\"5\",\"Frequency (%)\":\"7.7\"},\"6\":{\"Variables related to LLIN\":\"Installed\",\"N\":\"Installed\",\"Frequency (%)\":\"Installed\"},\"7\":{\"Variables related to LLIN\":\"Yes\",\"N\":\"59\",\"Frequency (%)\":\"90.76\"},\"8\":{\"Variables related to LLIN\":\"No\",\"N\":\"6\",\"Frequency (%)\":\"9.24\"},\"9\":{\"Variables related to LLIN\":\"Presence per 2 persons\",\"N\":\"Presence per 2 persons\",\"Frequency (%)\":\"Presence per 2 persons\"},\"10\":{\"Variables related to LLIN\":\"Yes\",\"N\":\"31\",\"Frequency (%)\":\"47.7\"},\"11\":{\"Variables related to LLIN\":\"No\",\"N\":\"34\",\"Frequency (%)\":\"52.3\"},\"12\":{\"Variables related to LLIN\":\"Usage\",\"N\":\"Usage\",\"Frequency (%)\":\"Usage\"},\"13\":{\"Variables related to LLIN\":\"Every night\",\"N\":\"53\",\"Frequency (%)\":\"81.54\"},\"14\":{\"Variables related to LLIN\":\"Not every night\",\"N\":\"12\",\"Frequency (%)\":\"18.46\"},\"15\":{\"Variables related to LLIN\":\"Education received on LLINs during distribution\",\"N\":\"Education received on LLINs during distribution\",\"Frequency (%)\":\"Education received on LLINs during distribution\"},\"16\":{\"Variables related to LLIN\":\"Yes\",\"N\":\"45\",\"Frequency (%)\":\"69.92\"},\"17\":{\"Variables related to LLIN\":\"No\",\"N\":\"20\",\"Frequency (%)\":\"30.78\"},\"18\":{\"Variables related to LLIN\":\"Had LLIN been washed\",\"N\":\"Had LLIN been washed\",\"Frequency (%)\":\"Had LLIN been washed\"},\"19\":{\"Variables related to LLIN\":\"Yes\",\"N\":\"38\",\"Frequency (%)\":\"58.46\"},\"20\":{\"Variables related to LLIN\":\"No\",\"N\":\"27\",\"Frequency (%)\":\"41.54\"},\"21\":{\"Variables related to LLIN\":\"Substance used for washing\",\"N\":\"Substance used for washing\",\"Frequency (%)\":\"Substance used for washing\"},\"22\":{\"Variables related to LLIN\":\"Ordinary soap\",\"N\":\"24\",\"Frequency (%)\":\"63.15\"},\"23\":{\"Variables related to LLIN\":\"Detergent and bleach\",\"N\":\"14\",\"Frequency (%)\":\"36.85\"},\"24\":{\"Variables related to LLIN\":\"Drying place\",\"N\":\"Drying place\",\"Frequency (%)\":\"Drying place\"},\"25\":{\"Variables related to LLIN\":\"In sun\",\"N\":\"34\",\"Frequency (%)\":\"89.48\"},\"26\":{\"Variables related to LLIN\":\"In shade\",\"N\":\"4\",\"Frequency (%)\":\"10.52\"}}\n", - "\n", - "header: Table 1 Plasmodium circumsporozoite index, human biting rate and monthly entomological inoculation rate of Anopheles species in Mvoua between August 2018 and April 2019\n", - "footer: Human-biting rate (HBR) is the average number of bites received per person per night; (ii) Plasmodium circumsporozoite index (infection rate) is the proportion of mosquitoes found with Plasmodium circumsporozoite antigen in the heads and thoraces; entomological inoculation rate is the product of the HBR and circumsporozoite rateNC not calculated\n", - "columns: ['Anopheles species', 'Tested (N)', 'Positive (N)', 'Entomological parameters - Plasmodium circumsporozoite index (%)', 'Entomological parameters - Human biting rate', 'Entomological parameters - Human biting rate.1', 'Entomological parameters - Entomological inoculation rate/ month']\n", - "\n", - "{\"0\":{\"Anopheles species\":\"An. funestus (s.l.)\",\"Tested (N)\":65,\"Positive (N)\":7,\"Entomological parameters - Plasmodium circumsporozoite index (%)\":\"10.77\",\"Entomological parameters - Human biting rate\":0.55,\"Entomological parameters - Human biting rate.1\":0.55,\"Entomological parameters - Entomological inoculation rate\\/ month\":\"1.5\"},\"1\":{\"Anopheles species\":\"An. gambiae (s.l.)\",\"Tested (N)\":42,\"Positive (N)\":6,\"Entomological parameters - Plasmodium circumsporozoite index (%)\":\"14.29\",\"Entomological parameters - Human biting rate\":0.35,\"Entomological parameters - Human biting rate.1\":0.35,\"Entomological parameters - Entomological inoculation rate\\/ month\":\"1.2\"},\"2\":{\"Anopheles species\":\"An. ziemanii\",\"Tested (N)\":3,\"Positive (N)\":0,\"Entomological parameters - Plasmodium circumsporozoite index (%)\":\"0\",\"Entomological parameters - Human biting rate\":0.02,\"Entomological parameters - Human biting rate.1\":0.02,\"Entomological parameters - Entomological inoculation rate\\/ month\":\"NC\"},\"3\":{\"Anopheles species\":\"Total\",\"Tested (N)\":110,\"Positive (N)\":13,\"Entomological parameters - Plasmodium circumsporozoite index (%)\":\"11.81%\",\"Entomological parameters - Human biting rate\":0.93,\"Entomological parameters - Human biting rate.1\":0.93,\"Entomological parameters - Entomological inoculation rate\\/ month\":\"2.7\"}}\n", - "\n", - "header: Competing interests\n", - "\n", - "The authors declare they have no competing interests.\n", - "\n", - "header: Table 4 Hole index and mortality of An. gambiae (s.l.) after being exposed to the long‑lasting insecticidal nets\n", - "footer: Not eff., not e\u001d\n", - "fficient; PHI, proportionate hole index\n", - "columns: ['Nets', 'Date of impregnation', 'Brand', 'Physical integrity of LLIN - pHI', 'Physical integrity of LLIN - Status', 'Bio‑efficacy of LLIN (%) - Kisumu control strain', 'Bio‑efficacy of LLIN (%) - Field strain', 'Decision - Unnamed: 7_level_1']\n", - "\n", - "{\"0\":{\"Nets\":\"Net 1\",\"Date of impregnation\":\"October 2015\",\"Brand\":\"Olyset\",\"Physical integrity of LLIN - pHI\":0,\"Physical integrity of LLIN - Status\":\"Good\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":83.5,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":3.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"1\":{\"Nets\":\"Net 2\",\"Date of impregnation\":\"October 2015\",\"Brand\":\"Olyset\",\"Physical integrity of LLIN - pHI\":916,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":80.5,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":0.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"2\":{\"Nets\":\"Net 3\",\"Date of impregnation\":\"February 2011\",\"Brand\":\"Permanet\",\"Physical integrity of LLIN - pHI\":1939,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":69.5,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":2.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"3\":{\"Nets\":\"Net 4\",\"Date of impregnation\":\"February 2011\",\"Brand\":\"Permanet\",\"Physical integrity of LLIN - pHI\":581,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":88.0,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":11.0,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"4\":{\"Nets\":\"Net 5\",\"Date of impregnation\":\"February 2011\",\"Brand\":\"Permanet\",\"Physical integrity of LLIN - pHI\":13,\"Physical integrity of LLIN - Status\":\"Good\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":99.0,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":8.0,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"5\":{\"Nets\":\"Net 6\",\"Date of impregnation\":\"October 2015\",\"Brand\":\"Olyset\",\"Physical integrity of LLIN - pHI\":651,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":85.0,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":2.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"6\":{\"Nets\":\"Net 7\",\"Date of impregnation\":\"October 2011\",\"Brand\":\"Permanet\",\"Physical integrity of LLIN - pHI\":2225,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":72.4,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":3.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"7\":{\"Nets\":\"Net 8\",\"Date of impregnation\":\"October 2011\",\"Brand\":\"Permanet\",\"Physical integrity of LLIN - pHI\":1,\"Physical integrity of LLIN - Status\":\"Good\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":98.0,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":9.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"8\":{\"Nets\":\"Net 9\",\"Date of impregnation\":\"May 2014\",\"Brand\":\"Royal sentry\",\"Physical integrity of LLIN - pHI\":1180,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":95.0,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":11.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"9\":{\"Nets\":\"Net 10\",\"Date of impregnation\":\"October 2015\",\"Brand\":\"Olyset\",\"Physical integrity of LLIN - pHI\":1395,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":87.5,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":2.0,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"}}\n", - "\n", - "header: Consent for publication\n", - "\n", - "Not applicable.\n", - "\n", - "header: Ethics approval and consent to participate\n", - "\n", - "The study was approved by the Carneroonian National Ethical Committee for Research on Human Health (Statement No 2018/07/20/CE/NIRER/SFD). One week before the beginning of field activities, the population received a notice of information explaining the objectives, methodology, expected benefits and possible risks of the study. A consent form was sought from the head of households and for participants aged > 18 years for mosquito collection. They were given the opportunity to ask questions and they were informed that they are free to withdraw from the study at any time, without penalty or loss of benefits. At the end of each sampling period, all mosquito collectors were given anti-malaria prophylaxis based on artesunate/amodiaquine according to the national guide for malaria treatment.\n", - "\n", - "header: Data analysis\n", - "\n", - "Data were analyzed using SPSS software version 25 (IBM Corp., Armonk, NY, USA). The entomological parameters that were considered were: (i) human-biting rate (HBR), i.e. the average number of bites received per person per night; (ii) infection rate, i.e. the proportion of mosquitoes found with _Plasmodium_ circumsporozoite antigen in the heads and thoraces; (iii) entomological inoculation rate (EIR), i.e. the product of the HBR and circumsporozoite rate. Chi-square statistics was used to compare mosquito densities between seasons while mosquitoes' seasonal aggressiveness (HBR) were compared by the Kruskal-Wallis test. Differences were considered statistically significant at \\(P\\) < 0.05.\n", - "\n", - "header: Abstract\n", - "\n", - "Insights into factors sustaining persistence of high malaria transmission in forested areas of sub-Saharan Africa: the case of Mvoua, South Cameroon\n", - "\n", - "Dominique Mieguim Ngninpogni\n", - "\n", - "\n", - "**Background:** In Mvoua, a village situated in a forested area of Cameroon, recent studies have reported high prevalence of _Plasmodium falciparum_ infection among the population. In order to understand factors that can sustain such a high malaria transmission, we investigated the biology of _Anopheles_ vectors and its susceptibility to insecticides, as well as long-lasting insecticidal net (LLIN) coverage, use and bio-efficacy.\n", - "\n", - "**Methods:** A longitudinal entomological survey was conducted from July 2018 to April 2019. Adult mosquitoes were collected using the human landing catch (HLC) method and identified using morphological and molecular techniques. _Anopheles gambiae (s.l)_ larvae were sampled from several stagnant water pools throughout the village and reared to generate F1 adults. The presence of _P. falciparum_ circumsporozoite antigen was detected in the heads and thoraces of mosquitoes collected as adults using an enzyme-linked immunosorbent assay. The insecticide susceptibility status of the local _An. gambiae (s.l)_ F1 population to the pyrethroid insecticides deltamethrin 0.5% and permethrin 0.75% was determined using World Health Organization-tube bioassays, while the frequency of the knockdown resistance (_kdt_) mutation was determined by PCR. Coverage, use and physical integrity of LLINs were assessed in households, then cone assays were used to test for their bio-efficacy on both the reference insecticide-susceptible Kisumu strain and on field F1 _An. gambiae (s.l)_\n", - "\n", - "**Results:** In total, 110 _Anopheles_ mosquitoes were collected, of which 59.1% were identified as _Anopheles funestus (s.l)_, 38.18% as _An. gambiae (s.l)_ and 2.72% as _An. Ziemanili. Anopheles funestus_ was the most abundant species except in the long rainy season, when _An. gambiae (s.l)_ predominated (65.8%). In the dry seasons, vectors were principally endophagous (76% of those collected indoors) while they tended to be esophagus (66% of those collected outdoors) in rainy seasons. High _Plasmodium_ infection was observed in _An. gambiae (s.l)_ and _An. funestus_, with a circumsporozoite rate of 14.29 and 10.77%, respectively. _Anopheles gambiae (s.l)_ was highly resistant to pyrethroid insecticides (mortality rates: 32% for permethrin and 5% for deltamethrin) and harbored the _kdt_-L1014F mutation at a high frequency (89.74%). Of the 80 households surveyed, only 47.69% had achieved universal coverage with LLINs. Around 70% of the LLINs\n", - "sampled were in poor physical condition, with a proportionate hole index > 300. Of the ten LLNs tested, eight were effective against the _An. gambiae_ reference insecticide-susceptible Kisumu strain, showing mortality rate of > 80%, while none of these LLINs were efficient against local _An. gamabie_ (\\(x_{l}\\)) populations (mortality rates < 11.5%).\n", - "\n", - "header: Availability of data and materials\n", - "\n", - "The datasets generated and/or analysed during the current study are available from the corresponding author on reasonable request.\n", - "\n", - "header: Table 2 Anopheles gambiae complex species composition and the frequency of the knockdown resistance L1014F mutation\n", - "footer: kdr-L1014F, Knockdown resistance L1014F mutation; R resistance; S, susceptible\n", - "columns: ['Anopheles species - Unnamed: 0_level_1', 'Composition - N', 'Composition - %', 'kdr-L1014F genotypes - RR', 'kdr-L1014F genotypes - RS', 'kdr-L1014F genotypes - SS', 'kdr-L1014F alleles (%) - R', 'kdr-L1014F alleles (%) - S']\n", - "\n", - "{\"0\":{\"Anopheles species - Unnamed: 0_level_1\":\"An. gambiae\",\"Composition - N\":28,\"Composition - %\":71.8,\"kdr-L1014F genotypes - RR\":27,\"kdr-L1014F genotypes - RS\":1,\"kdr-L1014F genotypes - SS\":0,\"kdr-L1014F alleles (%) - R\":98.21,\"kdr-L1014F alleles (%) - S\":1.79},\"1\":{\"Anopheles species - Unnamed: 0_level_1\":\"An. coluzzii\",\"Composition - N\":11,\"Composition - %\":28.2,\"kdr-L1014F genotypes - RR\":8,\"kdr-L1014F genotypes - RS\":1,\"kdr-L1014F genotypes - SS\":2,\"kdr-L1014F alleles (%) - R\":77.27,\"kdr-L1014F alleles (%) - S\":22.73},\"2\":{\"Anopheles species - Unnamed: 0_level_1\":\"Total\",\"Composition - N\":39,\"Composition - %\":100.0,\"kdr-L1014F genotypes - RR\":35,\"kdr-L1014F genotypes - RS\":2,\"kdr-L1014F genotypes - SS\":2,\"kdr-L1014F alleles (%) - R\":92.31,\"kdr-L1014F alleles (%) - S\":7.69}}\n", - "\n", - "header: Results\n", - "\n", - "In total, 129 adult mosquitoes were collected during eight nights. These belonged to four genera, of which _Anopheles_ (_N_ = 110; 85.27%) was the most prevalent, followed in decreasing order of prevalence by _Mansonia_ (_N_ = 11; 8.53%), _Aedes_ (_N_ = 6; 4.65%) and _Culex_ (_N_ = 2; 1.55%). Three _Anopheles_ species were collected namely _An. funestus_ (_s.l._) (59.1%), _An. gambiae_ (_s.l._) (38.18%) and _An. zienanii_ (2.72%). _Anopheles. sp_ were most abundant in the short dry season followed by the long rainy season (49.09% of the total _Anopheles_ collected) and the long rainy season (34.54%).\n", - "\n", - "In terms of seasonal species abundance, _An. funestus_ was the most abundant species collected (59.1%) over the period of study, with the exception of the long rainy season when _An. gambiae_ (_s.l._) predominated (Fig. 1).\n", - "\n", - "header: Study area: Adult mosquito collection\n", - "\n", - "Collections of adult host-seeking mosquitoes were undertaken employing both the CDC light trap (CDC-LT) and human landing catch (HLC) methods. Because no mosquito was collected using the CDC-LTs after two consecutive nights of sampling, this method was discarded.\n", - "\n", - "Sampling using the HLC method was performed in ten randomly selected houses situated at least 100 m apart. The method involved persons sitting with their lower legs exposed and then collecting mosquitoes that just landed on them [14]. Adult mosquitoes were sampled both indoors and outdoors during two consecutive nights, once per each of the four seasons. Mosquitoes collected each hour were placed into separate bags, labeled accordingly and brought back to the laboratory for further analysis. To avoid bias due to sleep and tiredness, one team of collectors worked from 18:00 h to midnight, and was replaced by another team which worked from midnight to 6:00 h.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ITNCondition` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Author details\n", - "\n", - "1 Laboratory of Parasitology and Ecology, Faculty of Sciences, University of Yaoundet i P.O. Box 812, Yaoundet, Cameroon. 1 Institute for the Recherche de Yaoundet (FR), Organizing the Coordination pour la Tutte Contre les Endrines en Afrique Centrale (OCEAC), PO. Box 283, Yaoundet, Cameroon. 3 Department of Biological Sciences, Faculty of Medicine and Pharmaceutical Sciences, University of Ouala, PO. Box 2415, Ouala, Cameroon. 4 Department of Parasitology and Microbiology, Centre for Research in Infectious Diseases (RDI), PO. Box 13591, Yaounde, Cameroon. 5 Animal Organisms Laboratory, Faculty of Sciences, University of Ouala, PO. Box 24157, Douala, Cameroon.\n", - "\n", - "header: Insecticide bioassays and knockdown resistance detection\n", - "\n", - "Larvae of _An. gambiae_ (_s.l._) were collected in stagnant pools of water and reared in the insectary of the medical entomology laboratory of OCEAC. F1 adults that emerged from those larvae were fed with 10% sucrose solution made by dissolving 100 g of ordinary white sugar in 1 L of water [22]. _Anopheles funestus_ was not tested due to the low number of adults obtained following larval collections and rearing. The susceptibility of the F1 adults to 0.75% permethrin and 0.05% deltamethrin, both pyrethroid pesticides, was assessed using a World Health Organization (WHO) standard test procedure [23]. Tests were performed at 25 +- 2 degC, 806 +- 10% relative humidity (RH). For each insecticide, four batches of 20-25 field F1 females, aged between 2 and 5 days, were exposed to insecticide-impregnated papers in WHO test-tube for 1 h. At the same time, two batches of the same number of mosquitoes were exposed to untreated papers as control. At the end of the insecticide exposure period, the number of knocked-down mosquitoes was recorded, following which the mosquitoes were transferred into holding tubes. Cotton balls that had first been soaked in a 10% sugar solution and then the moisture squeezed out were placed at the mouth of the tubes. The mortality was recorded 24 h later. Mortality rate in the tested samples was corrected using Abbott's formula [24], when the mortality in the control tubes varied between 5 to 20%. The knockdown resistance (_kdr_) mutation L1014F, which is responsible of cross resistance to DDT (dichlorodiphenyl-trichloroethane) and pyrethroids was genotyped using the protocol described by Martinez-Tores et al. [25].\n", - "\n", - "header: Funding\n", - "\n", - "This research was funded by the Royal Society of Tropical Medicine and Hygiene (RSTM#) through a small grant awarded to DM and the Wellcome Trust through a Wellcome Trust Training fellowship in public health and tropical medicine to CN (102543/2/13/2). The RSTM# and the Wellcome Trust have no role in the design of the study and collection, analysis, and interpretation of data and in writing the manuscript.\n", - "\n", - "header: Bed net coverage, use and maintenance\n", - "\n", - "Bed net ownership was investigated in 80 of 97 the households that currently make up the village through visual inspection. The heads of these households or their representatives were questioned on their use of nets and their maintenance. The number of people living in each house was recorded to estimate net coverage. Household net ownership was defined as the percentage of households owning at least one LLIN. Net coverage defined as the percentage of households with at least one LLIN for every two people was also determined.\n", - "\n", - "header: Abbreviations\n", - "\n", - "DDT: Dichlorodiphenyltrichloroethane; ER: Entomological inoculation rate; ELISA CSP: Enzyme-linked immunosorbent assay to detect the circumsporolite protein; HL: Human landing catch method; Adv: Knockdown resistance; LINK: long-lasting insecticidal net; pH: Proportionate hole index; WHORES: World Health Organization Pesticides Evaluation Scheme\n", - "\n", - "header: Conclusion\n", - "\n", - "A combination of elevated _P. falciparum_ infection in _Anopheles_ vector populations, insufficient coverage and loss of effectiveness of LLINs due to physical degradation, as well as high resistance to pyrethroid insecticides is responsible for the persistence of high malaria transmission in forested rural area of Mvoua, Cameroon.\n", - "\n", - "header: Physical integrity and effectiveness of LLINs\n", - "\n", - "Ten LLINs aged 3-7 years old were sampled to assess their physical integrity and bio-efficacy. A total of 161 holes belonging to all the four different types described by WHOPES (the size of a person's thumb, fist or head, or larger than a head) were counted, with a mean of 17 holes per bed net. The proportion of these holes per type was 52.79% (thumb size), 32.29% (fist size), 9.93% (head size) and 4.96% (large than head size). Of the ten LLINs examined, seven (70%) were damaged and were found to be in poor condition (pHI > 300) (Table 4).\n", - "\n", - "A total of 2000 specimens of the _An. gambiae_ (_s.l._) susceptible Kisumu strain were exposed to the ten bed nets. Eight of these nets were effective against this strain, with mortality rates > 80%. Exposure of the same number of _An. gambiae_ (_s.l._) field F1 mosquitoes to these LLINs revealed that they were all ineffective, with mortalities ranging from 0 to 11.5% (Table 4).\n", - "\n", - "header: Possession, coverage and use of LLINs\n", - "\n", - "In general, 81.25% of the households inspected possessed at least one LLIN. Despite this high level of ownership, the proportion of households that met the ratio of one net for two persons was only 47.69%. Fortunately, 81.54% of the people interviewed affirmed they used their bed nets every night (Table 3). Of the LLINs available, 92.3% were acquired during the government free mass distribution campaigns of 2011-2012 and 2015-2016. Although almost 70% of the study population affirmed that they have been educated by the public health community agents during the distribution campaigns, only 10.52% knew bed nets should be dried in the shade before usage or after washing. Moreover, 56.46% of respondents had washed their bet nets at least once; 63.15% used water and ordinary soap while 36.85% used detergents soap and bleach (Table 3).\n", - "\n", - "header: Bed net integrity and bio-efficacy\n", - "\n", - "Ten bed nets were randomly collected from ten selected houses and immediately replaced by new ones. The physical integrity of the nets collected was determined by counting, per category, the number of holes that were approximately the size of a person's thumb, fist or head, or larger than a head, on any of the four faces and the top of the bed net [26, 27]. The proportionate hole index (pH) was calculated using the WHO Pesticide Evaluation Scheme (WHOPES ) guidelines [11] and nets were classified into four classes accordingly [28, 29]. Nets with a pHI <25 were classified as \"good\"; those with a pH ranging between 25 and 174, as \"fair\"; those nets with a pHI ranging from 175 to 299, as \"mediocre\"; and those with a pHI > 300, as \"poor\".\n", - "\n", - "\n", - "Cone assays were performed on each net to test for its bio-efficacy as described in WHO guidelines [30]. Four cones were fixed by their widest opening onto four different parts of each face (4 sides and 1 roof) of each net. Ten unfed _An. gambiae_ (_s.l._) female mosquitoes aged 2-5 days were introduced into each cone using a mouth aspirator, for a total of 200 specimens per net. After 3 min of exposure, the mosquitoes were removed from the cones, then transferred into paper cups and fed with a 10% sugar solution. The assay was conducted at 25 +- 1 degC, 80% +- 5% RH, and the number of mosquitoes knocked-down and dead were recorded after 60 min and 24 h, respectively. An untreated net was used as the negative control.\n", - "\n", - "header: Data analysis\n", - "\n", - "Data were analyzed using SPSS software version 25 (IBM Corp., Armonk, NY, USA). The entomological parameters that were considered were: (i) human-biting rate (HBR), i.e. the average number of bites received per person per night; (ii) infection rate, i.e. the proportion of mosquitoes found with _Plasmodium_ circumsporozoite antigen in the heads and thoraces; (iii) entomological inoculation rate (EIR), i.e. the product of the HBR and circumsporozoite rate. Chi-square statistics was used to compare mosquito densities between seasons while mosquitoes' seasonal aggressiveness (HBR) were compared by the Kruskal-Wallis test. Differences were considered statistically significant at \\(P\\) < 0.05.\n", - "\n", - "header: Table 1 Plasmodium circumsporozoite index, human biting rate and monthly entomological inoculation rate of Anopheles species in Mvoua between August 2018 and April 2019\n", - "footer: Human-biting rate (HBR) is the average number of bites received per person per night; (ii) Plasmodium circumsporozoite index (infection rate) is the proportion of mosquitoes found with Plasmodium circumsporozoite antigen in the heads and thoraces; entomological inoculation rate is the product of the HBR and circumsporozoite rateNC not calculated\n", - "columns: ['Anopheles species', 'Tested (N)', 'Positive (N)', 'Entomological parameters - Plasmodium circumsporozoite index (%)', 'Entomological parameters - Human biting rate', 'Entomological parameters - Human biting rate.1', 'Entomological parameters - Entomological inoculation rate/ month']\n", - "\n", - "{\"0\":{\"Anopheles species\":\"An. funestus (s.l.)\",\"Tested (N)\":65,\"Positive (N)\":7,\"Entomological parameters - Plasmodium circumsporozoite index (%)\":\"10.77\",\"Entomological parameters - Human biting rate\":0.55,\"Entomological parameters - Human biting rate.1\":0.55,\"Entomological parameters - Entomological inoculation rate\\/ month\":\"1.5\"},\"1\":{\"Anopheles species\":\"An. gambiae (s.l.)\",\"Tested (N)\":42,\"Positive (N)\":6,\"Entomological parameters - Plasmodium circumsporozoite index (%)\":\"14.29\",\"Entomological parameters - Human biting rate\":0.35,\"Entomological parameters - Human biting rate.1\":0.35,\"Entomological parameters - Entomological inoculation rate\\/ month\":\"1.2\"},\"2\":{\"Anopheles species\":\"An. ziemanii\",\"Tested (N)\":3,\"Positive (N)\":0,\"Entomological parameters - Plasmodium circumsporozoite index (%)\":\"0\",\"Entomological parameters - Human biting rate\":0.02,\"Entomological parameters - Human biting rate.1\":0.02,\"Entomological parameters - Entomological inoculation rate\\/ month\":\"NC\"},\"3\":{\"Anopheles species\":\"Total\",\"Tested (N)\":110,\"Positive (N)\":13,\"Entomological parameters - Plasmodium circumsporozoite index (%)\":\"11.81%\",\"Entomological parameters - Human biting rate\":0.93,\"Entomological parameters - Human biting rate.1\":0.93,\"Entomological parameters - Entomological inoculation rate\\/ month\":\"2.7\"}}\n", - "\n", - "header: Competing interests\n", - "\n", - "The authors declare they have no competing interests.\n", - "\n", - "header: Ethics approval and consent to participate\n", - "\n", - "The study was approved by the Carneroonian National Ethical Committee for Research on Human Health (Statement No 2018/07/20/CE/NIRER/SFD). One week before the beginning of field activities, the population received a notice of information explaining the objectives, methodology, expected benefits and possible risks of the study. A consent form was sought from the head of households and for participants aged > 18 years for mosquito collection. They were given the opportunity to ask questions and they were informed that they are free to withdraw from the study at any time, without penalty or loss of benefits. At the end of each sampling period, all mosquito collectors were given anti-malaria prophylaxis based on artesunate/amodiaquine according to the national guide for malaria treatment.\n", - "\n", - "header: Conclusion\n", - "\n", - "The findings of this study highlight high and perennial malaria transmission in Mvoua, with the highest infection rate in _Anopheles_ vectors observed in the short dry season. Three major vectors, namely _An. funestus_, _An. coluzzizi_ and _An. gambiae_, were responsible for the transmission of the disease. This vector displayed a high level of resistance to pyrethroid insecticides due to the _kdr_ mutation, but also probably due to metabolic mechanisms. Although there was a high level of LLIN possession among the households, universal coverage was not reached and LLINs found in the locality were no longer effective against the local _An. gambiae_ (_s.l._) strain. The National Malaria Control Program should provide the locality with new LLINs every 3 years, as recommended by WHO. Preferably, to manage the high pyrethroid resistance observed, these LLINs should incorporate a synergism to block the action of detoxification enzymes. People should be educated on the use and maintenance of LLINs, with an emphasis on the importance of sleeping under LLINs irrespective of season, as well as on the damaging impact of detergents used for their washing.\n", - "\n", - "header: Table 2 Anopheles gambiae complex species composition and the frequency of the knockdown resistance L1014F mutation\n", - "footer: kdr-L1014F, Knockdown resistance L1014F mutation; R resistance; S, susceptible\n", - "columns: ['Anopheles species - Unnamed: 0_level_1', 'Composition - N', 'Composition - %', 'kdr-L1014F genotypes - RR', 'kdr-L1014F genotypes - RS', 'kdr-L1014F genotypes - SS', 'kdr-L1014F alleles (%) - R', 'kdr-L1014F alleles (%) - S']\n", - "\n", - "{\"0\":{\"Anopheles species - Unnamed: 0_level_1\":\"An. gambiae\",\"Composition - N\":28,\"Composition - %\":71.8,\"kdr-L1014F genotypes - RR\":27,\"kdr-L1014F genotypes - RS\":1,\"kdr-L1014F genotypes - SS\":0,\"kdr-L1014F alleles (%) - R\":98.21,\"kdr-L1014F alleles (%) - S\":1.79},\"1\":{\"Anopheles species - Unnamed: 0_level_1\":\"An. coluzzii\",\"Composition - N\":11,\"Composition - %\":28.2,\"kdr-L1014F genotypes - RR\":8,\"kdr-L1014F genotypes - RS\":1,\"kdr-L1014F genotypes - SS\":2,\"kdr-L1014F alleles (%) - R\":77.27,\"kdr-L1014F alleles (%) - S\":22.73},\"2\":{\"Anopheles species - Unnamed: 0_level_1\":\"Total\",\"Composition - N\":39,\"Composition - %\":100.0,\"kdr-L1014F genotypes - RR\":35,\"kdr-L1014F genotypes - RS\":2,\"kdr-L1014F genotypes - SS\":2,\"kdr-L1014F alleles (%) - R\":92.31,\"kdr-L1014F alleles (%) - S\":7.69}}\n", - "\n", - "header: Consent for publication\n", - "\n", - "Not applicable.\n", - "\n", - "header: Abstract\n", - "\n", - "Insights into factors sustaining persistence of high malaria transmission in forested areas of sub-Saharan Africa: the case of Mvoua, South Cameroon\n", - "\n", - "Dominique Mieguim Ngninpogni\n", - "\n", - "\n", - "**Background:** In Mvoua, a village situated in a forested area of Cameroon, recent studies have reported high prevalence of _Plasmodium falciparum_ infection among the population. In order to understand factors that can sustain such a high malaria transmission, we investigated the biology of _Anopheles_ vectors and its susceptibility to insecticides, as well as long-lasting insecticidal net (LLIN) coverage, use and bio-efficacy.\n", - "\n", - "**Methods:** A longitudinal entomological survey was conducted from July 2018 to April 2019. Adult mosquitoes were collected using the human landing catch (HLC) method and identified using morphological and molecular techniques. _Anopheles gambiae (s.l)_ larvae were sampled from several stagnant water pools throughout the village and reared to generate F1 adults. The presence of _P. falciparum_ circumsporozoite antigen was detected in the heads and thoraces of mosquitoes collected as adults using an enzyme-linked immunosorbent assay. The insecticide susceptibility status of the local _An. gambiae (s.l)_ F1 population to the pyrethroid insecticides deltamethrin 0.5% and permethrin 0.75% was determined using World Health Organization-tube bioassays, while the frequency of the knockdown resistance (_kdt_) mutation was determined by PCR. Coverage, use and physical integrity of LLINs were assessed in households, then cone assays were used to test for their bio-efficacy on both the reference insecticide-susceptible Kisumu strain and on field F1 _An. gambiae (s.l)_\n", - "\n", - "**Results:** In total, 110 _Anopheles_ mosquitoes were collected, of which 59.1% were identified as _Anopheles funestus (s.l)_, 38.18% as _An. gambiae (s.l)_ and 2.72% as _An. Ziemanili. Anopheles funestus_ was the most abundant species except in the long rainy season, when _An. gambiae (s.l)_ predominated (65.8%). In the dry seasons, vectors were principally endophagous (76% of those collected indoors) while they tended to be esophagus (66% of those collected outdoors) in rainy seasons. High _Plasmodium_ infection was observed in _An. gambiae (s.l)_ and _An. funestus_, with a circumsporozoite rate of 14.29 and 10.77%, respectively. _Anopheles gambiae (s.l)_ was highly resistant to pyrethroid insecticides (mortality rates: 32% for permethrin and 5% for deltamethrin) and harbored the _kdt_-L1014F mutation at a high frequency (89.74%). Of the 80 households surveyed, only 47.69% had achieved universal coverage with LLINs. Around 70% of the LLINs\n", - "sampled were in poor physical condition, with a proportionate hole index > 300. Of the ten LLNs tested, eight were effective against the _An. gambiae_ reference insecticide-susceptible Kisumu strain, showing mortality rate of > 80%, while none of these LLINs were efficient against local _An. gamabie_ (\\(x_{l}\\)) populations (mortality rates < 11.5%).\n", - "\n", - "header: Mosquito identification and detection of _Plasmodium infection_\n", - "\n", - "Adult mosquitoes collected using the HLC method were identified based on morphological criteria following the identification keys of Gillies and De Meillon [15] and Gillies and Coetzee [16]. Female _Anopheles_ mosquitoes were sorted from other _Culicinae_, stored in Eppendorf tubes with silica gel (desiccant) and taken to the medical entomology laboratory of OCEAC (Organisation de Coordination pour la lutte Contre les Endemies en Afrique Centrale) for subsequent analyses. Heads and thoraces were processed for detection of _P. falciparum_ circumsporozoite protein (CSP) using an enzyme-linked immunosorbent assay (ELISA) method as previously described [17, 18]. DNA extracted from the abdomen and legs [19] was used for the molecular identification of sibling species by PCR, as described previously [20, 21].\n", - "\n", - "header: Results\n", - "\n", - "In total, 129 adult mosquitoes were collected during eight nights. These belonged to four genera, of which _Anopheles_ (_N_ = 110; 85.27%) was the most prevalent, followed in decreasing order of prevalence by _Mansonia_ (_N_ = 11; 8.53%), _Aedes_ (_N_ = 6; 4.65%) and _Culex_ (_N_ = 2; 1.55%). Three _Anopheles_ species were collected namely _An. funestus_ (_s.l._) (59.1%), _An. gambiae_ (_s.l._) (38.18%) and _An. zienanii_ (2.72%). _Anopheles. sp_ were most abundant in the short dry season followed by the long rainy season (49.09% of the total _Anopheles_ collected) and the long rainy season (34.54%).\n", - "\n", - "In terms of seasonal species abundance, _An. funestus_ was the most abundant species collected (59.1%) over the period of study, with the exception of the long rainy season when _An. gambiae_ (_s.l._) predominated (Fig. 1).\n", - "\n", - "header: Table 4 Hole index and mortality of An. gambiae (s.l.) after being exposed to the long‑lasting insecticidal nets\n", - "footer: Not eff., not e\u001d\n", - "fficient; PHI, proportionate hole index\n", - "columns: ['Nets', 'Date of impregnation', 'Brand', 'Physical integrity of LLIN - pHI', 'Physical integrity of LLIN - Status', 'Bio‑efficacy of LLIN (%) - Kisumu control strain', 'Bio‑efficacy of LLIN (%) - Field strain', 'Decision - Unnamed: 7_level_1']\n", - "\n", - "{\"0\":{\"Nets\":\"Net 1\",\"Date of impregnation\":\"October 2015\",\"Brand\":\"Olyset\",\"Physical integrity of LLIN - pHI\":0,\"Physical integrity of LLIN - Status\":\"Good\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":83.5,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":3.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"1\":{\"Nets\":\"Net 2\",\"Date of impregnation\":\"October 2015\",\"Brand\":\"Olyset\",\"Physical integrity of LLIN - pHI\":916,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":80.5,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":0.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"2\":{\"Nets\":\"Net 3\",\"Date of impregnation\":\"February 2011\",\"Brand\":\"Permanet\",\"Physical integrity of LLIN - pHI\":1939,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":69.5,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":2.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"3\":{\"Nets\":\"Net 4\",\"Date of impregnation\":\"February 2011\",\"Brand\":\"Permanet\",\"Physical integrity of LLIN - pHI\":581,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":88.0,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":11.0,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"4\":{\"Nets\":\"Net 5\",\"Date of impregnation\":\"February 2011\",\"Brand\":\"Permanet\",\"Physical integrity of LLIN - pHI\":13,\"Physical integrity of LLIN - Status\":\"Good\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":99.0,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":8.0,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"5\":{\"Nets\":\"Net 6\",\"Date of impregnation\":\"October 2015\",\"Brand\":\"Olyset\",\"Physical integrity of LLIN - pHI\":651,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":85.0,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":2.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"6\":{\"Nets\":\"Net 7\",\"Date of impregnation\":\"October 2011\",\"Brand\":\"Permanet\",\"Physical integrity of LLIN - pHI\":2225,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":72.4,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":3.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"7\":{\"Nets\":\"Net 8\",\"Date of impregnation\":\"October 2011\",\"Brand\":\"Permanet\",\"Physical integrity of LLIN - pHI\":1,\"Physical integrity of LLIN - Status\":\"Good\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":98.0,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":9.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"8\":{\"Nets\":\"Net 9\",\"Date of impregnation\":\"May 2014\",\"Brand\":\"Royal sentry\",\"Physical integrity of LLIN - pHI\":1180,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":95.0,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":11.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"9\":{\"Nets\":\"Net 10\",\"Date of impregnation\":\"October 2015\",\"Brand\":\"Olyset\",\"Physical integrity of LLIN - pHI\":1395,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":87.5,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":2.0,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"}}\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `Observation` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Funding\n", - "\n", - "This research was funded by the Royal Society of Tropical Medicine and Hygiene (RSTM#) through a small grant awarded to DM and the Wellcome Trust through a Wellcome Trust Training fellowship in public health and tropical medicine to CN (102543/2/13/2). The RSTM# and the Wellcome Trust have no role in the design of the study and collection, analysis, and interpretation of data and in writing the manuscript.\n", - "\n", - "header: Abbreviations\n", - "\n", - "DDT: Dichlorodiphenyltrichloroethane; ER: Entomological inoculation rate; ELISA CSP: Enzyme-linked immunosorbent assay to detect the circumsporolite protein; HL: Human landing catch method; Adv: Knockdown resistance; LINK: long-lasting insecticidal net; pH: Proportionate hole index; WHORES: World Health Organization Pesticides Evaluation Scheme\n", - "\n", - "header: Author details\n", - "\n", - "1 Laboratory of Parasitology and Ecology, Faculty of Sciences, University of Yaoundet i P.O. Box 812, Yaoundet, Cameroon. 1 Institute for the Recherche de Yaoundet (FR), Organizing the Coordination pour la Tutte Contre les Endrines en Afrique Centrale (OCEAC), PO. Box 283, Yaoundet, Cameroon. 3 Department of Biological Sciences, Faculty of Medicine and Pharmaceutical Sciences, University of Ouala, PO. Box 2415, Ouala, Cameroon. 4 Department of Parasitology and Microbiology, Centre for Research in Infectious Diseases (RDI), PO. Box 13591, Yaounde, Cameroon. 5 Animal Organisms Laboratory, Faculty of Sciences, University of Ouala, PO. Box 24157, Douala, Cameroon.\n", - "\n", - "header: Insecticide bioassays and knockdown resistance detection\n", - "\n", - "Larvae of _An. gambiae_ (_s.l._) were collected in stagnant pools of water and reared in the insectary of the medical entomology laboratory of OCEAC. F1 adults that emerged from those larvae were fed with 10% sucrose solution made by dissolving 100 g of ordinary white sugar in 1 L of water [22]. _Anopheles funestus_ was not tested due to the low number of adults obtained following larval collections and rearing. The susceptibility of the F1 adults to 0.75% permethrin and 0.05% deltamethrin, both pyrethroid pesticides, was assessed using a World Health Organization (WHO) standard test procedure [23]. Tests were performed at 25 +- 2 degC, 806 +- 10% relative humidity (RH). For each insecticide, four batches of 20-25 field F1 females, aged between 2 and 5 days, were exposed to insecticide-impregnated papers in WHO test-tube for 1 h. At the same time, two batches of the same number of mosquitoes were exposed to untreated papers as control. At the end of the insecticide exposure period, the number of knocked-down mosquitoes was recorded, following which the mosquitoes were transferred into holding tubes. Cotton balls that had first been soaked in a 10% sugar solution and then the moisture squeezed out were placed at the mouth of the tubes. The mortality was recorded 24 h later. Mortality rate in the tested samples was corrected using Abbott's formula [24], when the mortality in the control tubes varied between 5 to 20%. The knockdown resistance (_kdr_) mutation L1014F, which is responsible of cross resistance to DDT (dichlorodiphenyl-trichloroethane) and pyrethroids was genotyped using the protocol described by Martinez-Tores et al. [25].\n", - "\n", - "header: Table 1 Plasmodium circumsporozoite index, human biting rate and monthly entomological inoculation rate of Anopheles species in Mvoua between August 2018 and April 2019\n", - "footer: Human-biting rate (HBR) is the average number of bites received per person per night; (ii) Plasmodium circumsporozoite index (infection rate) is the proportion of mosquitoes found with Plasmodium circumsporozoite antigen in the heads and thoraces; entomological inoculation rate is the product of the HBR and circumsporozoite rateNC not calculated\n", - "columns: ['Anopheles species', 'Tested (N)', 'Positive (N)', 'Entomological parameters - Plasmodium circumsporozoite index (%)', 'Entomological parameters - Human biting rate', 'Entomological parameters - Human biting rate.1', 'Entomological parameters - Entomological inoculation rate/ month']\n", - "\n", - "{\"0\":{\"Anopheles species\":\"An. funestus (s.l.)\",\"Tested (N)\":65,\"Positive (N)\":7,\"Entomological parameters - Plasmodium circumsporozoite index (%)\":\"10.77\",\"Entomological parameters - Human biting rate\":0.55,\"Entomological parameters - Human biting rate.1\":0.55,\"Entomological parameters - Entomological inoculation rate\\/ month\":\"1.5\"},\"1\":{\"Anopheles species\":\"An. gambiae (s.l.)\",\"Tested (N)\":42,\"Positive (N)\":6,\"Entomological parameters - Plasmodium circumsporozoite index (%)\":\"14.29\",\"Entomological parameters - Human biting rate\":0.35,\"Entomological parameters - Human biting rate.1\":0.35,\"Entomological parameters - Entomological inoculation rate\\/ month\":\"1.2\"},\"2\":{\"Anopheles species\":\"An. ziemanii\",\"Tested (N)\":3,\"Positive (N)\":0,\"Entomological parameters - Plasmodium circumsporozoite index (%)\":\"0\",\"Entomological parameters - Human biting rate\":0.02,\"Entomological parameters - Human biting rate.1\":0.02,\"Entomological parameters - Entomological inoculation rate\\/ month\":\"NC\"},\"3\":{\"Anopheles species\":\"Total\",\"Tested (N)\":110,\"Positive (N)\":13,\"Entomological parameters - Plasmodium circumsporozoite index (%)\":\"11.81%\",\"Entomological parameters - Human biting rate\":0.93,\"Entomological parameters - Human biting rate.1\":0.93,\"Entomological parameters - Entomological inoculation rate\\/ month\":\"2.7\"}}\n", - "\n", - "header: Bed net coverage, use and maintenance\n", - "\n", - "Bed net ownership was investigated in 80 of 97 the households that currently make up the village through visual inspection. The heads of these households or their representatives were questioned on their use of nets and their maintenance. The number of people living in each house was recorded to estimate net coverage. Household net ownership was defined as the percentage of households owning at least one LLIN. Net coverage defined as the percentage of households with at least one LLIN for every two people was also determined.\n", - "\n", - "header: Ethics approval and consent to participate\n", - "\n", - "The study was approved by the Carneroonian National Ethical Committee for Research on Human Health (Statement No 2018/07/20/CE/NIRER/SFD). One week before the beginning of field activities, the population received a notice of information explaining the objectives, methodology, expected benefits and possible risks of the study. A consent form was sought from the head of households and for participants aged > 18 years for mosquito collection. They were given the opportunity to ask questions and they were informed that they are free to withdraw from the study at any time, without penalty or loss of benefits. At the end of each sampling period, all mosquito collectors were given anti-malaria prophylaxis based on artesunate/amodiaquine according to the national guide for malaria treatment.\n", - "\n", - "header: Competing interests\n", - "\n", - "The authors declare they have no competing interests.\n", - "\n", - "header: Data analysis\n", - "\n", - "Data were analyzed using SPSS software version 25 (IBM Corp., Armonk, NY, USA). The entomological parameters that were considered were: (i) human-biting rate (HBR), i.e. the average number of bites received per person per night; (ii) infection rate, i.e. the proportion of mosquitoes found with _Plasmodium_ circumsporozoite antigen in the heads and thoraces; (iii) entomological inoculation rate (EIR), i.e. the product of the HBR and circumsporozoite rate. Chi-square statistics was used to compare mosquito densities between seasons while mosquitoes' seasonal aggressiveness (HBR) were compared by the Kruskal-Wallis test. Differences were considered statistically significant at \\(P\\) < 0.05.\n", - "\n", - "header: Possession, coverage and use of LLINs\n", - "\n", - "In general, 81.25% of the households inspected possessed at least one LLIN. Despite this high level of ownership, the proportion of households that met the ratio of one net for two persons was only 47.69%. Fortunately, 81.54% of the people interviewed affirmed they used their bed nets every night (Table 3). Of the LLINs available, 92.3% were acquired during the government free mass distribution campaigns of 2011-2012 and 2015-2016. Although almost 70% of the study population affirmed that they have been educated by the public health community agents during the distribution campaigns, only 10.52% knew bed nets should be dried in the shade before usage or after washing. Moreover, 56.46% of respondents had washed their bet nets at least once; 63.15% used water and ordinary soap while 36.85% used detergents soap and bleach (Table 3).\n", - "\n", - "header: Consent for publication\n", - "\n", - "Not applicable.\n", - "\n", - "header: Table 2 Anopheles gambiae complex species composition and the frequency of the knockdown resistance L1014F mutation\n", - "footer: kdr-L1014F, Knockdown resistance L1014F mutation; R resistance; S, susceptible\n", - "columns: ['Anopheles species - Unnamed: 0_level_1', 'Composition - N', 'Composition - %', 'kdr-L1014F genotypes - RR', 'kdr-L1014F genotypes - RS', 'kdr-L1014F genotypes - SS', 'kdr-L1014F alleles (%) - R', 'kdr-L1014F alleles (%) - S']\n", - "\n", - "{\"0\":{\"Anopheles species - Unnamed: 0_level_1\":\"An. gambiae\",\"Composition - N\":28,\"Composition - %\":71.8,\"kdr-L1014F genotypes - RR\":27,\"kdr-L1014F genotypes - RS\":1,\"kdr-L1014F genotypes - SS\":0,\"kdr-L1014F alleles (%) - R\":98.21,\"kdr-L1014F alleles (%) - S\":1.79},\"1\":{\"Anopheles species - Unnamed: 0_level_1\":\"An. coluzzii\",\"Composition - N\":11,\"Composition - %\":28.2,\"kdr-L1014F genotypes - RR\":8,\"kdr-L1014F genotypes - RS\":1,\"kdr-L1014F genotypes - SS\":2,\"kdr-L1014F alleles (%) - R\":77.27,\"kdr-L1014F alleles (%) - S\":22.73},\"2\":{\"Anopheles species - Unnamed: 0_level_1\":\"Total\",\"Composition - N\":39,\"Composition - %\":100.0,\"kdr-L1014F genotypes - RR\":35,\"kdr-L1014F genotypes - RS\":2,\"kdr-L1014F genotypes - SS\":2,\"kdr-L1014F alleles (%) - R\":92.31,\"kdr-L1014F alleles (%) - S\":7.69}}\n", - "\n", - "header: Bed net integrity and bio-efficacy\n", - "\n", - "Ten bed nets were randomly collected from ten selected houses and immediately replaced by new ones. The physical integrity of the nets collected was determined by counting, per category, the number of holes that were approximately the size of a person's thumb, fist or head, or larger than a head, on any of the four faces and the top of the bed net [26, 27]. The proportionate hole index (pH) was calculated using the WHO Pesticide Evaluation Scheme (WHOPES ) guidelines [11] and nets were classified into four classes accordingly [28, 29]. Nets with a pHI <25 were classified as \"good\"; those with a pH ranging between 25 and 174, as \"fair\"; those nets with a pHI ranging from 175 to 299, as \"mediocre\"; and those with a pHI > 300, as \"poor\".\n", - "\n", - "\n", - "Cone assays were performed on each net to test for its bio-efficacy as described in WHO guidelines [30]. Four cones were fixed by their widest opening onto four different parts of each face (4 sides and 1 roof) of each net. Ten unfed _An. gambiae_ (_s.l._) female mosquitoes aged 2-5 days were introduced into each cone using a mouth aspirator, for a total of 200 specimens per net. After 3 min of exposure, the mosquitoes were removed from the cones, then transferred into paper cups and fed with a 10% sugar solution. The assay was conducted at 25 +- 1 degC, 80% +- 5% RH, and the number of mosquitoes knocked-down and dead were recorded after 60 min and 24 h, respectively. An untreated net was used as the negative control.\n", - "\n", - "header: Availability of data and materials\n", - "\n", - "The datasets generated and/or analysed during the current study are available from the corresponding author on reasonable request.\n", - "\n", - "header: Physical integrity and effectiveness of LLINs\n", - "\n", - "Ten LLINs aged 3-7 years old were sampled to assess their physical integrity and bio-efficacy. A total of 161 holes belonging to all the four different types described by WHOPES (the size of a person's thumb, fist or head, or larger than a head) were counted, with a mean of 17 holes per bed net. The proportion of these holes per type was 52.79% (thumb size), 32.29% (fist size), 9.93% (head size) and 4.96% (large than head size). Of the ten LLINs examined, seven (70%) were damaged and were found to be in poor condition (pHI > 300) (Table 4).\n", - "\n", - "A total of 2000 specimens of the _An. gambiae_ (_s.l._) susceptible Kisumu strain were exposed to the ten bed nets. Eight of these nets were effective against this strain, with mortality rates > 80%. Exposure of the same number of _An. gambiae_ (_s.l._) field F1 mosquitoes to these LLINs revealed that they were all ineffective, with mortalities ranging from 0 to 11.5% (Table 4).\n", - "\n", - "header: Study area: Adult mosquito collection\n", - "\n", - "Collections of adult host-seeking mosquitoes were undertaken employing both the CDC light trap (CDC-LT) and human landing catch (HLC) methods. Because no mosquito was collected using the CDC-LTs after two consecutive nights of sampling, this method was discarded.\n", - "\n", - "Sampling using the HLC method was performed in ten randomly selected houses situated at least 100 m apart. The method involved persons sitting with their lower legs exposed and then collecting mosquitoes that just landed on them [14]. Adult mosquitoes were sampled both indoors and outdoors during two consecutive nights, once per each of the four seasons. Mosquitoes collected each hour were placed into separate bags, labeled accordingly and brought back to the laboratory for further analysis. To avoid bias due to sleep and tiredness, one team of collectors worked from 18:00 h to midnight, and was replaced by another team which worked from midnight to 6:00 h.\n", - "\n", - "header: Conclusion\n", - "\n", - "A combination of elevated _P. falciparum_ infection in _Anopheles_ vector populations, insufficient coverage and loss of effectiveness of LLINs due to physical degradation, as well as high resistance to pyrethroid insecticides is responsible for the persistence of high malaria transmission in forested rural area of Mvoua, Cameroon.\n", - "\n", - "header: Table 4 Hole index and mortality of An. gambiae (s.l.) after being exposed to the long‑lasting insecticidal nets\n", - "footer: Not eff., not e\u001d\n", - "fficient; PHI, proportionate hole index\n", - "columns: ['Nets', 'Date of impregnation', 'Brand', 'Physical integrity of LLIN - pHI', 'Physical integrity of LLIN - Status', 'Bio‑efficacy of LLIN (%) - Kisumu control strain', 'Bio‑efficacy of LLIN (%) - Field strain', 'Decision - Unnamed: 7_level_1']\n", - "\n", - "{\"0\":{\"Nets\":\"Net 1\",\"Date of impregnation\":\"October 2015\",\"Brand\":\"Olyset\",\"Physical integrity of LLIN - pHI\":0,\"Physical integrity of LLIN - Status\":\"Good\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":83.5,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":3.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"1\":{\"Nets\":\"Net 2\",\"Date of impregnation\":\"October 2015\",\"Brand\":\"Olyset\",\"Physical integrity of LLIN - pHI\":916,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":80.5,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":0.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"2\":{\"Nets\":\"Net 3\",\"Date of impregnation\":\"February 2011\",\"Brand\":\"Permanet\",\"Physical integrity of LLIN - pHI\":1939,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":69.5,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":2.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"3\":{\"Nets\":\"Net 4\",\"Date of impregnation\":\"February 2011\",\"Brand\":\"Permanet\",\"Physical integrity of LLIN - pHI\":581,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":88.0,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":11.0,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"4\":{\"Nets\":\"Net 5\",\"Date of impregnation\":\"February 2011\",\"Brand\":\"Permanet\",\"Physical integrity of LLIN - pHI\":13,\"Physical integrity of LLIN - Status\":\"Good\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":99.0,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":8.0,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"5\":{\"Nets\":\"Net 6\",\"Date of impregnation\":\"October 2015\",\"Brand\":\"Olyset\",\"Physical integrity of LLIN - pHI\":651,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":85.0,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":2.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"6\":{\"Nets\":\"Net 7\",\"Date of impregnation\":\"October 2011\",\"Brand\":\"Permanet\",\"Physical integrity of LLIN - pHI\":2225,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":72.4,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":3.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"7\":{\"Nets\":\"Net 8\",\"Date of impregnation\":\"October 2011\",\"Brand\":\"Permanet\",\"Physical integrity of LLIN - pHI\":1,\"Physical integrity of LLIN - Status\":\"Good\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":98.0,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":9.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"8\":{\"Nets\":\"Net 9\",\"Date of impregnation\":\"May 2014\",\"Brand\":\"Royal sentry\",\"Physical integrity of LLIN - pHI\":1180,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":95.0,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":11.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"9\":{\"Nets\":\"Net 10\",\"Date of impregnation\":\"October 2015\",\"Brand\":\"Olyset\",\"Physical integrity of LLIN - pHI\":1395,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":87.5,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":2.0,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"}}\n", - "\n", - "header: Results\n", - "\n", - "In total, 129 adult mosquitoes were collected during eight nights. These belonged to four genera, of which _Anopheles_ (_N_ = 110; 85.27%) was the most prevalent, followed in decreasing order of prevalence by _Mansonia_ (_N_ = 11; 8.53%), _Aedes_ (_N_ = 6; 4.65%) and _Culex_ (_N_ = 2; 1.55%). Three _Anopheles_ species were collected namely _An. funestus_ (_s.l._) (59.1%), _An. gambiae_ (_s.l._) (38.18%) and _An. zienanii_ (2.72%). _Anopheles. sp_ were most abundant in the short dry season followed by the long rainy season (49.09% of the total _Anopheles_ collected) and the long rainy season (34.54%).\n", - "\n", - "In terms of seasonal species abundance, _An. funestus_ was the most abundant species collected (59.1%) over the period of study, with the exception of the long rainy season when _An. gambiae_ (_s.l._) predominated (Fig. 1).\n", - "\n", - "header: Table 3 Origin, use and maintenance of long‑lasting insecticidal nets\n", - "footer: LLIN, Long-lasting insecticidal net\n", - "columns: ['Variables related to LLIN', 'N', 'Frequency (%)']\n", - "\n", - "{\"0\":{\"Variables related to LLIN\":\"Possession\",\"N\":\"Possession\",\"Frequency (%)\":\"Possession\"},\"1\":{\"Variables related to LLIN\":\"Yes\",\"N\":\"65\",\"Frequency (%)\":\"81.25\"},\"2\":{\"Variables related to LLIN\":\"No\",\"N\":\"15\",\"Frequency (%)\":\"18.75\"},\"3\":{\"Variables related to LLIN\":\"Origin\",\"N\":\"Origin\",\"Frequency (%)\":\"Origin\"},\"4\":{\"Variables related to LLIN\":\"Government\",\"N\":\"60\",\"Frequency (%)\":\"92.3\"},\"5\":{\"Variables related to LLIN\":\"Market\",\"N\":\"5\",\"Frequency (%)\":\"7.7\"},\"6\":{\"Variables related to LLIN\":\"Installed\",\"N\":\"Installed\",\"Frequency (%)\":\"Installed\"},\"7\":{\"Variables related to LLIN\":\"Yes\",\"N\":\"59\",\"Frequency (%)\":\"90.76\"},\"8\":{\"Variables related to LLIN\":\"No\",\"N\":\"6\",\"Frequency (%)\":\"9.24\"},\"9\":{\"Variables related to LLIN\":\"Presence per 2 persons\",\"N\":\"Presence per 2 persons\",\"Frequency (%)\":\"Presence per 2 persons\"},\"10\":{\"Variables related to LLIN\":\"Yes\",\"N\":\"31\",\"Frequency (%)\":\"47.7\"},\"11\":{\"Variables related to LLIN\":\"No\",\"N\":\"34\",\"Frequency (%)\":\"52.3\"},\"12\":{\"Variables related to LLIN\":\"Usage\",\"N\":\"Usage\",\"Frequency (%)\":\"Usage\"},\"13\":{\"Variables related to LLIN\":\"Every night\",\"N\":\"53\",\"Frequency (%)\":\"81.54\"},\"14\":{\"Variables related to LLIN\":\"Not every night\",\"N\":\"12\",\"Frequency (%)\":\"18.46\"},\"15\":{\"Variables related to LLIN\":\"Education received on LLINs during distribution\",\"N\":\"Education received on LLINs during distribution\",\"Frequency (%)\":\"Education received on LLINs during distribution\"},\"16\":{\"Variables related to LLIN\":\"Yes\",\"N\":\"45\",\"Frequency (%)\":\"69.92\"},\"17\":{\"Variables related to LLIN\":\"No\",\"N\":\"20\",\"Frequency (%)\":\"30.78\"},\"18\":{\"Variables related to LLIN\":\"Had LLIN been washed\",\"N\":\"Had LLIN been washed\",\"Frequency (%)\":\"Had LLIN been washed\"},\"19\":{\"Variables related to LLIN\":\"Yes\",\"N\":\"38\",\"Frequency (%)\":\"58.46\"},\"20\":{\"Variables related to LLIN\":\"No\",\"N\":\"27\",\"Frequency (%)\":\"41.54\"},\"21\":{\"Variables related to LLIN\":\"Substance used for washing\",\"N\":\"Substance used for washing\",\"Frequency (%)\":\"Substance used for washing\"},\"22\":{\"Variables related to LLIN\":\"Ordinary soap\",\"N\":\"24\",\"Frequency (%)\":\"63.15\"},\"23\":{\"Variables related to LLIN\":\"Detergent and bleach\",\"N\":\"14\",\"Frequency (%)\":\"36.85\"},\"24\":{\"Variables related to LLIN\":\"Drying place\",\"N\":\"Drying place\",\"Frequency (%)\":\"Drying place\"},\"25\":{\"Variables related to LLIN\":\"In sun\",\"N\":\"34\",\"Frequency (%)\":\"89.48\"},\"26\":{\"Variables related to LLIN\":\"In shade\",\"N\":\"4\",\"Frequency (%)\":\"10.52\"}}\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ClinicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `ClinicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `ClinicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}, \"Start_month\": {\"title\": \"Start Month\", \"description\": \"Numerical start month of the reporting period (some studies may report multiple time periods)\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Bioassay, cone test\",\"Country\":\"Cameroon\",\"Site\":\"Mvoua\",\"Start_month\":7,\"Start_year\":2018,\"End_month\":4,\"End_year\":2019}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Net_age\": {\"title\": \"Net Age\", \"description\": \"Age of the net in months - if reported (some studies return to villages with nets given 1-2 years prior). When a range of net age's are given, use the midpoint in the range or the median in a distribution.\"}, \"pHI_category\": {\"title\": \"Phi Category\", \"description\": \"Classification of the nets holed surface area, as one of \\\"Good\\\", \\\"Damaged\\\", \\\"Torn\\\", \\\"Serviceable\\\", or \\\"All\\\", as proposed by WHO\"}, \"pHI_lower_bound\": {\"title\": \"Phi Lower Bound\", \"description\": \"lowest pHI detected.\"}, \"pHI_upper_bound\": {\"title\": \"Phi Upper Bound\", \"description\": \"lowest pHI detected.\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"Olyset\",\"Net_age\":7.0,\"pHI_category\":\"Good\",\"pHI_lower_bound\":0.0,\"pHI_upper_bound\":916.0},\"N02\":{\"Net_type\":\"Olyset\",\"Net_age\":7.0,\"pHI_category\":\"Poor\",\"pHI_lower_bound\":0.0,\"pHI_upper_bound\":916.0},\"N03\":{\"Net_type\":\"Permanet\",\"Net_age\":11.0,\"pHI_category\":\"Poor\",\"pHI_lower_bound\":581.0,\"pHI_upper_bound\":1939.0},\"N05\":{\"Net_type\":\"Permanet\",\"Net_age\":11.0,\"pHI_category\":\"Good\",\"pHI_lower_bound\":13.0,\"pHI_upper_bound\":13.0},\"N06\":{\"Net_type\":\"Olyset\",\"Net_age\":7.0,\"pHI_category\":\"Poor\",\"pHI_lower_bound\":651.0,\"pHI_upper_bound\":651.0},\"N07\":{\"Net_type\":\"Permanet\",\"Net_age\":11.0,\"pHI_category\":\"Poor\",\"pHI_lower_bound\":2225.0,\"pHI_upper_bound\":2225.0},\"N08\":{\"Net_type\":\"Permanet\",\"Net_age\":11.0,\"pHI_category\":\"Good\",\"pHI_lower_bound\":1.0,\"pHI_upper_bound\":1.0},\"N09\":{\"Net_type\":\"Royal sentry\",\"Net_age\":9.0,\"pHI_category\":\"Poor\",\"pHI_lower_bound\":1180.0,\"pHI_upper_bound\":1180.0},\"N10\":{\"Net_type\":\"Olyset\",\"Net_age\":7.0,\"pHI_category\":\"Poor\",\"pHI_lower_bound\":1395.0,\"pHI_upper_bound\":1395.0}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Funding\n", - "\n", - "This research was funded by the Royal Society of Tropical Medicine and Hygiene (RSTM#) through a small grant awarded to DM and the Wellcome Trust through a Wellcome Trust Training fellowship in public health and tropical medicine to CN (102543/2/13/2). The RSTM# and the Wellcome Trust have no role in the design of the study and collection, analysis, and interpretation of data and in writing the manuscript.\n", - "\n", - "header: Abbreviations\n", - "\n", - "DDT: Dichlorodiphenyltrichloroethane; ER: Entomological inoculation rate; ELISA CSP: Enzyme-linked immunosorbent assay to detect the circumsporolite protein; HL: Human landing catch method; Adv: Knockdown resistance; LINK: long-lasting insecticidal net; pH: Proportionate hole index; WHORES: World Health Organization Pesticides Evaluation Scheme\n", - "\n", - "header: Insecticide bioassays and knockdown resistance detection\n", - "\n", - "Larvae of _An. gambiae_ (_s.l._) were collected in stagnant pools of water and reared in the insectary of the medical entomology laboratory of OCEAC. F1 adults that emerged from those larvae were fed with 10% sucrose solution made by dissolving 100 g of ordinary white sugar in 1 L of water [22]. _Anopheles funestus_ was not tested due to the low number of adults obtained following larval collections and rearing. The susceptibility of the F1 adults to 0.75% permethrin and 0.05% deltamethrin, both pyrethroid pesticides, was assessed using a World Health Organization (WHO) standard test procedure [23]. Tests were performed at 25 +- 2 degC, 806 +- 10% relative humidity (RH). For each insecticide, four batches of 20-25 field F1 females, aged between 2 and 5 days, were exposed to insecticide-impregnated papers in WHO test-tube for 1 h. At the same time, two batches of the same number of mosquitoes were exposed to untreated papers as control. At the end of the insecticide exposure period, the number of knocked-down mosquitoes was recorded, following which the mosquitoes were transferred into holding tubes. Cotton balls that had first been soaked in a 10% sugar solution and then the moisture squeezed out were placed at the mouth of the tubes. The mortality was recorded 24 h later. Mortality rate in the tested samples was corrected using Abbott's formula [24], when the mortality in the control tubes varied between 5 to 20%. The knockdown resistance (_kdr_) mutation L1014F, which is responsible of cross resistance to DDT (dichlorodiphenyl-trichloroethane) and pyrethroids was genotyped using the protocol described by Martinez-Tores et al. [25].\n", - "\n", - "header: Author details\n", - "\n", - "1 Laboratory of Parasitology and Ecology, Faculty of Sciences, University of Yaoundet i P.O. Box 812, Yaoundet, Cameroon. 1 Institute for the Recherche de Yaoundet (FR), Organizing the Coordination pour la Tutte Contre les Endrines en Afrique Centrale (OCEAC), PO. Box 283, Yaoundet, Cameroon. 3 Department of Biological Sciences, Faculty of Medicine and Pharmaceutical Sciences, University of Ouala, PO. Box 2415, Ouala, Cameroon. 4 Department of Parasitology and Microbiology, Centre for Research in Infectious Diseases (RDI), PO. Box 13591, Yaounde, Cameroon. 5 Animal Organisms Laboratory, Faculty of Sciences, University of Ouala, PO. Box 24157, Douala, Cameroon.\n", - "\n", - "header: Table 1 Plasmodium circumsporozoite index, human biting rate and monthly entomological inoculation rate of Anopheles species in Mvoua between August 2018 and April 2019\n", - "footer: Human-biting rate (HBR) is the average number of bites received per person per night; (ii) Plasmodium circumsporozoite index (infection rate) is the proportion of mosquitoes found with Plasmodium circumsporozoite antigen in the heads and thoraces; entomological inoculation rate is the product of the HBR and circumsporozoite rateNC not calculated\n", - "columns: ['Anopheles species', 'Tested (N)', 'Positive (N)', 'Entomological parameters - Plasmodium circumsporozoite index (%)', 'Entomological parameters - Human biting rate', 'Entomological parameters - Human biting rate.1', 'Entomological parameters - Entomological inoculation rate/ month']\n", - "\n", - "{\"0\":{\"Anopheles species\":\"An. funestus (s.l.)\",\"Tested (N)\":65,\"Positive (N)\":7,\"Entomological parameters - Plasmodium circumsporozoite index (%)\":\"10.77\",\"Entomological parameters - Human biting rate\":0.55,\"Entomological parameters - Human biting rate.1\":0.55,\"Entomological parameters - Entomological inoculation rate\\/ month\":\"1.5\"},\"1\":{\"Anopheles species\":\"An. gambiae (s.l.)\",\"Tested (N)\":42,\"Positive (N)\":6,\"Entomological parameters - Plasmodium circumsporozoite index (%)\":\"14.29\",\"Entomological parameters - Human biting rate\":0.35,\"Entomological parameters - Human biting rate.1\":0.35,\"Entomological parameters - Entomological inoculation rate\\/ month\":\"1.2\"},\"2\":{\"Anopheles species\":\"An. ziemanii\",\"Tested (N)\":3,\"Positive (N)\":0,\"Entomological parameters - Plasmodium circumsporozoite index (%)\":\"0\",\"Entomological parameters - Human biting rate\":0.02,\"Entomological parameters - Human biting rate.1\":0.02,\"Entomological parameters - Entomological inoculation rate\\/ month\":\"NC\"},\"3\":{\"Anopheles species\":\"Total\",\"Tested (N)\":110,\"Positive (N)\":13,\"Entomological parameters - Plasmodium circumsporozoite index (%)\":\"11.81%\",\"Entomological parameters - Human biting rate\":0.93,\"Entomological parameters - Human biting rate.1\":0.93,\"Entomological parameters - Entomological inoculation rate\\/ month\":\"2.7\"}}\n", - "\n", - "header: Bed net coverage, use and maintenance\n", - "\n", - "Bed net ownership was investigated in 80 of 97 the households that currently make up the village through visual inspection. The heads of these households or their representatives were questioned on their use of nets and their maintenance. The number of people living in each house was recorded to estimate net coverage. Household net ownership was defined as the percentage of households owning at least one LLIN. Net coverage defined as the percentage of households with at least one LLIN for every two people was also determined.\n", - "\n", - "header: Competing interests\n", - "\n", - "The authors declare they have no competing interests.\n", - "\n", - "header: Consent for publication\n", - "\n", - "Not applicable.\n", - "\n", - "header: Ethics approval and consent to participate\n", - "\n", - "The study was approved by the Carneroonian National Ethical Committee for Research on Human Health (Statement No 2018/07/20/CE/NIRER/SFD). One week before the beginning of field activities, the population received a notice of information explaining the objectives, methodology, expected benefits and possible risks of the study. A consent form was sought from the head of households and for participants aged > 18 years for mosquito collection. They were given the opportunity to ask questions and they were informed that they are free to withdraw from the study at any time, without penalty or loss of benefits. At the end of each sampling period, all mosquito collectors were given anti-malaria prophylaxis based on artesunate/amodiaquine according to the national guide for malaria treatment.\n", - "\n", - "header: Possession, coverage and use of LLINs\n", - "\n", - "In general, 81.25% of the households inspected possessed at least one LLIN. Despite this high level of ownership, the proportion of households that met the ratio of one net for two persons was only 47.69%. Fortunately, 81.54% of the people interviewed affirmed they used their bed nets every night (Table 3). Of the LLINs available, 92.3% were acquired during the government free mass distribution campaigns of 2011-2012 and 2015-2016. Although almost 70% of the study population affirmed that they have been educated by the public health community agents during the distribution campaigns, only 10.52% knew bed nets should be dried in the shade before usage or after washing. Moreover, 56.46% of respondents had washed their bet nets at least once; 63.15% used water and ordinary soap while 36.85% used detergents soap and bleach (Table 3).\n", - "\n", - "header: Availability of data and materials\n", - "\n", - "The datasets generated and/or analysed during the current study are available from the corresponding author on reasonable request.\n", - "\n", - "header: Data analysis\n", - "\n", - "Data were analyzed using SPSS software version 25 (IBM Corp., Armonk, NY, USA). The entomological parameters that were considered were: (i) human-biting rate (HBR), i.e. the average number of bites received per person per night; (ii) infection rate, i.e. the proportion of mosquitoes found with _Plasmodium_ circumsporozoite antigen in the heads and thoraces; (iii) entomological inoculation rate (EIR), i.e. the product of the HBR and circumsporozoite rate. Chi-square statistics was used to compare mosquito densities between seasons while mosquitoes' seasonal aggressiveness (HBR) were compared by the Kruskal-Wallis test. Differences were considered statistically significant at \\(P\\) < 0.05.\n", - "\n", - "header: Bed net integrity and bio-efficacy\n", - "\n", - "Ten bed nets were randomly collected from ten selected houses and immediately replaced by new ones. The physical integrity of the nets collected was determined by counting, per category, the number of holes that were approximately the size of a person's thumb, fist or head, or larger than a head, on any of the four faces and the top of the bed net [26, 27]. The proportionate hole index (pH) was calculated using the WHO Pesticide Evaluation Scheme (WHOPES ) guidelines [11] and nets were classified into four classes accordingly [28, 29]. Nets with a pHI <25 were classified as \"good\"; those with a pH ranging between 25 and 174, as \"fair\"; those nets with a pHI ranging from 175 to 299, as \"mediocre\"; and those with a pHI > 300, as \"poor\".\n", - "\n", - "\n", - "Cone assays were performed on each net to test for its bio-efficacy as described in WHO guidelines [30]. Four cones were fixed by their widest opening onto four different parts of each face (4 sides and 1 roof) of each net. Ten unfed _An. gambiae_ (_s.l._) female mosquitoes aged 2-5 days were introduced into each cone using a mouth aspirator, for a total of 200 specimens per net. After 3 min of exposure, the mosquitoes were removed from the cones, then transferred into paper cups and fed with a 10% sugar solution. The assay was conducted at 25 +- 1 degC, 80% +- 5% RH, and the number of mosquitoes knocked-down and dead were recorded after 60 min and 24 h, respectively. An untreated net was used as the negative control.\n", - "\n", - "header: Table 2 Anopheles gambiae complex species composition and the frequency of the knockdown resistance L1014F mutation\n", - "footer: kdr-L1014F, Knockdown resistance L1014F mutation; R resistance; S, susceptible\n", - "columns: ['Anopheles species - Unnamed: 0_level_1', 'Composition - N', 'Composition - %', 'kdr-L1014F genotypes - RR', 'kdr-L1014F genotypes - RS', 'kdr-L1014F genotypes - SS', 'kdr-L1014F alleles (%) - R', 'kdr-L1014F alleles (%) - S']\n", - "\n", - "{\"0\":{\"Anopheles species - Unnamed: 0_level_1\":\"An. gambiae\",\"Composition - N\":28,\"Composition - %\":71.8,\"kdr-L1014F genotypes - RR\":27,\"kdr-L1014F genotypes - RS\":1,\"kdr-L1014F genotypes - SS\":0,\"kdr-L1014F alleles (%) - R\":98.21,\"kdr-L1014F alleles (%) - S\":1.79},\"1\":{\"Anopheles species - Unnamed: 0_level_1\":\"An. coluzzii\",\"Composition - N\":11,\"Composition - %\":28.2,\"kdr-L1014F genotypes - RR\":8,\"kdr-L1014F genotypes - RS\":1,\"kdr-L1014F genotypes - SS\":2,\"kdr-L1014F alleles (%) - R\":77.27,\"kdr-L1014F alleles (%) - S\":22.73},\"2\":{\"Anopheles species - Unnamed: 0_level_1\":\"Total\",\"Composition - N\":39,\"Composition - %\":100.0,\"kdr-L1014F genotypes - RR\":35,\"kdr-L1014F genotypes - RS\":2,\"kdr-L1014F genotypes - SS\":2,\"kdr-L1014F alleles (%) - R\":92.31,\"kdr-L1014F alleles (%) - S\":7.69}}\n", - "\n", - "header: Conclusion\n", - "\n", - "A combination of elevated _P. falciparum_ infection in _Anopheles_ vector populations, insufficient coverage and loss of effectiveness of LLINs due to physical degradation, as well as high resistance to pyrethroid insecticides is responsible for the persistence of high malaria transmission in forested rural area of Mvoua, Cameroon.\n", - "\n", - "header: Physical integrity and effectiveness of LLINs\n", - "\n", - "Ten LLINs aged 3-7 years old were sampled to assess their physical integrity and bio-efficacy. A total of 161 holes belonging to all the four different types described by WHOPES (the size of a person's thumb, fist or head, or larger than a head) were counted, with a mean of 17 holes per bed net. The proportion of these holes per type was 52.79% (thumb size), 32.29% (fist size), 9.93% (head size) and 4.96% (large than head size). Of the ten LLINs examined, seven (70%) were damaged and were found to be in poor condition (pHI > 300) (Table 4).\n", - "\n", - "A total of 2000 specimens of the _An. gambiae_ (_s.l._) susceptible Kisumu strain were exposed to the ten bed nets. Eight of these nets were effective against this strain, with mortality rates > 80%. Exposure of the same number of _An. gambiae_ (_s.l._) field F1 mosquitoes to these LLINs revealed that they were all ineffective, with mortalities ranging from 0 to 11.5% (Table 4).\n", - "\n", - "header: Table 4 Hole index and mortality of An. gambiae (s.l.) after being exposed to the long‑lasting insecticidal nets\n", - "footer: Not eff., not e\u001d\n", - "fficient; PHI, proportionate hole index\n", - "columns: ['Nets', 'Date of impregnation', 'Brand', 'Physical integrity of LLIN - pHI', 'Physical integrity of LLIN - Status', 'Bio‑efficacy of LLIN (%) - Kisumu control strain', 'Bio‑efficacy of LLIN (%) - Field strain', 'Decision - Unnamed: 7_level_1']\n", - "\n", - "{\"0\":{\"Nets\":\"Net 1\",\"Date of impregnation\":\"October 2015\",\"Brand\":\"Olyset\",\"Physical integrity of LLIN - pHI\":0,\"Physical integrity of LLIN - Status\":\"Good\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":83.5,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":3.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"1\":{\"Nets\":\"Net 2\",\"Date of impregnation\":\"October 2015\",\"Brand\":\"Olyset\",\"Physical integrity of LLIN - pHI\":916,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":80.5,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":0.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"2\":{\"Nets\":\"Net 3\",\"Date of impregnation\":\"February 2011\",\"Brand\":\"Permanet\",\"Physical integrity of LLIN - pHI\":1939,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":69.5,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":2.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"3\":{\"Nets\":\"Net 4\",\"Date of impregnation\":\"February 2011\",\"Brand\":\"Permanet\",\"Physical integrity of LLIN - pHI\":581,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":88.0,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":11.0,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"4\":{\"Nets\":\"Net 5\",\"Date of impregnation\":\"February 2011\",\"Brand\":\"Permanet\",\"Physical integrity of LLIN - pHI\":13,\"Physical integrity of LLIN - Status\":\"Good\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":99.0,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":8.0,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"5\":{\"Nets\":\"Net 6\",\"Date of impregnation\":\"October 2015\",\"Brand\":\"Olyset\",\"Physical integrity of LLIN - pHI\":651,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":85.0,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":2.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"6\":{\"Nets\":\"Net 7\",\"Date of impregnation\":\"October 2011\",\"Brand\":\"Permanet\",\"Physical integrity of LLIN - pHI\":2225,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":72.4,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":3.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"7\":{\"Nets\":\"Net 8\",\"Date of impregnation\":\"October 2011\",\"Brand\":\"Permanet\",\"Physical integrity of LLIN - pHI\":1,\"Physical integrity of LLIN - Status\":\"Good\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":98.0,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":9.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"8\":{\"Nets\":\"Net 9\",\"Date of impregnation\":\"May 2014\",\"Brand\":\"Royal sentry\",\"Physical integrity of LLIN - pHI\":1180,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":95.0,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":11.5,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"},\"9\":{\"Nets\":\"Net 10\",\"Date of impregnation\":\"October 2015\",\"Brand\":\"Olyset\",\"Physical integrity of LLIN - pHI\":1395,\"Physical integrity of LLIN - Status\":\"Poor\",\"Bio\\u2011efficacy of LLIN (%) - Kisumu control strain\":87.5,\"Bio\\u2011efficacy of LLIN (%) - Field strain\":2.0,\"Decision - Unnamed: 7_level_1\":\"Not efficient\"}}\n", - "\n", - "header: Study area: Adult mosquito collection\n", - "\n", - "Collections of adult host-seeking mosquitoes were undertaken employing both the CDC light trap (CDC-LT) and human landing catch (HLC) methods. Because no mosquito was collected using the CDC-LTs after two consecutive nights of sampling, this method was discarded.\n", - "\n", - "Sampling using the HLC method was performed in ten randomly selected houses situated at least 100 m apart. The method involved persons sitting with their lower legs exposed and then collecting mosquitoes that just landed on them [14]. Adult mosquitoes were sampled both indoors and outdoors during two consecutive nights, once per each of the four seasons. Mosquitoes collected each hour were placed into separate bags, labeled accordingly and brought back to the laboratory for further analysis. To avoid bias due to sleep and tiredness, one team of collectors worked from 18:00 h to midnight, and was replaced by another team which worked from midnight to 6:00 h.\n", - "\n", - "header: Results\n", - "\n", - "In total, 129 adult mosquitoes were collected during eight nights. These belonged to four genera, of which _Anopheles_ (_N_ = 110; 85.27%) was the most prevalent, followed in decreasing order of prevalence by _Mansonia_ (_N_ = 11; 8.53%), _Aedes_ (_N_ = 6; 4.65%) and _Culex_ (_N_ = 2; 1.55%). Three _Anopheles_ species were collected namely _An. funestus_ (_s.l._) (59.1%), _An. gambiae_ (_s.l._) (38.18%) and _An. zienanii_ (2.72%). _Anopheles. sp_ were most abundant in the short dry season followed by the long rainy season (49.09% of the total _Anopheles_ collected) and the long rainy season (34.54%).\n", - "\n", - "In terms of seasonal species abundance, _An. funestus_ was the most abundant species collected (59.1%) over the period of study, with the exception of the long rainy season when _An. gambiae_ (_s.l._) predominated (Fig. 1).\n", - "\n", - "header: Conclusion\n", - "\n", - "The findings of this study highlight high and perennial malaria transmission in Mvoua, with the highest infection rate in _Anopheles_ vectors observed in the short dry season. Three major vectors, namely _An. funestus_, _An. coluzzizi_ and _An. gambiae_, were responsible for the transmission of the disease. This vector displayed a high level of resistance to pyrethroid insecticides due to the _kdr_ mutation, but also probably due to metabolic mechanisms. Although there was a high level of LLIN possession among the households, universal coverage was not reached and LLINs found in the locality were no longer effective against the local _An. gambiae_ (_s.l._) strain. The National Malaria Control Program should provide the locality with new LLINs every 3 years, as recommended by WHO. Preferably, to manage the high pyrethroid resistance observed, these LLINs should incorporate a synergism to block the action of detoxification enzymes. People should be educated on the use and maintenance of LLINs, with an emphasis on the importance of sleeping under LLINs irrespective of season, as well as on the damaging impact of detergents used for their washing.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `EntomologicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `EntomologicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `EntomologicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}, \"Start_month\": {\"title\": \"Start Month\", \"description\": \"Numerical start month of the reporting period (some studies may report multiple time periods)\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Bioassay, cone test\",\"Country\":\"Cameroon\",\"Site\":\"Mvoua\",\"Start_month\":7,\"Start_year\":2018,\"End_month\":4,\"End_year\":2019}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Net_age\": {\"title\": \"Net Age\", \"description\": \"Age of the net in months - if reported (some studies return to villages with nets given 1-2 years prior). When a range of net age's are given, use the midpoint in the range or the median in a distribution.\"}, \"pHI_category\": {\"title\": \"Phi Category\", \"description\": \"Classification of the nets holed surface area, as one of \\\"Good\\\", \\\"Damaged\\\", \\\"Torn\\\", \\\"Serviceable\\\", or \\\"All\\\", as proposed by WHO\"}, \"pHI_lower_bound\": {\"title\": \"Phi Lower Bound\", \"description\": \"lowest pHI detected.\"}, \"pHI_upper_bound\": {\"title\": \"Phi Upper Bound\", \"description\": \"lowest pHI detected.\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"Olyset\",\"Net_age\":7.0,\"pHI_category\":\"Good\",\"pHI_lower_bound\":0.0,\"pHI_upper_bound\":916.0},\"N02\":{\"Net_type\":\"Olyset\",\"Net_age\":7.0,\"pHI_category\":\"Poor\",\"pHI_lower_bound\":0.0,\"pHI_upper_bound\":916.0},\"N03\":{\"Net_type\":\"Permanet\",\"Net_age\":11.0,\"pHI_category\":\"Poor\",\"pHI_lower_bound\":581.0,\"pHI_upper_bound\":1939.0},\"N05\":{\"Net_type\":\"Permanet\",\"Net_age\":11.0,\"pHI_category\":\"Good\",\"pHI_lower_bound\":13.0,\"pHI_upper_bound\":13.0},\"N06\":{\"Net_type\":\"Olyset\",\"Net_age\":7.0,\"pHI_category\":\"Poor\",\"pHI_lower_bound\":651.0,\"pHI_upper_bound\":651.0},\"N07\":{\"Net_type\":\"Permanet\",\"Net_age\":11.0,\"pHI_category\":\"Poor\",\"pHI_lower_bound\":2225.0,\"pHI_upper_bound\":2225.0},\"N08\":{\"Net_type\":\"Permanet\",\"Net_age\":11.0,\"pHI_category\":\"Good\",\"pHI_lower_bound\":1.0,\"pHI_upper_bound\":1.0},\"N09\":{\"Net_type\":\"Royal sentry\",\"Net_age\":9.0,\"pHI_category\":\"Poor\",\"pHI_lower_bound\":1180.0,\"pHI_upper_bound\":1180.0},\"N10\":{\"Net_type\":\"Olyset\",\"Net_age\":7.0,\"pHI_category\":\"Poor\",\"pHI_lower_bound\":1395.0,\"pHI_upper_bound\":1395.0}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Background: Methods\n", - "\n", - "A laboratory and a semi-field conditions experimental huts against _Anopheles_ Mosquitoes were conducted in southwestern Ethiopia from September 2015 to January 2016. The bio efficacy of DuraNet(r) was evaluated using the WHO cone bioassay test and then its field efficacy was evaluated using experimental huts against the malaria vector population.\n", - "\n", - "header: CONCLUSION\n", - "\n", - "Both DuraNet(r) and PermanNet 2.0 moderate efficacy against a pyrethroid-resistant population of _An. araabensis_ from Ethiopia. The bio efficacy of DuraNet(r) was found below the WHO recommendation. Therefore, the real impact of the observed insecticide resistance against DuraNet(r) to be further studied under phase-III trials, the need for new alternative vector control tools remains critical.\n", - "\n", - "header: Study area and period: Mosquito rearing and cone bioassay testing.\n", - "\n", - "Anopheles mosquito larvae were collected from field sites near Gilgel-Gibe hydroelectric power production reservoir and reared to adults under standard conditions (25 \\(\\pm\\) 20*C temperature,80 \\(\\pm\\) 4% relative humidity) in tropical and infectious diseases research institute, Sekoru campus, Jimma University, Ethiopia. For WHO cone bioassay test, five 2-5 days age unfed female _An. gambiae s.l._ (presumably _An. ankiensis_ according to Yewhalaw et al., (2009))\\(\\%\\) mosquitoes were used per cone. Twenty mosquitoes (5 mosquito\\({}^{\\text{\\textregistered}}\\) per-cone \\(\\times\\) 4 cone-per sub-sample net piece) were introduced into the cone facing net sample for 3 minutes and then moved to holding paper cups. Then mosquitoes were supplied with a 10% sucrose solution. The number of mosquitoes knocked down and the number of dead mosquitoes were recorded every 10 minute within 60 minutes and 24 hours, respectively. Mosquitoes exposed to untreated DuraNet\\({}^{*}\\) pieces were used as controls and experiment conditions were set to be 27 \\(\\pm\\) 2*C temperature and 75 \\(\\pm\\) 10% relative humidity (RH) throughout the study. Thus, a total of 1260 mosquitoes (63 net sub-samples \\(\\times\\) 20 mosquitoes per sub-sample net) were used for complete bioassay testing and another 180 mosquitoes (9 untreated net sub-samples \\(\\times\\) 20 mosquitoes per sub-sample net) were used as control.\n", - "\n", - "For net pieces washing each net sub-samples (25 cm \\(\\times\\) 25 cm) were introduced individually into 1-1 beakers containing 0.5 l deionized water, with 2 g/l WHO recommended soap (Savon de Marseille; pH 10-11) added and fully dissolved just before washing. The beakers were then introduced into a water-bath at 30*C and shaken for 10 min at 155 movements per minute. The samples were then removed, rinsed twice for 10 min in clean, deionized water under the same shaking conditions as above, dried at room temperature and stored at 30*C in the dark between washes.\n", - "\n", - "header: Limitation\n", - "\n", - "In this study, supplementary test like chemical assays were not conducted to measure the total insecticide content of the netting before and after wash resistance studies that support better interpretation of the results.\n", - "\n", - "header: Mosquito mortality, blood feeding and exit rates.\n", - "\n", - "Mosquito blood feeding rates, mortality rates and exit rates of the 5 treatments are presented in Table 1. The mean blood feeding rate was significantly lower (_P_ <.001) in hut containing unwashed DuraNet* when compared to hut containing untreated DuraNet*. However, there was no significance difference (_P_ >.05) in blood feeding rate among huts containing untreated DuraNet*, 20 times washed DuraNet*, unwashed PernaNet* 2.0 and 20 times washed PernaNet*2.0. The mean mortality rate was significantly higher (_P_ <.001) among huts containing treated DuraNet*, 20 times washed DuraNet*, unwashed PernaNet* 2.0 and 20 times washed PernaNet* 2.0 when compared to hut containing untreated DuraNet*. Higher mean number of mosquitoes were caught while exiting the huts containing treated DuraNet*, 20 times washed DuraNet*, unwashed PernaNet* 2.0 and 20 times washed PernaNet* 2.0 when compared to hut containing untreated DuraNet*, however, there was no significant difference (_P_ >.05) among the treatments.\n", - "\n", - "header: Blood feeding inhibition and personal protection.\n", - "\n", - "Unwashed DuraNet* showed strong and better bio-efficacy in terms of blood feeding inhibition when compared to untreated DuraNet* and the rest of the treatment arms. The mean blood feeding rate of mosquitoes collected from a hut with unwashed DuraNet*, Unwashed PernaNet 2.0, twenty times washed DuraNet*, 20 times washed PernaNet 2.0 and Untreated DuraNet*, was 0.8/person-night, 4.1/person-night, 5.7/person-night, 6.0/person-night, and 7.0/person-night respectively. There was significant reduction (_P_ <.001) in blood feeding inhibition in all the treatment arms (hut with unwashed DuraNet*, but with 20 times washed DuraNet*, but with\n", - "\n", - "Figure 2: Mean percent knockdown and mortality of _An. arabiensis_ exposed in 3 minutes cone bioassay to DuraNet®, dimma, and southwestern Ethiopia.\n", - "\n", - "\n", - "unwashed PermaNet 2.0, hut with 20 times washed permanent 2.0) when compared to hut with untreated DuraNet*(control). Blood feeding inhibition can be also expressed as personal protection and unwashed DuraNet* showed the highest personal protection 88.7%, 100%, and 93.3% against _An. arabiensis, An. pbaroensis_, and _An. coustani_, respectively. Both PermaNet 2.0 twenty times washed and DuraNet* washed twenty times showed low to moderate personal protection (45.6% against _An. arabiensis_ to 83% against _An. pbaroensis_) when compared to untreated DuraNet* (Table 2).\n", - "\n", - "header: Discussion\n", - "\n", - "Insecticide resistance remains major threat against the efficacy of long-lasting insecticidal nets, which are key intervention tools in controlling malaria vector. In this study laboratory bioassay was initially conducted using field collected larvae raised to adult population of _An. arabiensis_ to assess the bio-efficacy of unwashed DuraNet* (candidate bed net) and untreated DuraNet* (negative control). Furthermore, field experimental study was conducted on bio-efficacy of unwashed DuraNet* and PermaNet 2.0 following WHOPES standard guidelines in order to corroborate the laboratory findings.5\n", - "\n", - "The cone bioassay tests indicated that exposure of population of _An. arabiensis_ mosquitoes from Gilgel-Gibe area, southwestern Ethiopia, to sections of DuraNet* LLIN resulted in mean knockdown and mean mortality of 93% and 78%, respectively. The mortality result is slightly lower than the range of WHO recommendation (>80%) for public health application. The knockdown effect also is slightly below the required WHOPES recommended levels of 95% and above. In contrast to the above results earlier bio efficacy tests conducted using unwashed DuraNet* in India (Sood et al10; Gunasekaran et al11) showed 100% efficacy when tested against populations of different species of _amopheles_. The slight decline in bio-efficacy of DuraNet* in this study may be due to resistance development of vector populations of _An. arabiensis_ in the study area.8,12 In Ethiopia, Previous studies indicate that populations of _An. Arabiensis_ have developed resistance against insecticides used for net impregnation.13-17\n", - "\n", - "Wash resistant long-lasting insecticidal nets treated with pyrethroids are viewed as an important device in the area of vector control that would lessen the difficulties related to retreating conventional insecticide treated nets.[18] DuraNet*, the alpha-cypermethrin treated net, has similar conditions as that of Interceptor* LLIN and PermaNet* 3.0, which had been given interim but full recommendation since June 2017 by WHOPES.[19]\n", - "\n", - "In current study, DuraNet* showed reduced washing resistance. This is reflected in continues decrease of both mean percent knockdown and mean percent mortality of population of _An. arabiensis_ on exposure to the DuraNet* washed 0 and 20 times, respectively. This is in contrast to the study done by Sood et al[10] which showed no significant difference in percent mortality and percent knockdown of population of _An. caliticiacis_ between unwashed and 20 times washed DuraNet* in India. However, in the same study by Sood et al,[10] DuraNet* showed 100% knockdown but only 45% mortality after 20 washes against _Anopheles gambiae_ which is also consistent with current results. Wash resistance technology is added to the LLIN's materials with the assumption of pyrethroid chemicals such as Alphacypermethrin should have a strong affinity to the polyester netting fibers so that even after forceful washing a thin layer of pyrethroid, practically undetectable by High Performance Liquid Chromatography yet adequately bio active to encourage knockdown and mortality should still continue bound to the fibers.\n", - "\n", - "Comparison of mosquito density collected from experimental huts with (unwashed DuraNet*, 20 times washed DuraNet*, unwashed PermaNet*2.0, 20 times washed PermaNet*2.0, and untreated DuraNet*) showed no clear evidence of deterrence associated with any of the treatments however; there were fewer _An. Arabiensis_ in huts with the unwashed DuraNet* compared to untreated DuraNet*. Likewise, a study carried out by Asale et al[8] using experimental huts in the study area showed the absence of significance variation in deterrence among huts containing unwashed PermaNet*2.0, untreated net and DDT sprayed hut. The possible explanation for the absence of significant variation in mosquito density among treatment arms could be accounted to low number of mosquito catches during the study period but the impact of insecticide resistance on the efficacy of the nets to be further studied in phase-III trials.\n", - "\n", - "In this study significant reduction in blood feeding rate was observed in hut containing unwashed DuraNet* when compared to hut containing untreated DuraNet*. Similarly, higher mean mosquito mortality rate was recorded among huts containing treatment arms when compared to hut containing control net (untreated DuraNet*). The results for DuraNet* are new report from Jimma area thus we could not corroborate but, Vector population of _An. arabiensis_ from the study area showed no significant reduction of mortality rate, exit pattern and blood feeding inhibition when tested against PermaNet 2.0.[8]\n", - "\n", - "In this study, DuraNet* and PermaNet 2.0 showed low to moderate killing efficacy against vector population of _An. arabiensis_. Moreover, both DuraNet* and PermaNet 2.0 showed no evidence of killing effect against _An. pbarensis_. According to Kitau et al[20] LLINs and ITNs treated with pyrethroids were more effective at killing _An. gambiae_ and _An. fintetus_ than _An. arabiensis_. Thus, the variations in the outcome variables of Anopheles shown above (DuraNet* and PermaNet 2.0) may be due to different susceptibility status and species differences.\n", - "\n", - "header: Table 1: Mean blood feeding, mortality and exit rates of populations of An. arabiensis exposed to different bed net types in field experimental huts in southwestern Ethiopia.\n", - "footer: Means within the same column and with different letters are signi\u001fcantly different using Tukey means separation test.**Significant at P<.001. *Significant at P<.05.\n", - "\n", - "\n", - "columns: ['TREATMENTS', 'BLOOD-FEEDING RATE MEAN ± SE', 'MORTALITY RATE MEAN ± SE', 'EXIT RATE MEAN ± SE']\n", - "\n", - "{\"0\":{\"TREATMENTS\":\"Untreated DuraNet\\u00ae\",\"BLOOD-FEEDING RATE MEAN \\u00b1 SE\":\"77.70 \\u00b1 7.30\",\"MORTALITY RATE MEAN \\u00b1 SE\":\"6.61 \\u00b1 3.80**\",\"EXIT RATE MEAN \\u00b1 SE\":\"26.77 \\u00b1 5.51\"},\"1\":{\"TREATMENTS\":\"Unwashed DuraNet\\u00ae\",\"BLOOD-FEEDING RATE MEAN \\u00b1 SE\":\"5.80 \\u00b1 2.32**\",\"MORTALITY RATE MEAN \\u00b1 SE\":\"52.38 \\u00b1 5.62\",\"EXIT RATE MEAN \\u00b1 SE\":\"40.42 \\u00b1 5.22\"},\"2\":{\"TREATMENTS\":\"20\\u00d7 washed DuraNet\\u00ae\",\"BLOOD-FEEDING RATE MEAN \\u00b1 SE\":\"55.94 \\u00b1 6.78\",\"MORTALITY RATE MEAN \\u00b1 SE\":\"28.17 \\u00b1 6.57*\",\"EXIT RATE MEAN \\u00b1 SE\":\"36.24 \\u00b1 5.50\"},\"3\":{\"TREATMENTS\":\"Unwashed PermaNet\\u00ae 2.0\",\"BLOOD-FEEDING RATE MEAN \\u00b1 SE\":\"53.39 \\u00b1 5.89\",\"MORTALITY RATE MEAN \\u00b1 SE\":\"61.74 \\u00b1 6.09\",\"EXIT RATE MEAN \\u00b1 SE\":\"48.16 \\u00b1 5.53\"},\"4\":{\"TREATMENTS\":\"20\\u00d7 washed PermaNet\\u00ae 2.0\",\"BLOOD-FEEDING RATE MEAN \\u00b1 SE\":\"53.35 \\u00b1 7.01\",\"MORTALITY RATE MEAN \\u00b1 SE\":\"39.87 \\u00b1 6.34\",\"EXIT RATE MEAN \\u00b1 SE\":\"35.32 \\u00b1 5.78\"}}\n", - "\n", - "header: Abstract\n", - "\n", - "Evaluation of Long-Lasting Insecticidal Nets (DuraNet(r)) Under laboratory and Semi-Field Conditions Using Experimental Huts Against _Anopheles Mosquitoes_ in\n", - "\n", - "Jimma Zone\n", - "\n", - " Southwestern Ethiopia\n", - "\n", - "B. Gebremariam(r), W. Birke, W. Zeine, A. Ambelu\n", - "\n", - "\n", - "\n", - "Long-Lasting insecticidal Nets (LLINs) efficacy could be compromised due to a lot of influences together with user compliance and vector population insecticide resistance status. Thus, this study was to assess the biological efficacy of DuraNet(r) with the help of the World Health Organization cone bioassay and field experimental hut.\n", - "\n", - "header: Results\n", - "\n", - "World Health Organization cone bioassay tests against pyrethroid-resistant _An. araabensis_ led to mean percent mortality and knockdown of 78% and 93%, respectively. Washing of DuraNet(r) successively reduced its efficacy from 93% knockdown (0 wash) to 45% knockdown (20 washes). Similarly, mean mortality decreased from 84% (wash) to 47% (20 washes). A total of 1575 female mosquitoes were collected over 40 nights out of which 13738(87.8%) were _An. amabise._ Is Title (74%) were _An. amabensis_. The mean blood-feeding rate was significantly lower (_P_<.001) in hut containing unwashed DuraNet(r) when compared to hut containing untreated DuraNet(r). The mean mortality rate was significantly higher (_P_<.001) in hut containing DuraNet(r) when compared to hut containing untreated DuraNet(r). Unwashed DuraNet(r) showed the highest personal protection 88.7% and 100% against _An. araabensis_ and _An. araabensis_, respectively.\n", - "\n", - "header: The killing effect DuraNet*\n", - "\n", - "DuraNet* (both unwashed and 20 times washed) showed low to moderate killing efficacy (65.93% to 54.03%) against vector population of _An. arabiensis_. Whereas, against _An. pbaroensis_, both unwashed and washed DuraNet* showed no evidence of killing effect (0.00 to 9.0%). Similarly, PermaNet 2.0 (unwashed and washed) showed low to moderate killing effect against population of _An. arabiensis_ (Table 3).\n", - "\n", - "header: Experimental but establishment.: Treatment arms and sleepers rotation\n", - "\n", - "In this experiment, 5 different treatment arms were used. These include (1) Untreated unwashed DuraNet(Negative control) (2) Unwashed treated DuraNet(3) treated DuraNet(20 times washed (4) PermaNet(4) 2.0 20 times washed, and (5) unwashed PermaNet(4) 2.0 (positive control). All nets were 75 denier polyethylene and polyester nets respectively. To simulate wear and tear condition of nets under usage 6 (4 cm \\(\\times\\) 4 cm size) holes were cut in each net (2 holes on each of the sides and 1 hole at each end). The DuraNet(4) LLIN and PermaNet(4) 2.0 were washed according to World Health Organization Stage II washing procedure [5]. For washing, the nets were put in to aluminum bowl with 10 l of tap water and 2g/l of savon de Marseille soap. The nets were agitated for 3 minutes, then soaked for 4 minutes, and agitated again for 3 minutes. The nets were agitated manually by stirring them with a pole at 20 rotations per minute. Thus, each net was washed for a total of 10 minute and then rinsed with clean water by a similar procedure, dried horizontally in the shade and stored at ambient temperature between washes. WHO recognized PermaNet(4) 2.0 LLIN washed 20 times, was used as a positive control to assess DuraNet(4) LLIN performance.\n", - "\n", - "In each data collection night, 2 non-smoker male volunteers aged 20 to 25 were allowed to sleep in each experimental hut with its door remain closed between 19:00 and 07:00 hours. Each team was rotated between treatments on successive nights within a week to avoid possible bias which could arise due to individual attractiveness to mosquitoes. There were 5 successive collection nights (Monday to Friday) and 2 successive break nights for hut ventilation per week. Thus, there were 25 collection nights in order to complete the whole study. Informed written consent was obtained from each sleeper.\n", - "\n", - "header: Cone bioassay and washing resistance: Experimental but trial\n", - "\n", - "_Mosquito entry into the bus._ A total of 1575 Anopheles mosquitoes were entered and collected in the 40 nights during the trial. These consisted of 1373 (87.8%) _An. gambiae_ s.l. presumably _An. arabiensis_ (Yewhalaw et al., 2009), 116 (7.4%) _Angelo custani_ (Laveran), and 107 (6.8%) _An. phareensis_ (Theobald). The mean number of mosquitoes caught per night was 8.75 for _An. arabiensis_, 5.52 for _An. Coastani_, and 6.33 for _An. pharensis._ The mean mosquito entry is not significantly different among the treatment arms (F = 1.277, \\(P\\) >.05). There was no clear evidence of deterrence associated with any of the treatments however; there were fewer _An. Arabiensis_ in huts with the Unwashed DuraNet* compared to treated DuraNet* and PernaNet* 2.0 (Table 2).\n", - "\n", - "header: Table 2. Blood-feeding inhibition and personal protection due to DuraNet® LLIN in the experimental huts, southwestern Ethiopia.\n", - "footer: *Significant at P<.05. **Significant at P<.01.\n", - "columns: ['TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2', 'PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)', 'PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)', 'PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)']\n", - "\n", - "{\"0\":{\"TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2\":\"Untreated DuraNet\\u00ae (NC)\",\"PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)\":\"232 (0**)\",\"PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)\":\"43 (0**)\",\"PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)\":\"30 (0*)\"},\"1\":{\"TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2\":\"Unwashed DuraNet\\u00ae\",\"PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)\":\"24 (88.7**)\",\"PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)\":\"00 (100**)\",\"PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)\":\"2 (93.3*)\"},\"2\":{\"TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2\":\"20\\u00d7 washed DuraNet\\u00ae\",\"PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)\":\"176 (42.4)\",\"PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)\":\"27 (62.8)\",\"PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)\":\"5 (83.3*)\"},\"3\":{\"TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2\":\"Unwashed PermaNet\\u00ae 2.0 (PC)\",\"PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)\":\"131 (45.6)\",\"PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)\":\"11 (83**)\",\"PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)\":\"16 (46.6)\"},\"4\":{\"TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2\":\"20\\u00d7 washed PermaNet\\u00ae 2.0\",\"PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)\":\"192 (38.6)\",\"PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)\":\"6 (75)\",\"PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)\":\"33 (0*)\"}}\n", - "\n", - "header: Methods\n", - "\n", - "This study was conducted from September 2015 to January 2016 near the Gilgel-Gibe hydroelectric dam area, southwestern Ethiopia. The hydroelectric dam is one of the major hydroelectric dams in Ethiopia with artificial reservoir occupying an estimated area of 62 kmsq,6 It produces around 184 MWh and is located 260 km southwest of the capital Addis Ababa. It has been functional since 2004. The study area is located between latitudes 7*42*50*7N and 07*53*50*7N and longitudes 37*11*22*7E and 37*20*36*E with an altitude ranging from 1672-1864 m above sea level. The area has a sub-humid, warm to hot climate, obtains between 1300 and 1800 mm of rainfall annually and has a mean annual temperature of 19*C. Mostly, the 2 peak seasonal transmissions of malaria occur during the months of September to December and March to May in the study area.\n", - "\n", - "Bio-efficacy testing of LLIN (DuraNet\\({}^{\\text{\\text{\\textregistered}}}\\)) under laboratory setting\n", - "\n", - "\\(LLIN\\)_sample preparation and washing process._ DuraNet\\({}^{*}\\) LLINs (Karur, Tamil Nadu 639006, and India) is treated with alpha-cypermethrin at a target dose of 250 mg/m\\({}^{2}\\) of netting material. It contains 0.55% W/W \\(\\pm\\) 15% alpha-cypermethrin. The alpha-cypermethrin chemical is coated onto filaments at bursting strength of 450 kPa of netting material and of 145 \\(\\pm\\) 5% for seam sub-section per denier yarn. Prior to testing the production date and batch number of all nets were recorded. Seven sub-samples per net (1 from the roof, the rest from side of the net) were taken from each net and prepared for standard LLINs cone tests by cutting 25 cm \\(\\times\\) 25 cm pieces following WHO protocol.7 In this study, 9 candidate nets were used for bio-efficacy testing. Thus, a total of 63 sub-sample net pieces (7 sub-sample pieces from each net \\(\\times\\) 9 DuraNet\\({}^{*}\\)s) individually rolled up in aluminum foil, labeled (by net type, net number and sample area) and kept in a refrigerator prior to the assay. Concurrently 9 (1 sub-sample piece from each untreated DuraNet\\({}^{*}\\)\\(\\times\\) 9 untreated DuraNet\\({}^{*}\\)s) sub-samples (30 cm \\(\\times\\) 30 cm) were individually rolled up in aluminum foil, labeled and kept in a refrigerator prior to the assay.\n", - "\n", - "header: Results\n", - "\n", - "Exposure of wild population of _An. arabiensis_ mosquitoes to net sections of DuraNet* LLIN in WHO bioassay tests gives mean mortality rate of 78% as well as mean knockdown effect of 93%. Mean percent knockdown and percent mortality of DuraNet* LLIN showed significant relationship (\\(R^{2}\\) = 0.797, n = 260, \\(P\\) <.001). The wash resistance activity of DuraNet* LLINs, measured in terms of percent knockdown and mortality is presented in Figure 2. The mean percent knockdown of wild population of _An. arabiensis_ decreased from 93% to 45% up on exposure to the DuraNet* washed 0 and 20 times respectively. The mean percent mortality decreased from 84% to 47% on exposure to the DuraNet* washed 0 and 20 times, respectively. Wash resistance has negative correlation with percent knockdown and percent mortality which means as number of wash increase, percent knockdown and percent mortality declined (\\(r^{2}\\) = 0.333, 96KD = 89.16 \\(\\pm\\) 2.15, \\(P\\) <.001 and \\(r^{2}\\) = 0.236, 90Mt = 81.94 \\(\\pm\\) 1.68, \\(P\\) <.001), respectively.\n", - "\n", - "header: Introduction\n", - "\n", - "Malaria is still one of highest health risks in developing countries with high morbidity and mortality in under 5 children. Assessment of overall economic impact of the disease shows that it accounts for 40% of health cost spending, 30% to 50% of inpatient charges, and up to 50% of outpatient official visits in areas with great malaria.1 According to the world health organization, there were 216 million new incidents of malaria leading to 445 000 death, of which 90% occurred in African countries.2\n", - "\n", - "Footnote 1: [https://developers.com/en/article/](https://developers.com/en/article/)\n", - "\n", - "Long-Lasting insecticidal Nets (LLINs) are uppermost community health apparatuses and, when used by children and pregnant women, subsidize to improving motherly, neonatal, and infant health, with long-lasting reimbursements to the emerging child.3 These nets provide personal barrier from bite by mosquitoes in addition those nets lessen also the transmission of malaria and have excito-repellency effect.4 A total of 505 million insecticidal nets (ITNs) were distributed in developing countries between 2014 and 2016 with household ownership of at least 1 insecticidal net, improved from 50% in 2010 to 80% in 2016. Nevertheless, the ratio of houses with adequate bed nets (ie, 1 net for every 2 people) is very low (43%).2 Following the high demand of bed nets as key vector control intervention, companies are ramping up production and new brand nets are being introduced for public health utilization.\n", - "\n", - "Footnote 2: [https://developers.com/en/article/](https://developers.com/en/article/)\n", - "\n", - "In order for any new long-lasting insecticidal nets to be used in public health, it must gain WHOPES approval.5 The approval process passes through 3 stages of efficacy testing (laboratory, small-scale semi-field, and large-scale field trial). To be classified as a long-lasting insecticidal net, it must \n", - "maintain their effective biological activity for at least 20 World Health Organization recommended washes typical washes under laboratory conditions and 3 years of suggested use under semi-field and field condition.\n", - "\n", - "DuraNet\\({}^{*}\\) is an LLIN developed by the Shobikaa Impex pvt Ltd (Karur, Tamil Nadu 639006, and India). It contains 0.55% w/w \\(\\pm\\) 15% alpha-cypermethrin. The net is a polyethylene fiber coated with a proprietary polymer containing target dose of alpha-cypermethrin at 250 mg/m\\({}^{2}\\). The polymer binds to the fiber and can withstand multiple washings, the active ingredient diffusing in a controlled manner to the surface of the polymer coat to maintain insecticidal efficacy.\n", - "\n", - "Thus, this study was conducted to verify the intended efficacy of the product in the presence of pyrethroid resistance vector population of _An. gambiae_ s.l. using cone bioassay and semi-field experimental huts in southwestern Ethiopia. The cone bioassays were conducted in Tropical and Infectious diseases research institute, Jimma University. The experimental hut study trials were undertaken near the Gilgel-Gibe hydroelectric power dam-I.\n", - "\n", - "header: Mosquito collection, identification and key parameters measured in determination of LLINs efficacy\n", - "\n", - "Mosquitoes were collected from 6:00 to 7:00 each morning inside bed nets, floors, walls, ceilings, and verandas of each experimental hut by the help of mouth aspirators and torches. Then the collected mosquitoes were recorded as dead or alive. Live mosquitoes were held in paper cups and supplied with 10% sucrose solution. The collected mosquitoes were transported to Asendabo Vector Biology Laboratory, Jimma University, where mosquitoes were sorted by genus, sex and morphologically identified using taxonomic keys [9]. Mosquitoes were also scored for their physiological state as unfed, fed, half gravid and gravid. Delayed mortality was recorded after 24 hours. To evaluate the efficacy of DuraNet LLIN against the resistant populations of _An. arabiensis_, different entomological parameters (deterrence, exit, blood feeding inhibition, and mortality rates) were derived from basic measurements.\n", - "\n", - "The primary outcomes were:\n", - "\n", - "1. Deterrence--the reduction in entry in to treatment hut relative to the control hut (ie, huts holding untreated nets);\n", - "2. Mortality--the proportion of mosquitoes killed relative to the total catch size;\n", - "3. Killing effect--the numbers killed by a treatment relative to the untreated control, as derived from the formula; \\[\\text{Killing effect}\\left( \\% \\right) = \\left( \\frac{Kt-Ku}{Tu} \\right) \\ast 100\\]\n", - "\n", - "Where **Kt** is the number dead mosquitoes in the huts with treated nets, **Ku** is the number dead mosquitoes in the huts with untreated nets, and **Tu** is the total entering the huts with untreated nets.\n", - "\n", - "1. Blood Feeding Inhibition-The proportional reduction in blood feeding in huts with treated nets relative to controls with untreated nets.\n", - "\n", - "Figure 1: Experimental hut design of the study.\n", - "\n", - "\n", - "5. Personal Protection--The reduction in mosquito biting by treated nets relative to untreated nets, as derived from the formula \\[\\%\\text{personal protection} = (\\frac{Bu-Bt}{Bu})*100\\]\n", - "\n", - "Where Bu is the total number blood fed mosquitoes in the huts with untreated nets, and Bt is the total number blood fed in the huts with treated nets.\n", - "\n", - "header: Bio-efficacy testing of DuraNet\\({}^{*}\\) LLIN using experimental but\n", - "\n", - "Five experimental huts of West African style, each with 1 room and screened veranda trap were established approximately 500 m from Gilgel-Gibe reservoir shore, southwestern Ethiopia following world health protocol developed for field evaluation of long-lasting insecticidal nets.5 The huts were made from concrete bricks with a corrugated iron roof, a ceiling of white cotton sheeting and a concrete base surrounded by a water filled moat to prevent the entry of ants. Details of the dimensions of the hut, the Verenda trap and \n", - "materials from which the tukuls made were described elsewhere [8]. The slits were constructed from pieces of metal shutters, fixed at an angle of 45\\({}^{\\circ}\\) to create a funnel of 1 cm between slits. The design of window slit allows the inward flight of mosquitoes coming from filed but it will be hardly possible for them to escape once they entered the hut. A veranda trap made of iron mesh (22 mm diameter) was set at the back of each hut for trapping exophilic mosquitoes (Figure 1). It is presumed that some mosquitoes (inherently exophilic or mosquitoes repelled due to the exit-repellency effect of the chemicals impregnated into LLINs) will exit the hut once they enter and then after feeding on their host of choice. Thus, the verenda trap was designed to trap and quantify the proportion of mosquitoes exit the experimental hut and by virtue the efficacy of LLINs under test for its exito-repellent effect. Each night mosquitoes were allowed to enter into the hut via the window slits from the environment and freely move between the room and the verenda trap.\n", - "\n", - "header: Table 3. The overall killing effect of DuraNet® LLIN in experimental hut.\n", - "footer: None\n", - "columns: ['TREATMENT', 'OVERALL KILLING EFFECT (%) - AN. ARABIENSIS', 'OVERALL KILLING EFFECT (%) - AN. PHAROENSIS', 'OVERALL KILLING EFFECT (%) - AN. COUSTANI']\n", - "\n", - "{\"0\":{\"TREATMENT\":\"Unwashed DuraNet\\u00ae\",\"OVERALL KILLING EFFECT (%) - AN. ARABIENSIS\":65.93,\"OVERALL KILLING EFFECT (%) - AN. PHAROENSIS\":\"0.0*\",\"OVERALL KILLING EFFECT (%) - AN. COUSTANI\":12.33},\"1\":{\"TREATMENT\":\"20\\u00d7washed DuraNet\\u00ae\",\"OVERALL KILLING EFFECT (%) - AN. ARABIENSIS\":54.03,\"OVERALL KILLING EFFECT (%) - AN. PHAROENSIS\":\"9.0\",\"OVERALL KILLING EFFECT (%) - AN. COUSTANI\":13.4},\"2\":{\"TREATMENT\":\"Unwashed PermaNet\\u00ae 2.0 (PC)\",\"OVERALL KILLING EFFECT (%) - AN. ARABIENSIS\":64.81,\"OVERALL KILLING EFFECT (%) - AN. PHAROENSIS\":\"2.25\",\"OVERALL KILLING EFFECT (%) - AN. COUSTANI\":39.7},\"3\":{\"TREATMENT\":\"20\\u00d7 washed PermaNet\\u00ae 2.0\",\"OVERALL KILLING EFFECT (%) - AN. ARABIENSIS\":39.81,\"OVERALL KILLING EFFECT (%) - AN. PHAROENSIS\":\"9.0\",\"OVERALL KILLING EFFECT (%) - AN. COUSTANI\":20.0}}\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ITNCondition` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: CONCLUSION\n", - "\n", - "Both DuraNet(r) and PermanNet 2.0 moderate efficacy against a pyrethroid-resistant population of _An. araabensis_ from Ethiopia. The bio efficacy of DuraNet(r) was found below the WHO recommendation. Therefore, the real impact of the observed insecticide resistance against DuraNet(r) to be further studied under phase-III trials, the need for new alternative vector control tools remains critical.\n", - "\n", - "header: Background: Methods\n", - "\n", - "A laboratory and a semi-field conditions experimental huts against _Anopheles_ Mosquitoes were conducted in southwestern Ethiopia from September 2015 to January 2016. The bio efficacy of DuraNet(r) was evaluated using the WHO cone bioassay test and then its field efficacy was evaluated using experimental huts against the malaria vector population.\n", - "\n", - "header: Limitation\n", - "\n", - "In this study, supplementary test like chemical assays were not conducted to measure the total insecticide content of the netting before and after wash resistance studies that support better interpretation of the results.\n", - "\n", - "header: Mosquito mortality, blood feeding and exit rates.\n", - "\n", - "Mosquito blood feeding rates, mortality rates and exit rates of the 5 treatments are presented in Table 1. The mean blood feeding rate was significantly lower (_P_ <.001) in hut containing unwashed DuraNet* when compared to hut containing untreated DuraNet*. However, there was no significance difference (_P_ >.05) in blood feeding rate among huts containing untreated DuraNet*, 20 times washed DuraNet*, unwashed PernaNet* 2.0 and 20 times washed PernaNet*2.0. The mean mortality rate was significantly higher (_P_ <.001) among huts containing treated DuraNet*, 20 times washed DuraNet*, unwashed PernaNet* 2.0 and 20 times washed PernaNet* 2.0 when compared to hut containing untreated DuraNet*. Higher mean number of mosquitoes were caught while exiting the huts containing treated DuraNet*, 20 times washed DuraNet*, unwashed PernaNet* 2.0 and 20 times washed PernaNet* 2.0 when compared to hut containing untreated DuraNet*, however, there was no significant difference (_P_ >.05) among the treatments.\n", - "\n", - "header: Blood feeding inhibition and personal protection.\n", - "\n", - "Unwashed DuraNet* showed strong and better bio-efficacy in terms of blood feeding inhibition when compared to untreated DuraNet* and the rest of the treatment arms. The mean blood feeding rate of mosquitoes collected from a hut with unwashed DuraNet*, Unwashed PernaNet 2.0, twenty times washed DuraNet*, 20 times washed PernaNet 2.0 and Untreated DuraNet*, was 0.8/person-night, 4.1/person-night, 5.7/person-night, 6.0/person-night, and 7.0/person-night respectively. There was significant reduction (_P_ <.001) in blood feeding inhibition in all the treatment arms (hut with unwashed DuraNet*, but with 20 times washed DuraNet*, but with\n", - "\n", - "Figure 2: Mean percent knockdown and mortality of _An. arabiensis_ exposed in 3 minutes cone bioassay to DuraNet®, dimma, and southwestern Ethiopia.\n", - "\n", - "\n", - "unwashed PermaNet 2.0, hut with 20 times washed permanent 2.0) when compared to hut with untreated DuraNet*(control). Blood feeding inhibition can be also expressed as personal protection and unwashed DuraNet* showed the highest personal protection 88.7%, 100%, and 93.3% against _An. arabiensis, An. pbaroensis_, and _An. coustani_, respectively. Both PermaNet 2.0 twenty times washed and DuraNet* washed twenty times showed low to moderate personal protection (45.6% against _An. arabiensis_ to 83% against _An. pbaroensis_) when compared to untreated DuraNet* (Table 2).\n", - "\n", - "header: Table 1: Mean blood feeding, mortality and exit rates of populations of An. arabiensis exposed to different bed net types in field experimental huts in southwestern Ethiopia.\n", - "footer: Means within the same column and with different letters are signi\u001fcantly different using Tukey means separation test.**Significant at P<.001. *Significant at P<.05.\n", - "\n", - "\n", - "columns: ['TREATMENTS', 'BLOOD-FEEDING RATE MEAN ± SE', 'MORTALITY RATE MEAN ± SE', 'EXIT RATE MEAN ± SE']\n", - "\n", - "{\"0\":{\"TREATMENTS\":\"Untreated DuraNet\\u00ae\",\"BLOOD-FEEDING RATE MEAN \\u00b1 SE\":\"77.70 \\u00b1 7.30\",\"MORTALITY RATE MEAN \\u00b1 SE\":\"6.61 \\u00b1 3.80**\",\"EXIT RATE MEAN \\u00b1 SE\":\"26.77 \\u00b1 5.51\"},\"1\":{\"TREATMENTS\":\"Unwashed DuraNet\\u00ae\",\"BLOOD-FEEDING RATE MEAN \\u00b1 SE\":\"5.80 \\u00b1 2.32**\",\"MORTALITY RATE MEAN \\u00b1 SE\":\"52.38 \\u00b1 5.62\",\"EXIT RATE MEAN \\u00b1 SE\":\"40.42 \\u00b1 5.22\"},\"2\":{\"TREATMENTS\":\"20\\u00d7 washed DuraNet\\u00ae\",\"BLOOD-FEEDING RATE MEAN \\u00b1 SE\":\"55.94 \\u00b1 6.78\",\"MORTALITY RATE MEAN \\u00b1 SE\":\"28.17 \\u00b1 6.57*\",\"EXIT RATE MEAN \\u00b1 SE\":\"36.24 \\u00b1 5.50\"},\"3\":{\"TREATMENTS\":\"Unwashed PermaNet\\u00ae 2.0\",\"BLOOD-FEEDING RATE MEAN \\u00b1 SE\":\"53.39 \\u00b1 5.89\",\"MORTALITY RATE MEAN \\u00b1 SE\":\"61.74 \\u00b1 6.09\",\"EXIT RATE MEAN \\u00b1 SE\":\"48.16 \\u00b1 5.53\"},\"4\":{\"TREATMENTS\":\"20\\u00d7 washed PermaNet\\u00ae 2.0\",\"BLOOD-FEEDING RATE MEAN \\u00b1 SE\":\"53.35 \\u00b1 7.01\",\"MORTALITY RATE MEAN \\u00b1 SE\":\"39.87 \\u00b1 6.34\",\"EXIT RATE MEAN \\u00b1 SE\":\"35.32 \\u00b1 5.78\"}}\n", - "\n", - "header: Cone bioassay and washing resistance: Experimental but trial\n", - "\n", - "_Mosquito entry into the bus._ A total of 1575 Anopheles mosquitoes were entered and collected in the 40 nights during the trial. These consisted of 1373 (87.8%) _An. gambiae_ s.l. presumably _An. arabiensis_ (Yewhalaw et al., 2009), 116 (7.4%) _Angelo custani_ (Laveran), and 107 (6.8%) _An. phareensis_ (Theobald). The mean number of mosquitoes caught per night was 8.75 for _An. arabiensis_, 5.52 for _An. Coastani_, and 6.33 for _An. pharensis._ The mean mosquito entry is not significantly different among the treatment arms (F = 1.277, \\(P\\) >.05). There was no clear evidence of deterrence associated with any of the treatments however; there were fewer _An. Arabiensis_ in huts with the Unwashed DuraNet* compared to treated DuraNet* and PernaNet* 2.0 (Table 2).\n", - "\n", - "header: Results\n", - "\n", - "World Health Organization cone bioassay tests against pyrethroid-resistant _An. araabensis_ led to mean percent mortality and knockdown of 78% and 93%, respectively. Washing of DuraNet(r) successively reduced its efficacy from 93% knockdown (0 wash) to 45% knockdown (20 washes). Similarly, mean mortality decreased from 84% (wash) to 47% (20 washes). A total of 1575 female mosquitoes were collected over 40 nights out of which 13738(87.8%) were _An. amabise._ Is Title (74%) were _An. amabensis_. The mean blood-feeding rate was significantly lower (_P_<.001) in hut containing unwashed DuraNet(r) when compared to hut containing untreated DuraNet(r). The mean mortality rate was significantly higher (_P_<.001) in hut containing DuraNet(r) when compared to hut containing untreated DuraNet(r). Unwashed DuraNet(r) showed the highest personal protection 88.7% and 100% against _An. araabensis_ and _An. araabensis_, respectively.\n", - "\n", - "header: Discussion\n", - "\n", - "Insecticide resistance remains major threat against the efficacy of long-lasting insecticidal nets, which are key intervention tools in controlling malaria vector. In this study laboratory bioassay was initially conducted using field collected larvae raised to adult population of _An. arabiensis_ to assess the bio-efficacy of unwashed DuraNet* (candidate bed net) and untreated DuraNet* (negative control). Furthermore, field experimental study was conducted on bio-efficacy of unwashed DuraNet* and PermaNet 2.0 following WHOPES standard guidelines in order to corroborate the laboratory findings.5\n", - "\n", - "The cone bioassay tests indicated that exposure of population of _An. arabiensis_ mosquitoes from Gilgel-Gibe area, southwestern Ethiopia, to sections of DuraNet* LLIN resulted in mean knockdown and mean mortality of 93% and 78%, respectively. The mortality result is slightly lower than the range of WHO recommendation (>80%) for public health application. The knockdown effect also is slightly below the required WHOPES recommended levels of 95% and above. In contrast to the above results earlier bio efficacy tests conducted using unwashed DuraNet* in India (Sood et al10; Gunasekaran et al11) showed 100% efficacy when tested against populations of different species of _amopheles_. The slight decline in bio-efficacy of DuraNet* in this study may be due to resistance development of vector populations of _An. arabiensis_ in the study area.8,12 In Ethiopia, Previous studies indicate that populations of _An. Arabiensis_ have developed resistance against insecticides used for net impregnation.13-17\n", - "\n", - "Wash resistant long-lasting insecticidal nets treated with pyrethroids are viewed as an important device in the area of vector control that would lessen the difficulties related to retreating conventional insecticide treated nets.[18] DuraNet*, the alpha-cypermethrin treated net, has similar conditions as that of Interceptor* LLIN and PermaNet* 3.0, which had been given interim but full recommendation since June 2017 by WHOPES.[19]\n", - "\n", - "In current study, DuraNet* showed reduced washing resistance. This is reflected in continues decrease of both mean percent knockdown and mean percent mortality of population of _An. arabiensis_ on exposure to the DuraNet* washed 0 and 20 times, respectively. This is in contrast to the study done by Sood et al[10] which showed no significant difference in percent mortality and percent knockdown of population of _An. caliticiacis_ between unwashed and 20 times washed DuraNet* in India. However, in the same study by Sood et al,[10] DuraNet* showed 100% knockdown but only 45% mortality after 20 washes against _Anopheles gambiae_ which is also consistent with current results. Wash resistance technology is added to the LLIN's materials with the assumption of pyrethroid chemicals such as Alphacypermethrin should have a strong affinity to the polyester netting fibers so that even after forceful washing a thin layer of pyrethroid, practically undetectable by High Performance Liquid Chromatography yet adequately bio active to encourage knockdown and mortality should still continue bound to the fibers.\n", - "\n", - "Comparison of mosquito density collected from experimental huts with (unwashed DuraNet*, 20 times washed DuraNet*, unwashed PermaNet*2.0, 20 times washed PermaNet*2.0, and untreated DuraNet*) showed no clear evidence of deterrence associated with any of the treatments however; there were fewer _An. Arabiensis_ in huts with the unwashed DuraNet* compared to untreated DuraNet*. Likewise, a study carried out by Asale et al[8] using experimental huts in the study area showed the absence of significance variation in deterrence among huts containing unwashed PermaNet*2.0, untreated net and DDT sprayed hut. The possible explanation for the absence of significant variation in mosquito density among treatment arms could be accounted to low number of mosquito catches during the study period but the impact of insecticide resistance on the efficacy of the nets to be further studied in phase-III trials.\n", - "\n", - "In this study significant reduction in blood feeding rate was observed in hut containing unwashed DuraNet* when compared to hut containing untreated DuraNet*. Similarly, higher mean mosquito mortality rate was recorded among huts containing treatment arms when compared to hut containing control net (untreated DuraNet*). The results for DuraNet* are new report from Jimma area thus we could not corroborate but, Vector population of _An. arabiensis_ from the study area showed no significant reduction of mortality rate, exit pattern and blood feeding inhibition when tested against PermaNet 2.0.[8]\n", - "\n", - "In this study, DuraNet* and PermaNet 2.0 showed low to moderate killing efficacy against vector population of _An. arabiensis_. Moreover, both DuraNet* and PermaNet 2.0 showed no evidence of killing effect against _An. pbarensis_. According to Kitau et al[20] LLINs and ITNs treated with pyrethroids were more effective at killing _An. gambiae_ and _An. fintetus_ than _An. arabiensis_. Thus, the variations in the outcome variables of Anopheles shown above (DuraNet* and PermaNet 2.0) may be due to different susceptibility status and species differences.\n", - "\n", - "header: The killing effect DuraNet*\n", - "\n", - "DuraNet* (both unwashed and 20 times washed) showed low to moderate killing efficacy (65.93% to 54.03%) against vector population of _An. arabiensis_. Whereas, against _An. pbaroensis_, both unwashed and washed DuraNet* showed no evidence of killing effect (0.00 to 9.0%). Similarly, PermaNet 2.0 (unwashed and washed) showed low to moderate killing effect against population of _An. arabiensis_ (Table 3).\n", - "\n", - "header: Study area and period: Mosquito rearing and cone bioassay testing.\n", - "\n", - "Anopheles mosquito larvae were collected from field sites near Gilgel-Gibe hydroelectric power production reservoir and reared to adults under standard conditions (25 \\(\\pm\\) 20*C temperature,80 \\(\\pm\\) 4% relative humidity) in tropical and infectious diseases research institute, Sekoru campus, Jimma University, Ethiopia. For WHO cone bioassay test, five 2-5 days age unfed female _An. gambiae s.l._ (presumably _An. ankiensis_ according to Yewhalaw et al., (2009))\\(\\%\\) mosquitoes were used per cone. Twenty mosquitoes (5 mosquito\\({}^{\\text{\\textregistered}}\\) per-cone \\(\\times\\) 4 cone-per sub-sample net piece) were introduced into the cone facing net sample for 3 minutes and then moved to holding paper cups. Then mosquitoes were supplied with a 10% sucrose solution. The number of mosquitoes knocked down and the number of dead mosquitoes were recorded every 10 minute within 60 minutes and 24 hours, respectively. Mosquitoes exposed to untreated DuraNet\\({}^{*}\\) pieces were used as controls and experiment conditions were set to be 27 \\(\\pm\\) 2*C temperature and 75 \\(\\pm\\) 10% relative humidity (RH) throughout the study. Thus, a total of 1260 mosquitoes (63 net sub-samples \\(\\times\\) 20 mosquitoes per sub-sample net) were used for complete bioassay testing and another 180 mosquitoes (9 untreated net sub-samples \\(\\times\\) 20 mosquitoes per sub-sample net) were used as control.\n", - "\n", - "For net pieces washing each net sub-samples (25 cm \\(\\times\\) 25 cm) were introduced individually into 1-1 beakers containing 0.5 l deionized water, with 2 g/l WHO recommended soap (Savon de Marseille; pH 10-11) added and fully dissolved just before washing. The beakers were then introduced into a water-bath at 30*C and shaken for 10 min at 155 movements per minute. The samples were then removed, rinsed twice for 10 min in clean, deionized water under the same shaking conditions as above, dried at room temperature and stored at 30*C in the dark between washes.\n", - "\n", - "header: Abstract\n", - "\n", - "Evaluation of Long-Lasting Insecticidal Nets (DuraNet(r)) Under laboratory and Semi-Field Conditions Using Experimental Huts Against _Anopheles Mosquitoes_ in\n", - "\n", - "Jimma Zone\n", - "\n", - " Southwestern Ethiopia\n", - "\n", - "B. Gebremariam(r), W. Birke, W. Zeine, A. Ambelu\n", - "\n", - "\n", - "\n", - "Long-Lasting insecticidal Nets (LLINs) efficacy could be compromised due to a lot of influences together with user compliance and vector population insecticide resistance status. Thus, this study was to assess the biological efficacy of DuraNet(r) with the help of the World Health Organization cone bioassay and field experimental hut.\n", - "\n", - "header: ORCID iD\n", - "\n", - "Brhane Gebremariam (c) [https://orcid.org/0000-0002-0824-3221](https://orcid.org/0000-0002-0824-3221)\n", - "\n", - "header: Table 2. Blood-feeding inhibition and personal protection due to DuraNet® LLIN in the experimental huts, southwestern Ethiopia.\n", - "footer: *Significant at P<.05. **Significant at P<.01.\n", - "columns: ['TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2', 'PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)', 'PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)', 'PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)']\n", - "\n", - "{\"0\":{\"TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2\":\"Untreated DuraNet\\u00ae (NC)\",\"PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)\":\"232 (0**)\",\"PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)\":\"43 (0**)\",\"PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)\":\"30 (0*)\"},\"1\":{\"TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2\":\"Unwashed DuraNet\\u00ae\",\"PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)\":\"24 (88.7**)\",\"PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)\":\"00 (100**)\",\"PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)\":\"2 (93.3*)\"},\"2\":{\"TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2\":\"20\\u00d7 washed DuraNet\\u00ae\",\"PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)\":\"176 (42.4)\",\"PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)\":\"27 (62.8)\",\"PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)\":\"5 (83.3*)\"},\"3\":{\"TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2\":\"Unwashed PermaNet\\u00ae 2.0 (PC)\",\"PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)\":\"131 (45.6)\",\"PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)\":\"11 (83**)\",\"PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)\":\"16 (46.6)\"},\"4\":{\"TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2\":\"20\\u00d7 washed PermaNet\\u00ae 2.0\",\"PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)\":\"192 (38.6)\",\"PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)\":\"6 (75)\",\"PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)\":\"33 (0*)\"}}\n", - "\n", - "header: Results\n", - "\n", - "Exposure of wild population of _An. arabiensis_ mosquitoes to net sections of DuraNet* LLIN in WHO bioassay tests gives mean mortality rate of 78% as well as mean knockdown effect of 93%. Mean percent knockdown and percent mortality of DuraNet* LLIN showed significant relationship (\\(R^{2}\\) = 0.797, n = 260, \\(P\\) <.001). The wash resistance activity of DuraNet* LLINs, measured in terms of percent knockdown and mortality is presented in Figure 2. The mean percent knockdown of wild population of _An. arabiensis_ decreased from 93% to 45% up on exposure to the DuraNet* washed 0 and 20 times respectively. The mean percent mortality decreased from 84% to 47% on exposure to the DuraNet* washed 0 and 20 times, respectively. Wash resistance has negative correlation with percent knockdown and percent mortality which means as number of wash increase, percent knockdown and percent mortality declined (\\(r^{2}\\) = 0.333, 96KD = 89.16 \\(\\pm\\) 2.15, \\(P\\) <.001 and \\(r^{2}\\) = 0.236, 90Mt = 81.94 \\(\\pm\\) 1.68, \\(P\\) <.001), respectively.\n", - "\n", - "header: Experimental but establishment.: Treatment arms and sleepers rotation\n", - "\n", - "In this experiment, 5 different treatment arms were used. These include (1) Untreated unwashed DuraNet(Negative control) (2) Unwashed treated DuraNet(3) treated DuraNet(20 times washed (4) PermaNet(4) 2.0 20 times washed, and (5) unwashed PermaNet(4) 2.0 (positive control). All nets were 75 denier polyethylene and polyester nets respectively. To simulate wear and tear condition of nets under usage 6 (4 cm \\(\\times\\) 4 cm size) holes were cut in each net (2 holes on each of the sides and 1 hole at each end). The DuraNet(4) LLIN and PermaNet(4) 2.0 were washed according to World Health Organization Stage II washing procedure [5]. For washing, the nets were put in to aluminum bowl with 10 l of tap water and 2g/l of savon de Marseille soap. The nets were agitated for 3 minutes, then soaked for 4 minutes, and agitated again for 3 minutes. The nets were agitated manually by stirring them with a pole at 20 rotations per minute. Thus, each net was washed for a total of 10 minute and then rinsed with clean water by a similar procedure, dried horizontally in the shade and stored at ambient temperature between washes. WHO recognized PermaNet(4) 2.0 LLIN washed 20 times, was used as a positive control to assess DuraNet(4) LLIN performance.\n", - "\n", - "In each data collection night, 2 non-smoker male volunteers aged 20 to 25 were allowed to sleep in each experimental hut with its door remain closed between 19:00 and 07:00 hours. Each team was rotated between treatments on successive nights within a week to avoid possible bias which could arise due to individual attractiveness to mosquitoes. There were 5 successive collection nights (Monday to Friday) and 2 successive break nights for hut ventilation per week. Thus, there were 25 collection nights in order to complete the whole study. Informed written consent was obtained from each sleeper.\n", - "\n", - "header: Mosquito collection, identification and key parameters measured in determination of LLINs efficacy\n", - "\n", - "Mosquitoes were collected from 6:00 to 7:00 each morning inside bed nets, floors, walls, ceilings, and verandas of each experimental hut by the help of mouth aspirators and torches. Then the collected mosquitoes were recorded as dead or alive. Live mosquitoes were held in paper cups and supplied with 10% sucrose solution. The collected mosquitoes were transported to Asendabo Vector Biology Laboratory, Jimma University, where mosquitoes were sorted by genus, sex and morphologically identified using taxonomic keys [9]. Mosquitoes were also scored for their physiological state as unfed, fed, half gravid and gravid. Delayed mortality was recorded after 24 hours. To evaluate the efficacy of DuraNet LLIN against the resistant populations of _An. arabiensis_, different entomological parameters (deterrence, exit, blood feeding inhibition, and mortality rates) were derived from basic measurements.\n", - "\n", - "The primary outcomes were:\n", - "\n", - "1. Deterrence--the reduction in entry in to treatment hut relative to the control hut (ie, huts holding untreated nets);\n", - "2. Mortality--the proportion of mosquitoes killed relative to the total catch size;\n", - "3. Killing effect--the numbers killed by a treatment relative to the untreated control, as derived from the formula; \\[\\text{Killing effect}\\left( \\% \\right) = \\left( \\frac{Kt-Ku}{Tu} \\right) \\ast 100\\]\n", - "\n", - "Where **Kt** is the number dead mosquitoes in the huts with treated nets, **Ku** is the number dead mosquitoes in the huts with untreated nets, and **Tu** is the total entering the huts with untreated nets.\n", - "\n", - "1. Blood Feeding Inhibition-The proportional reduction in blood feeding in huts with treated nets relative to controls with untreated nets.\n", - "\n", - "Figure 1: Experimental hut design of the study.\n", - "\n", - "\n", - "5. Personal Protection--The reduction in mosquito biting by treated nets relative to untreated nets, as derived from the formula \\[\\%\\text{personal protection} = (\\frac{Bu-Bt}{Bu})*100\\]\n", - "\n", - "Where Bu is the total number blood fed mosquitoes in the huts with untreated nets, and Bt is the total number blood fed in the huts with treated nets.\n", - "\n", - "header: Table 3. The overall killing effect of DuraNet® LLIN in experimental hut.\n", - "footer: None\n", - "columns: ['TREATMENT', 'OVERALL KILLING EFFECT (%) - AN. ARABIENSIS', 'OVERALL KILLING EFFECT (%) - AN. PHAROENSIS', 'OVERALL KILLING EFFECT (%) - AN. COUSTANI']\n", - "\n", - "{\"0\":{\"TREATMENT\":\"Unwashed DuraNet\\u00ae\",\"OVERALL KILLING EFFECT (%) - AN. ARABIENSIS\":65.93,\"OVERALL KILLING EFFECT (%) - AN. PHAROENSIS\":\"0.0*\",\"OVERALL KILLING EFFECT (%) - AN. COUSTANI\":12.33},\"1\":{\"TREATMENT\":\"20\\u00d7washed DuraNet\\u00ae\",\"OVERALL KILLING EFFECT (%) - AN. ARABIENSIS\":54.03,\"OVERALL KILLING EFFECT (%) - AN. PHAROENSIS\":\"9.0\",\"OVERALL KILLING EFFECT (%) - AN. COUSTANI\":13.4},\"2\":{\"TREATMENT\":\"Unwashed PermaNet\\u00ae 2.0 (PC)\",\"OVERALL KILLING EFFECT (%) - AN. ARABIENSIS\":64.81,\"OVERALL KILLING EFFECT (%) - AN. PHAROENSIS\":\"2.25\",\"OVERALL KILLING EFFECT (%) - AN. COUSTANI\":39.7},\"3\":{\"TREATMENT\":\"20\\u00d7 washed PermaNet\\u00ae 2.0\",\"OVERALL KILLING EFFECT (%) - AN. ARABIENSIS\":39.81,\"OVERALL KILLING EFFECT (%) - AN. PHAROENSIS\":\"9.0\",\"OVERALL KILLING EFFECT (%) - AN. COUSTANI\":20.0}}\n", - "\n", - "header: Methods\n", - "\n", - "This study was conducted from September 2015 to January 2016 near the Gilgel-Gibe hydroelectric dam area, southwestern Ethiopia. The hydroelectric dam is one of the major hydroelectric dams in Ethiopia with artificial reservoir occupying an estimated area of 62 kmsq,6 It produces around 184 MWh and is located 260 km southwest of the capital Addis Ababa. It has been functional since 2004. The study area is located between latitudes 7*42*50*7N and 07*53*50*7N and longitudes 37*11*22*7E and 37*20*36*E with an altitude ranging from 1672-1864 m above sea level. The area has a sub-humid, warm to hot climate, obtains between 1300 and 1800 mm of rainfall annually and has a mean annual temperature of 19*C. Mostly, the 2 peak seasonal transmissions of malaria occur during the months of September to December and March to May in the study area.\n", - "\n", - "Bio-efficacy testing of LLIN (DuraNet\\({}^{\\text{\\text{\\textregistered}}}\\)) under laboratory setting\n", - "\n", - "\\(LLIN\\)_sample preparation and washing process._ DuraNet\\({}^{*}\\) LLINs (Karur, Tamil Nadu 639006, and India) is treated with alpha-cypermethrin at a target dose of 250 mg/m\\({}^{2}\\) of netting material. It contains 0.55% W/W \\(\\pm\\) 15% alpha-cypermethrin. The alpha-cypermethrin chemical is coated onto filaments at bursting strength of 450 kPa of netting material and of 145 \\(\\pm\\) 5% for seam sub-section per denier yarn. Prior to testing the production date and batch number of all nets were recorded. Seven sub-samples per net (1 from the roof, the rest from side of the net) were taken from each net and prepared for standard LLINs cone tests by cutting 25 cm \\(\\times\\) 25 cm pieces following WHO protocol.7 In this study, 9 candidate nets were used for bio-efficacy testing. Thus, a total of 63 sub-sample net pieces (7 sub-sample pieces from each net \\(\\times\\) 9 DuraNet\\({}^{*}\\)s) individually rolled up in aluminum foil, labeled (by net type, net number and sample area) and kept in a refrigerator prior to the assay. Concurrently 9 (1 sub-sample piece from each untreated DuraNet\\({}^{*}\\)\\(\\times\\) 9 untreated DuraNet\\({}^{*}\\)s) sub-samples (30 cm \\(\\times\\) 30 cm) were individually rolled up in aluminum foil, labeled and kept in a refrigerator prior to the assay.\n", - "\n", - "header: Introduction\n", - "\n", - "Malaria is still one of highest health risks in developing countries with high morbidity and mortality in under 5 children. Assessment of overall economic impact of the disease shows that it accounts for 40% of health cost spending, 30% to 50% of inpatient charges, and up to 50% of outpatient official visits in areas with great malaria.1 According to the world health organization, there were 216 million new incidents of malaria leading to 445 000 death, of which 90% occurred in African countries.2\n", - "\n", - "Footnote 1: [https://developers.com/en/article/](https://developers.com/en/article/)\n", - "\n", - "Long-Lasting insecticidal Nets (LLINs) are uppermost community health apparatuses and, when used by children and pregnant women, subsidize to improving motherly, neonatal, and infant health, with long-lasting reimbursements to the emerging child.3 These nets provide personal barrier from bite by mosquitoes in addition those nets lessen also the transmission of malaria and have excito-repellency effect.4 A total of 505 million insecticidal nets (ITNs) were distributed in developing countries between 2014 and 2016 with household ownership of at least 1 insecticidal net, improved from 50% in 2010 to 80% in 2016. Nevertheless, the ratio of houses with adequate bed nets (ie, 1 net for every 2 people) is very low (43%).2 Following the high demand of bed nets as key vector control intervention, companies are ramping up production and new brand nets are being introduced for public health utilization.\n", - "\n", - "Footnote 2: [https://developers.com/en/article/](https://developers.com/en/article/)\n", - "\n", - "In order for any new long-lasting insecticidal nets to be used in public health, it must gain WHOPES approval.5 The approval process passes through 3 stages of efficacy testing (laboratory, small-scale semi-field, and large-scale field trial). To be classified as a long-lasting insecticidal net, it must \n", - "maintain their effective biological activity for at least 20 World Health Organization recommended washes typical washes under laboratory conditions and 3 years of suggested use under semi-field and field condition.\n", - "\n", - "DuraNet\\({}^{*}\\) is an LLIN developed by the Shobikaa Impex pvt Ltd (Karur, Tamil Nadu 639006, and India). It contains 0.55% w/w \\(\\pm\\) 15% alpha-cypermethrin. The net is a polyethylene fiber coated with a proprietary polymer containing target dose of alpha-cypermethrin at 250 mg/m\\({}^{2}\\). The polymer binds to the fiber and can withstand multiple washings, the active ingredient diffusing in a controlled manner to the surface of the polymer coat to maintain insecticidal efficacy.\n", - "\n", - "Thus, this study was conducted to verify the intended efficacy of the product in the presence of pyrethroid resistance vector population of _An. gambiae_ s.l. using cone bioassay and semi-field experimental huts in southwestern Ethiopia. The cone bioassays were conducted in Tropical and Infectious diseases research institute, Jimma University. The experimental hut study trials were undertaken near the Gilgel-Gibe hydroelectric power dam-I.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `Observation` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Limitation\n", - "\n", - "In this study, supplementary test like chemical assays were not conducted to measure the total insecticide content of the netting before and after wash resistance studies that support better interpretation of the results.\n", - "\n", - "header: Blood feeding inhibition and personal protection.\n", - "\n", - "Unwashed DuraNet* showed strong and better bio-efficacy in terms of blood feeding inhibition when compared to untreated DuraNet* and the rest of the treatment arms. The mean blood feeding rate of mosquitoes collected from a hut with unwashed DuraNet*, Unwashed PernaNet 2.0, twenty times washed DuraNet*, 20 times washed PernaNet 2.0 and Untreated DuraNet*, was 0.8/person-night, 4.1/person-night, 5.7/person-night, 6.0/person-night, and 7.0/person-night respectively. There was significant reduction (_P_ <.001) in blood feeding inhibition in all the treatment arms (hut with unwashed DuraNet*, but with 20 times washed DuraNet*, but with\n", - "\n", - "Figure 2: Mean percent knockdown and mortality of _An. arabiensis_ exposed in 3 minutes cone bioassay to DuraNet®, dimma, and southwestern Ethiopia.\n", - "\n", - "\n", - "unwashed PermaNet 2.0, hut with 20 times washed permanent 2.0) when compared to hut with untreated DuraNet*(control). Blood feeding inhibition can be also expressed as personal protection and unwashed DuraNet* showed the highest personal protection 88.7%, 100%, and 93.3% against _An. arabiensis, An. pbaroensis_, and _An. coustani_, respectively. Both PermaNet 2.0 twenty times washed and DuraNet* washed twenty times showed low to moderate personal protection (45.6% against _An. arabiensis_ to 83% against _An. pbaroensis_) when compared to untreated DuraNet* (Table 2).\n", - "\n", - "header: Background: Methods\n", - "\n", - "A laboratory and a semi-field conditions experimental huts against _Anopheles_ Mosquitoes were conducted in southwestern Ethiopia from September 2015 to January 2016. The bio efficacy of DuraNet(r) was evaluated using the WHO cone bioassay test and then its field efficacy was evaluated using experimental huts against the malaria vector population.\n", - "\n", - "header: CONCLUSION\n", - "\n", - "Both DuraNet(r) and PermanNet 2.0 moderate efficacy against a pyrethroid-resistant population of _An. araabensis_ from Ethiopia. The bio efficacy of DuraNet(r) was found below the WHO recommendation. Therefore, the real impact of the observed insecticide resistance against DuraNet(r) to be further studied under phase-III trials, the need for new alternative vector control tools remains critical.\n", - "\n", - "header: The killing effect DuraNet*\n", - "\n", - "DuraNet* (both unwashed and 20 times washed) showed low to moderate killing efficacy (65.93% to 54.03%) against vector population of _An. arabiensis_. Whereas, against _An. pbaroensis_, both unwashed and washed DuraNet* showed no evidence of killing effect (0.00 to 9.0%). Similarly, PermaNet 2.0 (unwashed and washed) showed low to moderate killing effect against population of _An. arabiensis_ (Table 3).\n", - "\n", - "header: Results\n", - "\n", - "World Health Organization cone bioassay tests against pyrethroid-resistant _An. araabensis_ led to mean percent mortality and knockdown of 78% and 93%, respectively. Washing of DuraNet(r) successively reduced its efficacy from 93% knockdown (0 wash) to 45% knockdown (20 washes). Similarly, mean mortality decreased from 84% (wash) to 47% (20 washes). A total of 1575 female mosquitoes were collected over 40 nights out of which 13738(87.8%) were _An. amabise._ Is Title (74%) were _An. amabensis_. The mean blood-feeding rate was significantly lower (_P_<.001) in hut containing unwashed DuraNet(r) when compared to hut containing untreated DuraNet(r). The mean mortality rate was significantly higher (_P_<.001) in hut containing DuraNet(r) when compared to hut containing untreated DuraNet(r). Unwashed DuraNet(r) showed the highest personal protection 88.7% and 100% against _An. araabensis_ and _An. araabensis_, respectively.\n", - "\n", - "header: Mosquito mortality, blood feeding and exit rates.\n", - "\n", - "Mosquito blood feeding rates, mortality rates and exit rates of the 5 treatments are presented in Table 1. The mean blood feeding rate was significantly lower (_P_ <.001) in hut containing unwashed DuraNet* when compared to hut containing untreated DuraNet*. However, there was no significance difference (_P_ >.05) in blood feeding rate among huts containing untreated DuraNet*, 20 times washed DuraNet*, unwashed PernaNet* 2.0 and 20 times washed PernaNet*2.0. The mean mortality rate was significantly higher (_P_ <.001) among huts containing treated DuraNet*, 20 times washed DuraNet*, unwashed PernaNet* 2.0 and 20 times washed PernaNet* 2.0 when compared to hut containing untreated DuraNet*. Higher mean number of mosquitoes were caught while exiting the huts containing treated DuraNet*, 20 times washed DuraNet*, unwashed PernaNet* 2.0 and 20 times washed PernaNet* 2.0 when compared to hut containing untreated DuraNet*, however, there was no significant difference (_P_ >.05) among the treatments.\n", - "\n", - "header: Discussion\n", - "\n", - "Insecticide resistance remains major threat against the efficacy of long-lasting insecticidal nets, which are key intervention tools in controlling malaria vector. In this study laboratory bioassay was initially conducted using field collected larvae raised to adult population of _An. arabiensis_ to assess the bio-efficacy of unwashed DuraNet* (candidate bed net) and untreated DuraNet* (negative control). Furthermore, field experimental study was conducted on bio-efficacy of unwashed DuraNet* and PermaNet 2.0 following WHOPES standard guidelines in order to corroborate the laboratory findings.5\n", - "\n", - "The cone bioassay tests indicated that exposure of population of _An. arabiensis_ mosquitoes from Gilgel-Gibe area, southwestern Ethiopia, to sections of DuraNet* LLIN resulted in mean knockdown and mean mortality of 93% and 78%, respectively. The mortality result is slightly lower than the range of WHO recommendation (>80%) for public health application. The knockdown effect also is slightly below the required WHOPES recommended levels of 95% and above. In contrast to the above results earlier bio efficacy tests conducted using unwashed DuraNet* in India (Sood et al10; Gunasekaran et al11) showed 100% efficacy when tested against populations of different species of _amopheles_. The slight decline in bio-efficacy of DuraNet* in this study may be due to resistance development of vector populations of _An. arabiensis_ in the study area.8,12 In Ethiopia, Previous studies indicate that populations of _An. Arabiensis_ have developed resistance against insecticides used for net impregnation.13-17\n", - "\n", - "Wash resistant long-lasting insecticidal nets treated with pyrethroids are viewed as an important device in the area of vector control that would lessen the difficulties related to retreating conventional insecticide treated nets.[18] DuraNet*, the alpha-cypermethrin treated net, has similar conditions as that of Interceptor* LLIN and PermaNet* 3.0, which had been given interim but full recommendation since June 2017 by WHOPES.[19]\n", - "\n", - "In current study, DuraNet* showed reduced washing resistance. This is reflected in continues decrease of both mean percent knockdown and mean percent mortality of population of _An. arabiensis_ on exposure to the DuraNet* washed 0 and 20 times, respectively. This is in contrast to the study done by Sood et al[10] which showed no significant difference in percent mortality and percent knockdown of population of _An. caliticiacis_ between unwashed and 20 times washed DuraNet* in India. However, in the same study by Sood et al,[10] DuraNet* showed 100% knockdown but only 45% mortality after 20 washes against _Anopheles gambiae_ which is also consistent with current results. Wash resistance technology is added to the LLIN's materials with the assumption of pyrethroid chemicals such as Alphacypermethrin should have a strong affinity to the polyester netting fibers so that even after forceful washing a thin layer of pyrethroid, practically undetectable by High Performance Liquid Chromatography yet adequately bio active to encourage knockdown and mortality should still continue bound to the fibers.\n", - "\n", - "Comparison of mosquito density collected from experimental huts with (unwashed DuraNet*, 20 times washed DuraNet*, unwashed PermaNet*2.0, 20 times washed PermaNet*2.0, and untreated DuraNet*) showed no clear evidence of deterrence associated with any of the treatments however; there were fewer _An. Arabiensis_ in huts with the unwashed DuraNet* compared to untreated DuraNet*. Likewise, a study carried out by Asale et al[8] using experimental huts in the study area showed the absence of significance variation in deterrence among huts containing unwashed PermaNet*2.0, untreated net and DDT sprayed hut. The possible explanation for the absence of significant variation in mosquito density among treatment arms could be accounted to low number of mosquito catches during the study period but the impact of insecticide resistance on the efficacy of the nets to be further studied in phase-III trials.\n", - "\n", - "In this study significant reduction in blood feeding rate was observed in hut containing unwashed DuraNet* when compared to hut containing untreated DuraNet*. Similarly, higher mean mosquito mortality rate was recorded among huts containing treatment arms when compared to hut containing control net (untreated DuraNet*). The results for DuraNet* are new report from Jimma area thus we could not corroborate but, Vector population of _An. arabiensis_ from the study area showed no significant reduction of mortality rate, exit pattern and blood feeding inhibition when tested against PermaNet 2.0.[8]\n", - "\n", - "In this study, DuraNet* and PermaNet 2.0 showed low to moderate killing efficacy against vector population of _An. arabiensis_. Moreover, both DuraNet* and PermaNet 2.0 showed no evidence of killing effect against _An. pbarensis_. According to Kitau et al[20] LLINs and ITNs treated with pyrethroids were more effective at killing _An. gambiae_ and _An. fintetus_ than _An. arabiensis_. Thus, the variations in the outcome variables of Anopheles shown above (DuraNet* and PermaNet 2.0) may be due to different susceptibility status and species differences.\n", - "\n", - "header: Study area and period: Mosquito rearing and cone bioassay testing.\n", - "\n", - "Anopheles mosquito larvae were collected from field sites near Gilgel-Gibe hydroelectric power production reservoir and reared to adults under standard conditions (25 \\(\\pm\\) 20*C temperature,80 \\(\\pm\\) 4% relative humidity) in tropical and infectious diseases research institute, Sekoru campus, Jimma University, Ethiopia. For WHO cone bioassay test, five 2-5 days age unfed female _An. gambiae s.l._ (presumably _An. ankiensis_ according to Yewhalaw et al., (2009))\\(\\%\\) mosquitoes were used per cone. Twenty mosquitoes (5 mosquito\\({}^{\\text{\\textregistered}}\\) per-cone \\(\\times\\) 4 cone-per sub-sample net piece) were introduced into the cone facing net sample for 3 minutes and then moved to holding paper cups. Then mosquitoes were supplied with a 10% sucrose solution. The number of mosquitoes knocked down and the number of dead mosquitoes were recorded every 10 minute within 60 minutes and 24 hours, respectively. Mosquitoes exposed to untreated DuraNet\\({}^{*}\\) pieces were used as controls and experiment conditions were set to be 27 \\(\\pm\\) 2*C temperature and 75 \\(\\pm\\) 10% relative humidity (RH) throughout the study. Thus, a total of 1260 mosquitoes (63 net sub-samples \\(\\times\\) 20 mosquitoes per sub-sample net) were used for complete bioassay testing and another 180 mosquitoes (9 untreated net sub-samples \\(\\times\\) 20 mosquitoes per sub-sample net) were used as control.\n", - "\n", - "For net pieces washing each net sub-samples (25 cm \\(\\times\\) 25 cm) were introduced individually into 1-1 beakers containing 0.5 l deionized water, with 2 g/l WHO recommended soap (Savon de Marseille; pH 10-11) added and fully dissolved just before washing. The beakers were then introduced into a water-bath at 30*C and shaken for 10 min at 155 movements per minute. The samples were then removed, rinsed twice for 10 min in clean, deionized water under the same shaking conditions as above, dried at room temperature and stored at 30*C in the dark between washes.\n", - "\n", - "header: Results\n", - "\n", - "Exposure of wild population of _An. arabiensis_ mosquitoes to net sections of DuraNet* LLIN in WHO bioassay tests gives mean mortality rate of 78% as well as mean knockdown effect of 93%. Mean percent knockdown and percent mortality of DuraNet* LLIN showed significant relationship (\\(R^{2}\\) = 0.797, n = 260, \\(P\\) <.001). The wash resistance activity of DuraNet* LLINs, measured in terms of percent knockdown and mortality is presented in Figure 2. The mean percent knockdown of wild population of _An. arabiensis_ decreased from 93% to 45% up on exposure to the DuraNet* washed 0 and 20 times respectively. The mean percent mortality decreased from 84% to 47% on exposure to the DuraNet* washed 0 and 20 times, respectively. Wash resistance has negative correlation with percent knockdown and percent mortality which means as number of wash increase, percent knockdown and percent mortality declined (\\(r^{2}\\) = 0.333, 96KD = 89.16 \\(\\pm\\) 2.15, \\(P\\) <.001 and \\(r^{2}\\) = 0.236, 90Mt = 81.94 \\(\\pm\\) 1.68, \\(P\\) <.001), respectively.\n", - "\n", - "header: Table 1: Mean blood feeding, mortality and exit rates of populations of An. arabiensis exposed to different bed net types in field experimental huts in southwestern Ethiopia.\n", - "footer: Means within the same column and with different letters are signi\u001fcantly different using Tukey means separation test.**Significant at P<.001. *Significant at P<.05.\n", - "\n", - "\n", - "columns: ['TREATMENTS', 'BLOOD-FEEDING RATE MEAN ± SE', 'MORTALITY RATE MEAN ± SE', 'EXIT RATE MEAN ± SE']\n", - "\n", - "{\"0\":{\"TREATMENTS\":\"Untreated DuraNet\\u00ae\",\"BLOOD-FEEDING RATE MEAN \\u00b1 SE\":\"77.70 \\u00b1 7.30\",\"MORTALITY RATE MEAN \\u00b1 SE\":\"6.61 \\u00b1 3.80**\",\"EXIT RATE MEAN \\u00b1 SE\":\"26.77 \\u00b1 5.51\"},\"1\":{\"TREATMENTS\":\"Unwashed DuraNet\\u00ae\",\"BLOOD-FEEDING RATE MEAN \\u00b1 SE\":\"5.80 \\u00b1 2.32**\",\"MORTALITY RATE MEAN \\u00b1 SE\":\"52.38 \\u00b1 5.62\",\"EXIT RATE MEAN \\u00b1 SE\":\"40.42 \\u00b1 5.22\"},\"2\":{\"TREATMENTS\":\"20\\u00d7 washed DuraNet\\u00ae\",\"BLOOD-FEEDING RATE MEAN \\u00b1 SE\":\"55.94 \\u00b1 6.78\",\"MORTALITY RATE MEAN \\u00b1 SE\":\"28.17 \\u00b1 6.57*\",\"EXIT RATE MEAN \\u00b1 SE\":\"36.24 \\u00b1 5.50\"},\"3\":{\"TREATMENTS\":\"Unwashed PermaNet\\u00ae 2.0\",\"BLOOD-FEEDING RATE MEAN \\u00b1 SE\":\"53.39 \\u00b1 5.89\",\"MORTALITY RATE MEAN \\u00b1 SE\":\"61.74 \\u00b1 6.09\",\"EXIT RATE MEAN \\u00b1 SE\":\"48.16 \\u00b1 5.53\"},\"4\":{\"TREATMENTS\":\"20\\u00d7 washed PermaNet\\u00ae 2.0\",\"BLOOD-FEEDING RATE MEAN \\u00b1 SE\":\"53.35 \\u00b1 7.01\",\"MORTALITY RATE MEAN \\u00b1 SE\":\"39.87 \\u00b1 6.34\",\"EXIT RATE MEAN \\u00b1 SE\":\"35.32 \\u00b1 5.78\"}}\n", - "\n", - "header: Cone bioassay and washing resistance: Experimental but trial\n", - "\n", - "_Mosquito entry into the bus._ A total of 1575 Anopheles mosquitoes were entered and collected in the 40 nights during the trial. These consisted of 1373 (87.8%) _An. gambiae_ s.l. presumably _An. arabiensis_ (Yewhalaw et al., 2009), 116 (7.4%) _Angelo custani_ (Laveran), and 107 (6.8%) _An. phareensis_ (Theobald). The mean number of mosquitoes caught per night was 8.75 for _An. arabiensis_, 5.52 for _An. Coastani_, and 6.33 for _An. pharensis._ The mean mosquito entry is not significantly different among the treatment arms (F = 1.277, \\(P\\) >.05). There was no clear evidence of deterrence associated with any of the treatments however; there were fewer _An. Arabiensis_ in huts with the Unwashed DuraNet* compared to treated DuraNet* and PernaNet* 2.0 (Table 2).\n", - "\n", - "header: Table 2. Blood-feeding inhibition and personal protection due to DuraNet® LLIN in the experimental huts, southwestern Ethiopia.\n", - "footer: *Significant at P<.05. **Significant at P<.01.\n", - "columns: ['TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2', 'PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)', 'PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)', 'PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)']\n", - "\n", - "{\"0\":{\"TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2\":\"Untreated DuraNet\\u00ae (NC)\",\"PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)\":\"232 (0**)\",\"PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)\":\"43 (0**)\",\"PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)\":\"30 (0*)\"},\"1\":{\"TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2\":\"Unwashed DuraNet\\u00ae\",\"PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)\":\"24 (88.7**)\",\"PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)\":\"00 (100**)\",\"PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)\":\"2 (93.3*)\"},\"2\":{\"TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2\":\"20\\u00d7 washed DuraNet\\u00ae\",\"PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)\":\"176 (42.4)\",\"PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)\":\"27 (62.8)\",\"PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)\":\"5 (83.3*)\"},\"3\":{\"TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2\":\"Unwashed PermaNet\\u00ae 2.0 (PC)\",\"PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)\":\"131 (45.6)\",\"PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)\":\"11 (83**)\",\"PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)\":\"16 (46.6)\"},\"4\":{\"TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2\":\"20\\u00d7 washed PermaNet\\u00ae 2.0\",\"PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)\":\"192 (38.6)\",\"PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)\":\"6 (75)\",\"PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)\":\"33 (0*)\"}}\n", - "\n", - "header: Experimental but establishment.: Treatment arms and sleepers rotation\n", - "\n", - "In this experiment, 5 different treatment arms were used. These include (1) Untreated unwashed DuraNet(Negative control) (2) Unwashed treated DuraNet(3) treated DuraNet(20 times washed (4) PermaNet(4) 2.0 20 times washed, and (5) unwashed PermaNet(4) 2.0 (positive control). All nets were 75 denier polyethylene and polyester nets respectively. To simulate wear and tear condition of nets under usage 6 (4 cm \\(\\times\\) 4 cm size) holes were cut in each net (2 holes on each of the sides and 1 hole at each end). The DuraNet(4) LLIN and PermaNet(4) 2.0 were washed according to World Health Organization Stage II washing procedure [5]. For washing, the nets were put in to aluminum bowl with 10 l of tap water and 2g/l of savon de Marseille soap. The nets were agitated for 3 minutes, then soaked for 4 minutes, and agitated again for 3 minutes. The nets were agitated manually by stirring them with a pole at 20 rotations per minute. Thus, each net was washed for a total of 10 minute and then rinsed with clean water by a similar procedure, dried horizontally in the shade and stored at ambient temperature between washes. WHO recognized PermaNet(4) 2.0 LLIN washed 20 times, was used as a positive control to assess DuraNet(4) LLIN performance.\n", - "\n", - "In each data collection night, 2 non-smoker male volunteers aged 20 to 25 were allowed to sleep in each experimental hut with its door remain closed between 19:00 and 07:00 hours. Each team was rotated between treatments on successive nights within a week to avoid possible bias which could arise due to individual attractiveness to mosquitoes. There were 5 successive collection nights (Monday to Friday) and 2 successive break nights for hut ventilation per week. Thus, there were 25 collection nights in order to complete the whole study. Informed written consent was obtained from each sleeper.\n", - "\n", - "header: Table 3. The overall killing effect of DuraNet® LLIN in experimental hut.\n", - "footer: None\n", - "columns: ['TREATMENT', 'OVERALL KILLING EFFECT (%) - AN. ARABIENSIS', 'OVERALL KILLING EFFECT (%) - AN. PHAROENSIS', 'OVERALL KILLING EFFECT (%) - AN. COUSTANI']\n", - "\n", - "{\"0\":{\"TREATMENT\":\"Unwashed DuraNet\\u00ae\",\"OVERALL KILLING EFFECT (%) - AN. ARABIENSIS\":65.93,\"OVERALL KILLING EFFECT (%) - AN. PHAROENSIS\":\"0.0*\",\"OVERALL KILLING EFFECT (%) - AN. COUSTANI\":12.33},\"1\":{\"TREATMENT\":\"20\\u00d7washed DuraNet\\u00ae\",\"OVERALL KILLING EFFECT (%) - AN. ARABIENSIS\":54.03,\"OVERALL KILLING EFFECT (%) - AN. PHAROENSIS\":\"9.0\",\"OVERALL KILLING EFFECT (%) - AN. COUSTANI\":13.4},\"2\":{\"TREATMENT\":\"Unwashed PermaNet\\u00ae 2.0 (PC)\",\"OVERALL KILLING EFFECT (%) - AN. ARABIENSIS\":64.81,\"OVERALL KILLING EFFECT (%) - AN. PHAROENSIS\":\"2.25\",\"OVERALL KILLING EFFECT (%) - AN. COUSTANI\":39.7},\"3\":{\"TREATMENT\":\"20\\u00d7 washed PermaNet\\u00ae 2.0\",\"OVERALL KILLING EFFECT (%) - AN. ARABIENSIS\":39.81,\"OVERALL KILLING EFFECT (%) - AN. PHAROENSIS\":\"9.0\",\"OVERALL KILLING EFFECT (%) - AN. COUSTANI\":20.0}}\n", - "\n", - "header: Methods\n", - "\n", - "This study was conducted from September 2015 to January 2016 near the Gilgel-Gibe hydroelectric dam area, southwestern Ethiopia. The hydroelectric dam is one of the major hydroelectric dams in Ethiopia with artificial reservoir occupying an estimated area of 62 kmsq,6 It produces around 184 MWh and is located 260 km southwest of the capital Addis Ababa. It has been functional since 2004. The study area is located between latitudes 7*42*50*7N and 07*53*50*7N and longitudes 37*11*22*7E and 37*20*36*E with an altitude ranging from 1672-1864 m above sea level. The area has a sub-humid, warm to hot climate, obtains between 1300 and 1800 mm of rainfall annually and has a mean annual temperature of 19*C. Mostly, the 2 peak seasonal transmissions of malaria occur during the months of September to December and March to May in the study area.\n", - "\n", - "Bio-efficacy testing of LLIN (DuraNet\\({}^{\\text{\\text{\\textregistered}}}\\)) under laboratory setting\n", - "\n", - "\\(LLIN\\)_sample preparation and washing process._ DuraNet\\({}^{*}\\) LLINs (Karur, Tamil Nadu 639006, and India) is treated with alpha-cypermethrin at a target dose of 250 mg/m\\({}^{2}\\) of netting material. It contains 0.55% W/W \\(\\pm\\) 15% alpha-cypermethrin. The alpha-cypermethrin chemical is coated onto filaments at bursting strength of 450 kPa of netting material and of 145 \\(\\pm\\) 5% for seam sub-section per denier yarn. Prior to testing the production date and batch number of all nets were recorded. Seven sub-samples per net (1 from the roof, the rest from side of the net) were taken from each net and prepared for standard LLINs cone tests by cutting 25 cm \\(\\times\\) 25 cm pieces following WHO protocol.7 In this study, 9 candidate nets were used for bio-efficacy testing. Thus, a total of 63 sub-sample net pieces (7 sub-sample pieces from each net \\(\\times\\) 9 DuraNet\\({}^{*}\\)s) individually rolled up in aluminum foil, labeled (by net type, net number and sample area) and kept in a refrigerator prior to the assay. Concurrently 9 (1 sub-sample piece from each untreated DuraNet\\({}^{*}\\)\\(\\times\\) 9 untreated DuraNet\\({}^{*}\\)s) sub-samples (30 cm \\(\\times\\) 30 cm) were individually rolled up in aluminum foil, labeled and kept in a refrigerator prior to the assay.\n", - "\n", - "header: Abstract\n", - "\n", - "Evaluation of Long-Lasting Insecticidal Nets (DuraNet(r)) Under laboratory and Semi-Field Conditions Using Experimental Huts Against _Anopheles Mosquitoes_ in\n", - "\n", - "Jimma Zone\n", - "\n", - " Southwestern Ethiopia\n", - "\n", - "B. Gebremariam(r), W. Birke, W. Zeine, A. Ambelu\n", - "\n", - "\n", - "\n", - "Long-Lasting insecticidal Nets (LLINs) efficacy could be compromised due to a lot of influences together with user compliance and vector population insecticide resistance status. Thus, this study was to assess the biological efficacy of DuraNet(r) with the help of the World Health Organization cone bioassay and field experimental hut.\n", - "\n", - "header: Mosquito collection, identification and key parameters measured in determination of LLINs efficacy\n", - "\n", - "Mosquitoes were collected from 6:00 to 7:00 each morning inside bed nets, floors, walls, ceilings, and verandas of each experimental hut by the help of mouth aspirators and torches. Then the collected mosquitoes were recorded as dead or alive. Live mosquitoes were held in paper cups and supplied with 10% sucrose solution. The collected mosquitoes were transported to Asendabo Vector Biology Laboratory, Jimma University, where mosquitoes were sorted by genus, sex and morphologically identified using taxonomic keys [9]. Mosquitoes were also scored for their physiological state as unfed, fed, half gravid and gravid. Delayed mortality was recorded after 24 hours. To evaluate the efficacy of DuraNet LLIN against the resistant populations of _An. arabiensis_, different entomological parameters (deterrence, exit, blood feeding inhibition, and mortality rates) were derived from basic measurements.\n", - "\n", - "The primary outcomes were:\n", - "\n", - "1. Deterrence--the reduction in entry in to treatment hut relative to the control hut (ie, huts holding untreated nets);\n", - "2. Mortality--the proportion of mosquitoes killed relative to the total catch size;\n", - "3. Killing effect--the numbers killed by a treatment relative to the untreated control, as derived from the formula; \\[\\text{Killing effect}\\left( \\% \\right) = \\left( \\frac{Kt-Ku}{Tu} \\right) \\ast 100\\]\n", - "\n", - "Where **Kt** is the number dead mosquitoes in the huts with treated nets, **Ku** is the number dead mosquitoes in the huts with untreated nets, and **Tu** is the total entering the huts with untreated nets.\n", - "\n", - "1. Blood Feeding Inhibition-The proportional reduction in blood feeding in huts with treated nets relative to controls with untreated nets.\n", - "\n", - "Figure 1: Experimental hut design of the study.\n", - "\n", - "\n", - "5. Personal Protection--The reduction in mosquito biting by treated nets relative to untreated nets, as derived from the formula \\[\\%\\text{personal protection} = (\\frac{Bu-Bt}{Bu})*100\\]\n", - "\n", - "Where Bu is the total number blood fed mosquitoes in the huts with untreated nets, and Bt is the total number blood fed in the huts with treated nets.\n", - "\n", - "header: Introduction\n", - "\n", - "Malaria is still one of highest health risks in developing countries with high morbidity and mortality in under 5 children. Assessment of overall economic impact of the disease shows that it accounts for 40% of health cost spending, 30% to 50% of inpatient charges, and up to 50% of outpatient official visits in areas with great malaria.1 According to the world health organization, there were 216 million new incidents of malaria leading to 445 000 death, of which 90% occurred in African countries.2\n", - "\n", - "Footnote 1: [https://developers.com/en/article/](https://developers.com/en/article/)\n", - "\n", - "Long-Lasting insecticidal Nets (LLINs) are uppermost community health apparatuses and, when used by children and pregnant women, subsidize to improving motherly, neonatal, and infant health, with long-lasting reimbursements to the emerging child.3 These nets provide personal barrier from bite by mosquitoes in addition those nets lessen also the transmission of malaria and have excito-repellency effect.4 A total of 505 million insecticidal nets (ITNs) were distributed in developing countries between 2014 and 2016 with household ownership of at least 1 insecticidal net, improved from 50% in 2010 to 80% in 2016. Nevertheless, the ratio of houses with adequate bed nets (ie, 1 net for every 2 people) is very low (43%).2 Following the high demand of bed nets as key vector control intervention, companies are ramping up production and new brand nets are being introduced for public health utilization.\n", - "\n", - "Footnote 2: [https://developers.com/en/article/](https://developers.com/en/article/)\n", - "\n", - "In order for any new long-lasting insecticidal nets to be used in public health, it must gain WHOPES approval.5 The approval process passes through 3 stages of efficacy testing (laboratory, small-scale semi-field, and large-scale field trial). To be classified as a long-lasting insecticidal net, it must \n", - "maintain their effective biological activity for at least 20 World Health Organization recommended washes typical washes under laboratory conditions and 3 years of suggested use under semi-field and field condition.\n", - "\n", - "DuraNet\\({}^{*}\\) is an LLIN developed by the Shobikaa Impex pvt Ltd (Karur, Tamil Nadu 639006, and India). It contains 0.55% w/w \\(\\pm\\) 15% alpha-cypermethrin. The net is a polyethylene fiber coated with a proprietary polymer containing target dose of alpha-cypermethrin at 250 mg/m\\({}^{2}\\). The polymer binds to the fiber and can withstand multiple washings, the active ingredient diffusing in a controlled manner to the surface of the polymer coat to maintain insecticidal efficacy.\n", - "\n", - "Thus, this study was conducted to verify the intended efficacy of the product in the presence of pyrethroid resistance vector population of _An. gambiae_ s.l. using cone bioassay and semi-field experimental huts in southwestern Ethiopia. The cone bioassays were conducted in Tropical and Infectious diseases research institute, Jimma University. The experimental hut study trials were undertaken near the Gilgel-Gibe hydroelectric power dam-I.\n", - "\n", - "header: ORCID iD\n", - "\n", - "Brhane Gebremariam (c) [https://orcid.org/0000-0002-0824-3221](https://orcid.org/0000-0002-0824-3221)\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ClinicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `ClinicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `ClinicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}, \"Start_month\": {\"title\": \"Start Month\", \"description\": \"Numerical start month of the reporting period (some studies may report multiple time periods)\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Hut trial\",\"Country\":\"Ethiopia\",\"Site\":\"Southwestern Ethiopia\",\"Start_month\":9,\"Start_year\":2015,\"End_month\":1,\"End_year\":2016}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Concentration_initial\": {\"title\": \"Insecticide concentration (initial)\", \"description\": \"Enter the initial concentration of the insecticide(s) for net type at the time of distribution.\"}, \"Net_washed\": {\"title\": \"Net Washed\", \"description\": \"Numerical count of number of net washes - 0 if none and NA if not reported.\"}, \"Net_holed\": {\"title\": \"Net Holed\", \"description\": \"Numerical count of the number of holes a net has - 0 if new and NA if not reported\\nNote - for tunnel tests there are holes that allow the mosquitoes the option of passing through to feed on the guinea pig.\"}, \"Net_age\": {\"title\": \"Net Age\", \"description\": \"Age of the net in months - if reported (some studies return to villages with nets given 1-2 years prior). When a range of net age's are given, use the midpoint in the range or the median in a distribution.\"}, \"pHI_category\": {\"title\": \"Phi Category\", \"description\": \"Classification of the nets holed surface area, as one of \\\"Good\\\", \\\"Damaged\\\", \\\"Torn\\\", \\\"Serviceable\\\", or \\\"All\\\", as proposed by WHO\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"DuraNet\",\"Insecticide\":\"alpha-cypermethrin\",\"Concentration_initial\":\"0.55% W\\/W \\u00b1 15%\",\"Net_washed\":0.0,\"Net_holed\":6.0,\"Net_age\":\"NA\",\"pHI_category\":\"NA\"},\"N02\":{\"Net_type\":\"DuraNet\",\"Insecticide\":\"alpha-cypermethrin\",\"Concentration_initial\":\"0.55% W\\/W \\u00b1 15%\",\"Net_washed\":20.0,\"Net_holed\":6.0,\"Net_age\":\"NA\",\"pHI_category\":\"NA\"},\"N03\":{\"Net_type\":\"PermaNet 2.0\",\"Insecticide\":\"pyrethroid\",\"Concentration_initial\":null,\"Net_washed\":0.0,\"Net_holed\":6.0,\"Net_age\":\"NA\",\"pHI_category\":\"NA\"},\"N04\":{\"Net_type\":\"PermaNet 2.0\",\"Insecticide\":\"pyrethroid\",\"Concentration_initial\":null,\"Net_washed\":20.0,\"Net_holed\":6.0,\"Net_age\":\"NA\",\"pHI_category\":\"NA\"}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Background: Methods\n", - "\n", - "A laboratory and a semi-field conditions experimental huts against _Anopheles_ Mosquitoes were conducted in southwestern Ethiopia from September 2015 to January 2016. The bio efficacy of DuraNet(r) was evaluated using the WHO cone bioassay test and then its field efficacy was evaluated using experimental huts against the malaria vector population.\n", - "\n", - "header: Blood feeding inhibition and personal protection.\n", - "\n", - "Unwashed DuraNet* showed strong and better bio-efficacy in terms of blood feeding inhibition when compared to untreated DuraNet* and the rest of the treatment arms. The mean blood feeding rate of mosquitoes collected from a hut with unwashed DuraNet*, Unwashed PernaNet 2.0, twenty times washed DuraNet*, 20 times washed PernaNet 2.0 and Untreated DuraNet*, was 0.8/person-night, 4.1/person-night, 5.7/person-night, 6.0/person-night, and 7.0/person-night respectively. There was significant reduction (_P_ <.001) in blood feeding inhibition in all the treatment arms (hut with unwashed DuraNet*, but with 20 times washed DuraNet*, but with\n", - "\n", - "Figure 2: Mean percent knockdown and mortality of _An. arabiensis_ exposed in 3 minutes cone bioassay to DuraNet®, dimma, and southwestern Ethiopia.\n", - "\n", - "\n", - "unwashed PermaNet 2.0, hut with 20 times washed permanent 2.0) when compared to hut with untreated DuraNet*(control). Blood feeding inhibition can be also expressed as personal protection and unwashed DuraNet* showed the highest personal protection 88.7%, 100%, and 93.3% against _An. arabiensis, An. pbaroensis_, and _An. coustani_, respectively. Both PermaNet 2.0 twenty times washed and DuraNet* washed twenty times showed low to moderate personal protection (45.6% against _An. arabiensis_ to 83% against _An. pbaroensis_) when compared to untreated DuraNet* (Table 2).\n", - "\n", - "header: Limitation\n", - "\n", - "In this study, supplementary test like chemical assays were not conducted to measure the total insecticide content of the netting before and after wash resistance studies that support better interpretation of the results.\n", - "\n", - "header: CONCLUSION\n", - "\n", - "Both DuraNet(r) and PermanNet 2.0 moderate efficacy against a pyrethroid-resistant population of _An. araabensis_ from Ethiopia. The bio efficacy of DuraNet(r) was found below the WHO recommendation. Therefore, the real impact of the observed insecticide resistance against DuraNet(r) to be further studied under phase-III trials, the need for new alternative vector control tools remains critical.\n", - "\n", - "header: Mosquito mortality, blood feeding and exit rates.\n", - "\n", - "Mosquito blood feeding rates, mortality rates and exit rates of the 5 treatments are presented in Table 1. The mean blood feeding rate was significantly lower (_P_ <.001) in hut containing unwashed DuraNet* when compared to hut containing untreated DuraNet*. However, there was no significance difference (_P_ >.05) in blood feeding rate among huts containing untreated DuraNet*, 20 times washed DuraNet*, unwashed PernaNet* 2.0 and 20 times washed PernaNet*2.0. The mean mortality rate was significantly higher (_P_ <.001) among huts containing treated DuraNet*, 20 times washed DuraNet*, unwashed PernaNet* 2.0 and 20 times washed PernaNet* 2.0 when compared to hut containing untreated DuraNet*. Higher mean number of mosquitoes were caught while exiting the huts containing treated DuraNet*, 20 times washed DuraNet*, unwashed PernaNet* 2.0 and 20 times washed PernaNet* 2.0 when compared to hut containing untreated DuraNet*, however, there was no significant difference (_P_ >.05) among the treatments.\n", - "\n", - "header: The killing effect DuraNet*\n", - "\n", - "DuraNet* (both unwashed and 20 times washed) showed low to moderate killing efficacy (65.93% to 54.03%) against vector population of _An. arabiensis_. Whereas, against _An. pbaroensis_, both unwashed and washed DuraNet* showed no evidence of killing effect (0.00 to 9.0%). Similarly, PermaNet 2.0 (unwashed and washed) showed low to moderate killing effect against population of _An. arabiensis_ (Table 3).\n", - "\n", - "header: Results\n", - "\n", - "World Health Organization cone bioassay tests against pyrethroid-resistant _An. araabensis_ led to mean percent mortality and knockdown of 78% and 93%, respectively. Washing of DuraNet(r) successively reduced its efficacy from 93% knockdown (0 wash) to 45% knockdown (20 washes). Similarly, mean mortality decreased from 84% (wash) to 47% (20 washes). A total of 1575 female mosquitoes were collected over 40 nights out of which 13738(87.8%) were _An. amabise._ Is Title (74%) were _An. amabensis_. The mean blood-feeding rate was significantly lower (_P_<.001) in hut containing unwashed DuraNet(r) when compared to hut containing untreated DuraNet(r). The mean mortality rate was significantly higher (_P_<.001) in hut containing DuraNet(r) when compared to hut containing untreated DuraNet(r). Unwashed DuraNet(r) showed the highest personal protection 88.7% and 100% against _An. araabensis_ and _An. araabensis_, respectively.\n", - "\n", - "header: Results\n", - "\n", - "Exposure of wild population of _An. arabiensis_ mosquitoes to net sections of DuraNet* LLIN in WHO bioassay tests gives mean mortality rate of 78% as well as mean knockdown effect of 93%. Mean percent knockdown and percent mortality of DuraNet* LLIN showed significant relationship (\\(R^{2}\\) = 0.797, n = 260, \\(P\\) <.001). The wash resistance activity of DuraNet* LLINs, measured in terms of percent knockdown and mortality is presented in Figure 2. The mean percent knockdown of wild population of _An. arabiensis_ decreased from 93% to 45% up on exposure to the DuraNet* washed 0 and 20 times respectively. The mean percent mortality decreased from 84% to 47% on exposure to the DuraNet* washed 0 and 20 times, respectively. Wash resistance has negative correlation with percent knockdown and percent mortality which means as number of wash increase, percent knockdown and percent mortality declined (\\(r^{2}\\) = 0.333, 96KD = 89.16 \\(\\pm\\) 2.15, \\(P\\) <.001 and \\(r^{2}\\) = 0.236, 90Mt = 81.94 \\(\\pm\\) 1.68, \\(P\\) <.001), respectively.\n", - "\n", - "header: Table 1: Mean blood feeding, mortality and exit rates of populations of An. arabiensis exposed to different bed net types in field experimental huts in southwestern Ethiopia.\n", - "footer: Means within the same column and with different letters are signi\u001fcantly different using Tukey means separation test.**Significant at P<.001. *Significant at P<.05.\n", - "\n", - "\n", - "columns: ['TREATMENTS', 'BLOOD-FEEDING RATE MEAN ± SE', 'MORTALITY RATE MEAN ± SE', 'EXIT RATE MEAN ± SE']\n", - "\n", - "{\"0\":{\"TREATMENTS\":\"Untreated DuraNet\\u00ae\",\"BLOOD-FEEDING RATE MEAN \\u00b1 SE\":\"77.70 \\u00b1 7.30\",\"MORTALITY RATE MEAN \\u00b1 SE\":\"6.61 \\u00b1 3.80**\",\"EXIT RATE MEAN \\u00b1 SE\":\"26.77 \\u00b1 5.51\"},\"1\":{\"TREATMENTS\":\"Unwashed DuraNet\\u00ae\",\"BLOOD-FEEDING RATE MEAN \\u00b1 SE\":\"5.80 \\u00b1 2.32**\",\"MORTALITY RATE MEAN \\u00b1 SE\":\"52.38 \\u00b1 5.62\",\"EXIT RATE MEAN \\u00b1 SE\":\"40.42 \\u00b1 5.22\"},\"2\":{\"TREATMENTS\":\"20\\u00d7 washed DuraNet\\u00ae\",\"BLOOD-FEEDING RATE MEAN \\u00b1 SE\":\"55.94 \\u00b1 6.78\",\"MORTALITY RATE MEAN \\u00b1 SE\":\"28.17 \\u00b1 6.57*\",\"EXIT RATE MEAN \\u00b1 SE\":\"36.24 \\u00b1 5.50\"},\"3\":{\"TREATMENTS\":\"Unwashed PermaNet\\u00ae 2.0\",\"BLOOD-FEEDING RATE MEAN \\u00b1 SE\":\"53.39 \\u00b1 5.89\",\"MORTALITY RATE MEAN \\u00b1 SE\":\"61.74 \\u00b1 6.09\",\"EXIT RATE MEAN \\u00b1 SE\":\"48.16 \\u00b1 5.53\"},\"4\":{\"TREATMENTS\":\"20\\u00d7 washed PermaNet\\u00ae 2.0\",\"BLOOD-FEEDING RATE MEAN \\u00b1 SE\":\"53.35 \\u00b1 7.01\",\"MORTALITY RATE MEAN \\u00b1 SE\":\"39.87 \\u00b1 6.34\",\"EXIT RATE MEAN \\u00b1 SE\":\"35.32 \\u00b1 5.78\"}}\n", - "\n", - "header: Discussion\n", - "\n", - "Insecticide resistance remains major threat against the efficacy of long-lasting insecticidal nets, which are key intervention tools in controlling malaria vector. In this study laboratory bioassay was initially conducted using field collected larvae raised to adult population of _An. arabiensis_ to assess the bio-efficacy of unwashed DuraNet* (candidate bed net) and untreated DuraNet* (negative control). Furthermore, field experimental study was conducted on bio-efficacy of unwashed DuraNet* and PermaNet 2.0 following WHOPES standard guidelines in order to corroborate the laboratory findings.5\n", - "\n", - "The cone bioassay tests indicated that exposure of population of _An. arabiensis_ mosquitoes from Gilgel-Gibe area, southwestern Ethiopia, to sections of DuraNet* LLIN resulted in mean knockdown and mean mortality of 93% and 78%, respectively. The mortality result is slightly lower than the range of WHO recommendation (>80%) for public health application. The knockdown effect also is slightly below the required WHOPES recommended levels of 95% and above. In contrast to the above results earlier bio efficacy tests conducted using unwashed DuraNet* in India (Sood et al10; Gunasekaran et al11) showed 100% efficacy when tested against populations of different species of _amopheles_. The slight decline in bio-efficacy of DuraNet* in this study may be due to resistance development of vector populations of _An. arabiensis_ in the study area.8,12 In Ethiopia, Previous studies indicate that populations of _An. Arabiensis_ have developed resistance against insecticides used for net impregnation.13-17\n", - "\n", - "Wash resistant long-lasting insecticidal nets treated with pyrethroids are viewed as an important device in the area of vector control that would lessen the difficulties related to retreating conventional insecticide treated nets.[18] DuraNet*, the alpha-cypermethrin treated net, has similar conditions as that of Interceptor* LLIN and PermaNet* 3.0, which had been given interim but full recommendation since June 2017 by WHOPES.[19]\n", - "\n", - "In current study, DuraNet* showed reduced washing resistance. This is reflected in continues decrease of both mean percent knockdown and mean percent mortality of population of _An. arabiensis_ on exposure to the DuraNet* washed 0 and 20 times, respectively. This is in contrast to the study done by Sood et al[10] which showed no significant difference in percent mortality and percent knockdown of population of _An. caliticiacis_ between unwashed and 20 times washed DuraNet* in India. However, in the same study by Sood et al,[10] DuraNet* showed 100% knockdown but only 45% mortality after 20 washes against _Anopheles gambiae_ which is also consistent with current results. Wash resistance technology is added to the LLIN's materials with the assumption of pyrethroid chemicals such as Alphacypermethrin should have a strong affinity to the polyester netting fibers so that even after forceful washing a thin layer of pyrethroid, practically undetectable by High Performance Liquid Chromatography yet adequately bio active to encourage knockdown and mortality should still continue bound to the fibers.\n", - "\n", - "Comparison of mosquito density collected from experimental huts with (unwashed DuraNet*, 20 times washed DuraNet*, unwashed PermaNet*2.0, 20 times washed PermaNet*2.0, and untreated DuraNet*) showed no clear evidence of deterrence associated with any of the treatments however; there were fewer _An. Arabiensis_ in huts with the unwashed DuraNet* compared to untreated DuraNet*. Likewise, a study carried out by Asale et al[8] using experimental huts in the study area showed the absence of significance variation in deterrence among huts containing unwashed PermaNet*2.0, untreated net and DDT sprayed hut. The possible explanation for the absence of significant variation in mosquito density among treatment arms could be accounted to low number of mosquito catches during the study period but the impact of insecticide resistance on the efficacy of the nets to be further studied in phase-III trials.\n", - "\n", - "In this study significant reduction in blood feeding rate was observed in hut containing unwashed DuraNet* when compared to hut containing untreated DuraNet*. Similarly, higher mean mosquito mortality rate was recorded among huts containing treatment arms when compared to hut containing control net (untreated DuraNet*). The results for DuraNet* are new report from Jimma area thus we could not corroborate but, Vector population of _An. arabiensis_ from the study area showed no significant reduction of mortality rate, exit pattern and blood feeding inhibition when tested against PermaNet 2.0.[8]\n", - "\n", - "In this study, DuraNet* and PermaNet 2.0 showed low to moderate killing efficacy against vector population of _An. arabiensis_. Moreover, both DuraNet* and PermaNet 2.0 showed no evidence of killing effect against _An. pbarensis_. According to Kitau et al[20] LLINs and ITNs treated with pyrethroids were more effective at killing _An. gambiae_ and _An. fintetus_ than _An. arabiensis_. Thus, the variations in the outcome variables of Anopheles shown above (DuraNet* and PermaNet 2.0) may be due to different susceptibility status and species differences.\n", - "\n", - "header: Study area and period: Mosquito rearing and cone bioassay testing.\n", - "\n", - "Anopheles mosquito larvae were collected from field sites near Gilgel-Gibe hydroelectric power production reservoir and reared to adults under standard conditions (25 \\(\\pm\\) 20*C temperature,80 \\(\\pm\\) 4% relative humidity) in tropical and infectious diseases research institute, Sekoru campus, Jimma University, Ethiopia. For WHO cone bioassay test, five 2-5 days age unfed female _An. gambiae s.l._ (presumably _An. ankiensis_ according to Yewhalaw et al., (2009))\\(\\%\\) mosquitoes were used per cone. Twenty mosquitoes (5 mosquito\\({}^{\\text{\\textregistered}}\\) per-cone \\(\\times\\) 4 cone-per sub-sample net piece) were introduced into the cone facing net sample for 3 minutes and then moved to holding paper cups. Then mosquitoes were supplied with a 10% sucrose solution. The number of mosquitoes knocked down and the number of dead mosquitoes were recorded every 10 minute within 60 minutes and 24 hours, respectively. Mosquitoes exposed to untreated DuraNet\\({}^{*}\\) pieces were used as controls and experiment conditions were set to be 27 \\(\\pm\\) 2*C temperature and 75 \\(\\pm\\) 10% relative humidity (RH) throughout the study. Thus, a total of 1260 mosquitoes (63 net sub-samples \\(\\times\\) 20 mosquitoes per sub-sample net) were used for complete bioassay testing and another 180 mosquitoes (9 untreated net sub-samples \\(\\times\\) 20 mosquitoes per sub-sample net) were used as control.\n", - "\n", - "For net pieces washing each net sub-samples (25 cm \\(\\times\\) 25 cm) were introduced individually into 1-1 beakers containing 0.5 l deionized water, with 2 g/l WHO recommended soap (Savon de Marseille; pH 10-11) added and fully dissolved just before washing. The beakers were then introduced into a water-bath at 30*C and shaken for 10 min at 155 movements per minute. The samples were then removed, rinsed twice for 10 min in clean, deionized water under the same shaking conditions as above, dried at room temperature and stored at 30*C in the dark between washes.\n", - "\n", - "header: Table 2. Blood-feeding inhibition and personal protection due to DuraNet® LLIN in the experimental huts, southwestern Ethiopia.\n", - "footer: *Significant at P<.05. **Significant at P<.01.\n", - "columns: ['TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2', 'PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)', 'PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)', 'PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)']\n", - "\n", - "{\"0\":{\"TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2\":\"Untreated DuraNet\\u00ae (NC)\",\"PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)\":\"232 (0**)\",\"PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)\":\"43 (0**)\",\"PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)\":\"30 (0*)\"},\"1\":{\"TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2\":\"Unwashed DuraNet\\u00ae\",\"PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)\":\"24 (88.7**)\",\"PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)\":\"00 (100**)\",\"PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)\":\"2 (93.3*)\"},\"2\":{\"TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2\":\"20\\u00d7 washed DuraNet\\u00ae\",\"PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)\":\"176 (42.4)\",\"PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)\":\"27 (62.8)\",\"PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)\":\"5 (83.3*)\"},\"3\":{\"TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2\":\"Unwashed PermaNet\\u00ae 2.0 (PC)\",\"PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)\":\"131 (45.6)\",\"PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)\":\"11 (83**)\",\"PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)\":\"16 (46.6)\"},\"4\":{\"TREATMENT - Unnamed: 0_level_1 - Unnamed: 0_level_2\":\"20\\u00d7 washed PermaNet\\u00ae 2.0\",\"PERSONAL PROTECTION - AN. ARABIENSIS (WILD) - N (%)\":\"192 (38.6)\",\"PERSONAL PROTECTION - AN. PHAROENSIS (WILD) - N (%)\":\"6 (75)\",\"PERSONAL PROTECTION - AN. COUSTANI (WILD) - N (%)\":\"33 (0*)\"}}\n", - "\n", - "header: Cone bioassay and washing resistance: Experimental but trial\n", - "\n", - "_Mosquito entry into the bus._ A total of 1575 Anopheles mosquitoes were entered and collected in the 40 nights during the trial. These consisted of 1373 (87.8%) _An. gambiae_ s.l. presumably _An. arabiensis_ (Yewhalaw et al., 2009), 116 (7.4%) _Angelo custani_ (Laveran), and 107 (6.8%) _An. phareensis_ (Theobald). The mean number of mosquitoes caught per night was 8.75 for _An. arabiensis_, 5.52 for _An. Coastani_, and 6.33 for _An. pharensis._ The mean mosquito entry is not significantly different among the treatment arms (F = 1.277, \\(P\\) >.05). There was no clear evidence of deterrence associated with any of the treatments however; there were fewer _An. Arabiensis_ in huts with the Unwashed DuraNet* compared to treated DuraNet* and PernaNet* 2.0 (Table 2).\n", - "\n", - "header: Experimental but establishment.: Treatment arms and sleepers rotation\n", - "\n", - "In this experiment, 5 different treatment arms were used. These include (1) Untreated unwashed DuraNet(Negative control) (2) Unwashed treated DuraNet(3) treated DuraNet(20 times washed (4) PermaNet(4) 2.0 20 times washed, and (5) unwashed PermaNet(4) 2.0 (positive control). All nets were 75 denier polyethylene and polyester nets respectively. To simulate wear and tear condition of nets under usage 6 (4 cm \\(\\times\\) 4 cm size) holes were cut in each net (2 holes on each of the sides and 1 hole at each end). The DuraNet(4) LLIN and PermaNet(4) 2.0 were washed according to World Health Organization Stage II washing procedure [5]. For washing, the nets were put in to aluminum bowl with 10 l of tap water and 2g/l of savon de Marseille soap. The nets were agitated for 3 minutes, then soaked for 4 minutes, and agitated again for 3 minutes. The nets were agitated manually by stirring them with a pole at 20 rotations per minute. Thus, each net was washed for a total of 10 minute and then rinsed with clean water by a similar procedure, dried horizontally in the shade and stored at ambient temperature between washes. WHO recognized PermaNet(4) 2.0 LLIN washed 20 times, was used as a positive control to assess DuraNet(4) LLIN performance.\n", - "\n", - "In each data collection night, 2 non-smoker male volunteers aged 20 to 25 were allowed to sleep in each experimental hut with its door remain closed between 19:00 and 07:00 hours. Each team was rotated between treatments on successive nights within a week to avoid possible bias which could arise due to individual attractiveness to mosquitoes. There were 5 successive collection nights (Monday to Friday) and 2 successive break nights for hut ventilation per week. Thus, there were 25 collection nights in order to complete the whole study. Informed written consent was obtained from each sleeper.\n", - "\n", - "header: ORCID iD\n", - "\n", - "Brhane Gebremariam (c) [https://orcid.org/0000-0002-0824-3221](https://orcid.org/0000-0002-0824-3221)\n", - "\n", - "header: Table 3. The overall killing effect of DuraNet® LLIN in experimental hut.\n", - "footer: None\n", - "columns: ['TREATMENT', 'OVERALL KILLING EFFECT (%) - AN. ARABIENSIS', 'OVERALL KILLING EFFECT (%) - AN. PHAROENSIS', 'OVERALL KILLING EFFECT (%) - AN. COUSTANI']\n", - "\n", - "{\"0\":{\"TREATMENT\":\"Unwashed DuraNet\\u00ae\",\"OVERALL KILLING EFFECT (%) - AN. ARABIENSIS\":65.93,\"OVERALL KILLING EFFECT (%) - AN. PHAROENSIS\":\"0.0*\",\"OVERALL KILLING EFFECT (%) - AN. COUSTANI\":12.33},\"1\":{\"TREATMENT\":\"20\\u00d7washed DuraNet\\u00ae\",\"OVERALL KILLING EFFECT (%) - AN. ARABIENSIS\":54.03,\"OVERALL KILLING EFFECT (%) - AN. PHAROENSIS\":\"9.0\",\"OVERALL KILLING EFFECT (%) - AN. COUSTANI\":13.4},\"2\":{\"TREATMENT\":\"Unwashed PermaNet\\u00ae 2.0 (PC)\",\"OVERALL KILLING EFFECT (%) - AN. ARABIENSIS\":64.81,\"OVERALL KILLING EFFECT (%) - AN. PHAROENSIS\":\"2.25\",\"OVERALL KILLING EFFECT (%) - AN. COUSTANI\":39.7},\"3\":{\"TREATMENT\":\"20\\u00d7 washed PermaNet\\u00ae 2.0\",\"OVERALL KILLING EFFECT (%) - AN. ARABIENSIS\":39.81,\"OVERALL KILLING EFFECT (%) - AN. PHAROENSIS\":\"9.0\",\"OVERALL KILLING EFFECT (%) - AN. COUSTANI\":20.0}}\n", - "\n", - "header: Methods\n", - "\n", - "This study was conducted from September 2015 to January 2016 near the Gilgel-Gibe hydroelectric dam area, southwestern Ethiopia. The hydroelectric dam is one of the major hydroelectric dams in Ethiopia with artificial reservoir occupying an estimated area of 62 kmsq,6 It produces around 184 MWh and is located 260 km southwest of the capital Addis Ababa. It has been functional since 2004. The study area is located between latitudes 7*42*50*7N and 07*53*50*7N and longitudes 37*11*22*7E and 37*20*36*E with an altitude ranging from 1672-1864 m above sea level. The area has a sub-humid, warm to hot climate, obtains between 1300 and 1800 mm of rainfall annually and has a mean annual temperature of 19*C. Mostly, the 2 peak seasonal transmissions of malaria occur during the months of September to December and March to May in the study area.\n", - "\n", - "Bio-efficacy testing of LLIN (DuraNet\\({}^{\\text{\\text{\\textregistered}}}\\)) under laboratory setting\n", - "\n", - "\\(LLIN\\)_sample preparation and washing process._ DuraNet\\({}^{*}\\) LLINs (Karur, Tamil Nadu 639006, and India) is treated with alpha-cypermethrin at a target dose of 250 mg/m\\({}^{2}\\) of netting material. It contains 0.55% W/W \\(\\pm\\) 15% alpha-cypermethrin. The alpha-cypermethrin chemical is coated onto filaments at bursting strength of 450 kPa of netting material and of 145 \\(\\pm\\) 5% for seam sub-section per denier yarn. Prior to testing the production date and batch number of all nets were recorded. Seven sub-samples per net (1 from the roof, the rest from side of the net) were taken from each net and prepared for standard LLINs cone tests by cutting 25 cm \\(\\times\\) 25 cm pieces following WHO protocol.7 In this study, 9 candidate nets were used for bio-efficacy testing. Thus, a total of 63 sub-sample net pieces (7 sub-sample pieces from each net \\(\\times\\) 9 DuraNet\\({}^{*}\\)s) individually rolled up in aluminum foil, labeled (by net type, net number and sample area) and kept in a refrigerator prior to the assay. Concurrently 9 (1 sub-sample piece from each untreated DuraNet\\({}^{*}\\)\\(\\times\\) 9 untreated DuraNet\\({}^{*}\\)s) sub-samples (30 cm \\(\\times\\) 30 cm) were individually rolled up in aluminum foil, labeled and kept in a refrigerator prior to the assay.\n", - "\n", - "header: Abstract\n", - "\n", - "Evaluation of Long-Lasting Insecticidal Nets (DuraNet(r)) Under laboratory and Semi-Field Conditions Using Experimental Huts Against _Anopheles Mosquitoes_ in\n", - "\n", - "Jimma Zone\n", - "\n", - " Southwestern Ethiopia\n", - "\n", - "B. Gebremariam(r), W. Birke, W. Zeine, A. Ambelu\n", - "\n", - "\n", - "\n", - "Long-Lasting insecticidal Nets (LLINs) efficacy could be compromised due to a lot of influences together with user compliance and vector population insecticide resistance status. Thus, this study was to assess the biological efficacy of DuraNet(r) with the help of the World Health Organization cone bioassay and field experimental hut.\n", - "\n", - "header: Introduction\n", - "\n", - "Malaria is still one of highest health risks in developing countries with high morbidity and mortality in under 5 children. Assessment of overall economic impact of the disease shows that it accounts for 40% of health cost spending, 30% to 50% of inpatient charges, and up to 50% of outpatient official visits in areas with great malaria.1 According to the world health organization, there were 216 million new incidents of malaria leading to 445 000 death, of which 90% occurred in African countries.2\n", - "\n", - "Footnote 1: [https://developers.com/en/article/](https://developers.com/en/article/)\n", - "\n", - "Long-Lasting insecticidal Nets (LLINs) are uppermost community health apparatuses and, when used by children and pregnant women, subsidize to improving motherly, neonatal, and infant health, with long-lasting reimbursements to the emerging child.3 These nets provide personal barrier from bite by mosquitoes in addition those nets lessen also the transmission of malaria and have excito-repellency effect.4 A total of 505 million insecticidal nets (ITNs) were distributed in developing countries between 2014 and 2016 with household ownership of at least 1 insecticidal net, improved from 50% in 2010 to 80% in 2016. Nevertheless, the ratio of houses with adequate bed nets (ie, 1 net for every 2 people) is very low (43%).2 Following the high demand of bed nets as key vector control intervention, companies are ramping up production and new brand nets are being introduced for public health utilization.\n", - "\n", - "Footnote 2: [https://developers.com/en/article/](https://developers.com/en/article/)\n", - "\n", - "In order for any new long-lasting insecticidal nets to be used in public health, it must gain WHOPES approval.5 The approval process passes through 3 stages of efficacy testing (laboratory, small-scale semi-field, and large-scale field trial). To be classified as a long-lasting insecticidal net, it must \n", - "maintain their effective biological activity for at least 20 World Health Organization recommended washes typical washes under laboratory conditions and 3 years of suggested use under semi-field and field condition.\n", - "\n", - "DuraNet\\({}^{*}\\) is an LLIN developed by the Shobikaa Impex pvt Ltd (Karur, Tamil Nadu 639006, and India). It contains 0.55% w/w \\(\\pm\\) 15% alpha-cypermethrin. The net is a polyethylene fiber coated with a proprietary polymer containing target dose of alpha-cypermethrin at 250 mg/m\\({}^{2}\\). The polymer binds to the fiber and can withstand multiple washings, the active ingredient diffusing in a controlled manner to the surface of the polymer coat to maintain insecticidal efficacy.\n", - "\n", - "Thus, this study was conducted to verify the intended efficacy of the product in the presence of pyrethroid resistance vector population of _An. gambiae_ s.l. using cone bioassay and semi-field experimental huts in southwestern Ethiopia. The cone bioassays were conducted in Tropical and Infectious diseases research institute, Jimma University. The experimental hut study trials were undertaken near the Gilgel-Gibe hydroelectric power dam-I.\n", - "\n", - "header: Mosquito collection, identification and key parameters measured in determination of LLINs efficacy\n", - "\n", - "Mosquitoes were collected from 6:00 to 7:00 each morning inside bed nets, floors, walls, ceilings, and verandas of each experimental hut by the help of mouth aspirators and torches. Then the collected mosquitoes were recorded as dead or alive. Live mosquitoes were held in paper cups and supplied with 10% sucrose solution. The collected mosquitoes were transported to Asendabo Vector Biology Laboratory, Jimma University, where mosquitoes were sorted by genus, sex and morphologically identified using taxonomic keys [9]. Mosquitoes were also scored for their physiological state as unfed, fed, half gravid and gravid. Delayed mortality was recorded after 24 hours. To evaluate the efficacy of DuraNet LLIN against the resistant populations of _An. arabiensis_, different entomological parameters (deterrence, exit, blood feeding inhibition, and mortality rates) were derived from basic measurements.\n", - "\n", - "The primary outcomes were:\n", - "\n", - "1. Deterrence--the reduction in entry in to treatment hut relative to the control hut (ie, huts holding untreated nets);\n", - "2. Mortality--the proportion of mosquitoes killed relative to the total catch size;\n", - "3. Killing effect--the numbers killed by a treatment relative to the untreated control, as derived from the formula; \\[\\text{Killing effect}\\left( \\% \\right) = \\left( \\frac{Kt-Ku}{Tu} \\right) \\ast 100\\]\n", - "\n", - "Where **Kt** is the number dead mosquitoes in the huts with treated nets, **Ku** is the number dead mosquitoes in the huts with untreated nets, and **Tu** is the total entering the huts with untreated nets.\n", - "\n", - "1. Blood Feeding Inhibition-The proportional reduction in blood feeding in huts with treated nets relative to controls with untreated nets.\n", - "\n", - "Figure 1: Experimental hut design of the study.\n", - "\n", - "\n", - "5. Personal Protection--The reduction in mosquito biting by treated nets relative to untreated nets, as derived from the formula \\[\\%\\text{personal protection} = (\\frac{Bu-Bt}{Bu})*100\\]\n", - "\n", - "Where Bu is the total number blood fed mosquitoes in the huts with untreated nets, and Bt is the total number blood fed in the huts with treated nets.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `EntomologicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `EntomologicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `EntomologicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}, \"Start_month\": {\"title\": \"Start Month\", \"description\": \"Numerical start month of the reporting period (some studies may report multiple time periods)\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Hut trial\",\"Country\":\"Ethiopia\",\"Site\":\"Southwestern Ethiopia\",\"Start_month\":9,\"Start_year\":2015,\"End_month\":1,\"End_year\":2016}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Concentration_initial\": {\"title\": \"Insecticide concentration (initial)\", \"description\": \"Enter the initial concentration of the insecticide(s) for net type at the time of distribution.\"}, \"Net_washed\": {\"title\": \"Net Washed\", \"description\": \"Numerical count of number of net washes - 0 if none and NA if not reported.\"}, \"Net_holed\": {\"title\": \"Net Holed\", \"description\": \"Numerical count of the number of holes a net has - 0 if new and NA if not reported\\nNote - for tunnel tests there are holes that allow the mosquitoes the option of passing through to feed on the guinea pig.\"}, \"Net_age\": {\"title\": \"Net Age\", \"description\": \"Age of the net in months - if reported (some studies return to villages with nets given 1-2 years prior). When a range of net age's are given, use the midpoint in the range or the median in a distribution.\"}, \"pHI_category\": {\"title\": \"Phi Category\", \"description\": \"Classification of the nets holed surface area, as one of \\\"Good\\\", \\\"Damaged\\\", \\\"Torn\\\", \\\"Serviceable\\\", or \\\"All\\\", as proposed by WHO\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"DuraNet\",\"Insecticide\":\"alpha-cypermethrin\",\"Concentration_initial\":\"0.55% W\\/W \\u00b1 15%\",\"Net_washed\":0.0,\"Net_holed\":6.0,\"Net_age\":\"NA\",\"pHI_category\":\"NA\"},\"N02\":{\"Net_type\":\"DuraNet\",\"Insecticide\":\"alpha-cypermethrin\",\"Concentration_initial\":\"0.55% W\\/W \\u00b1 15%\",\"Net_washed\":20.0,\"Net_holed\":6.0,\"Net_age\":\"NA\",\"pHI_category\":\"NA\"},\"N03\":{\"Net_type\":\"PermaNet 2.0\",\"Insecticide\":\"pyrethroid\",\"Concentration_initial\":null,\"Net_washed\":0.0,\"Net_holed\":6.0,\"Net_age\":\"NA\",\"pHI_category\":\"NA\"},\"N04\":{\"Net_type\":\"PermaNet 2.0\",\"Insecticide\":\"pyrethroid\",\"Concentration_initial\":null,\"Net_washed\":20.0,\"Net_holed\":6.0,\"Net_age\":\"NA\",\"pHI_category\":\"NA\"}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Results\n", - "\n", - "Among the 1784 participating homesteads with a population of 10 325, a total of 1551 households participated in the study (Table 1). Most of the heads of the households (age: 17-96 years) had received formal education and practiced farming (96.6%).\n", - "\n", - "Out of 100 heads of households with Olyset(r) Plus interviewed for adverse events, 44% reported itching, 4% eye irritation, and 7% unpleasant smell. Among the Olyset(r) Net users, 7% each reported nasal discharge and eye irritation. These were reported to be mild symptoms lasting for one or two days. To reduce these effects, 43% users of Olyset(r) Plus ventilated nets for a day in the open under the sun and 33% under the shade. Among Olyset(r) Net users, similar actions were taken by 44% and 39%, respectively.\n", - "\n", - "header: Table 7 Comparison of the estimates of the mean pHI and the mean hole area for O lyset® Plus and Olyset® Net\n", - "footer: pHI proportionate Hole Index\n", - "columns: ['Survey month', 'Olyset® Plus - No. of nets inspected', 'Olyset® Plus - Mean hole area in cm2 (± SD)', 'Olyset® Plus - Mean pHI (± SD)', 'Olyset® Net - No. of nets inspected', 'Olyset® Net - Mean hole area in cm2 (± SD)', 'Olyset® Net - Mean pHI (± SD)']\n", - "\n", - "{\"0\":{\"Survey month\":6,\"Olyset\\u00ae Plus - No. of nets inspected\":250,\"Olyset\\u00ae Plus - Mean hole area in cm2 (\\u00b1 SD)\":\"52.3 \\u00b1 230.5\",\"Olyset\\u00ae Plus - Mean pHI (\\u00b1 SD)\":\"93.3 \\u00b1 313.6\",\"Olyset\\u00ae Net - No. of nets inspected\":250,\"Olyset\\u00ae Net - Mean hole area in cm2 (\\u00b1 SD)\":\"123.3 \\u00b1 272.3\",\"Olyset\\u00ae Net - Mean pHI (\\u00b1 SD)\":\"110.5 \\u00b1 221.8\"},\"1\":{\"Survey month\":12,\"Olyset\\u00ae Plus - No. of nets inspected\":243,\"Olyset\\u00ae Plus - Mean hole area in cm2 (\\u00b1 SD)\":\"229.2 \\u00b1 574.2\",\"Olyset\\u00ae Plus - Mean pHI (\\u00b1 SD)\":\"153.6 \\u00b1 437.0\",\"Olyset\\u00ae Net - No. of nets inspected\":249,\"Olyset\\u00ae Net - Mean hole area in cm2 (\\u00b1 SD)\":\"192.5 \\u00b1 376.2\",\"Olyset\\u00ae Net - Mean pHI (\\u00b1 SD)\":\"156.8 \\u00b1 306.5\"},\"2\":{\"Survey month\":24,\"Olyset\\u00ae Plus - No. of nets inspected\":231,\"Olyset\\u00ae Plus - Mean hole area in cm2 (\\u00b1 SD)\":\"389.8 \\u00b1 975.4\",\"Olyset\\u00ae Plus - Mean pHI (\\u00b1 SD)\":\"317.6 \\u00b1 794.7\",\"Olyset\\u00ae Net - No. of nets inspected\":226,\"Olyset\\u00ae Net - Mean hole area in cm2 (\\u00b1 SD)\":\"873.9 \\u00b1 353.4\",\"Olyset\\u00ae Net - Mean pHI (\\u00b1 SD)\":\"279.4 \\u00b1 428.1\"},\"3\":{\"Survey month\":36,\"Olyset\\u00ae Plus - No. of nets inspected\":228,\"Olyset\\u00ae Plus - Mean hole area in cm2 (\\u00b1 SD)\":\"630.7 \\u00b1 1191.8\",\"Olyset\\u00ae Plus - Mean pHI (\\u00b1 SD)\":\"513.9 \\u00b1 970.9\",\"Olyset\\u00ae Net - No. of nets inspected\":216,\"Olyset\\u00ae Net - Mean hole area in cm2 (\\u00b1 SD)\":\"621.5 \\u00b1 1710.3\",\"Olyset\\u00ae Net - Mean pHI (\\u00b1 SD)\":\"506.4 \\u00b1 1393.2\"}}\n", - "\n", - "header: Table 5 Mean permethrin and PBO contents (relative standard deviation) in nets at baseline, and at 12, 24 and 36 months\n", - "footer: a Within net variation (relative standard deviation) in permethrin and PBO contents at baseline was 2.2% and 3.7%, respectively (Olyset® Plus). – not applicable, PBOpiperonyl butoxideb Within net variation (relative standard deviation) in permethrin content at baseline was 1.2% (Olyset® Net)\n", - "columns: ['Sampling month', 'Olyset® Plus - Mean permethrin content in g/kg (95% CI)', 'Olyset® Plus - Permethrin content lost (%)', 'Olyset® Plus - PBO content in g/ kg (95% CI)', 'Olyset® Plus - PBO content lost (%)', 'Olyset® Net - Mean permethrin content in g/kg (95% CI)', 'Olyset® Net - Permethrin content lost (%)']\n", - "\n", - "{\"0\":{\"Sampling month\":0,\"Olyset\\u00ae Plus - Mean permethrin content in g\\/kg (95% CI)\":\"18.4 (18.3\\u201318.6)a\",\"Olyset\\u00ae Plus - Permethrin content lost (%)\":\"\\u2013\",\"Olyset\\u00ae Plus - PBO content in g\\/ kg (95% CI)\":\"8.98 (8.86\\u20139.10)\",\"Olyset\\u00ae Plus - PBO content lost (%)\":\"\\u2013\",\"Olyset\\u00ae Net - Mean permethrin content in g\\/kg (95% CI)\":\"19.6 (19.5\\u201319.7)b\",\"Olyset\\u00ae Net - Permethrin content lost (%)\":\"\\u2013\"},\"1\":{\"Sampling month\":12,\"Olyset\\u00ae Plus - Mean permethrin content in g\\/kg (95% CI)\":\"11.7 (10.6\\u201312.7)\",\"Olyset\\u00ae Plus - Permethrin content lost (%)\":\"36\",\"Olyset\\u00ae Plus - PBO content in g\\/ kg (95% CI)\":\"3.01 (2.30\\u20133.80)\",\"Olyset\\u00ae Plus - PBO content lost (%)\":\"66\",\"Olyset\\u00ae Net - Mean permethrin content in g\\/kg (95% CI)\":\"16.5 (16.0\\u201317.0)\",\"Olyset\\u00ae Net - Permethrin content lost (%)\":\"16\"},\"2\":{\"Sampling month\":24,\"Olyset\\u00ae Plus - Mean permethrin content in g\\/kg (95% CI)\":\"11.1 (10.2\\u201312.0)\",\"Olyset\\u00ae Plus - Permethrin content lost (%)\":\"40\",\"Olyset\\u00ae Plus - PBO content in g\\/ kg (95% CI)\":\"1.70 (1.20\\u20132.20)\",\"Olyset\\u00ae Plus - PBO content lost (%)\":\"81\",\"Olyset\\u00ae Net - Mean permethrin content in g\\/kg (95% CI)\":\"15.9 (15.1\\u201316.7)\",\"Olyset\\u00ae Net - Permethrin content lost (%)\":\"19\"},\"3\":{\"Sampling month\":36,\"Olyset\\u00ae Plus - Mean permethrin content in g\\/kg (95% CI)\":\"8.8 (7.9\\u20139.7)\",\"Olyset\\u00ae Plus - Permethrin content lost (%)\":\"52\",\"Olyset\\u00ae Plus - PBO content in g\\/ kg (95% CI)\":\"1.16 (0.8\\u20131.5)\",\"Olyset\\u00ae Plus - PBO content lost (%)\":\"87\",\"Olyset\\u00ae Net - Mean permethrin content in g\\/kg (95% CI)\":\"14.8 (13.9\\u201315.7)\",\"Olyset\\u00ae Net - Permethrin content lost (%)\":\"24\"}}\n", - "\n", - "header: Net sampling scheme\n", - "\n", - "The scheme of sampling nets at different time points for bioassays and chemical assays is given in Table 2. The netting pieces were cut from the sampled nets from positions 1-9 for bioassays, and positions HP1-HP5 (at time 0) or positions HP2-HP5 (at time 12, 24 and 36 months) for chemical content assays (Fig. 1). All the nets which were sampled and retrieved at the given survey points were replaced with new ones.\n", - "\n", - "header: Chemical contents\n", - "\n", - "At time 0 (baseline), the contents of permethrin and PBO in Olyset(r) Plus were within the target tolerance limits of 20 +- 5 g/kg and 10 +- 2.5 g/kg, respectively; while the permethrin content in Olyset(r) Net was also within the target tolerance limit of 20 +- 3 g/kg (Table 5). The within net variation (relative standard deviation, RSD) in permethrin and PBO contents for Olyset(r) Plus at baseline were 2.2% and 3.7%, respectively, and were within the acceptable tolerance limits. The within net variation in the permethrin content in Olyset(r) Net at the baseline was 1.2% and was also within the acceptable tolerance limit. At the end of years 1, 2 and 3 of net usage, the permethrin content in Olyset(r) Plus decreased by 36%, 40% and 52%, and the PBO content showed a marked reduction of 66%, 81% and 87%, respectively. The loss of the permethrin in Olyset(r) Net\n", - "\n", - "\\begin{table}\n", - "\\begin{tabular}{c c c c c c c c} \\hline\n", - "**Survey month** & **No. of** & **Mean 1 h** & **Mean 24 h** & **\\% of nets passed by** & **\\% of nets passed by** & **No. of nets passed by** & **Overall pass rate in** \\\\\n", - "**nets** & **KD (\\%)** & **mortality** & **KD criteria alone(r)** & **mortality criteria** & **requiring tunnel** & **percentage (95\\% CI)(r)** \\\\\n", - "**Olyset(r) Plus** & & & & & & & \\\\\n", - "0 & 30 & 99.5 & 100 & 100 & 100 & 0 & 100 (80–100) \\\\\n", - "6 & 30 & 97.0 & 88.2 & 83.3 & 73.3 & 4 & 96.7 (82–99) \\\\\n", - "12 & 30 & 9\n", - "\n", - "4.2 & 74.3 & 76.7 & 43.3 & 6 & 93.3 (78–99) \\\\\n", - "18 & 30 & 82.9 & 65.9 & 36.7 & 36.7 & 16 & 86.7 (69–96) \\\\\n", - "24 & 30 & 77.4 & 75.3 & 0.0 & 46.7 & 15 & 76.7 (57–90) \\\\\n", - "30 & 30 & 60.4 & 56.9 & 0.0 & 10.0 & 27 & 70.0 (50–85) \\\\\n", - "**Olyset(r) Net** & & & & & & & \\\\\n", - "0 & 30 & 99.1 & 100 & 100 & 100 & 0 & 100 (88–100) \\\\\n", - "6 & 30 & 96.9 & 79.8 & 80.0 & 60.0 & 4 & 93.3 (77–99) \\\\\n", - "12 & 30 & 68.5 & 54.7 & 20.0 & 3.3 & 24 & 83.3 (65–94) \\\\\n", - "18 & 30 & 72.1 & 50.2 & 30.0 & 20.0 & 18 & 73.3 (54–87) \\\\\n", - "24 & 30 & 79.8 & 68.9 & 3.3 & 46.7 & 18 & 66.7 (47–83) \\\\\n", - "30 & 30 & 50.9 & 50.9 & 0.0 & 3.3 & 29 & 60.0\n", - "\n", - "\n", - "was 16% at year 1 and did not change much at year 2 and 3 (19 and 24%, respectively).\n", - "\n", - "header: Abstract\n", - "\n", - "Bioefficacy and durability of Olyset(r) Plus, a permethrin and piperonyl butoxide-treated insecticidal net in a 3-year long trial in Kenya\n", - "\n", - "Paul M. Gichuki, Anna Kamau, Kiambo Niagi, Solomon Karoki, Njoroge Muigai, Damaris Matoke-Muhia, Nabie Bayoh, Evan Mathenge\n", - "\n", - "\n", - "**Background:** Long-lasting insecticide nets (LLINs) are a core malaria intervention. LLINs should retain efficacy against mosquito vectors for a minimum of three years. Efficacy and durability of Olyset(r) Plus, a permethrin and piperonyl butoxide (PBO) treated LLIN, was evaluated versus permethrin treated Olyset(r) Net. In the absence of WHO guidelines of how to evaluate PBO nets, and considering the manufacturer's product claim, Olyset(r) Plus was evaluated as a pyrethroid LILN.\n", - "\n", - "**Methods:** This was a household randomized controlled trial in a malaria endemic rice cultivation zone of Kirinyaga County, Kenya between 2014 and 2017. Cone bioassays and tunnel tests were done against _Anopheles gambiae_ Kisumu. The chemical content, fabric integrity and LLIN survivorship were monitored. Comparisons between nets were tested for significance using the Chi-square test. Exact binomial distribution with 95% confidence intervals (95% CI) was used for percentages. The WHO efficacy criteria used were >= 95% knockdown and/or >= 80% mortality rate in cone bioassays and >= 80% mortality and/or >= 90% blood-feeding inhibition in tunnel tests.\n", - "\n", - "**Results:** At 36 months, Olyset(r) Plus lost 52% permethrin and 87% PBO content; Olyset(r) Net lost 24% permethrin. Over 80% of Olyset(r) Plus and Olyset(r) Net passed the WHO efficacy criteria for LLINs up to 18 and 12 months, respectively. At month 36, 91.2% Olyset(r) Plus and 86.4% Olyset(r) Net survived, while 72% and 63% developed at least one hole. The proportionate Hole Index (pHI) values representing nets in good, serviceable and torn condition were 49.6%, 27.1% and 23.2%, respectively for Olyset(r) Plus, and 44.9%, 32.8% and 22.2%, respectively for Olyset(r) Net but were not significantly different.\n", - "\n", - "**Conclusions:** Olyset(r) Plus retained efficacy above or close to the WHO efficacy criteria for about 2 years than Olyset(r) Net (1-1.5 years). Both nets did not meet the 3-year WHO efficacy criteria, and showed little attrition, comparable physical durability and survivorship, with 50% of Olyset(r) Plus having good and serviceable condition after 3 years. Better community education on appropriate use and upkeep of LLINs is essential to ensure effectiveness of LLIN based malaria interventions.\n", - "\n", - "**Keywords:**_Anopheles gambiae, Bioefficacy, Durability, Kenya, Long-lasting insecticidal net, Olyset(r) Net, Olyset(r) Plus, Permeability, Piperonyl butoxide_\n", - "\n", - "header: Assessment of durability of cohort nets\n", - "\n", - "To monitor durability of nets (i.e. survivorship and changes in physical integrity) during their routine use, 250 each of Olyset(r) Plus and Olyset(r) Net were distributed in separate households (2 nets per household) in the same villages by simple randomization. From these cohorts of nets, all nets available at the households at the time of surveys at 6, 12, 24 and 36 months were inspected for their presence and physical integrity. For this, the nets were retracted from the sleeping places, individually hung up on a rectangular frame held outside the house and inspected for presence of any holes on the side and roof panels. The holes were counted for each net, their diameter was measured, and they were classified in the following categories according to the WHO criteria for hole sizes [3, 11]:\n", - "\n", - "Size A1: 0.5-2 cm diameter, Size A2: 2-10 cm diameter, Size A3: 10-25 cm diameter, Size A4: 25 cm diameter.\n", - "\n", - "The parameters for assessing the integrity of nets included the proportions of Olyset(r) Plus and Olyset(r) Net with any size holes or tears, and the proportionate Hole Index (pHI) for each net, which was calculated as follows [11]:\n", - "\n", - "\\[\\text{pH} = \\left( {1.23 \\times \\text{ No.~of~size~A1~holes}} \\right) + \\left( {28.28 \\times \\text{ No.~of~size~A2~holes}} \\right) + \\left( {240.56 \\times \\text{ No.~of~size~A3~holes}} \\right) + \\left( {706.95 \\times \\text{ No.~of~size~A4~holes}} \\right)\\]\n", - "\n", - "Using the pHI values, Olyset(r) Plus and Olyset(r) Net were categorized as those in 'good condition' (pHI: 0-64), nets in 'acceptable' condition (pHI: 65-642), and torn nets that were likely to provide no protective efficacy (pHI > 642) [15]. The number of nets in 'good' and\n", - "\n", - "Fig. 1: A rectangular net and its individual panels showing positions for cutting netting pieces (positions 1–9 for bioassays; HP1–HPS for chemical assays)\n", - "'acceptable condition' together were taken to estimate the survival of nets over time.\n", - "\n", - "The sampled nets were also inspected for any repairs of holes or tears done by the households. After inspection, the nets were returned to the same sleeping place in the same household.\n", - "\n", - "header: Net survivorship and fabric integrity\n", - "\n", - "At the end of year 1, Olyset(r) Plus reported survivorship rates of 97.2% (_n_ = 243), with Olyset(r) Net recording 99.6% (_n_ = 249). At year 2, there were 92.4% (_n_ = 231) Olyset(r) Plus and 90.4% (_n_ = 226) of Olyset(r) Nets still surviving. At the end of the 3 years of study, the survivorship rates for Olyset(r) Plus and Olyset(r) Net were at 91.2% (_n_ = 228) and 86.4% (_n_ = 216), respectively.\n", - "\n", - "The pH values of the nets showed that 87.6% of Olyset(r) Plus were in good condition at 6 months, 7.6% were in acceptable/serviceable condition, and 4.8% were too torn (Table 6). These proportions increased gradually during the study and at 36 months, 49.6% were in good condition, 27.1% in acceptable/serviceable condition, and 23.2% were too torn. A similar trend of attrition was seen for Olyset(r) Net, with 44.9%, 32.8% and 22.2% nets being in good condition, acceptable condition or too torn at 36 months, respectively.\n", - "\n", - "Data on the comparison of estimates of the mean pH values and the mean hole area for Olyset(r) Plus and Olyset(r) Net are given in Table 7.\n", - "\n", - "The proportion of Olyset(r) Plus nets having been repaired by households increased from 6% (95% CI: 3.4-9.7) at month 6 to 17.9% (95% CI: 13.2-23.6) at months\n", - "\n", - "36, while that of Olyset(r) Net increased from 5% (95% CI: 2.8-8.7) to 12% (95% CI: 8.0-17.1) in the same period.\n", - "\n", - "\n", - "Olyset(r) Net incorporated with permethrin alone was included in the trial as a positive control net. A net was considered to have passed the WHO efficacy criteria if it caused >= 80% mortality and/or >= 95% knockdown in cone bioassays or >= 80% mortality and/or >= 90% blood-feeding inhibition in tunnel tests [3]. Most of the Olyset(r) Plus and Olyset(r) Net lost the knockdown effect during the 24-36 months follow-up. Overall, neither Olyset(r) Plus nor Olyset(r) Net performed as they should even after 2 years and did not meet the WHO efficacy criteria of a 3-year LLIN.\n", - "\n", - "Previous studies have demonstrated enhanced efficacy of Olyset(r) Plus against resistant _An. gambiae_ attributable to PBO [16-18]. A recent randomised controlled field trial in Tanzania with high levels of pyrethroid resistance in malaria vectors _An. gambiae_ and _An. arabiensis_ also attributed higher impact on malaria of Olyset(r) Plus over Olyset(r) Net to the presence of PBO that was sustained after 21 months of the trial [19]. However, there is a view that these two nets are not comparable and that the higher efficacy of Olyset(r) Plus was due to much more bleed rate of permethrin into its surface and not due to PBO that was incorporated in small amount and dwindled rapidly over time [20]. In this trial, Olyset(r) Plus was evaluated as a pyrethroid LLIN since there were no guidelines published by WHO of how to evaluate PBO nets at the time of this trial, and considering the manufacturer's product claim.\n", - "\n", - "While, it was reported that high intensity insecticide resistance will reduce the level of personal and community protection of pyrethroid LLINs [21] and PBO nets could be effective against malaria in some resistance scenarios [22], a recent WHO multi-country study found no evidence of an association between insecticide resistance and malaria infection prevalence or incidence [23]. There is also a view that at present there is limited evidence that recent reduction in the impact on malaria in sub-Saharan Africa was due to increasing resistance in malaria vectors to the pyrethroid insecticides used in treating nets [24].\n", - "\n", - "The initial permethrin content in both nets was more or less similar but the enhanced efficacy of Olyset(r) Plus was mainly due to the higher release of permethrin into the surface fibres and presence of PBO than Olyset(r) Net. The gradual decline in efficacy of both nets is consistent with the loss of permethrin and PBO in Olyset(r) Plus and of permethrin in Olyset(r) Net over time during their routine usage by the community. The decline in permethrin content was more rapid in Olyset(r) Plus than Olyset(r) Net. This explains why Olyset(r) Plus having permethrin and PBO was relatively superior than Olyset(r) Net initially, i.e., until 18 months, but after that their performance was below the WHO efficacy cut off. While the PBO content in Olyset(r) Plus at the baseline was within the target tolerance limits, 66% of the PBO content was lost within one year of net usage, and the loss increased to 81% at year 2 and 87% at year 3. Previous studies have reported that the insecticidal content in LLINs decay over time [6]. While permethrin and PBO contents may be lost due to natural decay and evaporation, washing of nets frequently and drying them under direct sunlight are known to contribute to such losses [25, 26]. In this study, despite manufacturer's label recommendation not to expose nets to direct sunlight, a good proportion of both type of nets were exposed to bright sunlight before use and left to dry in the sun after washing. This would have reduced both permethrin and PBO contents and consequently reduced the biological efficacy of these nets and should be borne in mind when considering these results. Even though Kisumu strain was tested, the loss of PBO would have affected efficacy of Olyset Plus as PBO can improve net performance even against susceptible strains, which too have P450s, and PBO is also known to act as a good solvent that can aid cuticular penetration and help improve insecticidal activity. The operational implication of rapid loss of PBO is that Olyset(r) Plus was unlikely to remain effective even against pyrethroid resistant mosquitoes for 2 or 3 years of use.\n", - "\n", - "Community net wash practices were comparable between the two nets. During the first 6 months, no net was reported to have been washed. At 1 year, 7% of Olyset(r) Plus and 7% of Olyset(r) Net were reported to have been washed at least once. At month 36 months, about 17% and 21% of Olyset(r) Plus and Olyset(r) Net\n", - "respectfully had been washed at least once. LLINs are usually recommended to be washed at most every 3 months [5], although this frequency depends on local cultural practices and water availability. Different net washing frequencies have been reported in other studies spanning from a high of 8 washes per month in Mali [27] to 4-7 times in Tanzania [28] to a low average of 1.5 washes per year in Uganda [29]. In coastal Kenya, on average nets were washed twice in 6 months, with blue colour nets least often washed than white or green colour nets, and older nets washed more frequently [30]. In western Kenya lowlands, three quarter of nets were washed once within 3 months and a third of them were dried under the sun [31]. The main reasons for low reported wash rates during the annual surveys in our study could be attributed to net users' poor recall of the net washing frequencies, and people's apprehension that washing of nets reduce net efficacy, although there was no water scarcity in the trial area being located in a rice irrigation area.\n", - "\n", - "The study participants reported experiencing certain transient adverse effects during the first two days of use of nets, but these could be prompted reactions since the community members had been informed about the possibility of such effects at the time of net distribution. The higher side effects from use of Olyset(r) Plus is in line with the higher release of permethrin as mentioned above. Users resorted to ventilating their nets in direct sunlight to reduce the effects although our project team had advised to dry up and keep the nets under shade. Ventilating new nets or drying washed nets under direct sunlight might have contributed to a significant reduction in active ingredient content and bio-efficacy of nets.\n", - "\n", - "At the end of the 3-year period, among the two cohorts of 250 nets each, only about 9% Olyset(r) Plus and about 14% Olyset(r) Net were reported to have been lost showing a high net survivorship. These results are in line with the expected 75% net survivorship rate reported by the NetCALC 3-year serviceable prediction model [32]. Previous studies have reported varying rate of net survivorship in African countries, such as 58% nets were lost within two years in Rwanda [33], only 39% of distributed nets remained both present and in serviceable physical condition 2-4 years after a mass campaign in Tanzania [34], but in Western Uganda an estimated attrition rate of just 12% after three years of use was observed for a polyester net [35]. In four African countries of Mozambique, Nigeria, DRC and Zanzibar, Tanzania, survival in serviceable condition of polyethylene and polyester LLINs after 31-37 months of use varied between different sites from 17 to 80% with median survival from 1.6 to 5.3 years [36]. In our study, the observed low attrition rate of nets appears to be also due to the 'Hawthorne effect' as the households included in the two cohorts of nets were visited every 6 or 12 months to inspect the nets. So, the awareness among study participants that the nets were regularly being followed could have modified their behaviour in favour of more careful upkeep and maintenance of the nets and as such may have been a limitation in this study.\n", - "\n", - "Studies have shown that despite small to medium size holes (64 < PHI < 642), LLINs are still protective against mosquito bites due to the excito-repellent effects of insecticides [35]. However, the nets may become ineffective when the overall hole area in nets reaches a certain threshold [37]. In our study, both Olyset(r) Plus and Olyset(r) Net recorded high fabric integrity up to the 3-year trial period. At 12 months after distribution, 78.1% of Olyset Plus and 63.8% of Olyset(r) Net were in good/acceptable condition, 12.3% Olyset(r) Plus and 30.5% Olyset(r) Net were in serviceable condition, while 9.4% Olyset(r) Plus and 5.6% Olyset(r) Net were completely torn and required to be replaced. At the end of the 3-year trial period, 49.5% of Olyset(r) Plus and 44.9% of Olyset(r) Net were in good/acceptable condition, 27.1% Olyset(r) Plus and 32.8% Olyset(r) Net in serviceable condition, while 23.2% Olyset(r) Plus and 22.2% Olyset(r) Net were completely torn and required replacement.\n", - "\n", - "Although Olyset(r) Net retained a higher permethrin content that Olyset(r) Plus, the latter showed longer duration of efficacy than the former, i.e., 18 months compared with 12 months above the WHO efficacy cut off, and higher efficacy thereafter i.e., the efficacy of Olyset(r) Plus declined to 42% at the end of 3-year trial period and that of Olyset(r) Net to 36% over the same period. This could be attributed to higher release of permethrin into the netting surface, and also because PBO can make nets perform better even against susceptible mosquitoes. Pyrethroid-PBO nets have previously been associated with higher mosquito mortality and lower blood-feeding rates in areas of high-level insecticide resistance than were non-PBO LLINs [38, 39]. Although in our study we did not test nets with a pyrethroid resistant mosquito strain, it is likely that the fast decline of PBO in Olyset(r) Plus was caused by the inappropriate exposure to sunlight, as well as the normal loss through washing would have reduced efficacy against resistant mosquitoes in the same way that it reduced efficacy against the susceptible mosquitoes tested here.\n", - "\n", - "Appropriate testing guidelines and field studies are thus required to evaluate the operational effectiveness of PBO nets against pyrethroid resistant mosquitoes and considering the PBO retention and release properties. The revised WHO LLIN guidelines should clarify for how long PBO nets should be effective and if the \n", - "current WHO efficacy criteria for a 3-year LLIN should be reduced to fit the chemistry.\n", - "\n", - "A limitation of our trial was that we did not evaluate efficacy of Olysset(r) Plus against resistant _An. gambling_ mosquitoes. Instead, we tested its efficacy for the presence of permethrin alone using a susceptible malaria vector strain, although inclusion of PBO in nets has the potential of increasing insecticidal efficacy due to increased cuticular penetration and presence of P450s in susceptible insects. There is thus a need for suitable testing guidelines and a much more validation of the impact of PBO in pyrethroid-PBO nets.\n", - "\n", - "header: Availability of data and materials\n", - "\n", - "All the relevant datasets supporting the conclusions of this article are included within the article.\n", - "\n", - "header: Table 6 Progression of hole formation and proportionate Hole Index (pHI) values for Olyset® Plus and Olyset® Net\n", - "footer: None\n", - "columns: ['Net brand', 'Follow up months', 'No. of nets sampled', 'Number of nets with any size holes (%; 95% CI)', 'No. of nets by pHI values (%; 95% CI) - pHI < 65 (in good condition)', 'No. of nets by pHI values (%; 95% CI) - pHI 65–642 (in acceptable condition)', 'No. of nets by pHI values (%; 95% CI) - pHI > 642 (too torn nets)']\n", - "\n", - "{\"0\":{\"Net brand\":\"Olyset\\u00ae Plus\",\"Follow up months\":6,\"No. of nets sampled\":250,\"Number of nets with any size holes (%; 95% CI)\":\"115 (46.0; 39.9\\u201352.1)\",\"No. of nets by pHI values (%; 95% CI) - pHI < 65 (in good condition)\":\"219 (87.6; 82.9\\u201391.1)\",\"No. of nets by pHI values (%; 95% CI) - pHI 65\\u2013642 (in acceptable condition)\":\"19 (7.6; 4.9\\u201311.5)\",\"No. of nets by pHI values (%; 95% CI) - pHI > 642 (too torn nets)\":\"12 (4.8; 2.8\\u20138.2)\"},\"1\":{\"Net brand\":\"Olyset\\u00ae Plus\",\"Follow up months\":12,\"No. of nets sampled\":243,\"Number of nets with any size holes (%; 95% CI)\":\"131 (54.0; 47.6\\u201360.1)\",\"No. of nets by pHI values (%; 95% CI) - pHI < 65 (in good condition)\":\"190 (78.2; 72.6\\u201382.9)\",\"No. of nets by pHI values (%; 95% CI) - pHI 65\\u2013642 (in acceptable condition)\":\"30 (12.4; 8.8\\u201317.0)\",\"No. of nets by pHI values (%; 95% CI) - pHI > 642 (too torn nets)\":\"23 (9.5; 6.3\\u201313.8)\"},\"2\":{\"Net brand\":\"Olyset\\u00ae Plus\",\"Follow up months\":24,\"No. of nets sampled\":231,\"Number of nets with any size holes (%; 95% CI)\":\"120 (52.0; 45.5\\u201358.3)\",\"No. of nets by pHI values (%; 95% CI) - pHI < 65 (in good condition)\":\"145 (62.8; 56.7\\u201368.7)\",\"No. of nets by pHI values (%; 95% CI) - pHI 65\\u2013642 (in acceptable condition)\":\"58 (25.1; 19.9\\u201331.1)\",\"No. of nets by pHI values (%; 95% CI) - pHI > 642 (too torn nets)\":\"28 (12.0; 8.5\\u201316.9)\"},\"3\":{\"Net brand\":\"Olyset\\u00ae Plus\",\"Follow up months\":36,\"No. of nets sampled\":228,\"Number of nets with any size holes (%; 95% CI)\":\"144 (63.0; 56.7\\u201369.1)\",\"No. of nets by pHI values (%; 95% CI) - pHI < 65 (in good condition)\":\"113 (49.6; 43.1\\u201356.0)\",\"No. of nets by pHI values (%; 95% CI) - pHI 65\\u2013642 (in acceptable condition)\":\"62 (27.1; 21.8\\u201333.3)\",\"No. of nets by pHI values (%; 95% CI) - pHI > 642 (too torn nets)\":\"53 (23.2; 18.2\\u201329.2)\"},\"4\":{\"Net brand\":\"Olyset\\u00ae Net\",\"Follow up months\":6,\"No. of nets sampled\":250,\"Number of nets with any size holes (%; 95% CI)\":\"157 (63.0; 56.7\\u201368.6)\",\"No. of nets by pHI values (%; 95% CI) - pHI < 65 (in good condition)\":\"186 (74.4; 68.7\\u201379.4)\",\"No. of nets by pHI values (%; 95% CI) - pHI 65\\u2013642 (in acceptable condition)\":\"57 (22.8; 18.1\\u201328.4)\",\"No. of nets by pHI values (%; 95% CI) - pHI > 642 (too torn nets)\":\"7 (2.8; 1.3\\u20135.7)\"},\"5\":{\"Net brand\":\"Olyset\\u00ae Net\",\"Follow up months\":12,\"No. of nets sampled\":249,\"Number of nets with any size holes (%; 95% CI)\":\"169 (68.0; 61.8\\u201373.4)\",\"No. of nets by pHI values (%; 95% CI) - pHI < 65 (in good condition)\":\"159 (63.9; 57.7\\u201369.6)\",\"No. of nets by pHI values (%; 95% CI) - pHI 65\\u2013642 (in acceptable condition)\":\"76 (30.5; 25.1\\u201336.5)\",\"No. of nets by pHI values (%; 95% CI) - pHI > 642 (too torn nets)\":\"14 (5.6; 3.4\\u20139.2)\"},\"6\":{\"Net brand\":\"Olyset\\u00ae Net\",\"Follow up months\":24,\"No. of nets sampled\":226,\"Number of nets with any size holes (%; 95% CI)\":\"147 (65.0; 58.6\\u201370.9)\",\"No. of nets by pHI values (%; 95% CI) - pHI < 65 (in good condition)\":\"120 (53.1; 46.6\\u201359.5)\",\"No. of nets by pHI values (%; 95% CI) - pHI 65\\u2013642 (in acceptable condition)\":\"71 (31.4; 25.7\\u201337.7)\",\"No. of nets by pHI values (%; 95% CI) - pHI > 642 (too torn nets)\":\"35 (15.5; 11.4\\u201320.8)\"},\"7\":{\"Net brand\":\"Olyset\\u00ae Net\",\"Follow up months\":36,\"No. of nets sampled\":216,\"Number of nets with any size holes (%; 95% CI)\":\"156 (72.0; 65.9\\u201377.9)\",\"No. of nets by pHI values (%; 95% CI) - pHI < 65 (in good condition)\":\"97 (44.9; 38.4\\u201351.6)\",\"No. of nets by pHI values (%; 95% CI) - pHI 65\\u2013642 (in acceptable condition)\":\"71 (32.8; 26.9\\u201339.4)\",\"No. of nets by pHI values (%; 95% CI) - pHI > 642 (too torn nets)\":\"48 (22.2; 17.2\\u201328.2)\"}}\n", - "\n", - "header: Statistical analysis\n", - "\n", - "The data collected were entered in excel spreadsheets and cross-checked for accuracy. Data were analyzed using STATA version 14.0 (Stata Corporation, College Station, TX, USA). Comparisons between the two types of nets were tested for significance using the Chi-square (kh2) test. Exact binomial distribution with 95% confidence intervals (95% CI) was used for percentages. For continuous variables, the arithmetic mean was used depending on the distribution of values compared to a normal distribution.\n", - "\n", - "The nets were considered to have passed the WHO efficacy criteria if the mosquito knockdown rate was found to be >= 95% and/or mortality rate >= 80% in cone bioassays. For the tunnel tests, nets were considered to have passed the WHO efficacy criteria when mortality in mosquitoes was >= 80% and/or blood-feeding inhibition was >= 90% [3]. The procedure for calculation of proportionate Hole Index (pHI) for nets is already described above.\n", - "\n", - "header: Bioassays\n", - "\n", - "The insecticidal effect of the nets was evaluated using cone bioassays and where required tunnel tests, as per the WHO guidelines [3]. The bioassays were done at time zero (baseline) and then at every 6 months up to 36 months. On each of the netting pieces cut for bioassays, standard WHO plastic cones were held in place using a plastic manifold and a total of 50 laboratory bred, susceptible Kisumu strain _Anopheles gambiae_ (non-blood fed, 2-5 day old) were exposed for 3 min (5 pieces per net x 5 mosquitoes per test x 2 replicates). After the exposure, the mosquitoes were removed gently from\n", - "the cones and kept separately in plastic cups provided with cotton-wool moistened with 10% glucose solution. Knockdown (KD) was recorded at 60 min and mortality at 24 h after exposure. Mosquitoes exposed to untreated polyester net pieces were used as untreated controls. The bioassays were carried out at 27 +- 2 degC temperature and 80% +- 10% relative humidity. When the mosquito knockdown rate was < 95% and mortality < 80%, the mortality and blood-feeding inhibition effect of such nets was assessed in a tunnel test according to the WHO guidelines [3].\n", - "\n", - "For each net, only one netting piece with which mosquito mortality was found closest to the average mortality in the cone test was tested in the tunnel test [3]. One hundred, non-blood fed female _An. gambiae_ Kisumu mosquitoes, aged 5-8 days were released at the longer end of a tunnel equipment made of glass. At each end of the tunnel, a 25 cm square cage covered with a polyester netting was fitted. At the shorter end of the tunnel, a rabbit which could not move but was available for mosquito biting was placed. The mosquitoes were released at 18:00 and mosquitoes recovered at 09:00 on the following morning. During the test, the tunnel was kept in a place maintained at 27 +- 2 degC and 80% +- 10% relative humidity in full darkness. Another tunnel with untreated netting was used as control. The mean mortality rate and percentage blood-feeding inhibition were recorded, as follows:\n", - "\n", - "1. Mortality = this was measured by pooling the mortality rates of mosquitoes from the two sections of the tunnel. If mortalities in the control recorded more than 10%, the test was considered invalid.\n", - "\n", - "\\[\\text{Blood} - \\text{feeding\\,inhibition}(\\%) = \\left[ {100 \\times \\left( {\\text{Bfc} - \\text{Bfc}} \\right)} \\right]/\\text{Bfc}\\]\n", - "\n", - "where, Bfc is the proportion of blood-fed mosquitoes in the control tunnel and Bft is the proportion of blood-fed mosquitoes in the tunnel with the treated net. The treated net was considered to have met the WHO efficacy criteria when mortality in mosquitoes was >= 80% and/or blood-feeding inhibition was >= 90%.\n", - "\n", - "header: Chemical content analysis\n", - "\n", - "The chemical contents in the nets were determined at the beginning and at years 1, 2 and 3 by samplings nets according to the scheme described earlier. The netting pieces cut for determination of active ingredient content were individually rolled up and placed in new, clean and labeled aluminum foils and sent to the Phyto-pharmacy Department of the Walloon Agricultural Research Centre, Gembloux, Belgium, a WHO Collaborating Centre, for chemical analysis.\n", - "\n", - "header: Funding\n", - "\n", - "The work was funded as a collaborative project by the WHO Pesticide Evaluation Scheme, Geneva, Switzerland.\n", - "\n", - "header: Conclusions\n", - "\n", - "Olysset(r) Plus did not meet the WHO criteria for efficacy of LLINs in this 3-year Phase III study, which could have resulted from faster loss of permethrin and PBO and users not following the manufacturer's recommendations to not leave the nets under direct sunlight. Better community education is therefore essential to ensure appropriate use and upkeep of nets in areas with LLIN-based interventions in order to maximize their operational impact on the prevention, control and elimination of malaria. Failure to do this would result in operational implications requiring early replenishment with new nets to ensure that such an LLIN based malaria intervention remains effective.\n", - "\n", - "header: Trial design and study area\n", - "\n", - "We did a prospective, household randomized controlled, large-scale 3-year field trial in a rice irrigation area of Kirinyaga County, Kenya from 2014 to 2017. The area is located about 100 km northeast of Nairobi at the base of Mt Kenya at an altitude of about 1200 m above sea level [14]. It receives mean annual rainfall of 1200-1600 mm with long rains in March-June and short rains in October-December. Due to high densities of mosquitoes year-round, many local people use mosquito nets. Several bed net trials have previously been conducted here for national product registration. Over 80% of the inhabitants of the area have only primary level education. Most of the houses in the area are made of mud walls with roofs of corrugated iron sheets [14].\n", - "\n", - "Four villages of Maendeleo, Huruma, Kiratina and Kasarani were selected by a simple randomization, of which the first two villages were randomly allocated Olyset(r) Plus and the other two villages received Olyset(r) Net (Table 1). In each of the selected village, households were randomly selected.\n", - "\n", - "header: Table 3 Frequency of washing nets by the users at different time points\n", - "footer: The reported wash rate was zero at 6 months\n", - "columns: ['Period (months)', 'Olyset® Plus - No. of nets sampled', 'Olyset® Plus - No. of nets washed once (%)', 'Olyset® Plus - No. of nets washed twice (%)', 'Olyset® Plus - No. of nets washed > 2 times (%)', 'Olyset® Net - No. of nets sampled', 'Olyset® Net - No. of nets washed at once (%)', 'Olyset® Net - No. of nets washed twice (%)', 'Olyset® Net - No. of nets washed > 2 times (%)']\n", - "\n", - "{\"0\":{\"Period (months)\":6,\"Olyset\\u00ae Plus - No. of nets sampled\":30,\"Olyset\\u00ae Plus - No. of nets washed once (%)\":\"\\u2013\",\"Olyset\\u00ae Plus - No. of nets washed twice (%)\":\"\\u2013\",\"Olyset\\u00ae Plus - No. of nets washed > 2 times (%)\":\"\\u2013\",\"Olyset\\u00ae Net - No. of nets sampled\":30,\"Olyset\\u00ae Net - No. of nets washed at once (%)\":\"\\u2013\",\"Olyset\\u00ae Net - No. of nets washed twice (%)\":\"\\u2013\",\"Olyset\\u00ae Net - No. of nets washed > 2 times (%)\":\"\\u2013\"},\"1\":{\"Period (months)\":12,\"Olyset\\u00ae Plus - No. of nets sampled\":30,\"Olyset\\u00ae Plus - No. of nets washed once (%)\":\"2 (7)\",\"Olyset\\u00ae Plus - No. of nets washed twice (%)\":\"1 (3)\",\"Olyset\\u00ae Plus - No. of nets washed > 2 times (%)\":\"0\",\"Olyset\\u00ae Net - No. of nets sampled\":30,\"Olyset\\u00ae Net - No. of nets washed at once (%)\":\"2 (7)\",\"Olyset\\u00ae Net - No. of nets washed twice (%)\":\"0\",\"Olyset\\u00ae Net - No. of nets washed > 2 times (%)\":\"0\"},\"2\":{\"Period (months)\":24,\"Olyset\\u00ae Plus - No. of nets sampled\":30,\"Olyset\\u00ae Plus - No. of nets washed once (%)\":\"4 (12)\",\"Olyset\\u00ae Plus - No. of nets washed twice (%)\":\"2 (7)\",\"Olyset\\u00ae Plus - No. of nets washed > 2 times (%)\":\"1 (3)\",\"Olyset\\u00ae Net - No. of nets sampled\":30,\"Olyset\\u00ae Net - No. of nets washed at once (%)\":\"3 (11)\",\"Olyset\\u00ae Net - No. of nets washed twice (%)\":\"2 (7)\",\"Olyset\\u00ae Net - No. of nets washed > 2 times (%)\":\"0\"},\"3\":{\"Period (months)\":36,\"Olyset\\u00ae Plus - No. of nets sampled\":50,\"Olyset\\u00ae Plus - No. of nets washed once (%)\":\"9 (17)\",\"Olyset\\u00ae Plus - No. of nets washed twice (%)\":\"5 (10)\",\"Olyset\\u00ae Plus - No. of nets washed > 2 times (%)\":\"3 (6)\",\"Olyset\\u00ae Net - No. of nets sampled\":50,\"Olyset\\u00ae Net - No. of nets washed at once (%)\":\"11 (21)\",\"Olyset\\u00ae Net - No. of nets washed twice (%)\":\"8 (6)\",\"Olyset\\u00ae Net - No. of nets washed > 2 times (%)\":\"3 (6)\"}}\n", - "\n", - "header: Background\n", - "\n", - "Insecticide-treated nets reduce child mortality, number of _Plasmodium falciparum_ cases and probably the number of _P. vivax_ cases per person/year [1]. Factory-produced long-lasting insecticide nets (LLINs) are a core malaria intervention for the global elimination of malaria led by the World Health Organization (WHO) [2]. According to the WHO definition, LLINs should retain efficacy against mosquito vectors for a minimum of 20 standard washes under laboratory conditions and a minimum of 3 years of use under field conditions [3]. When used by most of the people in a population, insecticide-treated nets can protect all people in the community, including those who do not sleep under nets [4]. Currently, the National Malaria Control Programme (NMCP) in Kenya has been scaling up the use of LLINs in malaria endemic and high-risk areas to achieve universal coverage, which is defined by WHO as access to one LLIN for every 1.8 persons in each household [2, 5].\n", - "\n", - "Pyrethroid LLINs were the first brands of treated nets recommended by WHO for malaria control. However, it was believed that insecticide resistance was worsening in Africa and would present a major threat to malaria control [6-8], and that pyrethroid-LLINs were becoming less effective at killing mosquitoes in household conditions when pyrethroid resistance develops [9, 10]. Consequently, piperonyl butoxide (PBO) was incorporated in nets with the intension to improve their efficacy against pyrethroid resistant mosquitoes by acting as a metabolic enzyme inhibitor targeting the P450 cytochrome or mixed function oxidases that metabolise pyrethroids and enhance the efficacy of pyrethroid treated nets. Olyset(r) Plus has been prequalified by WHO as the first in class PBO net.\n", - "\n", - "However, at the time of beginning the trial due to the absence of guidelines published by WHO of how to evaluate PBO nets, and considering the manufacturer's product claim, Olyset(r) Plus was evaluated only as a pyrethroid LLIN against a pyrethroid susceptible mosquito strain rather than against a resistant strain. This paper presents results of a 3-year long-term (Phase III) field trial of the candidate product, Olyset(r) Plus, along with a positive control product Olyset(r) Net, in a malaria endemic rice cultivation area of Kirinyaga County, Kenya.\n", - "\n", - "header: Test products\n", - "\n", - "Bioefficacy and physical durability of the Olyset(r) Plus and Olyset(r) Net both manufactured by Sumitomo Chemical were evaluated. The former is a polyethylene mono-filament net incorporated with 2% permethrin corresponding to 20 g permethrin active ingredient (AI)/kg or 800 mg permethrin AI/m\\({}^{2}\\) and 1% PBO (corresponding to 10 g PBO AI/kg or 400 mg PBO AI/m\\({}^{2}\\)). The latter is a polyethylene mono-filament net incorporated with 2% permethrin (w/w) (corresponding to 800 mg permethrin AI/m\\({}^{2}\\)). Olyset(r) Net was recommended in 2009 by the WHO Pesticide Evaluation Scheme (WHOPES) for use in malaria control [12], while Olyset(r) Plus was given interim recommendation by WHO in 2012 with the requirement to evaluate the product in a 3-year long-term trial to confirm its long-lasting efficacy in field [13].\n", - "\n", - "header: Table 4 Bioefficacy of Olyset® Plus and Olyset® Net against Anopheles. gambiae Kisumu in cone and tunnel tests\n", - "footer: a KD, knockdown≥95%; b mortality≥80%; c taking into account the KD and mortality rates in cone bioassays, and blood-feeding inhibition and mortality rates in tunnel tests\n", - "columns: ['Survey month', 'No. of nets tested', 'Mean 1 h KD (%)', 'Mean 24 h mortality (%)', '% of nets passed by KD criteria alonea', '% of nets passed mortality criteria aloneb', 'No. of nets requiring tunnel test', 'Overall pass rate in percentage (95% CI)c']\n", - "\n", - "{\"0\":{\"Survey month\":\"Olyset\\u00ae Plus\",\"No. of nets tested\":\"Olyset\\u00ae Plus\",\"Mean 1 h KD (%)\":\"Olyset\\u00ae Plus\",\"Mean 24 h mortality (%)\":\"Olyset\\u00ae Plus\",\"% of nets passed by KD criteria alonea\":\"Olyset\\u00ae Plus\",\"% of nets passed mortality criteria aloneb\":\"Olyset\\u00ae Plus\",\"No. of nets requiring tunnel test\":\"Olyset\\u00ae Plus\",\"Overall pass rate in percentage (95% CI)c\":\"Olyset\\u00ae Plus\"},\"1\":{\"Survey month\":\"0\",\"No. of nets tested\":\"30\",\"Mean 1 h KD (%)\":\"99.5\",\"Mean 24 h mortality (%)\":\"100\",\"% of nets passed by KD criteria alonea\":\"100\",\"% of nets passed mortality criteria aloneb\":\"100\",\"No. of nets requiring tunnel test\":\"0\",\"Overall pass rate in percentage (95% CI)c\":\"100 (80\\u2013100)\"},\"2\":{\"Survey month\":\"6\",\"No. of nets tested\":\"30\",\"Mean 1 h KD (%)\":\"97.0\",\"Mean 24 h mortality (%)\":\"88.2\",\"% of nets passed by KD criteria alonea\":\"83.3\",\"% of nets passed mortality criteria aloneb\":\"73.3\",\"No. of nets requiring tunnel test\":\"4\",\"Overall pass rate in percentage (95% CI)c\":\"96.7 (82\\u201399)\"},\"3\":{\"Survey month\":\"12\",\"No. of nets tested\":\"30\",\"Mean 1 h KD (%)\":\"94.2\",\"Mean 24 h mortality (%)\":\"74.3\",\"% of nets passed by KD criteria alonea\":\"76.7\",\"% of nets passed mortality criteria aloneb\":\"43.3\",\"No. of nets requiring tunnel test\":\"6\",\"Overall pass rate in percentage (95% CI)c\":\"93.3 (78\\u201399)\"},\"4\":{\"Survey month\":\"18\",\"No. of nets tested\":\"30\",\"Mean 1 h KD (%)\":\"82.9\",\"Mean 24 h mortality (%)\":\"65.9\",\"% of nets passed by KD criteria alonea\":\"36.7\",\"% of nets passed mortality criteria aloneb\":\"36.7\",\"No. of nets requiring tunnel test\":\"16\",\"Overall pass rate in percentage (95% CI)c\":\"86.7 (69\\u201396)\"},\"5\":{\"Survey month\":\"24\",\"No. of nets tested\":\"30\",\"Mean 1 h KD (%)\":\"77.4\",\"Mean 24 h mortality (%)\":\"75.3\",\"% of nets passed by KD criteria alonea\":\"0.0\",\"% of nets passed mortality criteria aloneb\":\"46.7\",\"No. of nets requiring tunnel test\":\"15\",\"Overall pass rate in percentage (95% CI)c\":\"76.7 (57\\u201390)\"},\"6\":{\"Survey month\":\"30\",\"No. of nets tested\":\"30\",\"Mean 1 h KD (%)\":\"60.4\",\"Mean 24 h mortality (%)\":\"56.9\",\"% of nets passed by KD criteria alonea\":\"0.0\",\"% of nets passed mortality criteria aloneb\":\"10.0\",\"No. of nets requiring tunnel test\":\"27\",\"Overall pass rate in percentage (95% CI)c\":\"70.0 (50\\u201385)\"},\"7\":{\"Survey month\":\"36\",\"No. of nets tested\":\"50\",\"Mean 1 h KD (%)\":\"66.4\",\"Mean 24 h mortality (%)\":\"51.5\",\"% of nets passed by KD criteria alonea\":\"2.0\",\"% of nets passed mortality criteria aloneb\":\"8.0\",\"No. of nets requiring tunnel test\":\"24\",\"Overall pass rate in percentage (95% CI)c\":\"42.0 (28\\u201356)\"},\"8\":{\"Survey month\":\"Olyset\\u00ae Net\",\"No. of nets tested\":\"Olyset\\u00ae Net\",\"Mean 1 h KD (%)\":\"Olyset\\u00ae Net\",\"Mean 24 h mortality (%)\":\"Olyset\\u00ae Net\",\"% of nets passed by KD criteria alonea\":\"Olyset\\u00ae Net\",\"% of nets passed mortality criteria aloneb\":\"Olyset\\u00ae Net\",\"No. of nets requiring tunnel test\":\"Olyset\\u00ae Net\",\"Overall pass rate in percentage (95% CI)c\":\"Olyset\\u00ae Net\"},\"9\":{\"Survey month\":\"0\",\"No. of nets tested\":\"30\",\"Mean 1 h KD (%)\":\"99.1\",\"Mean 24 h mortality (%)\":\"100\",\"% of nets passed by KD criteria alonea\":\"100\",\"% of nets passed mortality criteria aloneb\":\"100\",\"No. of nets requiring tunnel test\":\"0\",\"Overall pass rate in percentage (95% CI)c\":\"100 (88\\u2013100)\"},\"10\":{\"Survey month\":\"6\",\"No. of nets tested\":\"30\",\"Mean 1 h KD (%)\":\"96.9\",\"Mean 24 h mortality (%)\":\"79.8\",\"% of nets passed by KD criteria alonea\":\"80.0\",\"% of nets passed mortality criteria aloneb\":\"60.0\",\"No. of nets requiring tunnel test\":\"4\",\"Overall pass rate in percentage (95% CI)c\":\"93.3 (77\\u201399)\"},\"11\":{\"Survey month\":\"12\",\"No. of nets tested\":\"30\",\"Mean 1 h KD (%)\":\"68.5\",\"Mean 24 h mortality (%)\":\"54.7\",\"% of nets passed by KD criteria alonea\":\"20.0\",\"% of nets passed mortality criteria aloneb\":\"3.3\",\"No. of nets requiring tunnel test\":\"24\",\"Overall pass rate in percentage (95% CI)c\":\"83.3 (65\\u201394)\"},\"12\":{\"Survey month\":\"18\",\"No. of nets tested\":\"30\",\"Mean 1 h KD (%)\":\"72.1\",\"Mean 24 h mortality (%)\":\"50.2\",\"% of nets passed by KD criteria alonea\":\"30.0\",\"% of nets passed mortality criteria aloneb\":\"20.0\",\"No. of nets requiring tunnel test\":\"18\",\"Overall pass rate in percentage (95% CI)c\":\"73.3 (54\\u201387)\"},\"13\":{\"Survey month\":\"24\",\"No. of nets tested\":\"30\",\"Mean 1 h KD (%)\":\"79.8\",\"Mean 24 h mortality (%)\":\"68.9\",\"% of nets passed by KD criteria alonea\":\"3.3\",\"% of nets passed mortality criteria aloneb\":\"46.7\",\"No. of nets requiring tunnel test\":\"18\",\"Overall pass rate in percentage (95% CI)c\":\"66.7 (47\\u201383)\"},\"14\":{\"Survey month\":\"30\",\"No. of nets tested\":\"30\",\"Mean 1 h KD (%)\":\"50.9\",\"Mean 24 h mortality (%)\":\"50.9\",\"% of nets passed by KD criteria alonea\":\"0.0\",\"% of nets passed mortality criteria aloneb\":\"3.3\",\"No. of nets requiring tunnel test\":\"29\",\"Overall pass rate in percentage (95% CI)c\":\"60.0 (40\\u201377)\"},\"15\":{\"Survey month\":\"36\",\"No. of nets tested\":\"50\",\"Mean 1 h KD (%)\":\"66.3\",\"Mean 24 h mortality (%)\":\"51.9\",\"% of nets passed by KD criteria alonea\":\"0.0\",\"% of nets passed mortality criteria aloneb\":\"8.0\",\"No. of nets requiring tunnel test\":\"26\",\"Overall pass rate in percentage (95% CI)c\":\"36.0 (23\\u201350)\"}}\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ITNCondition` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Results\n", - "\n", - "Among the 1784 participating homesteads with a population of 10 325, a total of 1551 households participated in the study (Table 1). Most of the heads of the households (age: 17-96 years) had received formal education and practiced farming (96.6%).\n", - "\n", - "Out of 100 heads of households with Olyset(r) Plus interviewed for adverse events, 44% reported itching, 4% eye irritation, and 7% unpleasant smell. Among the Olyset(r) Net users, 7% each reported nasal discharge and eye irritation. These were reported to be mild symptoms lasting for one or two days. To reduce these effects, 43% users of Olyset(r) Plus ventilated nets for a day in the open under the sun and 33% under the shade. Among Olyset(r) Net users, similar actions were taken by 44% and 39%, respectively.\n", - "\n", - "header: Abstract\n", - "\n", - "Bioefficacy and durability of Olyset(r) Plus, a permethrin and piperonyl butoxide-treated insecticidal net in a 3-year long trial in Kenya\n", - "\n", - "Paul M. Gichuki, Anna Kamau, Kiambo Niagi, Solomon Karoki, Njoroge Muigai, Damaris Matoke-Muhia, Nabie Bayoh, Evan Mathenge\n", - "\n", - "\n", - "**Background:** Long-lasting insecticide nets (LLINs) are a core malaria intervention. LLINs should retain efficacy against mosquito vectors for a minimum of three years. Efficacy and durability of Olyset(r) Plus, a permethrin and piperonyl butoxide (PBO) treated LLIN, was evaluated versus permethrin treated Olyset(r) Net. In the absence of WHO guidelines of how to evaluate PBO nets, and considering the manufacturer's product claim, Olyset(r) Plus was evaluated as a pyrethroid LILN.\n", - "\n", - "**Methods:** This was a household randomized controlled trial in a malaria endemic rice cultivation zone of Kirinyaga County, Kenya between 2014 and 2017. Cone bioassays and tunnel tests were done against _Anopheles gambiae_ Kisumu. The chemical content, fabric integrity and LLIN survivorship were monitored. Comparisons between nets were tested for significance using the Chi-square test. Exact binomial distribution with 95% confidence intervals (95% CI) was used for percentages. The WHO efficacy criteria used were >= 95% knockdown and/or >= 80% mortality rate in cone bioassays and >= 80% mortality and/or >= 90% blood-feeding inhibition in tunnel tests.\n", - "\n", - "**Results:** At 36 months, Olyset(r) Plus lost 52% permethrin and 87% PBO content; Olyset(r) Net lost 24% permethrin. Over 80% of Olyset(r) Plus and Olyset(r) Net passed the WHO efficacy criteria for LLINs up to 18 and 12 months, respectively. At month 36, 91.2% Olyset(r) Plus and 86.4% Olyset(r) Net survived, while 72% and 63% developed at least one hole. The proportionate Hole Index (pHI) values representing nets in good, serviceable and torn condition were 49.6%, 27.1% and 23.2%, respectively for Olyset(r) Plus, and 44.9%, 32.8% and 22.2%, respectively for Olyset(r) Net but were not significantly different.\n", - "\n", - "**Conclusions:** Olyset(r) Plus retained efficacy above or close to the WHO efficacy criteria for about 2 years than Olyset(r) Net (1-1.5 years). Both nets did not meet the 3-year WHO efficacy criteria, and showed little attrition, comparable physical durability and survivorship, with 50% of Olyset(r) Plus having good and serviceable condition after 3 years. Better community education on appropriate use and upkeep of LLINs is essential to ensure effectiveness of LLIN based malaria interventions.\n", - "\n", - "**Keywords:**_Anopheles gambiae, Bioefficacy, Durability, Kenya, Long-lasting insecticidal net, Olyset(r) Net, Olyset(r) Plus, Permeability, Piperonyl butoxide_\n", - "\n", - "header: Conclusions\n", - "\n", - "Olysset(r) Plus did not meet the WHO criteria for efficacy of LLINs in this 3-year Phase III study, which could have resulted from faster loss of permethrin and PBO and users not following the manufacturer's recommendations to not leave the nets under direct sunlight. Better community education is therefore essential to ensure appropriate use and upkeep of nets in areas with LLIN-based interventions in order to maximize their operational impact on the prevention, control and elimination of malaria. Failure to do this would result in operational implications requiring early replenishment with new nets to ensure that such an LLIN based malaria intervention remains effective.\n", - "\n", - "header: Chemical contents\n", - "\n", - "At time 0 (baseline), the contents of permethrin and PBO in Olyset(r) Plus were within the target tolerance limits of 20 +- 5 g/kg and 10 +- 2.5 g/kg, respectively; while the permethrin content in Olyset(r) Net was also within the target tolerance limit of 20 +- 3 g/kg (Table 5). The within net variation (relative standard deviation, RSD) in permethrin and PBO contents for Olyset(r) Plus at baseline were 2.2% and 3.7%, respectively, and were within the acceptable tolerance limits. The within net variation in the permethrin content in Olyset(r) Net at the baseline was 1.2% and was also within the acceptable tolerance limit. At the end of years 1, 2 and 3 of net usage, the permethrin content in Olyset(r) Plus decreased by 36%, 40% and 52%, and the PBO content showed a marked reduction of 66%, 81% and 87%, respectively. The loss of the permethrin in Olyset(r) Net\n", - "\n", - "\\begin{table}\n", - "\\begin{tabular}{c c c c c c c c} \\hline\n", - "**Survey month** & **No. of** & **Mean 1 h** & **Mean 24 h** & **\\% of nets passed by** & **\\% of nets passed by** & **No. of nets passed by** & **Overall pass rate in** \\\\\n", - "**nets** & **KD (\\%)** & **mortality** & **KD criteria alone(r)** & **mortality criteria** & **requiring tunnel** & **percentage (95\\% CI)(r)** \\\\\n", - "**Olyset(r) Plus** & & & & & & & \\\\\n", - "0 & 30 & 99.5 & 100 & 100 & 100 & 0 & 100 (80–100) \\\\\n", - "6 & 30 & 97.0 & 88.2 & 83.3 & 73.3 & 4 & 96.7 (82–99) \\\\\n", - "12 & 30 & 9\n", - "\n", - "4.2 & 74.3 & 76.7 & 43.3 & 6 & 93.3 (78–99) \\\\\n", - "18 & 30 & 82.9 & 65.9 & 36.7 & 36.7 & 16 & 86.7 (69–96) \\\\\n", - "24 & 30 & 77.4 & 75.3 & 0.0 & 46.7 & 15 & 76.7 (57–90) \\\\\n", - "30 & 30 & 60.4 & 56.9 & 0.0 & 10.0 & 27 & 70.0 (50–85) \\\\\n", - "**Olyset(r) Net** & & & & & & & \\\\\n", - "0 & 30 & 99.1 & 100 & 100 & 100 & 0 & 100 (88–100) \\\\\n", - "6 & 30 & 96.9 & 79.8 & 80.0 & 60.0 & 4 & 93.3 (77–99) \\\\\n", - "12 & 30 & 68.5 & 54.7 & 20.0 & 3.3 & 24 & 83.3 (65–94) \\\\\n", - "18 & 30 & 72.1 & 50.2 & 30.0 & 20.0 & 18 & 73.3 (54–87) \\\\\n", - "24 & 30 & 79.8 & 68.9 & 3.3 & 46.7 & 18 & 66.7 (47–83) \\\\\n", - "30 & 30 & 50.9 & 50.9 & 0.0 & 3.3 & 29 & 60.0\n", - "\n", - "\n", - "was 16% at year 1 and did not change much at year 2 and 3 (19 and 24%, respectively).\n", - "\n", - "header: Table 5 Mean permethrin and PBO contents (relative standard deviation) in nets at baseline, and at 12, 24 and 36 months\n", - "footer: a Within net variation (relative standard deviation) in permethrin and PBO contents at baseline was 2.2% and 3.7%, respectively (Olyset® Plus). – not applicable, PBOpiperonyl butoxideb Within net variation (relative standard deviation) in permethrin content at baseline was 1.2% (Olyset® Net)\n", - "columns: ['Sampling month', 'Olyset® Plus - Mean permethrin content in g/kg (95% CI)', 'Olyset® Plus - Permethrin content lost (%)', 'Olyset® Plus - PBO content in g/ kg (95% CI)', 'Olyset® Plus - PBO content lost (%)', 'Olyset® Net - Mean permethrin content in g/kg (95% CI)', 'Olyset® Net - Permethrin content lost (%)']\n", - "\n", - "{\"0\":{\"Sampling month\":0,\"Olyset\\u00ae Plus - Mean permethrin content in g\\/kg (95% CI)\":\"18.4 (18.3\\u201318.6)a\",\"Olyset\\u00ae Plus - Permethrin content lost (%)\":\"\\u2013\",\"Olyset\\u00ae Plus - PBO content in g\\/ kg (95% CI)\":\"8.98 (8.86\\u20139.10)\",\"Olyset\\u00ae Plus - PBO content lost (%)\":\"\\u2013\",\"Olyset\\u00ae Net - Mean permethrin content in g\\/kg (95% CI)\":\"19.6 (19.5\\u201319.7)b\",\"Olyset\\u00ae Net - Permethrin content lost (%)\":\"\\u2013\"},\"1\":{\"Sampling month\":12,\"Olyset\\u00ae Plus - Mean permethrin content in g\\/kg (95% CI)\":\"11.7 (10.6\\u201312.7)\",\"Olyset\\u00ae Plus - Permethrin content lost (%)\":\"36\",\"Olyset\\u00ae Plus - PBO content in g\\/ kg (95% CI)\":\"3.01 (2.30\\u20133.80)\",\"Olyset\\u00ae Plus - PBO content lost (%)\":\"66\",\"Olyset\\u00ae Net - Mean permethrin content in g\\/kg (95% CI)\":\"16.5 (16.0\\u201317.0)\",\"Olyset\\u00ae Net - Permethrin content lost (%)\":\"16\"},\"2\":{\"Sampling month\":24,\"Olyset\\u00ae Plus - Mean permethrin content in g\\/kg (95% CI)\":\"11.1 (10.2\\u201312.0)\",\"Olyset\\u00ae Plus - Permethrin content lost (%)\":\"40\",\"Olyset\\u00ae Plus - PBO content in g\\/ kg (95% CI)\":\"1.70 (1.20\\u20132.20)\",\"Olyset\\u00ae Plus - PBO content lost (%)\":\"81\",\"Olyset\\u00ae Net - Mean permethrin content in g\\/kg (95% CI)\":\"15.9 (15.1\\u201316.7)\",\"Olyset\\u00ae Net - Permethrin content lost (%)\":\"19\"},\"3\":{\"Sampling month\":36,\"Olyset\\u00ae Plus - Mean permethrin content in g\\/kg (95% CI)\":\"8.8 (7.9\\u20139.7)\",\"Olyset\\u00ae Plus - Permethrin content lost (%)\":\"52\",\"Olyset\\u00ae Plus - PBO content in g\\/ kg (95% CI)\":\"1.16 (0.8\\u20131.5)\",\"Olyset\\u00ae Plus - PBO content lost (%)\":\"87\",\"Olyset\\u00ae Net - Mean permethrin content in g\\/kg (95% CI)\":\"14.8 (13.9\\u201315.7)\",\"Olyset\\u00ae Net - Permethrin content lost (%)\":\"24\"}}\n", - "\n", - "header: Net survivorship and fabric integrity\n", - "\n", - "At the end of year 1, Olyset(r) Plus reported survivorship rates of 97.2% (_n_ = 243), with Olyset(r) Net recording 99.6% (_n_ = 249). At year 2, there were 92.4% (_n_ = 231) Olyset(r) Plus and 90.4% (_n_ = 226) of Olyset(r) Nets still surviving. At the end of the 3 years of study, the survivorship rates for Olyset(r) Plus and Olyset(r) Net were at 91.2% (_n_ = 228) and 86.4% (_n_ = 216), respectively.\n", - "\n", - "The pH values of the nets showed that 87.6% of Olyset(r) Plus were in good condition at 6 months, 7.6% were in acceptable/serviceable condition, and 4.8% were too torn (Table 6). These proportions increased gradually during the study and at 36 months, 49.6% were in good condition, 27.1% in acceptable/serviceable condition, and 23.2% were too torn. A similar trend of attrition was seen for Olyset(r) Net, with 44.9%, 32.8% and 22.2% nets being in good condition, acceptable condition or too torn at 36 months, respectively.\n", - "\n", - "Data on the comparison of estimates of the mean pH values and the mean hole area for Olyset(r) Plus and Olyset(r) Net are given in Table 7.\n", - "\n", - "The proportion of Olyset(r) Plus nets having been repaired by households increased from 6% (95% CI: 3.4-9.7) at month 6 to 17.9% (95% CI: 13.2-23.6) at months\n", - "\n", - "36, while that of Olyset(r) Net increased from 5% (95% CI: 2.8-8.7) to 12% (95% CI: 8.0-17.1) in the same period.\n", - "\n", - "\n", - "Olyset(r) Net incorporated with permethrin alone was included in the trial as a positive control net. A net was considered to have passed the WHO efficacy criteria if it caused >= 80% mortality and/or >= 95% knockdown in cone bioassays or >= 80% mortality and/or >= 90% blood-feeding inhibition in tunnel tests [3]. Most of the Olyset(r) Plus and Olyset(r) Net lost the knockdown effect during the 24-36 months follow-up. Overall, neither Olyset(r) Plus nor Olyset(r) Net performed as they should even after 2 years and did not meet the WHO efficacy criteria of a 3-year LLIN.\n", - "\n", - "Previous studies have demonstrated enhanced efficacy of Olyset(r) Plus against resistant _An. gambiae_ attributable to PBO [16-18]. A recent randomised controlled field trial in Tanzania with high levels of pyrethroid resistance in malaria vectors _An. gambiae_ and _An. arabiensis_ also attributed higher impact on malaria of Olyset(r) Plus over Olyset(r) Net to the presence of PBO that was sustained after 21 months of the trial [19]. However, there is a view that these two nets are not comparable and that the higher efficacy of Olyset(r) Plus was due to much more bleed rate of permethrin into its surface and not due to PBO that was incorporated in small amount and dwindled rapidly over time [20]. In this trial, Olyset(r) Plus was evaluated as a pyrethroid LLIN since there were no guidelines published by WHO of how to evaluate PBO nets at the time of this trial, and considering the manufacturer's product claim.\n", - "\n", - "While, it was reported that high intensity insecticide resistance will reduce the level of personal and community protection of pyrethroid LLINs [21] and PBO nets could be effective against malaria in some resistance scenarios [22], a recent WHO multi-country study found no evidence of an association between insecticide resistance and malaria infection prevalence or incidence [23]. There is also a view that at present there is limited evidence that recent reduction in the impact on malaria in sub-Saharan Africa was due to increasing resistance in malaria vectors to the pyrethroid insecticides used in treating nets [24].\n", - "\n", - "The initial permethrin content in both nets was more or less similar but the enhanced efficacy of Olyset(r) Plus was mainly due to the higher release of permethrin into the surface fibres and presence of PBO than Olyset(r) Net. The gradual decline in efficacy of both nets is consistent with the loss of permethrin and PBO in Olyset(r) Plus and of permethrin in Olyset(r) Net over time during their routine usage by the community. The decline in permethrin content was more rapid in Olyset(r) Plus than Olyset(r) Net. This explains why Olyset(r) Plus having permethrin and PBO was relatively superior than Olyset(r) Net initially, i.e., until 18 months, but after that their performance was below the WHO efficacy cut off. While the PBO content in Olyset(r) Plus at the baseline was within the target tolerance limits, 66% of the PBO content was lost within one year of net usage, and the loss increased to 81% at year 2 and 87% at year 3. Previous studies have reported that the insecticidal content in LLINs decay over time [6]. While permethrin and PBO contents may be lost due to natural decay and evaporation, washing of nets frequently and drying them under direct sunlight are known to contribute to such losses [25, 26]. In this study, despite manufacturer's label recommendation not to expose nets to direct sunlight, a good proportion of both type of nets were exposed to bright sunlight before use and left to dry in the sun after washing. This would have reduced both permethrin and PBO contents and consequently reduced the biological efficacy of these nets and should be borne in mind when considering these results. Even though Kisumu strain was tested, the loss of PBO would have affected efficacy of Olyset Plus as PBO can improve net performance even against susceptible strains, which too have P450s, and PBO is also known to act as a good solvent that can aid cuticular penetration and help improve insecticidal activity. The operational implication of rapid loss of PBO is that Olyset(r) Plus was unlikely to remain effective even against pyrethroid resistant mosquitoes for 2 or 3 years of use.\n", - "\n", - "Community net wash practices were comparable between the two nets. During the first 6 months, no net was reported to have been washed. At 1 year, 7% of Olyset(r) Plus and 7% of Olyset(r) Net were reported to have been washed at least once. At month 36 months, about 17% and 21% of Olyset(r) Plus and Olyset(r) Net\n", - "respectfully had been washed at least once. LLINs are usually recommended to be washed at most every 3 months [5], although this frequency depends on local cultural practices and water availability. Different net washing frequencies have been reported in other studies spanning from a high of 8 washes per month in Mali [27] to 4-7 times in Tanzania [28] to a low average of 1.5 washes per year in Uganda [29]. In coastal Kenya, on average nets were washed twice in 6 months, with blue colour nets least often washed than white or green colour nets, and older nets washed more frequently [30]. In western Kenya lowlands, three quarter of nets were washed once within 3 months and a third of them were dried under the sun [31]. The main reasons for low reported wash rates during the annual surveys in our study could be attributed to net users' poor recall of the net washing frequencies, and people's apprehension that washing of nets reduce net efficacy, although there was no water scarcity in the trial area being located in a rice irrigation area.\n", - "\n", - "The study participants reported experiencing certain transient adverse effects during the first two days of use of nets, but these could be prompted reactions since the community members had been informed about the possibility of such effects at the time of net distribution. The higher side effects from use of Olyset(r) Plus is in line with the higher release of permethrin as mentioned above. Users resorted to ventilating their nets in direct sunlight to reduce the effects although our project team had advised to dry up and keep the nets under shade. Ventilating new nets or drying washed nets under direct sunlight might have contributed to a significant reduction in active ingredient content and bio-efficacy of nets.\n", - "\n", - "At the end of the 3-year period, among the two cohorts of 250 nets each, only about 9% Olyset(r) Plus and about 14% Olyset(r) Net were reported to have been lost showing a high net survivorship. These results are in line with the expected 75% net survivorship rate reported by the NetCALC 3-year serviceable prediction model [32]. Previous studies have reported varying rate of net survivorship in African countries, such as 58% nets were lost within two years in Rwanda [33], only 39% of distributed nets remained both present and in serviceable physical condition 2-4 years after a mass campaign in Tanzania [34], but in Western Uganda an estimated attrition rate of just 12% after three years of use was observed for a polyester net [35]. In four African countries of Mozambique, Nigeria, DRC and Zanzibar, Tanzania, survival in serviceable condition of polyethylene and polyester LLINs after 31-37 months of use varied between different sites from 17 to 80% with median survival from 1.6 to 5.3 years [36]. In our study, the observed low attrition rate of nets appears to be also due to the 'Hawthorne effect' as the households included in the two cohorts of nets were visited every 6 or 12 months to inspect the nets. So, the awareness among study participants that the nets were regularly being followed could have modified their behaviour in favour of more careful upkeep and maintenance of the nets and as such may have been a limitation in this study.\n", - "\n", - "Studies have shown that despite small to medium size holes (64 < PHI < 642), LLINs are still protective against mosquito bites due to the excito-repellent effects of insecticides [35]. However, the nets may become ineffective when the overall hole area in nets reaches a certain threshold [37]. In our study, both Olyset(r) Plus and Olyset(r) Net recorded high fabric integrity up to the 3-year trial period. At 12 months after distribution, 78.1% of Olyset Plus and 63.8% of Olyset(r) Net were in good/acceptable condition, 12.3% Olyset(r) Plus and 30.5% Olyset(r) Net were in serviceable condition, while 9.4% Olyset(r) Plus and 5.6% Olyset(r) Net were completely torn and required to be replaced. At the end of the 3-year trial period, 49.5% of Olyset(r) Plus and 44.9% of Olyset(r) Net were in good/acceptable condition, 27.1% Olyset(r) Plus and 32.8% Olyset(r) Net in serviceable condition, while 23.2% Olyset(r) Plus and 22.2% Olyset(r) Net were completely torn and required replacement.\n", - "\n", - "Although Olyset(r) Net retained a higher permethrin content that Olyset(r) Plus, the latter showed longer duration of efficacy than the former, i.e., 18 months compared with 12 months above the WHO efficacy cut off, and higher efficacy thereafter i.e., the efficacy of Olyset(r) Plus declined to 42% at the end of 3-year trial period and that of Olyset(r) Net to 36% over the same period. This could be attributed to higher release of permethrin into the netting surface, and also because PBO can make nets perform better even against susceptible mosquitoes. Pyrethroid-PBO nets have previously been associated with higher mosquito mortality and lower blood-feeding rates in areas of high-level insecticide resistance than were non-PBO LLINs [38, 39]. Although in our study we did not test nets with a pyrethroid resistant mosquito strain, it is likely that the fast decline of PBO in Olyset(r) Plus was caused by the inappropriate exposure to sunlight, as well as the normal loss through washing would have reduced efficacy against resistant mosquitoes in the same way that it reduced efficacy against the susceptible mosquitoes tested here.\n", - "\n", - "Appropriate testing guidelines and field studies are thus required to evaluate the operational effectiveness of PBO nets against pyrethroid resistant mosquitoes and considering the PBO retention and release properties. The revised WHO LLIN guidelines should clarify for how long PBO nets should be effective and if the \n", - "current WHO efficacy criteria for a 3-year LLIN should be reduced to fit the chemistry.\n", - "\n", - "A limitation of our trial was that we did not evaluate efficacy of Olysset(r) Plus against resistant _An. gambling_ mosquitoes. Instead, we tested its efficacy for the presence of permethrin alone using a susceptible malaria vector strain, although inclusion of PBO in nets has the potential of increasing insecticidal efficacy due to increased cuticular penetration and presence of P450s in susceptible insects. There is thus a need for suitable testing guidelines and a much more validation of the impact of PBO in pyrethroid-PBO nets.\n", - "\n", - "header: Bioassays\n", - "\n", - "The insecticidal effect of the nets was evaluated using cone bioassays and where required tunnel tests, as per the WHO guidelines [3]. The bioassays were done at time zero (baseline) and then at every 6 months up to 36 months. On each of the netting pieces cut for bioassays, standard WHO plastic cones were held in place using a plastic manifold and a total of 50 laboratory bred, susceptible Kisumu strain _Anopheles gambiae_ (non-blood fed, 2-5 day old) were exposed for 3 min (5 pieces per net x 5 mosquitoes per test x 2 replicates). After the exposure, the mosquitoes were removed gently from\n", - "the cones and kept separately in plastic cups provided with cotton-wool moistened with 10% glucose solution. Knockdown (KD) was recorded at 60 min and mortality at 24 h after exposure. Mosquitoes exposed to untreated polyester net pieces were used as untreated controls. The bioassays were carried out at 27 +- 2 degC temperature and 80% +- 10% relative humidity. When the mosquito knockdown rate was < 95% and mortality < 80%, the mortality and blood-feeding inhibition effect of such nets was assessed in a tunnel test according to the WHO guidelines [3].\n", - "\n", - "For each net, only one netting piece with which mosquito mortality was found closest to the average mortality in the cone test was tested in the tunnel test [3]. One hundred, non-blood fed female _An. gambiae_ Kisumu mosquitoes, aged 5-8 days were released at the longer end of a tunnel equipment made of glass. At each end of the tunnel, a 25 cm square cage covered with a polyester netting was fitted. At the shorter end of the tunnel, a rabbit which could not move but was available for mosquito biting was placed. The mosquitoes were released at 18:00 and mosquitoes recovered at 09:00 on the following morning. During the test, the tunnel was kept in a place maintained at 27 +- 2 degC and 80% +- 10% relative humidity in full darkness. Another tunnel with untreated netting was used as control. The mean mortality rate and percentage blood-feeding inhibition were recorded, as follows:\n", - "\n", - "1. Mortality = this was measured by pooling the mortality rates of mosquitoes from the two sections of the tunnel. If mortalities in the control recorded more than 10%, the test was considered invalid.\n", - "\n", - "\\[\\text{Blood} - \\text{feeding\\,inhibition}(\\%) = \\left[ {100 \\times \\left( {\\text{Bfc} - \\text{Bfc}} \\right)} \\right]/\\text{Bfc}\\]\n", - "\n", - "where, Bfc is the proportion of blood-fed mosquitoes in the control tunnel and Bft is the proportion of blood-fed mosquitoes in the tunnel with the treated net. The treated net was considered to have met the WHO efficacy criteria when mortality in mosquitoes was >= 80% and/or blood-feeding inhibition was >= 90%.\n", - "\n", - "header: Availability of data and materials\n", - "\n", - "All the relevant datasets supporting the conclusions of this article are included within the article.\n", - "\n", - "header: Table 7 Comparison of the estimates of the mean pHI and the mean hole area for O lyset® Plus and Olyset® Net\n", - "footer: pHI proportionate Hole Index\n", - "columns: ['Survey month', 'Olyset® Plus - No. of nets inspected', 'Olyset® Plus - Mean hole area in cm2 (± SD)', 'Olyset® Plus - Mean pHI (± SD)', 'Olyset® Net - No. of nets inspected', 'Olyset® Net - Mean hole area in cm2 (± SD)', 'Olyset® Net - Mean pHI (± SD)']\n", - "\n", - "{\"0\":{\"Survey month\":6,\"Olyset\\u00ae Plus - No. of nets inspected\":250,\"Olyset\\u00ae Plus - Mean hole area in cm2 (\\u00b1 SD)\":\"52.3 \\u00b1 230.5\",\"Olyset\\u00ae Plus - Mean pHI (\\u00b1 SD)\":\"93.3 \\u00b1 313.6\",\"Olyset\\u00ae Net - No. of nets inspected\":250,\"Olyset\\u00ae Net - Mean hole area in cm2 (\\u00b1 SD)\":\"123.3 \\u00b1 272.3\",\"Olyset\\u00ae Net - Mean pHI (\\u00b1 SD)\":\"110.5 \\u00b1 221.8\"},\"1\":{\"Survey month\":12,\"Olyset\\u00ae Plus - No. of nets inspected\":243,\"Olyset\\u00ae Plus - Mean hole area in cm2 (\\u00b1 SD)\":\"229.2 \\u00b1 574.2\",\"Olyset\\u00ae Plus - Mean pHI (\\u00b1 SD)\":\"153.6 \\u00b1 437.0\",\"Olyset\\u00ae Net - No. of nets inspected\":249,\"Olyset\\u00ae Net - Mean hole area in cm2 (\\u00b1 SD)\":\"192.5 \\u00b1 376.2\",\"Olyset\\u00ae Net - Mean pHI (\\u00b1 SD)\":\"156.8 \\u00b1 306.5\"},\"2\":{\"Survey month\":24,\"Olyset\\u00ae Plus - No. of nets inspected\":231,\"Olyset\\u00ae Plus - Mean hole area in cm2 (\\u00b1 SD)\":\"389.8 \\u00b1 975.4\",\"Olyset\\u00ae Plus - Mean pHI (\\u00b1 SD)\":\"317.6 \\u00b1 794.7\",\"Olyset\\u00ae Net - No. of nets inspected\":226,\"Olyset\\u00ae Net - Mean hole area in cm2 (\\u00b1 SD)\":\"873.9 \\u00b1 353.4\",\"Olyset\\u00ae Net - Mean pHI (\\u00b1 SD)\":\"279.4 \\u00b1 428.1\"},\"3\":{\"Survey month\":36,\"Olyset\\u00ae Plus - No. of nets inspected\":228,\"Olyset\\u00ae Plus - Mean hole area in cm2 (\\u00b1 SD)\":\"630.7 \\u00b1 1191.8\",\"Olyset\\u00ae Plus - Mean pHI (\\u00b1 SD)\":\"513.9 \\u00b1 970.9\",\"Olyset\\u00ae Net - No. of nets inspected\":216,\"Olyset\\u00ae Net - Mean hole area in cm2 (\\u00b1 SD)\":\"621.5 \\u00b1 1710.3\",\"Olyset\\u00ae Net - Mean pHI (\\u00b1 SD)\":\"506.4 \\u00b1 1393.2\"}}\n", - "\n", - "header: Chemical content analysis\n", - "\n", - "The chemical contents in the nets were determined at the beginning and at years 1, 2 and 3 by samplings nets according to the scheme described earlier. The netting pieces cut for determination of active ingredient content were individually rolled up and placed in new, clean and labeled aluminum foils and sent to the Phyto-pharmacy Department of the Walloon Agricultural Research Centre, Gembloux, Belgium, a WHO Collaborating Centre, for chemical analysis.\n", - "\n", - "header: Trial design and study area\n", - "\n", - "We did a prospective, household randomized controlled, large-scale 3-year field trial in a rice irrigation area of Kirinyaga County, Kenya from 2014 to 2017. The area is located about 100 km northeast of Nairobi at the base of Mt Kenya at an altitude of about 1200 m above sea level [14]. It receives mean annual rainfall of 1200-1600 mm with long rains in March-June and short rains in October-December. Due to high densities of mosquitoes year-round, many local people use mosquito nets. Several bed net trials have previously been conducted here for national product registration. Over 80% of the inhabitants of the area have only primary level education. Most of the houses in the area are made of mud walls with roofs of corrugated iron sheets [14].\n", - "\n", - "Four villages of Maendeleo, Huruma, Kiratina and Kasarani were selected by a simple randomization, of which the first two villages were randomly allocated Olyset(r) Plus and the other two villages received Olyset(r) Net (Table 1). In each of the selected village, households were randomly selected.\n", - "\n", - "header: Methods\n", - "\n", - "The field trial was conducted according to the WHO guidelines [3, 11]. The description of the test products and trial procedures are described below.\n", - "\n", - "header: Statistical analysis\n", - "\n", - "The data collected were entered in excel spreadsheets and cross-checked for accuracy. Data were analyzed using STATA version 14.0 (Stata Corporation, College Station, TX, USA). Comparisons between the two types of nets were tested for significance using the Chi-square (kh2) test. Exact binomial distribution with 95% confidence intervals (95% CI) was used for percentages. For continuous variables, the arithmetic mean was used depending on the distribution of values compared to a normal distribution.\n", - "\n", - "The nets were considered to have passed the WHO efficacy criteria if the mosquito knockdown rate was found to be >= 95% and/or mortality rate >= 80% in cone bioassays. For the tunnel tests, nets were considered to have passed the WHO efficacy criteria when mortality in mosquitoes was >= 80% and/or blood-feeding inhibition was >= 90% [3]. The procedure for calculation of proportionate Hole Index (pHI) for nets is already described above.\n", - "\n", - "header: Abbreviations\n", - "\n", - "_Cl_ Confidence interval; CHW: Community Health Workers; KD: Knockdown; LINK: long-lasting insecticidal nets; NMD: National Malaria Control Programme; pH: proportionate Hole Index; PBO: Papernot by duakoc. Relative standard deviation; SD: Standard deviation; WHO: World Health Organization.\n", - "\n", - "header: Table 6 Progression of hole formation and proportionate Hole Index (pHI) values for Olyset® Plus and Olyset® Net\n", - "footer: None\n", - "columns: ['Net brand', 'Follow up months', 'No. of nets sampled', 'Number of nets with any size holes (%; 95% CI)', 'No. of nets by pHI values (%; 95% CI) - pHI < 65 (in good condition)', 'No. of nets by pHI values (%; 95% CI) - pHI 65–642 (in acceptable condition)', 'No. of nets by pHI values (%; 95% CI) - pHI > 642 (too torn nets)']\n", - "\n", - "{\"0\":{\"Net brand\":\"Olyset\\u00ae Plus\",\"Follow up months\":6,\"No. of nets sampled\":250,\"Number of nets with any size holes (%; 95% CI)\":\"115 (46.0; 39.9\\u201352.1)\",\"No. of nets by pHI values (%; 95% CI) - pHI < 65 (in good condition)\":\"219 (87.6; 82.9\\u201391.1)\",\"No. of nets by pHI values (%; 95% CI) - pHI 65\\u2013642 (in acceptable condition)\":\"19 (7.6; 4.9\\u201311.5)\",\"No. of nets by pHI values (%; 95% CI) - pHI > 642 (too torn nets)\":\"12 (4.8; 2.8\\u20138.2)\"},\"1\":{\"Net brand\":\"Olyset\\u00ae Plus\",\"Follow up months\":12,\"No. of nets sampled\":243,\"Number of nets with any size holes (%; 95% CI)\":\"131 (54.0; 47.6\\u201360.1)\",\"No. of nets by pHI values (%; 95% CI) - pHI < 65 (in good condition)\":\"190 (78.2; 72.6\\u201382.9)\",\"No. of nets by pHI values (%; 95% CI) - pHI 65\\u2013642 (in acceptable condition)\":\"30 (12.4; 8.8\\u201317.0)\",\"No. of nets by pHI values (%; 95% CI) - pHI > 642 (too torn nets)\":\"23 (9.5; 6.3\\u201313.8)\"},\"2\":{\"Net brand\":\"Olyset\\u00ae Plus\",\"Follow up months\":24,\"No. of nets sampled\":231,\"Number of nets with any size holes (%; 95% CI)\":\"120 (52.0; 45.5\\u201358.3)\",\"No. of nets by pHI values (%; 95% CI) - pHI < 65 (in good condition)\":\"145 (62.8; 56.7\\u201368.7)\",\"No. of nets by pHI values (%; 95% CI) - pHI 65\\u2013642 (in acceptable condition)\":\"58 (25.1; 19.9\\u201331.1)\",\"No. of nets by pHI values (%; 95% CI) - pHI > 642 (too torn nets)\":\"28 (12.0; 8.5\\u201316.9)\"},\"3\":{\"Net brand\":\"Olyset\\u00ae Plus\",\"Follow up months\":36,\"No. of nets sampled\":228,\"Number of nets with any size holes (%; 95% CI)\":\"144 (63.0; 56.7\\u201369.1)\",\"No. of nets by pHI values (%; 95% CI) - pHI < 65 (in good condition)\":\"113 (49.6; 43.1\\u201356.0)\",\"No. of nets by pHI values (%; 95% CI) - pHI 65\\u2013642 (in acceptable condition)\":\"62 (27.1; 21.8\\u201333.3)\",\"No. of nets by pHI values (%; 95% CI) - pHI > 642 (too torn nets)\":\"53 (23.2; 18.2\\u201329.2)\"},\"4\":{\"Net brand\":\"Olyset\\u00ae Net\",\"Follow up months\":6,\"No. of nets sampled\":250,\"Number of nets with any size holes (%; 95% CI)\":\"157 (63.0; 56.7\\u201368.6)\",\"No. of nets by pHI values (%; 95% CI) - pHI < 65 (in good condition)\":\"186 (74.4; 68.7\\u201379.4)\",\"No. of nets by pHI values (%; 95% CI) - pHI 65\\u2013642 (in acceptable condition)\":\"57 (22.8; 18.1\\u201328.4)\",\"No. of nets by pHI values (%; 95% CI) - pHI > 642 (too torn nets)\":\"7 (2.8; 1.3\\u20135.7)\"},\"5\":{\"Net brand\":\"Olyset\\u00ae Net\",\"Follow up months\":12,\"No. of nets sampled\":249,\"Number of nets with any size holes (%; 95% CI)\":\"169 (68.0; 61.8\\u201373.4)\",\"No. of nets by pHI values (%; 95% CI) - pHI < 65 (in good condition)\":\"159 (63.9; 57.7\\u201369.6)\",\"No. of nets by pHI values (%; 95% CI) - pHI 65\\u2013642 (in acceptable condition)\":\"76 (30.5; 25.1\\u201336.5)\",\"No. of nets by pHI values (%; 95% CI) - pHI > 642 (too torn nets)\":\"14 (5.6; 3.4\\u20139.2)\"},\"6\":{\"Net brand\":\"Olyset\\u00ae Net\",\"Follow up months\":24,\"No. of nets sampled\":226,\"Number of nets with any size holes (%; 95% CI)\":\"147 (65.0; 58.6\\u201370.9)\",\"No. of nets by pHI values (%; 95% CI) - pHI < 65 (in good condition)\":\"120 (53.1; 46.6\\u201359.5)\",\"No. of nets by pHI values (%; 95% CI) - pHI 65\\u2013642 (in acceptable condition)\":\"71 (31.4; 25.7\\u201337.7)\",\"No. of nets by pHI values (%; 95% CI) - pHI > 642 (too torn nets)\":\"35 (15.5; 11.4\\u201320.8)\"},\"7\":{\"Net brand\":\"Olyset\\u00ae Net\",\"Follow up months\":36,\"No. of nets sampled\":216,\"Number of nets with any size holes (%; 95% CI)\":\"156 (72.0; 65.9\\u201377.9)\",\"No. of nets by pHI values (%; 95% CI) - pHI < 65 (in good condition)\":\"97 (44.9; 38.4\\u201351.6)\",\"No. of nets by pHI values (%; 95% CI) - pHI 65\\u2013642 (in acceptable condition)\":\"71 (32.8; 26.9\\u201339.4)\",\"No. of nets by pHI values (%; 95% CI) - pHI > 642 (too torn nets)\":\"48 (22.2; 17.2\\u201328.2)\"}}\n", - "\n", - "header: Net sampling scheme\n", - "\n", - "The scheme of sampling nets at different time points for bioassays and chemical assays is given in Table 2. The netting pieces were cut from the sampled nets from positions 1-9 for bioassays, and positions HP1-HP5 (at time 0) or positions HP2-HP5 (at time 12, 24 and 36 months) for chemical content assays (Fig. 1). All the nets which were sampled and retrieved at the given survey points were replaced with new ones.\n", - "\n", - "header: Ethics approval and consent to participate: Consent to publication\n", - "\n", - "This paper is published with the authority from the Director General, Kenya Medical Research Institute (KEMR).\n", - "\n", - "header: Background\n", - "\n", - "Insecticide-treated nets reduce child mortality, number of _Plasmodium falciparum_ cases and probably the number of _P. vivax_ cases per person/year [1]. Factory-produced long-lasting insecticide nets (LLINs) are a core malaria intervention for the global elimination of malaria led by the World Health Organization (WHO) [2]. According to the WHO definition, LLINs should retain efficacy against mosquito vectors for a minimum of 20 standard washes under laboratory conditions and a minimum of 3 years of use under field conditions [3]. When used by most of the people in a population, insecticide-treated nets can protect all people in the community, including those who do not sleep under nets [4]. Currently, the National Malaria Control Programme (NMCP) in Kenya has been scaling up the use of LLINs in malaria endemic and high-risk areas to achieve universal coverage, which is defined by WHO as access to one LLIN for every 1.8 persons in each household [2, 5].\n", - "\n", - "Pyrethroid LLINs were the first brands of treated nets recommended by WHO for malaria control. However, it was believed that insecticide resistance was worsening in Africa and would present a major threat to malaria control [6-8], and that pyrethroid-LLINs were becoming less effective at killing mosquitoes in household conditions when pyrethroid resistance develops [9, 10]. Consequently, piperonyl butoxide (PBO) was incorporated in nets with the intension to improve their efficacy against pyrethroid resistant mosquitoes by acting as a metabolic enzyme inhibitor targeting the P450 cytochrome or mixed function oxidases that metabolise pyrethroids and enhance the efficacy of pyrethroid treated nets. Olyset(r) Plus has been prequalified by WHO as the first in class PBO net.\n", - "\n", - "However, at the time of beginning the trial due to the absence of guidelines published by WHO of how to evaluate PBO nets, and considering the manufacturer's product claim, Olyset(r) Plus was evaluated only as a pyrethroid LLIN against a pyrethroid susceptible mosquito strain rather than against a resistant strain. This paper presents results of a 3-year long-term (Phase III) field trial of the candidate product, Olyset(r) Plus, along with a positive control product Olyset(r) Net, in a malaria endemic rice cultivation area of Kirinyaga County, Kenya.\n", - "\n", - "header: Test products\n", - "\n", - "Bioefficacy and physical durability of the Olyset(r) Plus and Olyset(r) Net both manufactured by Sumitomo Chemical were evaluated. The former is a polyethylene mono-filament net incorporated with 2% permethrin corresponding to 20 g permethrin active ingredient (AI)/kg or 800 mg permethrin AI/m\\({}^{2}\\) and 1% PBO (corresponding to 10 g PBO AI/kg or 400 mg PBO AI/m\\({}^{2}\\)). The latter is a polyethylene mono-filament net incorporated with 2% permethrin (w/w) (corresponding to 800 mg permethrin AI/m\\({}^{2}\\)). Olyset(r) Net was recommended in 2009 by the WHO Pesticide Evaluation Scheme (WHOPES) for use in malaria control [12], while Olyset(r) Plus was given interim recommendation by WHO in 2012 with the requirement to evaluate the product in a 3-year long-term trial to confirm its long-lasting efficacy in field [13].\n", - "\n", - "header: Assessment of durability of cohort nets\n", - "\n", - "To monitor durability of nets (i.e. survivorship and changes in physical integrity) during their routine use, 250 each of Olyset(r) Plus and Olyset(r) Net were distributed in separate households (2 nets per household) in the same villages by simple randomization. From these cohorts of nets, all nets available at the households at the time of surveys at 6, 12, 24 and 36 months were inspected for their presence and physical integrity. For this, the nets were retracted from the sleeping places, individually hung up on a rectangular frame held outside the house and inspected for presence of any holes on the side and roof panels. The holes were counted for each net, their diameter was measured, and they were classified in the following categories according to the WHO criteria for hole sizes [3, 11]:\n", - "\n", - "Size A1: 0.5-2 cm diameter, Size A2: 2-10 cm diameter, Size A3: 10-25 cm diameter, Size A4: 25 cm diameter.\n", - "\n", - "The parameters for assessing the integrity of nets included the proportions of Olyset(r) Plus and Olyset(r) Net with any size holes or tears, and the proportionate Hole Index (pHI) for each net, which was calculated as follows [11]:\n", - "\n", - "\\[\\text{pH} = \\left( {1.23 \\times \\text{ No.~of~size~A1~holes}} \\right) + \\left( {28.28 \\times \\text{ No.~of~size~A2~holes}} \\right) + \\left( {240.56 \\times \\text{ No.~of~size~A3~holes}} \\right) + \\left( {706.95 \\times \\text{ No.~of~size~A4~holes}} \\right)\\]\n", - "\n", - "Using the pHI values, Olyset(r) Plus and Olyset(r) Net were categorized as those in 'good condition' (pHI: 0-64), nets in 'acceptable' condition (pHI: 65-642), and torn nets that were likely to provide no protective efficacy (pHI > 642) [15]. The number of nets in 'good' and\n", - "\n", - "Fig. 1: A rectangular net and its individual panels showing positions for cutting netting pieces (positions 1–9 for bioassays; HP1–HPS for chemical assays)\n", - "'acceptable condition' together were taken to estimate the survival of nets over time.\n", - "\n", - "The sampled nets were also inspected for any repairs of holes or tears done by the households. After inspection, the nets were returned to the same sleeping place in the same household.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `Observation` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Results\n", - "\n", - "Among the 1784 participating homesteads with a population of 10 325, a total of 1551 households participated in the study (Table 1). Most of the heads of the households (age: 17-96 years) had received formal education and practiced farming (96.6%).\n", - "\n", - "Out of 100 heads of households with Olyset(r) Plus interviewed for adverse events, 44% reported itching, 4% eye irritation, and 7% unpleasant smell. Among the Olyset(r) Net users, 7% each reported nasal discharge and eye irritation. These were reported to be mild symptoms lasting for one or two days. To reduce these effects, 43% users of Olyset(r) Plus ventilated nets for a day in the open under the sun and 33% under the shade. Among Olyset(r) Net users, similar actions were taken by 44% and 39%, respectively.\n", - "\n", - "header: Funding\n", - "\n", - "The work was funded as a collaborative project by the WHO Pesticide Evaluation Scheme, Geneva, Switzerland.\n", - "\n", - "header: Chemical contents\n", - "\n", - "At time 0 (baseline), the contents of permethrin and PBO in Olyset(r) Plus were within the target tolerance limits of 20 +- 5 g/kg and 10 +- 2.5 g/kg, respectively; while the permethrin content in Olyset(r) Net was also within the target tolerance limit of 20 +- 3 g/kg (Table 5). The within net variation (relative standard deviation, RSD) in permethrin and PBO contents for Olyset(r) Plus at baseline were 2.2% and 3.7%, respectively, and were within the acceptable tolerance limits. The within net variation in the permethrin content in Olyset(r) Net at the baseline was 1.2% and was also within the acceptable tolerance limit. At the end of years 1, 2 and 3 of net usage, the permethrin content in Olyset(r) Plus decreased by 36%, 40% and 52%, and the PBO content showed a marked reduction of 66%, 81% and 87%, respectively. The loss of the permethrin in Olyset(r) Net\n", - "\n", - "\\begin{table}\n", - "\\begin{tabular}{c c c c c c c c} \\hline\n", - "**Survey month** & **No. of** & **Mean 1 h** & **Mean 24 h** & **\\% of nets passed by** & **\\% of nets passed by** & **No. of nets passed by** & **Overall pass rate in** \\\\\n", - "**nets** & **KD (\\%)** & **mortality** & **KD criteria alone(r)** & **mortality criteria** & **requiring tunnel** & **percentage (95\\% CI)(r)** \\\\\n", - "**Olyset(r) Plus** & & & & & & & \\\\\n", - "0 & 30 & 99.5 & 100 & 100 & 100 & 0 & 100 (80–100) \\\\\n", - "6 & 30 & 97.0 & 88.2 & 83.3 & 73.3 & 4 & 96.7 (82–99) \\\\\n", - "12 & 30 & 9\n", - "\n", - "4.2 & 74.3 & 76.7 & 43.3 & 6 & 93.3 (78–99) \\\\\n", - "18 & 30 & 82.9 & 65.9 & 36.7 & 36.7 & 16 & 86.7 (69–96) \\\\\n", - "24 & 30 & 77.4 & 75.3 & 0.0 & 46.7 & 15 & 76.7 (57–90) \\\\\n", - "30 & 30 & 60.4 & 56.9 & 0.0 & 10.0 & 27 & 70.0 (50–85) \\\\\n", - "**Olyset(r) Net** & & & & & & & \\\\\n", - "0 & 30 & 99.1 & 100 & 100 & 100 & 0 & 100 (88–100) \\\\\n", - "6 & 30 & 96.9 & 79.8 & 80.0 & 60.0 & 4 & 93.3 (77–99) \\\\\n", - "12 & 30 & 68.5 & 54.7 & 20.0 & 3.3 & 24 & 83.3 (65–94) \\\\\n", - "18 & 30 & 72.1 & 50.2 & 30.0 & 20.0 & 18 & 73.3 (54–87) \\\\\n", - "24 & 30 & 79.8 & 68.9 & 3.3 & 46.7 & 18 & 66.7 (47–83) \\\\\n", - "30 & 30 & 50.9 & 50.9 & 0.0 & 3.3 & 29 & 60.0\n", - "\n", - "\n", - "was 16% at year 1 and did not change much at year 2 and 3 (19 and 24%, respectively).\n", - "\n", - "header: Abbreviations\n", - "\n", - "_Cl_ Confidence interval; CHW: Community Health Workers; KD: Knockdown; LINK: long-lasting insecticidal nets; NMD: National Malaria Control Programme; pH: proportionate Hole Index; PBO: Papernot by duakoc. Relative standard deviation; SD: Standard deviation; WHO: World Health Organization.\n", - "\n", - "header: Availability of data and materials\n", - "\n", - "All the relevant datasets supporting the conclusions of this article are included within the article.\n", - "\n", - "header: Net sampling scheme\n", - "\n", - "The scheme of sampling nets at different time points for bioassays and chemical assays is given in Table 2. The netting pieces were cut from the sampled nets from positions 1-9 for bioassays, and positions HP1-HP5 (at time 0) or positions HP2-HP5 (at time 12, 24 and 36 months) for chemical content assays (Fig. 1). All the nets which were sampled and retrieved at the given survey points were replaced with new ones.\n", - "\n", - "header: Conclusions\n", - "\n", - "Olysset(r) Plus did not meet the WHO criteria for efficacy of LLINs in this 3-year Phase III study, which could have resulted from faster loss of permethrin and PBO and users not following the manufacturer's recommendations to not leave the nets under direct sunlight. Better community education is therefore essential to ensure appropriate use and upkeep of nets in areas with LLIN-based interventions in order to maximize their operational impact on the prevention, control and elimination of malaria. Failure to do this would result in operational implications requiring early replenishment with new nets to ensure that such an LLIN based malaria intervention remains effective.\n", - "\n", - "header: Table 5 Mean permethrin and PBO contents (relative standard deviation) in nets at baseline, and at 12, 24 and 36 months\n", - "footer: a Within net variation (relative standard deviation) in permethrin and PBO contents at baseline was 2.2% and 3.7%, respectively (Olyset® Plus). – not applicable, PBOpiperonyl butoxideb Within net variation (relative standard deviation) in permethrin content at baseline was 1.2% (Olyset® Net)\n", - "columns: ['Sampling month', 'Olyset® Plus - Mean permethrin content in g/kg (95% CI)', 'Olyset® Plus - Permethrin content lost (%)', 'Olyset® Plus - PBO content in g/ kg (95% CI)', 'Olyset® Plus - PBO content lost (%)', 'Olyset® Net - Mean permethrin content in g/kg (95% CI)', 'Olyset® Net - Permethrin content lost (%)']\n", - "\n", - "{\"0\":{\"Sampling month\":0,\"Olyset\\u00ae Plus - Mean permethrin content in g\\/kg (95% CI)\":\"18.4 (18.3\\u201318.6)a\",\"Olyset\\u00ae Plus - Permethrin content lost (%)\":\"\\u2013\",\"Olyset\\u00ae Plus - PBO content in g\\/ kg (95% CI)\":\"8.98 (8.86\\u20139.10)\",\"Olyset\\u00ae Plus - PBO content lost (%)\":\"\\u2013\",\"Olyset\\u00ae Net - Mean permethrin content in g\\/kg (95% CI)\":\"19.6 (19.5\\u201319.7)b\",\"Olyset\\u00ae Net - Permethrin content lost (%)\":\"\\u2013\"},\"1\":{\"Sampling month\":12,\"Olyset\\u00ae Plus - Mean permethrin content in g\\/kg (95% CI)\":\"11.7 (10.6\\u201312.7)\",\"Olyset\\u00ae Plus - Permethrin content lost (%)\":\"36\",\"Olyset\\u00ae Plus - PBO content in g\\/ kg (95% CI)\":\"3.01 (2.30\\u20133.80)\",\"Olyset\\u00ae Plus - PBO content lost (%)\":\"66\",\"Olyset\\u00ae Net - Mean permethrin content in g\\/kg (95% CI)\":\"16.5 (16.0\\u201317.0)\",\"Olyset\\u00ae Net - Permethrin content lost (%)\":\"16\"},\"2\":{\"Sampling month\":24,\"Olyset\\u00ae Plus - Mean permethrin content in g\\/kg (95% CI)\":\"11.1 (10.2\\u201312.0)\",\"Olyset\\u00ae Plus - Permethrin content lost (%)\":\"40\",\"Olyset\\u00ae Plus - PBO content in g\\/ kg (95% CI)\":\"1.70 (1.20\\u20132.20)\",\"Olyset\\u00ae Plus - PBO content lost (%)\":\"81\",\"Olyset\\u00ae Net - Mean permethrin content in g\\/kg (95% CI)\":\"15.9 (15.1\\u201316.7)\",\"Olyset\\u00ae Net - Permethrin content lost (%)\":\"19\"},\"3\":{\"Sampling month\":36,\"Olyset\\u00ae Plus - Mean permethrin content in g\\/kg (95% CI)\":\"8.8 (7.9\\u20139.7)\",\"Olyset\\u00ae Plus - Permethrin content lost (%)\":\"52\",\"Olyset\\u00ae Plus - PBO content in g\\/ kg (95% CI)\":\"1.16 (0.8\\u20131.5)\",\"Olyset\\u00ae Plus - PBO content lost (%)\":\"87\",\"Olyset\\u00ae Net - Mean permethrin content in g\\/kg (95% CI)\":\"14.8 (13.9\\u201315.7)\",\"Olyset\\u00ae Net - Permethrin content lost (%)\":\"24\"}}\n", - "\n", - "header: Methods\n", - "\n", - "The field trial was conducted according to the WHO guidelines [3, 11]. The description of the test products and trial procedures are described below.\n", - "\n", - "header: Recording of adverse events\n", - "\n", - "One month after net distribution, a survey was carried out to record adverse events reported by net users, and overall experiences of net usage. A pre-tested questionnaire adapted from the WHO guidelines [11] was administered to the heads or an adult person of the households after obtaining informed consent.\n", - "\n", - "header: Chemical content analysis\n", - "\n", - "The chemical contents in the nets were determined at the beginning and at years 1, 2 and 3 by samplings nets according to the scheme described earlier. The netting pieces cut for determination of active ingredient content were individually rolled up and placed in new, clean and labeled aluminum foils and sent to the Phyto-pharmacy Department of the Walloon Agricultural Research Centre, Gembloux, Belgium, a WHO Collaborating Centre, for chemical analysis.\n", - "\n", - "header: Statistical analysis\n", - "\n", - "The data collected were entered in excel spreadsheets and cross-checked for accuracy. Data were analyzed using STATA version 14.0 (Stata Corporation, College Station, TX, USA). Comparisons between the two types of nets were tested for significance using the Chi-square (kh2) test. Exact binomial distribution with 95% confidence intervals (95% CI) was used for percentages. For continuous variables, the arithmetic mean was used depending on the distribution of values compared to a normal distribution.\n", - "\n", - "The nets were considered to have passed the WHO efficacy criteria if the mosquito knockdown rate was found to be >= 95% and/or mortality rate >= 80% in cone bioassays. For the tunnel tests, nets were considered to have passed the WHO efficacy criteria when mortality in mosquitoes was >= 80% and/or blood-feeding inhibition was >= 90% [3]. The procedure for calculation of proportionate Hole Index (pHI) for nets is already described above.\n", - "\n", - "header: Table 3 Frequency of washing nets by the users at different time points\n", - "footer: The reported wash rate was zero at 6 months\n", - "columns: ['Period (months)', 'Olyset® Plus - No. of nets sampled', 'Olyset® Plus - No. of nets washed once (%)', 'Olyset® Plus - No. of nets washed twice (%)', 'Olyset® Plus - No. of nets washed > 2 times (%)', 'Olyset® Net - No. of nets sampled', 'Olyset® Net - No. of nets washed at once (%)', 'Olyset® Net - No. of nets washed twice (%)', 'Olyset® Net - No. of nets washed > 2 times (%)']\n", - "\n", - "{\"0\":{\"Period (months)\":6,\"Olyset\\u00ae Plus - No. of nets sampled\":30,\"Olyset\\u00ae Plus - No. of nets washed once (%)\":\"\\u2013\",\"Olyset\\u00ae Plus - No. of nets washed twice (%)\":\"\\u2013\",\"Olyset\\u00ae Plus - No. of nets washed > 2 times (%)\":\"\\u2013\",\"Olyset\\u00ae Net - No. of nets sampled\":30,\"Olyset\\u00ae Net - No. of nets washed at once (%)\":\"\\u2013\",\"Olyset\\u00ae Net - No. of nets washed twice (%)\":\"\\u2013\",\"Olyset\\u00ae Net - No. of nets washed > 2 times (%)\":\"\\u2013\"},\"1\":{\"Period (months)\":12,\"Olyset\\u00ae Plus - No. of nets sampled\":30,\"Olyset\\u00ae Plus - No. of nets washed once (%)\":\"2 (7)\",\"Olyset\\u00ae Plus - No. of nets washed twice (%)\":\"1 (3)\",\"Olyset\\u00ae Plus - No. of nets washed > 2 times (%)\":\"0\",\"Olyset\\u00ae Net - No. of nets sampled\":30,\"Olyset\\u00ae Net - No. of nets washed at once (%)\":\"2 (7)\",\"Olyset\\u00ae Net - No. of nets washed twice (%)\":\"0\",\"Olyset\\u00ae Net - No. of nets washed > 2 times (%)\":\"0\"},\"2\":{\"Period (months)\":24,\"Olyset\\u00ae Plus - No. of nets sampled\":30,\"Olyset\\u00ae Plus - No. of nets washed once (%)\":\"4 (12)\",\"Olyset\\u00ae Plus - No. of nets washed twice (%)\":\"2 (7)\",\"Olyset\\u00ae Plus - No. of nets washed > 2 times (%)\":\"1 (3)\",\"Olyset\\u00ae Net - No. of nets sampled\":30,\"Olyset\\u00ae Net - No. of nets washed at once (%)\":\"3 (11)\",\"Olyset\\u00ae Net - No. of nets washed twice (%)\":\"2 (7)\",\"Olyset\\u00ae Net - No. of nets washed > 2 times (%)\":\"0\"},\"3\":{\"Period (months)\":36,\"Olyset\\u00ae Plus - No. of nets sampled\":50,\"Olyset\\u00ae Plus - No. of nets washed once (%)\":\"9 (17)\",\"Olyset\\u00ae Plus - No. of nets washed twice (%)\":\"5 (10)\",\"Olyset\\u00ae Plus - No. of nets washed > 2 times (%)\":\"3 (6)\",\"Olyset\\u00ae Net - No. of nets sampled\":50,\"Olyset\\u00ae Net - No. of nets washed at once (%)\":\"11 (21)\",\"Olyset\\u00ae Net - No. of nets washed twice (%)\":\"8 (6)\",\"Olyset\\u00ae Net - No. of nets washed > 2 times (%)\":\"3 (6)\"}}\n", - "\n", - "header: Household net washing practices\n", - "\n", - "The net washing practices by households were evaluated using a questionnaire at 6, 12, 24 and 36 months after net distribution.\n", - "\n", - "header: Bioassays\n", - "\n", - "The insecticidal effect of the nets was evaluated using cone bioassays and where required tunnel tests, as per the WHO guidelines [3]. The bioassays were done at time zero (baseline) and then at every 6 months up to 36 months. On each of the netting pieces cut for bioassays, standard WHO plastic cones were held in place using a plastic manifold and a total of 50 laboratory bred, susceptible Kisumu strain _Anopheles gambiae_ (non-blood fed, 2-5 day old) were exposed for 3 min (5 pieces per net x 5 mosquitoes per test x 2 replicates). After the exposure, the mosquitoes were removed gently from\n", - "the cones and kept separately in plastic cups provided with cotton-wool moistened with 10% glucose solution. Knockdown (KD) was recorded at 60 min and mortality at 24 h after exposure. Mosquitoes exposed to untreated polyester net pieces were used as untreated controls. The bioassays were carried out at 27 +- 2 degC temperature and 80% +- 10% relative humidity. When the mosquito knockdown rate was < 95% and mortality < 80%, the mortality and blood-feeding inhibition effect of such nets was assessed in a tunnel test according to the WHO guidelines [3].\n", - "\n", - "For each net, only one netting piece with which mosquito mortality was found closest to the average mortality in the cone test was tested in the tunnel test [3]. One hundred, non-blood fed female _An. gambiae_ Kisumu mosquitoes, aged 5-8 days were released at the longer end of a tunnel equipment made of glass. At each end of the tunnel, a 25 cm square cage covered with a polyester netting was fitted. At the shorter end of the tunnel, a rabbit which could not move but was available for mosquito biting was placed. The mosquitoes were released at 18:00 and mosquitoes recovered at 09:00 on the following morning. During the test, the tunnel was kept in a place maintained at 27 +- 2 degC and 80% +- 10% relative humidity in full darkness. Another tunnel with untreated netting was used as control. The mean mortality rate and percentage blood-feeding inhibition were recorded, as follows:\n", - "\n", - "1. Mortality = this was measured by pooling the mortality rates of mosquitoes from the two sections of the tunnel. If mortalities in the control recorded more than 10%, the test was considered invalid.\n", - "\n", - "\\[\\text{Blood} - \\text{feeding\\,inhibition}(\\%) = \\left[ {100 \\times \\left( {\\text{Bfc} - \\text{Bfc}} \\right)} \\right]/\\text{Bfc}\\]\n", - "\n", - "where, Bfc is the proportion of blood-fed mosquitoes in the control tunnel and Bft is the proportion of blood-fed mosquitoes in the tunnel with the treated net. The treated net was considered to have met the WHO efficacy criteria when mortality in mosquitoes was >= 80% and/or blood-feeding inhibition was >= 90%.\n", - "\n", - "header: Competing interests\n", - "\n", - "The authors declare no competing interests. As a collaborative project, RSY, a WHO professional staff, reviewed and agreed with the study design and contributed to writing the manuscript.\n", - "\n", - "header: Net survivorship and fabric integrity\n", - "\n", - "At the end of year 1, Olyset(r) Plus reported survivorship rates of 97.2% (_n_ = 243), with Olyset(r) Net recording 99.6% (_n_ = 249). At year 2, there were 92.4% (_n_ = 231) Olyset(r) Plus and 90.4% (_n_ = 226) of Olyset(r) Nets still surviving. At the end of the 3 years of study, the survivorship rates for Olyset(r) Plus and Olyset(r) Net were at 91.2% (_n_ = 228) and 86.4% (_n_ = 216), respectively.\n", - "\n", - "The pH values of the nets showed that 87.6% of Olyset(r) Plus were in good condition at 6 months, 7.6% were in acceptable/serviceable condition, and 4.8% were too torn (Table 6). These proportions increased gradually during the study and at 36 months, 49.6% were in good condition, 27.1% in acceptable/serviceable condition, and 23.2% were too torn. A similar trend of attrition was seen for Olyset(r) Net, with 44.9%, 32.8% and 22.2% nets being in good condition, acceptable condition or too torn at 36 months, respectively.\n", - "\n", - "Data on the comparison of estimates of the mean pH values and the mean hole area for Olyset(r) Plus and Olyset(r) Net are given in Table 7.\n", - "\n", - "The proportion of Olyset(r) Plus nets having been repaired by households increased from 6% (95% CI: 3.4-9.7) at month 6 to 17.9% (95% CI: 13.2-23.6) at months\n", - "\n", - "36, while that of Olyset(r) Net increased from 5% (95% CI: 2.8-8.7) to 12% (95% CI: 8.0-17.1) in the same period.\n", - "\n", - "\n", - "Olyset(r) Net incorporated with permethrin alone was included in the trial as a positive control net. A net was considered to have passed the WHO efficacy criteria if it caused >= 80% mortality and/or >= 95% knockdown in cone bioassays or >= 80% mortality and/or >= 90% blood-feeding inhibition in tunnel tests [3]. Most of the Olyset(r) Plus and Olyset(r) Net lost the knockdown effect during the 24-36 months follow-up. Overall, neither Olyset(r) Plus nor Olyset(r) Net performed as they should even after 2 years and did not meet the WHO efficacy criteria of a 3-year LLIN.\n", - "\n", - "Previous studies have demonstrated enhanced efficacy of Olyset(r) Plus against resistant _An. gambiae_ attributable to PBO [16-18]. A recent randomised controlled field trial in Tanzania with high levels of pyrethroid resistance in malaria vectors _An. gambiae_ and _An. arabiensis_ also attributed higher impact on malaria of Olyset(r) Plus over Olyset(r) Net to the presence of PBO that was sustained after 21 months of the trial [19]. However, there is a view that these two nets are not comparable and that the higher efficacy of Olyset(r) Plus was due to much more bleed rate of permethrin into its surface and not due to PBO that was incorporated in small amount and dwindled rapidly over time [20]. In this trial, Olyset(r) Plus was evaluated as a pyrethroid LLIN since there were no guidelines published by WHO of how to evaluate PBO nets at the time of this trial, and considering the manufacturer's product claim.\n", - "\n", - "While, it was reported that high intensity insecticide resistance will reduce the level of personal and community protection of pyrethroid LLINs [21] and PBO nets could be effective against malaria in some resistance scenarios [22], a recent WHO multi-country study found no evidence of an association between insecticide resistance and malaria infection prevalence or incidence [23]. There is also a view that at present there is limited evidence that recent reduction in the impact on malaria in sub-Saharan Africa was due to increasing resistance in malaria vectors to the pyrethroid insecticides used in treating nets [24].\n", - "\n", - "The initial permethrin content in both nets was more or less similar but the enhanced efficacy of Olyset(r) Plus was mainly due to the higher release of permethrin into the surface fibres and presence of PBO than Olyset(r) Net. The gradual decline in efficacy of both nets is consistent with the loss of permethrin and PBO in Olyset(r) Plus and of permethrin in Olyset(r) Net over time during their routine usage by the community. The decline in permethrin content was more rapid in Olyset(r) Plus than Olyset(r) Net. This explains why Olyset(r) Plus having permethrin and PBO was relatively superior than Olyset(r) Net initially, i.e., until 18 months, but after that their performance was below the WHO efficacy cut off. While the PBO content in Olyset(r) Plus at the baseline was within the target tolerance limits, 66% of the PBO content was lost within one year of net usage, and the loss increased to 81% at year 2 and 87% at year 3. Previous studies have reported that the insecticidal content in LLINs decay over time [6]. While permethrin and PBO contents may be lost due to natural decay and evaporation, washing of nets frequently and drying them under direct sunlight are known to contribute to such losses [25, 26]. In this study, despite manufacturer's label recommendation not to expose nets to direct sunlight, a good proportion of both type of nets were exposed to bright sunlight before use and left to dry in the sun after washing. This would have reduced both permethrin and PBO contents and consequently reduced the biological efficacy of these nets and should be borne in mind when considering these results. Even though Kisumu strain was tested, the loss of PBO would have affected efficacy of Olyset Plus as PBO can improve net performance even against susceptible strains, which too have P450s, and PBO is also known to act as a good solvent that can aid cuticular penetration and help improve insecticidal activity. The operational implication of rapid loss of PBO is that Olyset(r) Plus was unlikely to remain effective even against pyrethroid resistant mosquitoes for 2 or 3 years of use.\n", - "\n", - "Community net wash practices were comparable between the two nets. During the first 6 months, no net was reported to have been washed. At 1 year, 7% of Olyset(r) Plus and 7% of Olyset(r) Net were reported to have been washed at least once. At month 36 months, about 17% and 21% of Olyset(r) Plus and Olyset(r) Net\n", - "respectfully had been washed at least once. LLINs are usually recommended to be washed at most every 3 months [5], although this frequency depends on local cultural practices and water availability. Different net washing frequencies have been reported in other studies spanning from a high of 8 washes per month in Mali [27] to 4-7 times in Tanzania [28] to a low average of 1.5 washes per year in Uganda [29]. In coastal Kenya, on average nets were washed twice in 6 months, with blue colour nets least often washed than white or green colour nets, and older nets washed more frequently [30]. In western Kenya lowlands, three quarter of nets were washed once within 3 months and a third of them were dried under the sun [31]. The main reasons for low reported wash rates during the annual surveys in our study could be attributed to net users' poor recall of the net washing frequencies, and people's apprehension that washing of nets reduce net efficacy, although there was no water scarcity in the trial area being located in a rice irrigation area.\n", - "\n", - "The study participants reported experiencing certain transient adverse effects during the first two days of use of nets, but these could be prompted reactions since the community members had been informed about the possibility of such effects at the time of net distribution. The higher side effects from use of Olyset(r) Plus is in line with the higher release of permethrin as mentioned above. Users resorted to ventilating their nets in direct sunlight to reduce the effects although our project team had advised to dry up and keep the nets under shade. Ventilating new nets or drying washed nets under direct sunlight might have contributed to a significant reduction in active ingredient content and bio-efficacy of nets.\n", - "\n", - "At the end of the 3-year period, among the two cohorts of 250 nets each, only about 9% Olyset(r) Plus and about 14% Olyset(r) Net were reported to have been lost showing a high net survivorship. These results are in line with the expected 75% net survivorship rate reported by the NetCALC 3-year serviceable prediction model [32]. Previous studies have reported varying rate of net survivorship in African countries, such as 58% nets were lost within two years in Rwanda [33], only 39% of distributed nets remained both present and in serviceable physical condition 2-4 years after a mass campaign in Tanzania [34], but in Western Uganda an estimated attrition rate of just 12% after three years of use was observed for a polyester net [35]. In four African countries of Mozambique, Nigeria, DRC and Zanzibar, Tanzania, survival in serviceable condition of polyethylene and polyester LLINs after 31-37 months of use varied between different sites from 17 to 80% with median survival from 1.6 to 5.3 years [36]. In our study, the observed low attrition rate of nets appears to be also due to the 'Hawthorne effect' as the households included in the two cohorts of nets were visited every 6 or 12 months to inspect the nets. So, the awareness among study participants that the nets were regularly being followed could have modified their behaviour in favour of more careful upkeep and maintenance of the nets and as such may have been a limitation in this study.\n", - "\n", - "Studies have shown that despite small to medium size holes (64 < PHI < 642), LLINs are still protective against mosquito bites due to the excito-repellent effects of insecticides [35]. However, the nets may become ineffective when the overall hole area in nets reaches a certain threshold [37]. In our study, both Olyset(r) Plus and Olyset(r) Net recorded high fabric integrity up to the 3-year trial period. At 12 months after distribution, 78.1% of Olyset Plus and 63.8% of Olyset(r) Net were in good/acceptable condition, 12.3% Olyset(r) Plus and 30.5% Olyset(r) Net were in serviceable condition, while 9.4% Olyset(r) Plus and 5.6% Olyset(r) Net were completely torn and required to be replaced. At the end of the 3-year trial period, 49.5% of Olyset(r) Plus and 44.9% of Olyset(r) Net were in good/acceptable condition, 27.1% Olyset(r) Plus and 32.8% Olyset(r) Net in serviceable condition, while 23.2% Olyset(r) Plus and 22.2% Olyset(r) Net were completely torn and required replacement.\n", - "\n", - "Although Olyset(r) Net retained a higher permethrin content that Olyset(r) Plus, the latter showed longer duration of efficacy than the former, i.e., 18 months compared with 12 months above the WHO efficacy cut off, and higher efficacy thereafter i.e., the efficacy of Olyset(r) Plus declined to 42% at the end of 3-year trial period and that of Olyset(r) Net to 36% over the same period. This could be attributed to higher release of permethrin into the netting surface, and also because PBO can make nets perform better even against susceptible mosquitoes. Pyrethroid-PBO nets have previously been associated with higher mosquito mortality and lower blood-feeding rates in areas of high-level insecticide resistance than were non-PBO LLINs [38, 39]. Although in our study we did not test nets with a pyrethroid resistant mosquito strain, it is likely that the fast decline of PBO in Olyset(r) Plus was caused by the inappropriate exposure to sunlight, as well as the normal loss through washing would have reduced efficacy against resistant mosquitoes in the same way that it reduced efficacy against the susceptible mosquitoes tested here.\n", - "\n", - "Appropriate testing guidelines and field studies are thus required to evaluate the operational effectiveness of PBO nets against pyrethroid resistant mosquitoes and considering the PBO retention and release properties. The revised WHO LLIN guidelines should clarify for how long PBO nets should be effective and if the \n", - "current WHO efficacy criteria for a 3-year LLIN should be reduced to fit the chemistry.\n", - "\n", - "A limitation of our trial was that we did not evaluate efficacy of Olysset(r) Plus against resistant _An. gambling_ mosquitoes. Instead, we tested its efficacy for the presence of permethrin alone using a susceptible malaria vector strain, although inclusion of PBO in nets has the potential of increasing insecticidal efficacy due to increased cuticular penetration and presence of P450s in susceptible insects. There is thus a need for suitable testing guidelines and a much more validation of the impact of PBO in pyrethroid-PBO nets.\n", - "\n", - "header: Table 7 Comparison of the estimates of the mean pHI and the mean hole area for O lyset® Plus and Olyset® Net\n", - "footer: pHI proportionate Hole Index\n", - "columns: ['Survey month', 'Olyset® Plus - No. of nets inspected', 'Olyset® Plus - Mean hole area in cm2 (± SD)', 'Olyset® Plus - Mean pHI (± SD)', 'Olyset® Net - No. of nets inspected', 'Olyset® Net - Mean hole area in cm2 (± SD)', 'Olyset® Net - Mean pHI (± SD)']\n", - "\n", - "{\"0\":{\"Survey month\":6,\"Olyset\\u00ae Plus - No. of nets inspected\":250,\"Olyset\\u00ae Plus - Mean hole area in cm2 (\\u00b1 SD)\":\"52.3 \\u00b1 230.5\",\"Olyset\\u00ae Plus - Mean pHI (\\u00b1 SD)\":\"93.3 \\u00b1 313.6\",\"Olyset\\u00ae Net - No. of nets inspected\":250,\"Olyset\\u00ae Net - Mean hole area in cm2 (\\u00b1 SD)\":\"123.3 \\u00b1 272.3\",\"Olyset\\u00ae Net - Mean pHI (\\u00b1 SD)\":\"110.5 \\u00b1 221.8\"},\"1\":{\"Survey month\":12,\"Olyset\\u00ae Plus - No. of nets inspected\":243,\"Olyset\\u00ae Plus - Mean hole area in cm2 (\\u00b1 SD)\":\"229.2 \\u00b1 574.2\",\"Olyset\\u00ae Plus - Mean pHI (\\u00b1 SD)\":\"153.6 \\u00b1 437.0\",\"Olyset\\u00ae Net - No. of nets inspected\":249,\"Olyset\\u00ae Net - Mean hole area in cm2 (\\u00b1 SD)\":\"192.5 \\u00b1 376.2\",\"Olyset\\u00ae Net - Mean pHI (\\u00b1 SD)\":\"156.8 \\u00b1 306.5\"},\"2\":{\"Survey month\":24,\"Olyset\\u00ae Plus - No. of nets inspected\":231,\"Olyset\\u00ae Plus - Mean hole area in cm2 (\\u00b1 SD)\":\"389.8 \\u00b1 975.4\",\"Olyset\\u00ae Plus - Mean pHI (\\u00b1 SD)\":\"317.6 \\u00b1 794.7\",\"Olyset\\u00ae Net - No. of nets inspected\":226,\"Olyset\\u00ae Net - Mean hole area in cm2 (\\u00b1 SD)\":\"873.9 \\u00b1 353.4\",\"Olyset\\u00ae Net - Mean pHI (\\u00b1 SD)\":\"279.4 \\u00b1 428.1\"},\"3\":{\"Survey month\":36,\"Olyset\\u00ae Plus - No. of nets inspected\":228,\"Olyset\\u00ae Plus - Mean hole area in cm2 (\\u00b1 SD)\":\"630.7 \\u00b1 1191.8\",\"Olyset\\u00ae Plus - Mean pHI (\\u00b1 SD)\":\"513.9 \\u00b1 970.9\",\"Olyset\\u00ae Net - No. of nets inspected\":216,\"Olyset\\u00ae Net - Mean hole area in cm2 (\\u00b1 SD)\":\"621.5 \\u00b1 1710.3\",\"Olyset\\u00ae Net - Mean pHI (\\u00b1 SD)\":\"506.4 \\u00b1 1393.2\"}}\n", - "\n", - "header: Test products\n", - "\n", - "Bioefficacy and physical durability of the Olyset(r) Plus and Olyset(r) Net both manufactured by Sumitomo Chemical were evaluated. The former is a polyethylene mono-filament net incorporated with 2% permethrin corresponding to 20 g permethrin active ingredient (AI)/kg or 800 mg permethrin AI/m\\({}^{2}\\) and 1% PBO (corresponding to 10 g PBO AI/kg or 400 mg PBO AI/m\\({}^{2}\\)). The latter is a polyethylene mono-filament net incorporated with 2% permethrin (w/w) (corresponding to 800 mg permethrin AI/m\\({}^{2}\\)). Olyset(r) Net was recommended in 2009 by the WHO Pesticide Evaluation Scheme (WHOPES) for use in malaria control [12], while Olyset(r) Plus was given interim recommendation by WHO in 2012 with the requirement to evaluate the product in a 3-year long-term trial to confirm its long-lasting efficacy in field [13].\n", - "\n", - "header: Assessment of durability of cohort nets\n", - "\n", - "To monitor durability of nets (i.e. survivorship and changes in physical integrity) during their routine use, 250 each of Olyset(r) Plus and Olyset(r) Net were distributed in separate households (2 nets per household) in the same villages by simple randomization. From these cohorts of nets, all nets available at the households at the time of surveys at 6, 12, 24 and 36 months were inspected for their presence and physical integrity. For this, the nets were retracted from the sleeping places, individually hung up on a rectangular frame held outside the house and inspected for presence of any holes on the side and roof panels. The holes were counted for each net, their diameter was measured, and they were classified in the following categories according to the WHO criteria for hole sizes [3, 11]:\n", - "\n", - "Size A1: 0.5-2 cm diameter, Size A2: 2-10 cm diameter, Size A3: 10-25 cm diameter, Size A4: 25 cm diameter.\n", - "\n", - "The parameters for assessing the integrity of nets included the proportions of Olyset(r) Plus and Olyset(r) Net with any size holes or tears, and the proportionate Hole Index (pHI) for each net, which was calculated as follows [11]:\n", - "\n", - "\\[\\text{pH} = \\left( {1.23 \\times \\text{ No.~of~size~A1~holes}} \\right) + \\left( {28.28 \\times \\text{ No.~of~size~A2~holes}} \\right) + \\left( {240.56 \\times \\text{ No.~of~size~A3~holes}} \\right) + \\left( {706.95 \\times \\text{ No.~of~size~A4~holes}} \\right)\\]\n", - "\n", - "Using the pHI values, Olyset(r) Plus and Olyset(r) Net were categorized as those in 'good condition' (pHI: 0-64), nets in 'acceptable' condition (pHI: 65-642), and torn nets that were likely to provide no protective efficacy (pHI > 642) [15]. The number of nets in 'good' and\n", - "\n", - "Fig. 1: A rectangular net and its individual panels showing positions for cutting netting pieces (positions 1–9 for bioassays; HP1–HPS for chemical assays)\n", - "'acceptable condition' together were taken to estimate the survival of nets over time.\n", - "\n", - "The sampled nets were also inspected for any repairs of holes or tears done by the households. After inspection, the nets were returned to the same sleeping place in the same household.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ClinicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `ClinicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `ClinicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Village trial\",\"Country\":\"Kenya\",\"Site\":\"Kirinyaga County\",\"Start_year\":2014,\"End_month\":12,\"End_year\":2017}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Concentration_initial\": {\"title\": \"Insecticide concentration (initial)\", \"description\": \"Enter the initial concentration of the insecticide(s) for net type at the time of distribution.\"}, \"Concentration\": {\"title\": \"Insecticide concentration (measured mean)\", \"description\": \"Enter the measured concentration of the insecticide(s) for the active ingredient(s), in the net type.If multiple sides (e.g. roof or sides) of the net were tested, provide the mean value.\"}, \"pHI_category\": {\"title\": \"Phi Category\", \"description\": \"Classification of the nets holed surface area, as one of \\\"Good\\\", \\\"Damaged\\\", \\\"Torn\\\", \\\"Serviceable\\\", or \\\"All\\\", as proposed by WHO\"}, \"median_pHI\": {\"title\": \"Median Proportional hole index\", \"description\": \"Usually provided only for those nets with holes. This value should be provided in the text or a table of the paper. If it requires your own calculations, skip it. \\nDefinition: Numerator is total number of each LN product with at least one hole of size 1\\u20134; Denominator is Total number of each LN product found and assessed in surveyed households.\"}, \"pHI_lower_IQR\": {\"title\": \"pHI lower inter-quartile\", \"description\": \"Lower inter-quartile range of `pHI_median`.\"}, \"pHI_upper_IQR\": {\"title\": \"pHI upper inter-quartile\", \"description\": \"Upper inter-quartile range of `pHI_median`.\"}, \"pHI_upper_bound\": {\"title\": \"Phi Upper Bound\", \"description\": \"lowest pHI detected.\"}, \"median_hole_size\": {\"title\": \"Median hole surface area in cm^2\", \"description\": \"Usually provided only for those nets with holes. This value should be provided in the text or a table of the paper. If it requires your own calculations, skip it.\"}, \"hole_size_upper_IQR\": {\"title\": \"hole size upper inter-quartile\", \"description\": \"Upper inter-quartile range of `hole_size_median`.\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"Olyset\\u00ae Plus\",\"Insecticide\":\"Permethrin, Piperonyl Butoxide\",\"Concentration_initial\":\"18.4, 8.98\",\"Concentration\":\"8.8, 1.16\",\"pHI_category\":\"Good\",\"median_pHI\":49.6,\"pHI_lower_IQR\":43.1,\"pHI_upper_IQR\":56.0,\"pHI_upper_bound\":642.0,\"median_hole_size\":52.3,\"hole_size_upper_IQR\":230.5},\"N02\":{\"Net_type\":\"Olyset\\u00ae Net\",\"Insecticide\":\"Permethrin\",\"Concentration_initial\":\"19.6\",\"Concentration\":\"14.8\",\"pHI_category\":\"Good\",\"median_pHI\":44.9,\"pHI_lower_IQR\":38.4,\"pHI_upper_IQR\":51.6,\"pHI_upper_bound\":642.0,\"median_hole_size\":123.3,\"hole_size_upper_IQR\":272.3}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Results\n", - "\n", - "Among the 1784 participating homesteads with a population of 10 325, a total of 1551 households participated in the study (Table 1). Most of the heads of the households (age: 17-96 years) had received formal education and practiced farming (96.6%).\n", - "\n", - "Out of 100 heads of households with Olyset(r) Plus interviewed for adverse events, 44% reported itching, 4% eye irritation, and 7% unpleasant smell. Among the Olyset(r) Net users, 7% each reported nasal discharge and eye irritation. These were reported to be mild symptoms lasting for one or two days. To reduce these effects, 43% users of Olyset(r) Plus ventilated nets for a day in the open under the sun and 33% under the shade. Among Olyset(r) Net users, similar actions were taken by 44% and 39%, respectively.\n", - "\n", - "header: Availability of data and materials\n", - "\n", - "All the relevant datasets supporting the conclusions of this article are included within the article.\n", - "\n", - "header: Chemical contents\n", - "\n", - "At time 0 (baseline), the contents of permethrin and PBO in Olyset(r) Plus were within the target tolerance limits of 20 +- 5 g/kg and 10 +- 2.5 g/kg, respectively; while the permethrin content in Olyset(r) Net was also within the target tolerance limit of 20 +- 3 g/kg (Table 5). The within net variation (relative standard deviation, RSD) in permethrin and PBO contents for Olyset(r) Plus at baseline were 2.2% and 3.7%, respectively, and were within the acceptable tolerance limits. The within net variation in the permethrin content in Olyset(r) Net at the baseline was 1.2% and was also within the acceptable tolerance limit. At the end of years 1, 2 and 3 of net usage, the permethrin content in Olyset(r) Plus decreased by 36%, 40% and 52%, and the PBO content showed a marked reduction of 66%, 81% and 87%, respectively. The loss of the permethrin in Olyset(r) Net\n", - "\n", - "\\begin{table}\n", - "\\begin{tabular}{c c c c c c c c} \\hline\n", - "**Survey month** & **No. of** & **Mean 1 h** & **Mean 24 h** & **\\% of nets passed by** & **\\% of nets passed by** & **No. of nets passed by** & **Overall pass rate in** \\\\\n", - "**nets** & **KD (\\%)** & **mortality** & **KD criteria alone(r)** & **mortality criteria** & **requiring tunnel** & **percentage (95\\% CI)(r)** \\\\\n", - "**Olyset(r) Plus** & & & & & & & \\\\\n", - "0 & 30 & 99.5 & 100 & 100 & 100 & 0 & 100 (80–100) \\\\\n", - "6 & 30 & 97.0 & 88.2 & 83.3 & 73.3 & 4 & 96.7 (82–99) \\\\\n", - "12 & 30 & 9\n", - "\n", - "4.2 & 74.3 & 76.7 & 43.3 & 6 & 93.3 (78–99) \\\\\n", - "18 & 30 & 82.9 & 65.9 & 36.7 & 36.7 & 16 & 86.7 (69–96) \\\\\n", - "24 & 30 & 77.4 & 75.3 & 0.0 & 46.7 & 15 & 76.7 (57–90) \\\\\n", - "30 & 30 & 60.4 & 56.9 & 0.0 & 10.0 & 27 & 70.0 (50–85) \\\\\n", - "**Olyset(r) Net** & & & & & & & \\\\\n", - "0 & 30 & 99.1 & 100 & 100 & 100 & 0 & 100 (88–100) \\\\\n", - "6 & 30 & 96.9 & 79.8 & 80.0 & 60.0 & 4 & 93.3 (77–99) \\\\\n", - "12 & 30 & 68.5 & 54.7 & 20.0 & 3.3 & 24 & 83.3 (65–94) \\\\\n", - "18 & 30 & 72.1 & 50.2 & 30.0 & 20.0 & 18 & 73.3 (54–87) \\\\\n", - "24 & 30 & 79.8 & 68.9 & 3.3 & 46.7 & 18 & 66.7 (47–83) \\\\\n", - "30 & 30 & 50.9 & 50.9 & 0.0 & 3.3 & 29 & 60.0\n", - "\n", - "\n", - "was 16% at year 1 and did not change much at year 2 and 3 (19 and 24%, respectively).\n", - "\n", - "header: Conclusions\n", - "\n", - "Olysset(r) Plus did not meet the WHO criteria for efficacy of LLINs in this 3-year Phase III study, which could have resulted from faster loss of permethrin and PBO and users not following the manufacturer's recommendations to not leave the nets under direct sunlight. Better community education is therefore essential to ensure appropriate use and upkeep of nets in areas with LLIN-based interventions in order to maximize their operational impact on the prevention, control and elimination of malaria. Failure to do this would result in operational implications requiring early replenishment with new nets to ensure that such an LLIN based malaria intervention remains effective.\n", - "\n", - "header: Recording of adverse events\n", - "\n", - "One month after net distribution, a survey was carried out to record adverse events reported by net users, and overall experiences of net usage. A pre-tested questionnaire adapted from the WHO guidelines [11] was administered to the heads or an adult person of the households after obtaining informed consent.\n", - "\n", - "header: Funding\n", - "\n", - "The work was funded as a collaborative project by the WHO Pesticide Evaluation Scheme, Geneva, Switzerland.\n", - "\n", - "header: Table 5 Mean permethrin and PBO contents (relative standard deviation) in nets at baseline, and at 12, 24 and 36 months\n", - "footer: a Within net variation (relative standard deviation) in permethrin and PBO contents at baseline was 2.2% and 3.7%, respectively (Olyset® Plus). – not applicable, PBOpiperonyl butoxideb Within net variation (relative standard deviation) in permethrin content at baseline was 1.2% (Olyset® Net)\n", - "columns: ['Sampling month', 'Olyset® Plus - Mean permethrin content in g/kg (95% CI)', 'Olyset® Plus - Permethrin content lost (%)', 'Olyset® Plus - PBO content in g/ kg (95% CI)', 'Olyset® Plus - PBO content lost (%)', 'Olyset® Net - Mean permethrin content in g/kg (95% CI)', 'Olyset® Net - Permethrin content lost (%)']\n", - "\n", - "{\"0\":{\"Sampling month\":0,\"Olyset\\u00ae Plus - Mean permethrin content in g\\/kg (95% CI)\":\"18.4 (18.3\\u201318.6)a\",\"Olyset\\u00ae Plus - Permethrin content lost (%)\":\"\\u2013\",\"Olyset\\u00ae Plus - PBO content in g\\/ kg (95% CI)\":\"8.98 (8.86\\u20139.10)\",\"Olyset\\u00ae Plus - PBO content lost (%)\":\"\\u2013\",\"Olyset\\u00ae Net - Mean permethrin content in g\\/kg (95% CI)\":\"19.6 (19.5\\u201319.7)b\",\"Olyset\\u00ae Net - Permethrin content lost (%)\":\"\\u2013\"},\"1\":{\"Sampling month\":12,\"Olyset\\u00ae Plus - Mean permethrin content in g\\/kg (95% CI)\":\"11.7 (10.6\\u201312.7)\",\"Olyset\\u00ae Plus - Permethrin content lost (%)\":\"36\",\"Olyset\\u00ae Plus - PBO content in g\\/ kg (95% CI)\":\"3.01 (2.30\\u20133.80)\",\"Olyset\\u00ae Plus - PBO content lost (%)\":\"66\",\"Olyset\\u00ae Net - Mean permethrin content in g\\/kg (95% CI)\":\"16.5 (16.0\\u201317.0)\",\"Olyset\\u00ae Net - Permethrin content lost (%)\":\"16\"},\"2\":{\"Sampling month\":24,\"Olyset\\u00ae Plus - Mean permethrin content in g\\/kg (95% CI)\":\"11.1 (10.2\\u201312.0)\",\"Olyset\\u00ae Plus - Permethrin content lost (%)\":\"40\",\"Olyset\\u00ae Plus - PBO content in g\\/ kg (95% CI)\":\"1.70 (1.20\\u20132.20)\",\"Olyset\\u00ae Plus - PBO content lost (%)\":\"81\",\"Olyset\\u00ae Net - Mean permethrin content in g\\/kg (95% CI)\":\"15.9 (15.1\\u201316.7)\",\"Olyset\\u00ae Net - Permethrin content lost (%)\":\"19\"},\"3\":{\"Sampling month\":36,\"Olyset\\u00ae Plus - Mean permethrin content in g\\/kg (95% CI)\":\"8.8 (7.9\\u20139.7)\",\"Olyset\\u00ae Plus - Permethrin content lost (%)\":\"52\",\"Olyset\\u00ae Plus - PBO content in g\\/ kg (95% CI)\":\"1.16 (0.8\\u20131.5)\",\"Olyset\\u00ae Plus - PBO content lost (%)\":\"87\",\"Olyset\\u00ae Net - Mean permethrin content in g\\/kg (95% CI)\":\"14.8 (13.9\\u201315.7)\",\"Olyset\\u00ae Net - Permethrin content lost (%)\":\"24\"}}\n", - "\n", - "header: Net sampling scheme\n", - "\n", - "The scheme of sampling nets at different time points for bioassays and chemical assays is given in Table 2. The netting pieces were cut from the sampled nets from positions 1-9 for bioassays, and positions HP1-HP5 (at time 0) or positions HP2-HP5 (at time 12, 24 and 36 months) for chemical content assays (Fig. 1). All the nets which were sampled and retrieved at the given survey points were replaced with new ones.\n", - "\n", - "header: Bioassays\n", - "\n", - "The insecticidal effect of the nets was evaluated using cone bioassays and where required tunnel tests, as per the WHO guidelines [3]. The bioassays were done at time zero (baseline) and then at every 6 months up to 36 months. On each of the netting pieces cut for bioassays, standard WHO plastic cones were held in place using a plastic manifold and a total of 50 laboratory bred, susceptible Kisumu strain _Anopheles gambiae_ (non-blood fed, 2-5 day old) were exposed for 3 min (5 pieces per net x 5 mosquitoes per test x 2 replicates). After the exposure, the mosquitoes were removed gently from\n", - "the cones and kept separately in plastic cups provided with cotton-wool moistened with 10% glucose solution. Knockdown (KD) was recorded at 60 min and mortality at 24 h after exposure. Mosquitoes exposed to untreated polyester net pieces were used as untreated controls. The bioassays were carried out at 27 +- 2 degC temperature and 80% +- 10% relative humidity. When the mosquito knockdown rate was < 95% and mortality < 80%, the mortality and blood-feeding inhibition effect of such nets was assessed in a tunnel test according to the WHO guidelines [3].\n", - "\n", - "For each net, only one netting piece with which mosquito mortality was found closest to the average mortality in the cone test was tested in the tunnel test [3]. One hundred, non-blood fed female _An. gambiae_ Kisumu mosquitoes, aged 5-8 days were released at the longer end of a tunnel equipment made of glass. At each end of the tunnel, a 25 cm square cage covered with a polyester netting was fitted. At the shorter end of the tunnel, a rabbit which could not move but was available for mosquito biting was placed. The mosquitoes were released at 18:00 and mosquitoes recovered at 09:00 on the following morning. During the test, the tunnel was kept in a place maintained at 27 +- 2 degC and 80% +- 10% relative humidity in full darkness. Another tunnel with untreated netting was used as control. The mean mortality rate and percentage blood-feeding inhibition were recorded, as follows:\n", - "\n", - "1. Mortality = this was measured by pooling the mortality rates of mosquitoes from the two sections of the tunnel. If mortalities in the control recorded more than 10%, the test was considered invalid.\n", - "\n", - "\\[\\text{Blood} - \\text{feeding\\,inhibition}(\\%) = \\left[ {100 \\times \\left( {\\text{Bfc} - \\text{Bfc}} \\right)} \\right]/\\text{Bfc}\\]\n", - "\n", - "where, Bfc is the proportion of blood-fed mosquitoes in the control tunnel and Bft is the proportion of blood-fed mosquitoes in the tunnel with the treated net. The treated net was considered to have met the WHO efficacy criteria when mortality in mosquitoes was >= 80% and/or blood-feeding inhibition was >= 90%.\n", - "\n", - "header: Table 3 Frequency of washing nets by the users at different time points\n", - "footer: The reported wash rate was zero at 6 months\n", - "columns: ['Period (months)', 'Olyset® Plus - No. of nets sampled', 'Olyset® Plus - No. of nets washed once (%)', 'Olyset® Plus - No. of nets washed twice (%)', 'Olyset® Plus - No. of nets washed > 2 times (%)', 'Olyset® Net - No. of nets sampled', 'Olyset® Net - No. of nets washed at once (%)', 'Olyset® Net - No. of nets washed twice (%)', 'Olyset® Net - No. of nets washed > 2 times (%)']\n", - "\n", - "{\"0\":{\"Period (months)\":6,\"Olyset\\u00ae Plus - No. of nets sampled\":30,\"Olyset\\u00ae Plus - No. of nets washed once (%)\":\"\\u2013\",\"Olyset\\u00ae Plus - No. of nets washed twice (%)\":\"\\u2013\",\"Olyset\\u00ae Plus - No. of nets washed > 2 times (%)\":\"\\u2013\",\"Olyset\\u00ae Net - No. of nets sampled\":30,\"Olyset\\u00ae Net - No. of nets washed at once (%)\":\"\\u2013\",\"Olyset\\u00ae Net - No. of nets washed twice (%)\":\"\\u2013\",\"Olyset\\u00ae Net - No. of nets washed > 2 times (%)\":\"\\u2013\"},\"1\":{\"Period (months)\":12,\"Olyset\\u00ae Plus - No. of nets sampled\":30,\"Olyset\\u00ae Plus - No. of nets washed once (%)\":\"2 (7)\",\"Olyset\\u00ae Plus - No. of nets washed twice (%)\":\"1 (3)\",\"Olyset\\u00ae Plus - No. of nets washed > 2 times (%)\":\"0\",\"Olyset\\u00ae Net - No. of nets sampled\":30,\"Olyset\\u00ae Net - No. of nets washed at once (%)\":\"2 (7)\",\"Olyset\\u00ae Net - No. of nets washed twice (%)\":\"0\",\"Olyset\\u00ae Net - No. of nets washed > 2 times (%)\":\"0\"},\"2\":{\"Period (months)\":24,\"Olyset\\u00ae Plus - No. of nets sampled\":30,\"Olyset\\u00ae Plus - No. of nets washed once (%)\":\"4 (12)\",\"Olyset\\u00ae Plus - No. of nets washed twice (%)\":\"2 (7)\",\"Olyset\\u00ae Plus - No. of nets washed > 2 times (%)\":\"1 (3)\",\"Olyset\\u00ae Net - No. of nets sampled\":30,\"Olyset\\u00ae Net - No. of nets washed at once (%)\":\"3 (11)\",\"Olyset\\u00ae Net - No. of nets washed twice (%)\":\"2 (7)\",\"Olyset\\u00ae Net - No. of nets washed > 2 times (%)\":\"0\"},\"3\":{\"Period (months)\":36,\"Olyset\\u00ae Plus - No. of nets sampled\":50,\"Olyset\\u00ae Plus - No. of nets washed once (%)\":\"9 (17)\",\"Olyset\\u00ae Plus - No. of nets washed twice (%)\":\"5 (10)\",\"Olyset\\u00ae Plus - No. of nets washed > 2 times (%)\":\"3 (6)\",\"Olyset\\u00ae Net - No. of nets sampled\":50,\"Olyset\\u00ae Net - No. of nets washed at once (%)\":\"11 (21)\",\"Olyset\\u00ae Net - No. of nets washed twice (%)\":\"8 (6)\",\"Olyset\\u00ae Net - No. of nets washed > 2 times (%)\":\"3 (6)\"}}\n", - "\n", - "header: Statistical analysis\n", - "\n", - "The data collected were entered in excel spreadsheets and cross-checked for accuracy. Data were analyzed using STATA version 14.0 (Stata Corporation, College Station, TX, USA). Comparisons between the two types of nets were tested for significance using the Chi-square (kh2) test. Exact binomial distribution with 95% confidence intervals (95% CI) was used for percentages. For continuous variables, the arithmetic mean was used depending on the distribution of values compared to a normal distribution.\n", - "\n", - "The nets were considered to have passed the WHO efficacy criteria if the mosquito knockdown rate was found to be >= 95% and/or mortality rate >= 80% in cone bioassays. For the tunnel tests, nets were considered to have passed the WHO efficacy criteria when mortality in mosquitoes was >= 80% and/or blood-feeding inhibition was >= 90% [3]. The procedure for calculation of proportionate Hole Index (pHI) for nets is already described above.\n", - "\n", - "header: Abbreviations\n", - "\n", - "_Cl_ Confidence interval; CHW: Community Health Workers; KD: Knockdown; LINK: long-lasting insecticidal nets; NMD: National Malaria Control Programme; pH: proportionate Hole Index; PBO: Papernot by duakoc. Relative standard deviation; SD: Standard deviation; WHO: World Health Organization.\n", - "\n", - "header: Table 7 Comparison of the estimates of the mean pHI and the mean hole area for O lyset® Plus and Olyset® Net\n", - "footer: pHI proportionate Hole Index\n", - "columns: ['Survey month', 'Olyset® Plus - No. of nets inspected', 'Olyset® Plus - Mean hole area in cm2 (± SD)', 'Olyset® Plus - Mean pHI (± SD)', 'Olyset® Net - No. of nets inspected', 'Olyset® Net - Mean hole area in cm2 (± SD)', 'Olyset® Net - Mean pHI (± SD)']\n", - "\n", - "{\"0\":{\"Survey month\":6,\"Olyset\\u00ae Plus - No. of nets inspected\":250,\"Olyset\\u00ae Plus - Mean hole area in cm2 (\\u00b1 SD)\":\"52.3 \\u00b1 230.5\",\"Olyset\\u00ae Plus - Mean pHI (\\u00b1 SD)\":\"93.3 \\u00b1 313.6\",\"Olyset\\u00ae Net - No. of nets inspected\":250,\"Olyset\\u00ae Net - Mean hole area in cm2 (\\u00b1 SD)\":\"123.3 \\u00b1 272.3\",\"Olyset\\u00ae Net - Mean pHI (\\u00b1 SD)\":\"110.5 \\u00b1 221.8\"},\"1\":{\"Survey month\":12,\"Olyset\\u00ae Plus - No. of nets inspected\":243,\"Olyset\\u00ae Plus - Mean hole area in cm2 (\\u00b1 SD)\":\"229.2 \\u00b1 574.2\",\"Olyset\\u00ae Plus - Mean pHI (\\u00b1 SD)\":\"153.6 \\u00b1 437.0\",\"Olyset\\u00ae Net - No. of nets inspected\":249,\"Olyset\\u00ae Net - Mean hole area in cm2 (\\u00b1 SD)\":\"192.5 \\u00b1 376.2\",\"Olyset\\u00ae Net - Mean pHI (\\u00b1 SD)\":\"156.8 \\u00b1 306.5\"},\"2\":{\"Survey month\":24,\"Olyset\\u00ae Plus - No. of nets inspected\":231,\"Olyset\\u00ae Plus - Mean hole area in cm2 (\\u00b1 SD)\":\"389.8 \\u00b1 975.4\",\"Olyset\\u00ae Plus - Mean pHI (\\u00b1 SD)\":\"317.6 \\u00b1 794.7\",\"Olyset\\u00ae Net - No. of nets inspected\":226,\"Olyset\\u00ae Net - Mean hole area in cm2 (\\u00b1 SD)\":\"873.9 \\u00b1 353.4\",\"Olyset\\u00ae Net - Mean pHI (\\u00b1 SD)\":\"279.4 \\u00b1 428.1\"},\"3\":{\"Survey month\":36,\"Olyset\\u00ae Plus - No. of nets inspected\":228,\"Olyset\\u00ae Plus - Mean hole area in cm2 (\\u00b1 SD)\":\"630.7 \\u00b1 1191.8\",\"Olyset\\u00ae Plus - Mean pHI (\\u00b1 SD)\":\"513.9 \\u00b1 970.9\",\"Olyset\\u00ae Net - No. of nets inspected\":216,\"Olyset\\u00ae Net - Mean hole area in cm2 (\\u00b1 SD)\":\"621.5 \\u00b1 1710.3\",\"Olyset\\u00ae Net - Mean pHI (\\u00b1 SD)\":\"506.4 \\u00b1 1393.2\"}}\n", - "\n", - "header: Methods\n", - "\n", - "The field trial was conducted according to the WHO guidelines [3, 11]. The description of the test products and trial procedures are described below.\n", - "\n", - "header: Household net washing practices\n", - "\n", - "The net washing practices by households were evaluated using a questionnaire at 6, 12, 24 and 36 months after net distribution.\n", - "\n", - "header: Competing interests\n", - "\n", - "The authors declare no competing interests. As a collaborative project, RSY, a WHO professional staff, reviewed and agreed with the study design and contributed to writing the manuscript.\n", - "\n", - "header: Abstract\n", - "\n", - "Bioefficacy and durability of Olyset(r) Plus, a permethrin and piperonyl butoxide-treated insecticidal net in a 3-year long trial in Kenya\n", - "\n", - "Paul M. Gichuki, Anna Kamau, Kiambo Niagi, Solomon Karoki, Njoroge Muigai, Damaris Matoke-Muhia, Nabie Bayoh, Evan Mathenge\n", - "\n", - "\n", - "**Background:** Long-lasting insecticide nets (LLINs) are a core malaria intervention. LLINs should retain efficacy against mosquito vectors for a minimum of three years. Efficacy and durability of Olyset(r) Plus, a permethrin and piperonyl butoxide (PBO) treated LLIN, was evaluated versus permethrin treated Olyset(r) Net. In the absence of WHO guidelines of how to evaluate PBO nets, and considering the manufacturer's product claim, Olyset(r) Plus was evaluated as a pyrethroid LILN.\n", - "\n", - "**Methods:** This was a household randomized controlled trial in a malaria endemic rice cultivation zone of Kirinyaga County, Kenya between 2014 and 2017. Cone bioassays and tunnel tests were done against _Anopheles gambiae_ Kisumu. The chemical content, fabric integrity and LLIN survivorship were monitored. Comparisons between nets were tested for significance using the Chi-square test. Exact binomial distribution with 95% confidence intervals (95% CI) was used for percentages. The WHO efficacy criteria used were >= 95% knockdown and/or >= 80% mortality rate in cone bioassays and >= 80% mortality and/or >= 90% blood-feeding inhibition in tunnel tests.\n", - "\n", - "**Results:** At 36 months, Olyset(r) Plus lost 52% permethrin and 87% PBO content; Olyset(r) Net lost 24% permethrin. Over 80% of Olyset(r) Plus and Olyset(r) Net passed the WHO efficacy criteria for LLINs up to 18 and 12 months, respectively. At month 36, 91.2% Olyset(r) Plus and 86.4% Olyset(r) Net survived, while 72% and 63% developed at least one hole. The proportionate Hole Index (pHI) values representing nets in good, serviceable and torn condition were 49.6%, 27.1% and 23.2%, respectively for Olyset(r) Plus, and 44.9%, 32.8% and 22.2%, respectively for Olyset(r) Net but were not significantly different.\n", - "\n", - "**Conclusions:** Olyset(r) Plus retained efficacy above or close to the WHO efficacy criteria for about 2 years than Olyset(r) Net (1-1.5 years). Both nets did not meet the 3-year WHO efficacy criteria, and showed little attrition, comparable physical durability and survivorship, with 50% of Olyset(r) Plus having good and serviceable condition after 3 years. Better community education on appropriate use and upkeep of LLINs is essential to ensure effectiveness of LLIN based malaria interventions.\n", - "\n", - "**Keywords:**_Anopheles gambiae, Bioefficacy, Durability, Kenya, Long-lasting insecticidal net, Olyset(r) Net, Olyset(r) Plus, Permeability, Piperonyl butoxide_\n", - "\n", - "header: Net survivorship and fabric integrity\n", - "\n", - "At the end of year 1, Olyset(r) Plus reported survivorship rates of 97.2% (_n_ = 243), with Olyset(r) Net recording 99.6% (_n_ = 249). At year 2, there were 92.4% (_n_ = 231) Olyset(r) Plus and 90.4% (_n_ = 226) of Olyset(r) Nets still surviving. At the end of the 3 years of study, the survivorship rates for Olyset(r) Plus and Olyset(r) Net were at 91.2% (_n_ = 228) and 86.4% (_n_ = 216), respectively.\n", - "\n", - "The pH values of the nets showed that 87.6% of Olyset(r) Plus were in good condition at 6 months, 7.6% were in acceptable/serviceable condition, and 4.8% were too torn (Table 6). These proportions increased gradually during the study and at 36 months, 49.6% were in good condition, 27.1% in acceptable/serviceable condition, and 23.2% were too torn. A similar trend of attrition was seen for Olyset(r) Net, with 44.9%, 32.8% and 22.2% nets being in good condition, acceptable condition or too torn at 36 months, respectively.\n", - "\n", - "Data on the comparison of estimates of the mean pH values and the mean hole area for Olyset(r) Plus and Olyset(r) Net are given in Table 7.\n", - "\n", - "The proportion of Olyset(r) Plus nets having been repaired by households increased from 6% (95% CI: 3.4-9.7) at month 6 to 17.9% (95% CI: 13.2-23.6) at months\n", - "\n", - "36, while that of Olyset(r) Net increased from 5% (95% CI: 2.8-8.7) to 12% (95% CI: 8.0-17.1) in the same period.\n", - "\n", - "\n", - "Olyset(r) Net incorporated with permethrin alone was included in the trial as a positive control net. A net was considered to have passed the WHO efficacy criteria if it caused >= 80% mortality and/or >= 95% knockdown in cone bioassays or >= 80% mortality and/or >= 90% blood-feeding inhibition in tunnel tests [3]. Most of the Olyset(r) Plus and Olyset(r) Net lost the knockdown effect during the 24-36 months follow-up. Overall, neither Olyset(r) Plus nor Olyset(r) Net performed as they should even after 2 years and did not meet the WHO efficacy criteria of a 3-year LLIN.\n", - "\n", - "Previous studies have demonstrated enhanced efficacy of Olyset(r) Plus against resistant _An. gambiae_ attributable to PBO [16-18]. A recent randomised controlled field trial in Tanzania with high levels of pyrethroid resistance in malaria vectors _An. gambiae_ and _An. arabiensis_ also attributed higher impact on malaria of Olyset(r) Plus over Olyset(r) Net to the presence of PBO that was sustained after 21 months of the trial [19]. However, there is a view that these two nets are not comparable and that the higher efficacy of Olyset(r) Plus was due to much more bleed rate of permethrin into its surface and not due to PBO that was incorporated in small amount and dwindled rapidly over time [20]. In this trial, Olyset(r) Plus was evaluated as a pyrethroid LLIN since there were no guidelines published by WHO of how to evaluate PBO nets at the time of this trial, and considering the manufacturer's product claim.\n", - "\n", - "While, it was reported that high intensity insecticide resistance will reduce the level of personal and community protection of pyrethroid LLINs [21] and PBO nets could be effective against malaria in some resistance scenarios [22], a recent WHO multi-country study found no evidence of an association between insecticide resistance and malaria infection prevalence or incidence [23]. There is also a view that at present there is limited evidence that recent reduction in the impact on malaria in sub-Saharan Africa was due to increasing resistance in malaria vectors to the pyrethroid insecticides used in treating nets [24].\n", - "\n", - "The initial permethrin content in both nets was more or less similar but the enhanced efficacy of Olyset(r) Plus was mainly due to the higher release of permethrin into the surface fibres and presence of PBO than Olyset(r) Net. The gradual decline in efficacy of both nets is consistent with the loss of permethrin and PBO in Olyset(r) Plus and of permethrin in Olyset(r) Net over time during their routine usage by the community. The decline in permethrin content was more rapid in Olyset(r) Plus than Olyset(r) Net. This explains why Olyset(r) Plus having permethrin and PBO was relatively superior than Olyset(r) Net initially, i.e., until 18 months, but after that their performance was below the WHO efficacy cut off. While the PBO content in Olyset(r) Plus at the baseline was within the target tolerance limits, 66% of the PBO content was lost within one year of net usage, and the loss increased to 81% at year 2 and 87% at year 3. Previous studies have reported that the insecticidal content in LLINs decay over time [6]. While permethrin and PBO contents may be lost due to natural decay and evaporation, washing of nets frequently and drying them under direct sunlight are known to contribute to such losses [25, 26]. In this study, despite manufacturer's label recommendation not to expose nets to direct sunlight, a good proportion of both type of nets were exposed to bright sunlight before use and left to dry in the sun after washing. This would have reduced both permethrin and PBO contents and consequently reduced the biological efficacy of these nets and should be borne in mind when considering these results. Even though Kisumu strain was tested, the loss of PBO would have affected efficacy of Olyset Plus as PBO can improve net performance even against susceptible strains, which too have P450s, and PBO is also known to act as a good solvent that can aid cuticular penetration and help improve insecticidal activity. The operational implication of rapid loss of PBO is that Olyset(r) Plus was unlikely to remain effective even against pyrethroid resistant mosquitoes for 2 or 3 years of use.\n", - "\n", - "Community net wash practices were comparable between the two nets. During the first 6 months, no net was reported to have been washed. At 1 year, 7% of Olyset(r) Plus and 7% of Olyset(r) Net were reported to have been washed at least once. At month 36 months, about 17% and 21% of Olyset(r) Plus and Olyset(r) Net\n", - "respectfully had been washed at least once. LLINs are usually recommended to be washed at most every 3 months [5], although this frequency depends on local cultural practices and water availability. Different net washing frequencies have been reported in other studies spanning from a high of 8 washes per month in Mali [27] to 4-7 times in Tanzania [28] to a low average of 1.5 washes per year in Uganda [29]. In coastal Kenya, on average nets were washed twice in 6 months, with blue colour nets least often washed than white or green colour nets, and older nets washed more frequently [30]. In western Kenya lowlands, three quarter of nets were washed once within 3 months and a third of them were dried under the sun [31]. The main reasons for low reported wash rates during the annual surveys in our study could be attributed to net users' poor recall of the net washing frequencies, and people's apprehension that washing of nets reduce net efficacy, although there was no water scarcity in the trial area being located in a rice irrigation area.\n", - "\n", - "The study participants reported experiencing certain transient adverse effects during the first two days of use of nets, but these could be prompted reactions since the community members had been informed about the possibility of such effects at the time of net distribution. The higher side effects from use of Olyset(r) Plus is in line with the higher release of permethrin as mentioned above. Users resorted to ventilating their nets in direct sunlight to reduce the effects although our project team had advised to dry up and keep the nets under shade. Ventilating new nets or drying washed nets under direct sunlight might have contributed to a significant reduction in active ingredient content and bio-efficacy of nets.\n", - "\n", - "At the end of the 3-year period, among the two cohorts of 250 nets each, only about 9% Olyset(r) Plus and about 14% Olyset(r) Net were reported to have been lost showing a high net survivorship. These results are in line with the expected 75% net survivorship rate reported by the NetCALC 3-year serviceable prediction model [32]. Previous studies have reported varying rate of net survivorship in African countries, such as 58% nets were lost within two years in Rwanda [33], only 39% of distributed nets remained both present and in serviceable physical condition 2-4 years after a mass campaign in Tanzania [34], but in Western Uganda an estimated attrition rate of just 12% after three years of use was observed for a polyester net [35]. In four African countries of Mozambique, Nigeria, DRC and Zanzibar, Tanzania, survival in serviceable condition of polyethylene and polyester LLINs after 31-37 months of use varied between different sites from 17 to 80% with median survival from 1.6 to 5.3 years [36]. In our study, the observed low attrition rate of nets appears to be also due to the 'Hawthorne effect' as the households included in the two cohorts of nets were visited every 6 or 12 months to inspect the nets. So, the awareness among study participants that the nets were regularly being followed could have modified their behaviour in favour of more careful upkeep and maintenance of the nets and as such may have been a limitation in this study.\n", - "\n", - "Studies have shown that despite small to medium size holes (64 < PHI < 642), LLINs are still protective against mosquito bites due to the excito-repellent effects of insecticides [35]. However, the nets may become ineffective when the overall hole area in nets reaches a certain threshold [37]. In our study, both Olyset(r) Plus and Olyset(r) Net recorded high fabric integrity up to the 3-year trial period. At 12 months after distribution, 78.1% of Olyset Plus and 63.8% of Olyset(r) Net were in good/acceptable condition, 12.3% Olyset(r) Plus and 30.5% Olyset(r) Net were in serviceable condition, while 9.4% Olyset(r) Plus and 5.6% Olyset(r) Net were completely torn and required to be replaced. At the end of the 3-year trial period, 49.5% of Olyset(r) Plus and 44.9% of Olyset(r) Net were in good/acceptable condition, 27.1% Olyset(r) Plus and 32.8% Olyset(r) Net in serviceable condition, while 23.2% Olyset(r) Plus and 22.2% Olyset(r) Net were completely torn and required replacement.\n", - "\n", - "Although Olyset(r) Net retained a higher permethrin content that Olyset(r) Plus, the latter showed longer duration of efficacy than the former, i.e., 18 months compared with 12 months above the WHO efficacy cut off, and higher efficacy thereafter i.e., the efficacy of Olyset(r) Plus declined to 42% at the end of 3-year trial period and that of Olyset(r) Net to 36% over the same period. This could be attributed to higher release of permethrin into the netting surface, and also because PBO can make nets perform better even against susceptible mosquitoes. Pyrethroid-PBO nets have previously been associated with higher mosquito mortality and lower blood-feeding rates in areas of high-level insecticide resistance than were non-PBO LLINs [38, 39]. Although in our study we did not test nets with a pyrethroid resistant mosquito strain, it is likely that the fast decline of PBO in Olyset(r) Plus was caused by the inappropriate exposure to sunlight, as well as the normal loss through washing would have reduced efficacy against resistant mosquitoes in the same way that it reduced efficacy against the susceptible mosquitoes tested here.\n", - "\n", - "Appropriate testing guidelines and field studies are thus required to evaluate the operational effectiveness of PBO nets against pyrethroid resistant mosquitoes and considering the PBO retention and release properties. The revised WHO LLIN guidelines should clarify for how long PBO nets should be effective and if the \n", - "current WHO efficacy criteria for a 3-year LLIN should be reduced to fit the chemistry.\n", - "\n", - "A limitation of our trial was that we did not evaluate efficacy of Olysset(r) Plus against resistant _An. gambling_ mosquitoes. Instead, we tested its efficacy for the presence of permethrin alone using a susceptible malaria vector strain, although inclusion of PBO in nets has the potential of increasing insecticidal efficacy due to increased cuticular penetration and presence of P450s in susceptible insects. There is thus a need for suitable testing guidelines and a much more validation of the impact of PBO in pyrethroid-PBO nets.\n", - "\n", - "header: Test products\n", - "\n", - "Bioefficacy and physical durability of the Olyset(r) Plus and Olyset(r) Net both manufactured by Sumitomo Chemical were evaluated. The former is a polyethylene mono-filament net incorporated with 2% permethrin corresponding to 20 g permethrin active ingredient (AI)/kg or 800 mg permethrin AI/m\\({}^{2}\\) and 1% PBO (corresponding to 10 g PBO AI/kg or 400 mg PBO AI/m\\({}^{2}\\)). The latter is a polyethylene mono-filament net incorporated with 2% permethrin (w/w) (corresponding to 800 mg permethrin AI/m\\({}^{2}\\)). Olyset(r) Net was recommended in 2009 by the WHO Pesticide Evaluation Scheme (WHOPES) for use in malaria control [12], while Olyset(r) Plus was given interim recommendation by WHO in 2012 with the requirement to evaluate the product in a 3-year long-term trial to confirm its long-lasting efficacy in field [13].\n", - "\n", - "header: Background\n", - "\n", - "Insecticide-treated nets reduce child mortality, number of _Plasmodium falciparum_ cases and probably the number of _P. vivax_ cases per person/year [1]. Factory-produced long-lasting insecticide nets (LLINs) are a core malaria intervention for the global elimination of malaria led by the World Health Organization (WHO) [2]. According to the WHO definition, LLINs should retain efficacy against mosquito vectors for a minimum of 20 standard washes under laboratory conditions and a minimum of 3 years of use under field conditions [3]. When used by most of the people in a population, insecticide-treated nets can protect all people in the community, including those who do not sleep under nets [4]. Currently, the National Malaria Control Programme (NMCP) in Kenya has been scaling up the use of LLINs in malaria endemic and high-risk areas to achieve universal coverage, which is defined by WHO as access to one LLIN for every 1.8 persons in each household [2, 5].\n", - "\n", - "Pyrethroid LLINs were the first brands of treated nets recommended by WHO for malaria control. However, it was believed that insecticide resistance was worsening in Africa and would present a major threat to malaria control [6-8], and that pyrethroid-LLINs were becoming less effective at killing mosquitoes in household conditions when pyrethroid resistance develops [9, 10]. Consequently, piperonyl butoxide (PBO) was incorporated in nets with the intension to improve their efficacy against pyrethroid resistant mosquitoes by acting as a metabolic enzyme inhibitor targeting the P450 cytochrome or mixed function oxidases that metabolise pyrethroids and enhance the efficacy of pyrethroid treated nets. Olyset(r) Plus has been prequalified by WHO as the first in class PBO net.\n", - "\n", - "However, at the time of beginning the trial due to the absence of guidelines published by WHO of how to evaluate PBO nets, and considering the manufacturer's product claim, Olyset(r) Plus was evaluated only as a pyrethroid LLIN against a pyrethroid susceptible mosquito strain rather than against a resistant strain. This paper presents results of a 3-year long-term (Phase III) field trial of the candidate product, Olyset(r) Plus, along with a positive control product Olyset(r) Net, in a malaria endemic rice cultivation area of Kirinyaga County, Kenya.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `EntomologicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `EntomologicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `EntomologicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Village trial\",\"Country\":\"Kenya\",\"Site\":\"Kirinyaga County\",\"Start_year\":2014,\"End_month\":12,\"End_year\":2017}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Concentration_initial\": {\"title\": \"Insecticide concentration (initial)\", \"description\": \"Enter the initial concentration of the insecticide(s) for net type at the time of distribution.\"}, \"Concentration\": {\"title\": \"Insecticide concentration (measured mean)\", \"description\": \"Enter the measured concentration of the insecticide(s) for the active ingredient(s), in the net type.If multiple sides (e.g. roof or sides) of the net were tested, provide the mean value.\"}, \"pHI_category\": {\"title\": \"Phi Category\", \"description\": \"Classification of the nets holed surface area, as one of \\\"Good\\\", \\\"Damaged\\\", \\\"Torn\\\", \\\"Serviceable\\\", or \\\"All\\\", as proposed by WHO\"}, \"median_pHI\": {\"title\": \"Median Proportional hole index\", \"description\": \"Usually provided only for those nets with holes. This value should be provided in the text or a table of the paper. If it requires your own calculations, skip it. \\nDefinition: Numerator is total number of each LN product with at least one hole of size 1\\u20134; Denominator is Total number of each LN product found and assessed in surveyed households.\"}, \"pHI_lower_IQR\": {\"title\": \"pHI lower inter-quartile\", \"description\": \"Lower inter-quartile range of `pHI_median`.\"}, \"pHI_upper_IQR\": {\"title\": \"pHI upper inter-quartile\", \"description\": \"Upper inter-quartile range of `pHI_median`.\"}, \"pHI_upper_bound\": {\"title\": \"Phi Upper Bound\", \"description\": \"lowest pHI detected.\"}, \"median_hole_size\": {\"title\": \"Median hole surface area in cm^2\", \"description\": \"Usually provided only for those nets with holes. This value should be provided in the text or a table of the paper. If it requires your own calculations, skip it.\"}, \"hole_size_upper_IQR\": {\"title\": \"hole size upper inter-quartile\", \"description\": \"Upper inter-quartile range of `hole_size_median`.\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"Olyset\\u00ae Plus\",\"Insecticide\":\"Permethrin, Piperonyl Butoxide\",\"Concentration_initial\":\"18.4, 8.98\",\"Concentration\":\"8.8, 1.16\",\"pHI_category\":\"Good\",\"median_pHI\":49.6,\"pHI_lower_IQR\":43.1,\"pHI_upper_IQR\":56.0,\"pHI_upper_bound\":642.0,\"median_hole_size\":52.3,\"hole_size_upper_IQR\":230.5},\"N02\":{\"Net_type\":\"Olyset\\u00ae Net\",\"Insecticide\":\"Permethrin\",\"Concentration_initial\":\"19.6\",\"Concentration\":\"14.8\",\"pHI_category\":\"Good\",\"median_pHI\":44.9,\"pHI_lower_IQR\":38.4,\"pHI_upper_IQR\":51.6,\"pHI_upper_bound\":642.0,\"median_hole_size\":123.3,\"hole_size_upper_IQR\":272.3}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Acknowledgments\n", - "\n", - "We thank BASF and Bayer for providing the insecticides. We also thank the technical staff of CREC (Abibath Odojo, Estelle Vigninou, Josias Fagbohoun, Edwige Kpanou etc) for their assistance. We are grateful to the rice farmers at Cove for their support in the hut study.\n", - "\n", - "header: Background: Methods\n", - "\n", - "The efficacy of combining a standard pyrethroid LLIN (DuraNet(r)) with IRS insecticides from three chemical classes (bendicocarb, chlorfenapyr and pirimiphos-methyl CS) was evaluated in an experimental hut trial against wild pyrethroid-resistant _Anopheles gambiae_ s.l. in Cove, Benin. The combinations were also compared to each intervention alone. WHO cylinder and CDC bottle bioassays were performed to assess susceptibility of the local _An. gambiae_ s.l. vector population at the Cove hut site to insecticides used in the combinations.\n", - "\n", - "header: Results\n", - "\n", - "Susceptibility bioassays revealed that the vector population at Cove, was resistant to pyrethroids (<20% mortality) but susceptible to carbamates, chlorfenapyr and organophosphates (>=98% mortality). Mortality of wild free-flying pyrethroid resistant _An. gambiae_ s.l. entering the hut with the untreated net control (4%) did not differ significantly from DuraNet(r) alone (8%, p = 0.169). Pirimiphos-methyl CS IRS induced the highest mortality both on its own (85%) and in combination with DuraNet(r) (81%). Mortality with the DuraNet(r) + chlorfenapyr IRS combination was significantly higher than each intervention alone (46% vs. 33% and 8%, p<0.05) demonstrating an additive effect. The DuraNet(r) + bendicocarb IRS combination induced significantly lower mortality compared to the other combinations (32%, p<0.05). Blood-feeding inhibition was very low with the IRS treatments alone (3-5%) but \n", - "increased significantly when they were combined with DuraNet(r) (61% - 71%, p<0.05). Blood-feeding rates in the combinations were similar to the net alone. Adding bendicorarb IRS to DuraNet(r) induced significantly lower levels of mosquito feeding compared to adding chlorfenapyr IRS (28% vs. 37%, p = 0.015).\n", - "\n", - "header: Susceptibility bioassays\n", - "\n", - "WHO susceptibility cylinder bioassays [20] and CDC bottle bioassays [21] were performed in parallel to the experimental hut trial to determine the susceptibility of the vector population at the Cove experimental hut site to the constituent insecticides in the hut treatments. Adult F1 progeny of field-collected _An. gambiae_ s.l. were exposed to filter papers treated with discriminating doses of alpha-cypermethrin (0.05%), permethrin (0.75%), bendiocarb (0.1%) and fenitrothion (1.0%) in WHO cylinders and CDC bottles impregnated with 100 mg of chlorfenapyr. Comparison was made with the laboratory-maintained, susceptible _An. gambiae_ s.s. Kisumu colony. For each insecticide and strain, 100 adult female mosquitoes aged 2-3 days were introduced to four insecticide-treated cylinders/bottles in batches of 25. In the control arms, mosquitoes were exposed to silicone oil-treated filter papers and acetone-treated bottles. After 1 h exposure, mosquitoes were transferred to holding tubes and observation cups and provided access to 10% glucose solution (w/v). Mortality was recorded after 24 h for mosquitoes exposed to permethrin, alpha-cypermethrin, bendiocarb and fenitrothion in WHO cylinder bioassays and every 24 h up to 72 h for mosquitoes exposed to chlorfenapyr in CDC bottles. The insecticide treated filter papers used for the WHO cylinder bioassays were obtained from Universiti Sains Malaysia.\n", - "\n", - "header: Table 2: Susceptibility of field-collected Anopheles gambiae sensu late from Cove to chlorfenapyr in CDC bottle bioassays.\n", - "footer: None\n", - "columns: ['Treatment', 'Strain', 'N exposed', 'N dead', '% Mortality�', '95% CI']\n", - "\n", - "{\"0\":{\"Treatment\":\"Control\",\"Strain\":\"Kisumu\",\"N exposed\":101,\"N dead\":0,\"% Mortality\\ufffd\":0,\"95% CI\":\"\\u2013\"},\"1\":{\"Treatment\":\"Control\",\"Strain\":\"Cov\\u00e8\",\"N exposed\":100,\"N dead\":0,\"% Mortality\\ufffd\":0,\"95% CI\":\"\\u2013\"},\"2\":{\"Treatment\":\"Chlorfenapyr (100 \\u03bcg)\",\"Strain\":\"Kisumu\",\"N exposed\":103,\"N dead\":103,\"% Mortality\\ufffd\":100,\"95% CI\":\"\\u2013\"},\"3\":{\"Treatment\":\"Chlorfenapyr (100 \\u03bcg)\",\"Strain\":\"Cov\\u00e8\",\"N exposed\":102,\"N dead\":102,\"% Mortality\\ufffd\":100,\"95% CI\":\"\\u2013\"}}\n", - "\n", - "header: Table 4. Blood-feeding results of wild, pyrethroid-resistant Anopheles gambiae sensu lato entering experimental huts in Covè, southern Benin.\n", - "footer: * Values in the same column sharing a superscript letter do not differ significantly (P>0.05).\n", - "columns: ['Treatment', 'Total blood-fed', '% Blood-fed*', '95% CI', '% Blood-feeding inhibition', '% Personal protection']\n", - "\n", - "{\"0\":{\"Treatment\":\"Untreated hut (control)\",\"Total blood-fed\":675,\"% Blood-fed*\":\"95a\",\"95% CI\":\"93\\u201397\",\"% Blood-feeding inhibition\":\"\\u2013\",\"% Personal protection\":\"\\u2013\"},\"1\":{\"Treatment\":\"Untreated net (control)\",\"Total blood-fed\":231,\"% Blood-fed*\":\"55b\",\"95% CI\":\"50\\u201360\",\"% Blood-feeding inhibition\":\"42\",\"% Personal protection\":\"66\"},\"2\":{\"Treatment\":\"DuraNet\",\"Total blood-fed\":202,\"% Blood-fed*\":\"33cd\",\"95% CI\":\"29\\u201336\",\"% Blood-feeding inhibition\":\"66\",\"% Personal protection\":\"70\"},\"3\":{\"Treatment\":\"Bendiocarb IRS\",\"Total blood-fed\":460,\"% Blood-fed*\":\"91e\",\"95% CI\":\"88\\u201393\",\"% Blood-feeding inhibition\":\"5\",\"% Personal protection\":\"32\"},\"4\":{\"Treatment\":\"DuraNet + Bendiocarb IRS\",\"Total blood-fed\":150,\"% Blood-fed*\":\"28c\",\"95% CI\":\"24\\u201332\",\"% Blood-feeding inhibition\":\"71\",\"% Personal protection\":\"78\"},\"5\":{\"Treatment\":\"Chlorfenapyr IRS\",\"Total blood-fed\":440,\"% Blood-fed*\":\"92ae\",\"95% CI\":\"90\\u201394\",\"% Blood-feeding inhibition\":\"3\",\"% Personal protection\":\"35\"},\"6\":{\"Treatment\":\"DuraNet + Chlorfenapyr IRS\",\"Total blood-fed\":153,\"% Blood-fed*\":\"37d\",\"95% CI\":\"33\\u201342\",\"% Blood-feeding inhibition\":\"61\",\"% Personal protection\":\"77\"},\"7\":{\"Treatment\":\"Pirimiphos-methyl CS IRS\",\"Total blood-fed\":488,\"% Blood-fed*\":\"92ae\",\"95% CI\":\"90\\u201395\",\"% Blood-feeding inhibition\":\"3\",\"% Personal protection\":\"28\"},\"8\":{\"Treatment\":\"DuraNet + Pirimiphos-methyl CS IRS\",\"Total blood-fed\":160,\"% Blood-fed*\":\"33cd\",\"95% CI\":\"29\\u201337\",\"% Blood-feeding inhibition\":\"65\",\"% Personal protection\":\"76\"}}\n", - "\n", - "header: Conclusions\n", - "\n", - "Adding non-pyrethroid IRS to standard pyrethroid-only LLINs against a pyrethroid-resistant vector population which is susceptible to the IRS insecticide, can provide higher levels of vector mosquito control compared to the pyrethroid net alone or IRS alone. Adding pirimphos-methyl CS IRS may provide substantial improvements in vector control while adding chlorfenapyr IRS can demonstrate an additive effect relative to both interventions alone. Adding bendicorarb IRS may show limited enhancements in vector control owing to its short residual effect.\n", - "\n", - "header: Results\n", - "\n", - "Mortality rates of wild _An. gambiae_ s.l. from Cove in WHO susceptibility and CDC bottle bioassays are presented in Tables 1 and 2 respectively. Low proportions of adult F1 progeny of field-collected _An. gambiae_ s.l. were killed following exposure to alpha-cypermethrin (11%) and permethrin (20%); demonstrating pyrethroid resistance in the vector population. In contrast, the vast majority if not all mosquitoes from Cove were killed following exposure to bendiocarb (98%), fenitrothion (100%) and chlorfenapyr (100%); demonstrating susceptibility to carbamates, organophosphates and chlorfenapyr. With the insecticide susceptible _An. gambiae_ s.s. Kisumu colony, mortality was 100% with all insecticides.\n", - "\n", - "header: Conclusions\n", - "\n", - "Adding non-pyrethroid IRS to standard pyrethroid-only nets against a pyrethroid-resistant vector population which was susceptible to the IRS insecticide, generally provided higher levels of vector mosquito control compared to the pyrethroid net alone or IRS alone; the IRS intervention was responsible for improved mosquito mortality while the pyrethroid net provided blood-feeding inhibition. The combination with pirimiphos-methyl CS IRS was the most efficacious. Adding chlorfenapyr IRS to the pyrethroid LLIN demonstrated an additive mortality effect relative to both interventions alone. The combination with benidocarb IRS provided the \n", - "lowest levels of mortality owing to its short residual effect but also induced lower levels of mosquito feeding compared to combinations with the other IRS insecticides.\n", - "\n", - "header: Study site and experimental huts: Experimental hut treatments\n", - "\n", - "The following treatments were assessed in 9 experimental huts:\n", - "\n", - "1. Control (untreated hut)\n", - "2. Control (untreated net)\n", - "3. DuraNet(r) (Alpha-cypermethrin LLIN, 261 mg/m2, Shobikaa Impex)\n", - "4. Bendiocarb IRS applied at 400 mg/m2 (Ficam(r) WP, Bayer)\n", - "5. DuraNet(r) + Bendiocarb IRS applied at 400 mg/m2\n", - "6. Chlorfenapyr IRS applied at 250 mg/m2 (Sylando(r) 240SC, BASF)\n", - "7. DuraNet(r) + Chlorfenapryr IRS applied at 250 mg/m2\n", - "8. Pirimiphos-methyl CS IRS applied at 1000 mg/m2 (Actellic(r) 300CS, Syngenta)\n", - "9. DuraNet(r) + Pirimiphos-methyl CS IRS applied at 1000 mg/m2\n", - "\n", - "Interior hut walls were sprayed from top to bottom with IRS insecticide solutions using a Hudson X-pert(r) compression sprayer equipped with a flat-fan nozzle. To improve spraying accuracy, spray swaths were pre-marked on hut walls and a guidance pole was attached to the end of the spray lance to maintain a fixed distance to the wall. After spraying each hut, the volume remaining in the spray tank was measured to assess the overall volume sprayed. All spray volumes were within 30% of the target. The palm match used on the ceiling was sprayed flat on the ground outside the experimental hut and allowed to dry for 2 hours prior to being fitted on the ceiling of the hut. Three replicate nets were used per LLIN treatment and these were rotated every 2 nights within the same hut. To simulate wear and tear from field use, 6 holes each measuring 16 cm2 were cut into each bed net (one per panel) used in the trial.\n", - "\n", - "header: Ethical considerations\n", - "\n", - "Ethical approval was obtained from the ethics review committees of the London School of Hygiene & Tropical Medicine (LSHTM) (Reference No. 15265) and the local Ministry of Health in Benin (Reference No. N'39/CEIC/CREC). All volunteers provided informed written consent and were offered a course of chemoprophylaxis (doxycycline) prior to their participation in the study and up to four weeks following its completion. A nurse was available throughout the study to assess any cases of fever. In the event a volunteer tested positive for malaria, they were immediately withdrawn from the trial and administered effective treatment.\n", - "\n", - "header: Background\n", - "\n", - "Insecticide-treated nets (ITNs) and indoor residual spraying (IRS) are core interventions for preventing and controlling malaria [1]. Both methods have independently proven to be highly effective in reducing the burden of disease in diverse epidemiological settings. The substantial reductions in malaria morbidity and mortality observed in endemic countries over the last two decades, has been attributed to a significant increase in the roll out of ITNs and IRS during this period [2]. Where resources are available, both interventions have been deployed together in the same geographical location, with the primary aim of reducing the disease burden to a greater extent than could be achieved with either method alone [3,4].\n", - "\n", - "The benefits of combining these interventions is, however, contentious. Some community-randomised controlled trials (RCTs) have compared epidemiological outcomes in communities receiving pyrethroid long-lasting insecticidal nets (LLINs) plus IRS versus LLINs alone, yielding conflicting results. Whilst trials in Tanzania [5] and Sudan [6] associated combined use of LLINs and IRS with significant reductions in malaria infection prevalence, similar studies in Benin [7], Eritrea [8], Ethiopia [9] and The Gambla [10] reported no such effect. Based on a Cochrane review demonstrating the inconsistencies in epidemiological evidence [4], the World Health Organisation (WHO) has recently issued a provisional recommendation against combining LLINs and IRS as a means of reducing malaria-associated morbidity and mortality [1]. National Malaria Control Programmes are encouraged to prioritise delivering either ITNs or IRS at high coverage and to a high standard, rather than introducing the second intervention as a means to compensate for deficiencies in the implementation of the first. However, this should not be interpreted to mean that the combined IRS and ITN approach is redundant in all settings. Considering the recent stall in progress against malaria [11] and increasing prevalence of pyrethroid resistance in malaria vector populations across Africa [12], combining interventions may be vital for high transmission settings and insecticide resistance management. Vector control programmes are expected to be guided by local evidence to decide when, where and how to combine IRS with ITNs for different epidemiological settings [1].\n", - "\n", - "Evidence from RCTs and operational studies suggests that the impact of co-implementing LLINs and IRS may depend on a number of location-specific factors including: intervention coverage, transmission intensity, vector behaviour, choice of IRS insecticide and insecticide resistance [13,14]. The choice of IRS insecticide for a specific geographical setting whether deployed alone or together with LLINs will be influenced largely by the susceptibility of the target vector population to the insecticide, its mode of action, chemical properties and residual \n", - "activity on wall substrates. To maximise the impact of the combined intervention approach, it is important to consider the interactions that may occur between the insecticide in the LLIN and the chosen IRS insecticide. Where the mode of action of the IRS insecticides is not complementary to the insecticide on the net, the combination might be redundant or result in lower levels of vector control than what is achievable with either intervention alone. Although pyrethroids are not recommended for IRS, the redundancy of combining pyrethroid IRS or wall linings with pyrethroid LLINs has been clearly demonstrated in experimental but studies against pyrethroid-resistant malaria vectors in West Africa [15,16].\n", - "\n", - "Insecticides belonging to four classes of compounds have been approved by the WHO for IRS against malaria vectors; pyrethroids, organophosphates, carbamates and more recently, the neonicotinoid clothianidin [1,17]. While RCTs are the most robust method for generating evidence on the impact of combining vector control interventions, they are often time-consuming, expensive and unrealistic in some settings. Evidence from experimental but trials may provide some insights on what to expect when different types IRS insecticides are deployed to complement pyrethroid-only nets. In this study, we compared the impact of combining pyrethroid LLINs with IRS insecticides from three distinct chemical classes in experimental huts against wild free-flying pyrethroid-resistant malaria vectors in southern Benin.\n", - "\n", - "header: Trial procedure\n", - "\n", - "The trial began three days after IRS application and continued for 4 months, between July and October 2018 and followed WHO guidelines [19]. Nine (9) consenting human volunteers kept in experimental huts each trial night to attract mosquitoes. To account for bias due to differential attractiveness to mosquitoes, volunteers were rotated through experimental huts daily in accordance with a predetermined Latin square design. To mitigate the effect of hut position on mosquito entry, bed nets were rotated through experimental huts on a weekly basis. IRS treatments could not be rotated thus remained fixed throughout the trial. At dawn, sleepers collected all mosquitoes from under the net, the sleeping room and the veranda using a torch and aspirator and placed them in correspondingly labelled plastic cups. Mosquito collections were subsequently transferred to the laboratory for morphological identification and scoring of blood-feeding and mortality. To account for the slow-action of chlorfenapyr, delayed mortality was recorded every 24 h up to 72 h after collection for all treatments. All alive _An. gambiae_ s.l. were held at 27 +- 2deg C and 75 +- 10% RH and provided access to 10% (w/v) glucose solution.\n", - "\n", - "header: Table 3. Overall entry and exiting of wild, pyrethroid-resistant Anopheles gambiae sensu lato entering experimental huts in Covè, southern Benin.\n", - "footer: * Values in the same column sharing a superscript letter do not differ significantly (P>0.05).\n", - "columns: ['Treatment', 'Total females caught', 'Average catch per night', '% Deterrence', 'Total exiting', '% Exophily�', '95% CI']\n", - "\n", - "{\"0\":{\"Treatment\":\"Untreated hut (control)\",\"Total females caught\":711,\"Average catch per night\":7,\"% Deterrence\":\"\\u2013\",\"Total exiting\":322,\"% Exophily\\ufffd\":\"45a\",\"95% CI\":\"42\\u201349\"},\"1\":{\"Treatment\":\"Untreated net (control)\",\"Total females caught\":420,\"Average catch per night\":4,\"% Deterrence\":\"41\",\"Total exiting\":165,\"% Exophily\\ufffd\":\"39a\",\"95% CI\":\"35\\u201344\"},\"2\":{\"Treatment\":\"DuraNet\",\"Total females caught\":619,\"Average catch per night\":6,\"% Deterrence\":\"13\",\"Total exiting\":350,\"% Exophily\\ufffd\":\"57b\",\"95% CI\":\"53\\u201361\"},\"3\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught\":508,\"Average catch per night\":5,\"% Deterrence\":\"29\",\"Total exiting\":389,\"% Exophily\\ufffd\":\"77c\",\"95% CI\":\"73\\u201380\"},\"4\":{\"Treatment\":\"DuraNet + Bendiocarb IRS\",\"Total females caught\":537,\"Average catch per night\":6,\"% Deterrence\":\"25\",\"Total exiting\":373,\"% Exophily\\ufffd\":\"70cd\",\"95% CI\":\"66\\u201373\"},\"5\":{\"Treatment\":\"Chlorfenapyr IRS\",\"Total females caught\":478,\"Average catch per night\":5,\"% Deterrence\":\"33\",\"Total exiting\":297,\"% Exophily\\ufffd\":\"62bd\",\"95% CI\":\"58\\u201367\"},\"6\":{\"Treatment\":\"DuraNet + Chlorfenapyr IRS\",\"Total females caught\":411,\"Average catch per night\":4,\"% Deterrence\":\"42\",\"Total exiting\":241,\"% Exophily\\ufffd\":\"59b\",\"95% CI\":\"54\\u201363\"},\"7\":{\"Treatment\":\"Pirimiphos-methyl CS IRS\",\"Total females caught\":528,\"Average catch per night\":6,\"% Deterrence\":\"26\",\"Total exiting\":356,\"% Exophily\\ufffd\":\"67d\",\"95% CI\":\"63\\u201371\"},\"8\":{\"Treatment\":\"DuraNet + Pirimiphos-methyl CS IRS\",\"Total females caught\":486,\"Average catch per night\":5,\"% Deterrence\":\"32\",\"Total exiting\":298,\"% Exophily\\ufffd\":\"61bd\",\"95% CI\":\"57\\u201366\"}}\n", - "\n", - "header: Outcome measures\n", - "\n", - "The efficacy of each experimental hut treatment was expressed in terms of the following outcome measures:\n", - "\n", - "* Exophily-exiting rates due to potential irritant effect of the treatment expressed as the proportion of mosquitoes collected in the veranda\n", - "* Deterrence-defined as the percentage reduction in numbers of mosquitoes collected in a treated hut relative to the untreated control\n", - "* Blood-feeding-proportion of blood-fed mosquitoes at the time of collection\n", - "\n", - "Where _B__\\({}_{\\mu}\\)_ is the proportion of blood-fed mosquitoes in the untreated control and _B__\\({}_{\\beta}\\)_ is the proportion of blood-fed mosquitoes in the treated hut.\n", - "\n", - "\n", - "- B_{i})}{B_{u}}\\] Where \\(B_{u}\\) is the number of blood-fed mosquitoes in the untreated control and \\(B_{i}\\) is the number of blood-fed mosquitoes in the huts with insecticide treatments.\n", - "* Mortality-proportion of dead mosquitoes after a 72 h holding period Mosquito deterrence, blood-feeding inhibition and personal protection were calculated relative to the untreated net control hut for treatments which involved the LLIN and relative to the untreated hut control for IRS-only treatments.\n", - "\n", - "header: Abstract\n", - "\n", - "Which indoor residual spraying insecticide best complements standard pyrethroid long-lasting insecticidal nets for improved control of pyrethroid resistant malaria vectors?\n", - "\n", - "Thomas Syme, Augustin Fongnikin, Damien Todjinou, Renaud Goveetchan, Mark Rowland, Martin Akogbeto, Corine Nguforo\n", - "\n", - "\n", - "\n", - "Where resources are available, non-pyrethroid IRS can be deployed to complement standard pyrethroid LLINs with the aim of achieving improved vector control and managing insecticide resistance. The impact of the combination may however depend on the type of IRS insecticide deployed. Studies comparing combinations of pyrethroid LLINs with different types of non-pyrethroid IRS products will be necessary for decision making.\n", - "\n", - "header: Methods\n", - "\n", - "The study was conducted at the CREC/LSHTM experimental hut station located in Cove, southern Benin (7deg14degN2deg18degE). The experimental huts are situated in a vast area of rice irrigation, which provide extensive and permanent breeding sites for mosquitoes. The rainy season extends from March to October and the dry season from November to February. _Anopheles coluzzeii_ and _An. gambiae_ sensu stricto (s.s.) occur in sympatry, with the latter present at lower densities and predominantly in the dry season [18]. The vector population is susceptible to organophosphates and carbamates but exhibits intense resistance to pyrethroids (200-fold) [18]. Molecular genotyping and microarray studies have demonstrated a high frequency of the knockdown resistance L1014F allele (>90%) and overexpression of the cytochrome P450, CYP6P3, associated with pyrethroid detoxification [18]. The experimental huts used were of the West African design [19], made from concrete bricks with a corrugated iron roof and a ceiling with palm-thatch mats. Interior walls were cement plastered and each hut was constructed on a concrete base containing a water-filled moat to preclude predators. Entry of mosquitoes occurred via four window slits, 1 cm wide and 30 cm long, positioned on two sides of the hut. A wooden framed veranda made of polyethylene sheeting and screening mesh projected from the rear wall of each hut to capture exiting mosquitoes.\n", - "\n", - "header: Data analysis\n", - "\n", - "Differences in proportional outcomes (exophily, blood-feeding, mortality) between experimental hut treatments were analysed using a blocked logistic regression model whereas differences in numerical outcomes (mosquito entry) were assessed using a negative binomial regression model. In addition to the fixed effect of the treatment, both models were adjusted to account for variation due to differential attractiveness of the volunteer sleepers and huts.\n", - "\n", - "\n", - "Mortality in susceptibility bioassays was interpreted according to WHO criteria. All analyses were performed in Stata version 15.1.\n", - "\n", - "header: Susceptibility bioassay results: Experimental hut results\n", - "\n", - "A total of 4,698 female _An. gambiae_ s.l. were collected in the experimental huts over the 4-month trial period (Tables 3 and S1). Due to the inability to\n", - "\n", - "rotate IRS, it was not possible to distinguish treatment-induced deterrence for the IRS treatments from differential attractiveness due to hut position. The proportion of mosquitoes exiting into the veranda for the untreated hut and untreated net controls were 45% and 39% respectively. Exiting was significantly higher in all experimental hut treatments relative to both controls (p<0.01), suggesting the insecticide treatments induced an irritant response which caused mosquitoes to seek refuge in the veranda. The highest level of mosquito exiting was achieved with beniodicarb IRS alone (77%). Adding beniodicarb IRS to DuraNet(r) also induced significantly higher levels of mosquito exiting compared to DuraNet(r) alone (57% with DuraNet(r) vs. 70% with DuraNet(r) + beniodicarb IRS, p = 0.001). This effect was, however, not observed with chlorfenapyr IRS and pirimiphos-methyl CS IRS; exiting rates were similar between the combinations with these IRS insecticides and DuraNet(r) alone, (59% - 61% vs 57%, p>0.05).\n", - "\n", - "**Blood-feeding and personal protection.** Blood-feeding and personal protection results of wild, pyrethroid-resistant _An. gambiae_ s.l. in the experimental huts are presented in Table 4. Blood-feeding rates with the untreated hut and untreated net controls were 95% and 55% respectively. DuraNet(r) induced significantly lower blood-feeding rates than the control untreated net (33% with DuraNet(r) vs. 55% with untreated net, p<0.001). Meanwhile, blood-feeding was high across all IRS treatments (91-92%) thus providing very limited blood-feeding inhibition (3% - 5%) compared to the untreated hut control (Table 4). All three combinations provided significantly higher levels of blood-feeding inhibition relative to the IRS treatments\n", - "\n", - "alone (60% - 71% vs. 3% - 5%, p<0.001). Between the combinations, DuraNet(r) + bendiocarb IRS induced the lowest blood-feeding rate (28%) and offered personal protection of 78% while DuraNet(r) + chlorfenapyr IRS induced a higher blood-feeding rate (37%, p = 0.015) though providing about the same levels of personal protection (77%).\n", - "\n", - "**Mortality rates in experimental huts.** Overall mortality rates of wild, pyrethroid-resistant _An. gambiae_ s.l. in the untreated hut and untreated net controls were 2% and 4% respectively (Table 5). Mortality with DuraNet(r) was low and did not differ significantly from the untreated net control (8% vs. 4%, p = 0.169). The IRS treatments alone and the combinations induced significantly higher mortality than DuraNet(r) and the untreated controls (p < 0.001); adding any IRS treatment onto DuraNet(r) therefore always significantly improved vector mortality compared to DuraNet(r) alone. Between the IRS only treatments, the highest mortality was achieved with pirimiphos-methyl CS (85%, p < 0.001) while chlorfenapyr and bendiocarb induced fairly similar mortality rates (34% and 28%, p = 0.09). Combining DuraNet(r) with bendiocarb and pirimiphos-methyl CS IRS treatments did not improve mortality compared to the corresponding IRS alone (bendiocarb: 28% vs. 32%, p = 0.265 and pirimiphos-methyl CS: 85% vs. 81%, p = 0.129) (Table 5). With chlorfenapyr IRS, mortality was significantly higher in the combination compared to chlorfenapyr IRS alone over the 4-month trial (34% vs. 46%, p < 0.001) (Fig 3). Between the combinations, the highest mortality was achieved with DuraNet(r) + pirimiphos-methyl CS IRS (81%). Mortality was significantly higher with the DuraNet(r) + chlorfenapyr IRS combination compared to DuraNet(r) + bendiocarb IRS (46% vs. 32%, p < 0.001) (Table 5).\n", - "\n", - "Initial monthly wild mosquito mortality with pirimiphos-methyl CS IRS and chlorfenapyr IRS was steady and did not decline substantially over the course of the 4 months trial both when applied alone and in combination with DuraNet(r) (Figs 1 and 2). By contrast, wild mosquito mortality with bendiocarb IRS declined sharply from ~55% to about 28-32% by the last month of the trial both when applied alone and in combination with DuraNet(r) (Fig 3).\n", - "\n", - "**Wall cone bioassay results.** Mortality rates of the laboratory maintained, insecticide-susceptible _An. gambiae_ s.s. Kisumu colony following exposure to IRS-treated walls in monthly, 30 mins wall cone bioassays are presented in Fig 4 with more details in supporting information (S2 Table). On pirimiphos-methyl CS-treated surfaces, cone bioassay mortality was very high (> 85%) throughout all 4 months of the trial. As observed with wild free-flying mosquitoes, a progressive decline in cone bioassay mortality with increasing months elapsed from spraying was observed with bendiocarb, beginning at 63% in month 1 and decreasing to 19% by month 4. Cone bioassay mortality with chlorfenapyr IRS was consistently low throughout the trial,\n", - "ranging from 11-31%. Cone bioassay mortality on untreated control walls did not exceed 10% in any month of the trial (Fig 4).\n", - "\n", - "header: Mosquito entry and exiting.: Discussion\n", - "\n", - "The ultimate purpose of combining IRS with LLINs is to achieve greater levels of vector control through the differential effects of the interventions and modes of action of the insecticides involved than what is achievable with a single intervention on its own. Transmission dynamics models have suggested that the levels of vector mosquito mortality and blood-feeding inhibition observed in an experimental hut setting could be predictive of the capacity of an indoor vector control intervention or a combination of these to control vector populations, reduce vector biting and improve public health impact when deployed on a large scale [22,23]. In this study, we demonstrate that where vectors are resistant to pyrethroids but susceptible to a given non-pyrethroid IRS insecticide, it should be possible to achieve substantially improved vector control by adding the non-pyrethroid IRS to a standard pyrethroid-only LLIN to boost\n", - "\n", - "Fig 1: Monthly mortality rates of wild, free-flying pyrethroid-resistant _Anopheles gambiae_ sensu late entering experimental huts with pirimphos-methyl CS IRS applied alone and in combination with DuraNet(r) in Cové, southern Benin. Mortality was cumulated over successive months. Error bars represent 95% CI.\n", - "\n", - "Fig 2: Monthly mortality rates of wild, free-flying pyrethroid-resistant _Anopheles gambiae_ sensu late entering experimental huts with chlorfenapyr IRS applied alone and in combination with DuraNet(r) in Cové, southern Benin. Mortality was cumulated over successive months. Error bars represent 95% CI.\n", - "\n", - "\n", - "mortality rates through the IRS intervention, while benefiting from the blood-feeding inhibition provided by the LLIN.\n", - "\n", - "The level of improved mortality achieved in the pyrethroid-only LLIN plus non-pyrethroid IRS combinations relative to the pyrethroid LLIN alone was clearly dependent on the type of non-pyrethroid IRS insecticide used. The combination with pirimiphos-methyl CS IRS induced the highest mortality rate (81%) and this can be attributed to the high and prolonged activity of the pirimiphos-methyl CS IRS formulation on cement walls as demonstrated in this study and previous studies in Benin [24]. This substantiates findings from community trials and operational studies demonstrating significant reductions in transmission of malaria by pyrethroid-resistant vector populations when a single round of pirimiphos-methyl CS IRS was deployed against a background of moderate to high coverage with standard pyrethroid nets [25-27]. By contrast the levels of mortality achieved in the combination with bendiocarb IRS was much lower (32%); attributable to the fast decline in efficacy with the insecticide as observed monthly in the experimental huts and in cone bioassays. The poor residual effect of\n", - "\n", - "Fig 4: **Mortality (72 h) of laboratory maintained, insecticide-susceptible _Anopheles gambiae_ sensu stricto Kisumu colony exposed to IRS-treated hut walls in monthly, 30 mins wall cone bioassays in experimental huts in Cove, southern Benin. Error bars represent 95% CI. Approximately fifty (50) 2–3 days old mosquitoes were exposed for 30 mins to each IRS treated hut in batches of 10 per cone and mortality recorded after 72 h.**\n", - "\n", - "Fig 3: **Monthly mortality rates of wild, free-flying pyrethroid-resistant _Anopheles gambiae_ sensu lato entering experimental huts with bendiocarb IRS applied alone and in combination with DuraNet® in Cove, southern Benin. Mortality was cumulated over successive months. Error bars represent 95% CI.**\n", - "bendiocarb for IRS is well documented [28, 29, 30]. The failure of a combination of bendiocarb treated walls and pyrethroid nets to provide improved control of clinical malaria compared to either intervention alone in a previous RCT in Benin [7] was also largely attributed to the short-lived efficacy of bendiocarb on the treated walls [13, 14]. Multiple IRS campaign rounds may be necessary to achieve sustained levels of improved vector control when bendiocarb IRS is deployed to complement standard pyrethroid LLINs. Given the significant costs associated with running IRS campaigns, these findings raise questions over the suitability of currently available formulations of bendiocarb for IRS and the cost-effectiveness of its combination with pyrethroid nets. Considering the high initial mortality rates usually achieved with the insecticide, reformulation chemistry may help address the short residual efficacy of bendiocarb and improve the utility of this insecticide for vector control.\n", - "\n", - "While mortality in the combinations with pirimiphos-methyl CS IRS and bendiocarb IRS were similar to each IRS alone, the combination with chlorfenapyr IRS induced significantly higher levels of mortality compared to chlorfenapyr IRS alone. This demonstrates an additive effect of the chlorfenapyr IRS plus pyrethroid LLINs combination which was not observed with the other IRS insecticides tested. This trend is consistent with previous experimental hut studies in Benin [31, 32] though the levels of mortality achieved with the combination were substantially higher (73%-83% vs. 46%). The difference in mortality could be due to changes in the composition of the vector population and/or increasing pyrethroid resistance levels over time. Chlorfenapyr is a new repurposed pyrrole insecticide with a unique mode of action that has shown potential for IRS but often inducing moderate mortality rates when applied alone in experimental huts against pyrethroid-resistant malaria vectors [29, 33]. It acts on the oxidative/metabolic pathway of insects hence its action can be enhanced by physical activity in the insect [34]. The additive mortality observed in the chlorfenapyr IRS plus pyrethroid net combination may therefore be attributed to the irritant effect of the pyrethroid in the LLIN on mosquitoes as they alight on the chlorfenapyr-treated wall after failed attempts to feed on the sleeper under the net. In addition, owing to the non-neurotoxic and non-irritant effect of chlorfenapyr [35], mosquitoes may have alighted on chlorfenapyr-treated walls for longer, leading to increased insecticide pick-up, potentially contributing to the additional mortality observed with this combination. The inability of the WHO 30-min cone bioassays to predict wild mosquito mortality with chlorfenapyr IRS in experimental huts [29, 34] is further demonstrated in this study; while cone bioassay mortality of the susceptible Kisumu strain was very low, wild mosquito mortality was higher and consistent throughout the trial confirming previous findings [29]. Considering the prolonged effect of chlorfenapyr IRS on wild mosquitoes [29], substantial and sustained improvements in the control of pyrethroid-resistant vector populations can be expected if the IRS insecticide is deployed to complement pyrethroid LLINs.\n", - "\n", - "IRS is highly effective for malaria vector control when deployed on its own but provides limited personal protection from mosquito biting and this is evident from the high blood-feeding rates observed with the IRS treatments alone. In the absence of a bed net, mosquitoes will usually feed on the human occupants in an IRS treated home before resting on the wall where they pick up the insecticide, consequently, direct blood-feeding inhibition is not expected when the intervention is applied independently. By contrast, pyrethroid LLINs reduce mosquito biting and provide substantial levels of personal protection for the user; an effect which is attributable to the physical barrier of the net and the excito-repellent effect of the pyrethroid insecticide. The findings from this study demonstrate that this effect can persist even against a vector population that has developed intense resistance to pyrethroids as observed in Cove [18]. By combining the IRS treatments with a pyrethroid LLIN, it was possible to achieve substantially improved levels of blood-feeding inhibition and personal protection compared to \n", - "the IRS alone. The reduced exposure to infective bites constitutes a crucial advantage of the combination strategy over IRS alone. The blood-feeding rate in the combination appeared to depend on the type of IRS insecticide used albeit to a lesser extent than the levels of mortality achieved; lower blood-feeding rates and thus higher levels of blood-feeding inhibition were achieved in the combination with benidocarb IRS compared to the combination with chlorfenapyr IRS. This can be due to differences in the mode of action of both IRS insecticides; in contrast to chlorfenapyr, benidocarb acts on the insect's nervous system eliciting an irritant rapid knockdown effect on mosquitoes [35] and this together with the excito-repellent effect of the pyrethroid in the standard pyrethroid LLIN could have contributed to the high levels of early exiting and reduced blood-feeding rates observed when both interventions were combined in a hut.\n", - "\n", - "Overall, the results demonstrate the superiority of the organophosphate, pirimiphos-methyl CS for IRS on its own and in combination with pyrethroid LLINs over benidocarb and the pyrrole, chlorfenapyr. However, this finding may not be generalisable to areas where vectors are resistant to organophosphates. Indeed, previous experimental hut studies in Cote d'Ivoire failed to demonstrate improved vector control with the combination compared to the net alone when standard pyrethroid LLINs were combined with pirimiphos-methyl CS-treated wall linings against a vector population that was resistant to pyrethroids and organophosphates [36]. Resistance to organophosphates and carbamates is unfortunately increasing in malaria vector populations especially in West Africa [37, 38, 39, 40]. To mitigate its impact, vector control programmes are encouraged to rotate between IRS insecticides with different modes of action [41]. Considering that most IRS campaigns will usually be deployed against a background of high LLIN coverage, effective IRS rotation plans should prioritise IRS insecticides which in addition to providing improved and prolonged vector control, can efficiently complement LLINs. Based on the findings of this study, chlorfenapyr IRS shows some potential to be a useful addition to such IRS rotation plans in pyrethroid-resistant areas with high pyrethroid LLIN coverage. It will be interesting to investigate the impact of combining pyrethroid LLINs with other newly approved IRS formulations containing clothianidin [17].\n", - "\n", - "The low mortality rates achieved with the standard pyrethroid net in this study (8%), further demonstrates the threat of pyrethroid resistance on the efficacy of standard pyrethroids. Pyrethroid resistance is widespread in malaria vectors across Africa and increasing in intensity the more they are used [12]. A new generation of LLINs treated with a pyrethroid and non-pyrethroid insecticide are now in advanced development. Studies have demonstrated the potential of some of these nets to provide improved control of clinical malaria transmitted by pyrethroid-resistant malaria vectors compared to standard pyrethroid nets [42, 43, 44]. As next generation nets come into the market, and are rolled out in endemic countries, it will be essential to explore any possible interactions with the different types of IRS insecticides that could be deployed together with them in a combined intervention approach.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ITNCondition` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Background: Methods\n", - "\n", - "The efficacy of combining a standard pyrethroid LLIN (DuraNet(r)) with IRS insecticides from three chemical classes (bendicocarb, chlorfenapyr and pirimiphos-methyl CS) was evaluated in an experimental hut trial against wild pyrethroid-resistant _Anopheles gambiae_ s.l. in Cove, Benin. The combinations were also compared to each intervention alone. WHO cylinder and CDC bottle bioassays were performed to assess susceptibility of the local _An. gambiae_ s.l. vector population at the Cove hut site to insecticides used in the combinations.\n", - "\n", - "header: Acknowledgments\n", - "\n", - "We thank BASF and Bayer for providing the insecticides. We also thank the technical staff of CREC (Abibath Odojo, Estelle Vigninou, Josias Fagbohoun, Edwige Kpanou etc) for their assistance. We are grateful to the rice farmers at Cove for their support in the hut study.\n", - "\n", - "header: Results\n", - "\n", - "Mortality rates of wild _An. gambiae_ s.l. from Cove in WHO susceptibility and CDC bottle bioassays are presented in Tables 1 and 2 respectively. Low proportions of adult F1 progeny of field-collected _An. gambiae_ s.l. were killed following exposure to alpha-cypermethrin (11%) and permethrin (20%); demonstrating pyrethroid resistance in the vector population. In contrast, the vast majority if not all mosquitoes from Cove were killed following exposure to bendiocarb (98%), fenitrothion (100%) and chlorfenapyr (100%); demonstrating susceptibility to carbamates, organophosphates and chlorfenapyr. With the insecticide susceptible _An. gambiae_ s.s. Kisumu colony, mortality was 100% with all insecticides.\n", - "\n", - "header: Table 2: Susceptibility of field-collected Anopheles gambiae sensu late from Cove to chlorfenapyr in CDC bottle bioassays.\n", - "footer: None\n", - "columns: ['Treatment', 'Strain', 'N exposed', 'N dead', '% Mortality�', '95% CI']\n", - "\n", - "{\"0\":{\"Treatment\":\"Control\",\"Strain\":\"Kisumu\",\"N exposed\":101,\"N dead\":0,\"% Mortality\\ufffd\":0,\"95% CI\":\"\\u2013\"},\"1\":{\"Treatment\":\"Control\",\"Strain\":\"Cov\\u00e8\",\"N exposed\":100,\"N dead\":0,\"% Mortality\\ufffd\":0,\"95% CI\":\"\\u2013\"},\"2\":{\"Treatment\":\"Chlorfenapyr (100 \\u03bcg)\",\"Strain\":\"Kisumu\",\"N exposed\":103,\"N dead\":103,\"% Mortality\\ufffd\":100,\"95% CI\":\"\\u2013\"},\"3\":{\"Treatment\":\"Chlorfenapyr (100 \\u03bcg)\",\"Strain\":\"Cov\\u00e8\",\"N exposed\":102,\"N dead\":102,\"% Mortality\\ufffd\":100,\"95% CI\":\"\\u2013\"}}\n", - "\n", - "header: Susceptibility bioassays\n", - "\n", - "WHO susceptibility cylinder bioassays [20] and CDC bottle bioassays [21] were performed in parallel to the experimental hut trial to determine the susceptibility of the vector population at the Cove experimental hut site to the constituent insecticides in the hut treatments. Adult F1 progeny of field-collected _An. gambiae_ s.l. were exposed to filter papers treated with discriminating doses of alpha-cypermethrin (0.05%), permethrin (0.75%), bendiocarb (0.1%) and fenitrothion (1.0%) in WHO cylinders and CDC bottles impregnated with 100 mg of chlorfenapyr. Comparison was made with the laboratory-maintained, susceptible _An. gambiae_ s.s. Kisumu colony. For each insecticide and strain, 100 adult female mosquitoes aged 2-3 days were introduced to four insecticide-treated cylinders/bottles in batches of 25. In the control arms, mosquitoes were exposed to silicone oil-treated filter papers and acetone-treated bottles. After 1 h exposure, mosquitoes were transferred to holding tubes and observation cups and provided access to 10% glucose solution (w/v). Mortality was recorded after 24 h for mosquitoes exposed to permethrin, alpha-cypermethrin, bendiocarb and fenitrothion in WHO cylinder bioassays and every 24 h up to 72 h for mosquitoes exposed to chlorfenapyr in CDC bottles. The insecticide treated filter papers used for the WHO cylinder bioassays were obtained from Universiti Sains Malaysia.\n", - "\n", - "header: Results\n", - "\n", - "Susceptibility bioassays revealed that the vector population at Cove, was resistant to pyrethroids (<20% mortality) but susceptible to carbamates, chlorfenapyr and organophosphates (>=98% mortality). Mortality of wild free-flying pyrethroid resistant _An. gambiae_ s.l. entering the hut with the untreated net control (4%) did not differ significantly from DuraNet(r) alone (8%, p = 0.169). Pirimiphos-methyl CS IRS induced the highest mortality both on its own (85%) and in combination with DuraNet(r) (81%). Mortality with the DuraNet(r) + chlorfenapyr IRS combination was significantly higher than each intervention alone (46% vs. 33% and 8%, p<0.05) demonstrating an additive effect. The DuraNet(r) + bendicocarb IRS combination induced significantly lower mortality compared to the other combinations (32%, p<0.05). Blood-feeding inhibition was very low with the IRS treatments alone (3-5%) but \n", - "increased significantly when they were combined with DuraNet(r) (61% - 71%, p<0.05). Blood-feeding rates in the combinations were similar to the net alone. Adding bendicorarb IRS to DuraNet(r) induced significantly lower levels of mosquito feeding compared to adding chlorfenapyr IRS (28% vs. 37%, p = 0.015).\n", - "\n", - "header: Conclusions\n", - "\n", - "Adding non-pyrethroid IRS to standard pyrethroid-only LLINs against a pyrethroid-resistant vector population which is susceptible to the IRS insecticide, can provide higher levels of vector mosquito control compared to the pyrethroid net alone or IRS alone. Adding pirimphos-methyl CS IRS may provide substantial improvements in vector control while adding chlorfenapyr IRS can demonstrate an additive effect relative to both interventions alone. Adding bendicorarb IRS may show limited enhancements in vector control owing to its short residual effect.\n", - "\n", - "header: Table 4. Blood-feeding results of wild, pyrethroid-resistant Anopheles gambiae sensu lato entering experimental huts in Covè, southern Benin.\n", - "footer: * Values in the same column sharing a superscript letter do not differ significantly (P>0.05).\n", - "columns: ['Treatment', 'Total blood-fed', '% Blood-fed*', '95% CI', '% Blood-feeding inhibition', '% Personal protection']\n", - "\n", - "{\"0\":{\"Treatment\":\"Untreated hut (control)\",\"Total blood-fed\":675,\"% Blood-fed*\":\"95a\",\"95% CI\":\"93\\u201397\",\"% Blood-feeding inhibition\":\"\\u2013\",\"% Personal protection\":\"\\u2013\"},\"1\":{\"Treatment\":\"Untreated net (control)\",\"Total blood-fed\":231,\"% Blood-fed*\":\"55b\",\"95% CI\":\"50\\u201360\",\"% Blood-feeding inhibition\":\"42\",\"% Personal protection\":\"66\"},\"2\":{\"Treatment\":\"DuraNet\",\"Total blood-fed\":202,\"% Blood-fed*\":\"33cd\",\"95% CI\":\"29\\u201336\",\"% Blood-feeding inhibition\":\"66\",\"% Personal protection\":\"70\"},\"3\":{\"Treatment\":\"Bendiocarb IRS\",\"Total blood-fed\":460,\"% Blood-fed*\":\"91e\",\"95% CI\":\"88\\u201393\",\"% Blood-feeding inhibition\":\"5\",\"% Personal protection\":\"32\"},\"4\":{\"Treatment\":\"DuraNet + Bendiocarb IRS\",\"Total blood-fed\":150,\"% Blood-fed*\":\"28c\",\"95% CI\":\"24\\u201332\",\"% Blood-feeding inhibition\":\"71\",\"% Personal protection\":\"78\"},\"5\":{\"Treatment\":\"Chlorfenapyr IRS\",\"Total blood-fed\":440,\"% Blood-fed*\":\"92ae\",\"95% CI\":\"90\\u201394\",\"% Blood-feeding inhibition\":\"3\",\"% Personal protection\":\"35\"},\"6\":{\"Treatment\":\"DuraNet + Chlorfenapyr IRS\",\"Total blood-fed\":153,\"% Blood-fed*\":\"37d\",\"95% CI\":\"33\\u201342\",\"% Blood-feeding inhibition\":\"61\",\"% Personal protection\":\"77\"},\"7\":{\"Treatment\":\"Pirimiphos-methyl CS IRS\",\"Total blood-fed\":488,\"% Blood-fed*\":\"92ae\",\"95% CI\":\"90\\u201395\",\"% Blood-feeding inhibition\":\"3\",\"% Personal protection\":\"28\"},\"8\":{\"Treatment\":\"DuraNet + Pirimiphos-methyl CS IRS\",\"Total blood-fed\":160,\"% Blood-fed*\":\"33cd\",\"95% CI\":\"29\\u201337\",\"% Blood-feeding inhibition\":\"65\",\"% Personal protection\":\"76\"}}\n", - "\n", - "header: Conclusions\n", - "\n", - "Adding non-pyrethroid IRS to standard pyrethroid-only nets against a pyrethroid-resistant vector population which was susceptible to the IRS insecticide, generally provided higher levels of vector mosquito control compared to the pyrethroid net alone or IRS alone; the IRS intervention was responsible for improved mosquito mortality while the pyrethroid net provided blood-feeding inhibition. The combination with pirimiphos-methyl CS IRS was the most efficacious. Adding chlorfenapyr IRS to the pyrethroid LLIN demonstrated an additive mortality effect relative to both interventions alone. The combination with benidocarb IRS provided the \n", - "lowest levels of mortality owing to its short residual effect but also induced lower levels of mosquito feeding compared to combinations with the other IRS insecticides.\n", - "\n", - "header: Ethical considerations\n", - "\n", - "Ethical approval was obtained from the ethics review committees of the London School of Hygiene & Tropical Medicine (LSHTM) (Reference No. 15265) and the local Ministry of Health in Benin (Reference No. N'39/CEIC/CREC). All volunteers provided informed written consent and were offered a course of chemoprophylaxis (doxycycline) prior to their participation in the study and up to four weeks following its completion. A nurse was available throughout the study to assess any cases of fever. In the event a volunteer tested positive for malaria, they were immediately withdrawn from the trial and administered effective treatment.\n", - "\n", - "header: Outcome measures\n", - "\n", - "The efficacy of each experimental hut treatment was expressed in terms of the following outcome measures:\n", - "\n", - "* Exophily-exiting rates due to potential irritant effect of the treatment expressed as the proportion of mosquitoes collected in the veranda\n", - "* Deterrence-defined as the percentage reduction in numbers of mosquitoes collected in a treated hut relative to the untreated control\n", - "* Blood-feeding-proportion of blood-fed mosquitoes at the time of collection\n", - "\n", - "Where _B__\\({}_{\\mu}\\)_ is the proportion of blood-fed mosquitoes in the untreated control and _B__\\({}_{\\beta}\\)_ is the proportion of blood-fed mosquitoes in the treated hut.\n", - "\n", - "\n", - "- B_{i})}{B_{u}}\\] Where \\(B_{u}\\) is the number of blood-fed mosquitoes in the untreated control and \\(B_{i}\\) is the number of blood-fed mosquitoes in the huts with insecticide treatments.\n", - "* Mortality-proportion of dead mosquitoes after a 72 h holding period Mosquito deterrence, blood-feeding inhibition and personal protection were calculated relative to the untreated net control hut for treatments which involved the LLIN and relative to the untreated hut control for IRS-only treatments.\n", - "\n", - "header: Background\n", - "\n", - "Insecticide-treated nets (ITNs) and indoor residual spraying (IRS) are core interventions for preventing and controlling malaria [1]. Both methods have independently proven to be highly effective in reducing the burden of disease in diverse epidemiological settings. The substantial reductions in malaria morbidity and mortality observed in endemic countries over the last two decades, has been attributed to a significant increase in the roll out of ITNs and IRS during this period [2]. Where resources are available, both interventions have been deployed together in the same geographical location, with the primary aim of reducing the disease burden to a greater extent than could be achieved with either method alone [3,4].\n", - "\n", - "The benefits of combining these interventions is, however, contentious. Some community-randomised controlled trials (RCTs) have compared epidemiological outcomes in communities receiving pyrethroid long-lasting insecticidal nets (LLINs) plus IRS versus LLINs alone, yielding conflicting results. Whilst trials in Tanzania [5] and Sudan [6] associated combined use of LLINs and IRS with significant reductions in malaria infection prevalence, similar studies in Benin [7], Eritrea [8], Ethiopia [9] and The Gambla [10] reported no such effect. Based on a Cochrane review demonstrating the inconsistencies in epidemiological evidence [4], the World Health Organisation (WHO) has recently issued a provisional recommendation against combining LLINs and IRS as a means of reducing malaria-associated morbidity and mortality [1]. National Malaria Control Programmes are encouraged to prioritise delivering either ITNs or IRS at high coverage and to a high standard, rather than introducing the second intervention as a means to compensate for deficiencies in the implementation of the first. However, this should not be interpreted to mean that the combined IRS and ITN approach is redundant in all settings. Considering the recent stall in progress against malaria [11] and increasing prevalence of pyrethroid resistance in malaria vector populations across Africa [12], combining interventions may be vital for high transmission settings and insecticide resistance management. Vector control programmes are expected to be guided by local evidence to decide when, where and how to combine IRS with ITNs for different epidemiological settings [1].\n", - "\n", - "Evidence from RCTs and operational studies suggests that the impact of co-implementing LLINs and IRS may depend on a number of location-specific factors including: intervention coverage, transmission intensity, vector behaviour, choice of IRS insecticide and insecticide resistance [13,14]. The choice of IRS insecticide for a specific geographical setting whether deployed alone or together with LLINs will be influenced largely by the susceptibility of the target vector population to the insecticide, its mode of action, chemical properties and residual \n", - "activity on wall substrates. To maximise the impact of the combined intervention approach, it is important to consider the interactions that may occur between the insecticide in the LLIN and the chosen IRS insecticide. Where the mode of action of the IRS insecticides is not complementary to the insecticide on the net, the combination might be redundant or result in lower levels of vector control than what is achievable with either intervention alone. Although pyrethroids are not recommended for IRS, the redundancy of combining pyrethroid IRS or wall linings with pyrethroid LLINs has been clearly demonstrated in experimental but studies against pyrethroid-resistant malaria vectors in West Africa [15,16].\n", - "\n", - "Insecticides belonging to four classes of compounds have been approved by the WHO for IRS against malaria vectors; pyrethroids, organophosphates, carbamates and more recently, the neonicotinoid clothianidin [1,17]. While RCTs are the most robust method for generating evidence on the impact of combining vector control interventions, they are often time-consuming, expensive and unrealistic in some settings. Evidence from experimental but trials may provide some insights on what to expect when different types IRS insecticides are deployed to complement pyrethroid-only nets. In this study, we compared the impact of combining pyrethroid LLINs with IRS insecticides from three distinct chemical classes in experimental huts against wild free-flying pyrethroid-resistant malaria vectors in southern Benin.\n", - "\n", - "header: Study site and experimental huts: Experimental hut treatments\n", - "\n", - "The following treatments were assessed in 9 experimental huts:\n", - "\n", - "1. Control (untreated hut)\n", - "2. Control (untreated net)\n", - "3. DuraNet(r) (Alpha-cypermethrin LLIN, 261 mg/m2, Shobikaa Impex)\n", - "4. Bendiocarb IRS applied at 400 mg/m2 (Ficam(r) WP, Bayer)\n", - "5. DuraNet(r) + Bendiocarb IRS applied at 400 mg/m2\n", - "6. Chlorfenapyr IRS applied at 250 mg/m2 (Sylando(r) 240SC, BASF)\n", - "7. DuraNet(r) + Chlorfenapryr IRS applied at 250 mg/m2\n", - "8. Pirimiphos-methyl CS IRS applied at 1000 mg/m2 (Actellic(r) 300CS, Syngenta)\n", - "9. DuraNet(r) + Pirimiphos-methyl CS IRS applied at 1000 mg/m2\n", - "\n", - "Interior hut walls were sprayed from top to bottom with IRS insecticide solutions using a Hudson X-pert(r) compression sprayer equipped with a flat-fan nozzle. To improve spraying accuracy, spray swaths were pre-marked on hut walls and a guidance pole was attached to the end of the spray lance to maintain a fixed distance to the wall. After spraying each hut, the volume remaining in the spray tank was measured to assess the overall volume sprayed. All spray volumes were within 30% of the target. The palm match used on the ceiling was sprayed flat on the ground outside the experimental hut and allowed to dry for 2 hours prior to being fitted on the ceiling of the hut. Three replicate nets were used per LLIN treatment and these were rotated every 2 nights within the same hut. To simulate wear and tear from field use, 6 holes each measuring 16 cm2 were cut into each bed net (one per panel) used in the trial.\n", - "\n", - "header: Data analysis\n", - "\n", - "Differences in proportional outcomes (exophily, blood-feeding, mortality) between experimental hut treatments were analysed using a blocked logistic regression model whereas differences in numerical outcomes (mosquito entry) were assessed using a negative binomial regression model. In addition to the fixed effect of the treatment, both models were adjusted to account for variation due to differential attractiveness of the volunteer sleepers and huts.\n", - "\n", - "\n", - "Mortality in susceptibility bioassays was interpreted according to WHO criteria. All analyses were performed in Stata version 15.1.\n", - "\n", - "header: Trial procedure\n", - "\n", - "The trial began three days after IRS application and continued for 4 months, between July and October 2018 and followed WHO guidelines [19]. Nine (9) consenting human volunteers kept in experimental huts each trial night to attract mosquitoes. To account for bias due to differential attractiveness to mosquitoes, volunteers were rotated through experimental huts daily in accordance with a predetermined Latin square design. To mitigate the effect of hut position on mosquito entry, bed nets were rotated through experimental huts on a weekly basis. IRS treatments could not be rotated thus remained fixed throughout the trial. At dawn, sleepers collected all mosquitoes from under the net, the sleeping room and the veranda using a torch and aspirator and placed them in correspondingly labelled plastic cups. Mosquito collections were subsequently transferred to the laboratory for morphological identification and scoring of blood-feeding and mortality. To account for the slow-action of chlorfenapyr, delayed mortality was recorded every 24 h up to 72 h after collection for all treatments. All alive _An. gambiae_ s.l. were held at 27 +- 2deg C and 75 +- 10% RH and provided access to 10% (w/v) glucose solution.\n", - "\n", - "header: Susceptibility bioassay results: Experimental hut results\n", - "\n", - "A total of 4,698 female _An. gambiae_ s.l. were collected in the experimental huts over the 4-month trial period (Tables 3 and S1). Due to the inability to\n", - "\n", - "rotate IRS, it was not possible to distinguish treatment-induced deterrence for the IRS treatments from differential attractiveness due to hut position. The proportion of mosquitoes exiting into the veranda for the untreated hut and untreated net controls were 45% and 39% respectively. Exiting was significantly higher in all experimental hut treatments relative to both controls (p<0.01), suggesting the insecticide treatments induced an irritant response which caused mosquitoes to seek refuge in the veranda. The highest level of mosquito exiting was achieved with beniodicarb IRS alone (77%). Adding beniodicarb IRS to DuraNet(r) also induced significantly higher levels of mosquito exiting compared to DuraNet(r) alone (57% with DuraNet(r) vs. 70% with DuraNet(r) + beniodicarb IRS, p = 0.001). This effect was, however, not observed with chlorfenapyr IRS and pirimiphos-methyl CS IRS; exiting rates were similar between the combinations with these IRS insecticides and DuraNet(r) alone, (59% - 61% vs 57%, p>0.05).\n", - "\n", - "**Blood-feeding and personal protection.** Blood-feeding and personal protection results of wild, pyrethroid-resistant _An. gambiae_ s.l. in the experimental huts are presented in Table 4. Blood-feeding rates with the untreated hut and untreated net controls were 95% and 55% respectively. DuraNet(r) induced significantly lower blood-feeding rates than the control untreated net (33% with DuraNet(r) vs. 55% with untreated net, p<0.001). Meanwhile, blood-feeding was high across all IRS treatments (91-92%) thus providing very limited blood-feeding inhibition (3% - 5%) compared to the untreated hut control (Table 4). All three combinations provided significantly higher levels of blood-feeding inhibition relative to the IRS treatments\n", - "\n", - "alone (60% - 71% vs. 3% - 5%, p<0.001). Between the combinations, DuraNet(r) + bendiocarb IRS induced the lowest blood-feeding rate (28%) and offered personal protection of 78% while DuraNet(r) + chlorfenapyr IRS induced a higher blood-feeding rate (37%, p = 0.015) though providing about the same levels of personal protection (77%).\n", - "\n", - "**Mortality rates in experimental huts.** Overall mortality rates of wild, pyrethroid-resistant _An. gambiae_ s.l. in the untreated hut and untreated net controls were 2% and 4% respectively (Table 5). Mortality with DuraNet(r) was low and did not differ significantly from the untreated net control (8% vs. 4%, p = 0.169). The IRS treatments alone and the combinations induced significantly higher mortality than DuraNet(r) and the untreated controls (p < 0.001); adding any IRS treatment onto DuraNet(r) therefore always significantly improved vector mortality compared to DuraNet(r) alone. Between the IRS only treatments, the highest mortality was achieved with pirimiphos-methyl CS (85%, p < 0.001) while chlorfenapyr and bendiocarb induced fairly similar mortality rates (34% and 28%, p = 0.09). Combining DuraNet(r) with bendiocarb and pirimiphos-methyl CS IRS treatments did not improve mortality compared to the corresponding IRS alone (bendiocarb: 28% vs. 32%, p = 0.265 and pirimiphos-methyl CS: 85% vs. 81%, p = 0.129) (Table 5). With chlorfenapyr IRS, mortality was significantly higher in the combination compared to chlorfenapyr IRS alone over the 4-month trial (34% vs. 46%, p < 0.001) (Fig 3). Between the combinations, the highest mortality was achieved with DuraNet(r) + pirimiphos-methyl CS IRS (81%). Mortality was significantly higher with the DuraNet(r) + chlorfenapyr IRS combination compared to DuraNet(r) + bendiocarb IRS (46% vs. 32%, p < 0.001) (Table 5).\n", - "\n", - "Initial monthly wild mosquito mortality with pirimiphos-methyl CS IRS and chlorfenapyr IRS was steady and did not decline substantially over the course of the 4 months trial both when applied alone and in combination with DuraNet(r) (Figs 1 and 2). By contrast, wild mosquito mortality with bendiocarb IRS declined sharply from ~55% to about 28-32% by the last month of the trial both when applied alone and in combination with DuraNet(r) (Fig 3).\n", - "\n", - "**Wall cone bioassay results.** Mortality rates of the laboratory maintained, insecticide-susceptible _An. gambiae_ s.s. Kisumu colony following exposure to IRS-treated walls in monthly, 30 mins wall cone bioassays are presented in Fig 4 with more details in supporting information (S2 Table). On pirimiphos-methyl CS-treated surfaces, cone bioassay mortality was very high (> 85%) throughout all 4 months of the trial. As observed with wild free-flying mosquitoes, a progressive decline in cone bioassay mortality with increasing months elapsed from spraying was observed with bendiocarb, beginning at 63% in month 1 and decreasing to 19% by month 4. Cone bioassay mortality with chlorfenapyr IRS was consistently low throughout the trial,\n", - "ranging from 11-31%. Cone bioassay mortality on untreated control walls did not exceed 10% in any month of the trial (Fig 4).\n", - "\n", - "header: Abstract\n", - "\n", - "Which indoor residual spraying insecticide best complements standard pyrethroid long-lasting insecticidal nets for improved control of pyrethroid resistant malaria vectors?\n", - "\n", - "Thomas Syme, Augustin Fongnikin, Damien Todjinou, Renaud Goveetchan, Mark Rowland, Martin Akogbeto, Corine Nguforo\n", - "\n", - "\n", - "\n", - "Where resources are available, non-pyrethroid IRS can be deployed to complement standard pyrethroid LLINs with the aim of achieving improved vector control and managing insecticide resistance. The impact of the combination may however depend on the type of IRS insecticide deployed. Studies comparing combinations of pyrethroid LLINs with different types of non-pyrethroid IRS products will be necessary for decision making.\n", - "\n", - "header: Table 1: WHO susceptibility cylinder bioassay results with Anopheles gambiae sensu late from Cove.\n", - "footer: None\n", - "columns: ['Treatment', 'Strain', 'N exposed', 'N dead', '% Mortality', '95% CI']\n", - "\n", - "{\"0\":{\"Treatment\":\"Control\",\"Strain\":\"Kisumu\",\"N exposed\":102,\"N dead\":0,\"% Mortality\":0,\"95% CI\":\"\\u2013\"},\"1\":{\"Treatment\":null,\"Strain\":\"Cov\\u00e8\",\"N exposed\":102,\"N dead\":0,\"% Mortality\":0,\"95% CI\":\"\\u2013\"},\"2\":{\"Treatment\":\"Alpha-cypermethrin (0.05%)\",\"Strain\":\"Kisumu\",\"N exposed\":102,\"N dead\":102,\"% Mortality\":100,\"95% CI\":\"\\u2013\"},\"3\":{\"Treatment\":null,\"Strain\":\"Cov\\u00e8\",\"N exposed\":102,\"N dead\":11,\"% Mortality\":11,\"95% CI\":\"5\\u201317\"},\"4\":{\"Treatment\":\"Permethrin (0.75%)\",\"Strain\":\"Kisumu\",\"N exposed\":104,\"N dead\":104,\"% Mortality\":100,\"95% CI\":\"\\u2013\"},\"5\":{\"Treatment\":null,\"Strain\":\"Cov\\u00e8\",\"N exposed\":105,\"N dead\":21,\"% Mortality\":20,\"95% CI\":\"12\\u201328\"},\"6\":{\"Treatment\":\"Bendiocarb (0.1%)\",\"Strain\":\"Kisumu\",\"N exposed\":104,\"N dead\":104,\"% Mortality\":100,\"95% CI\":\"\\u2013\"},\"7\":{\"Treatment\":null,\"Strain\":\"Cov\\u00e8\",\"N exposed\":100,\"N dead\":96,\"% Mortality\":98,\"95% CI\":\"96\\u2013100\"},\"8\":{\"Treatment\":\"Fenitrothion (1%)\",\"Strain\":\"Kisumu\",\"N exposed\":103,\"N dead\":103,\"% Mortality\":100,\"95% CI\":\"\\u2013\"},\"9\":{\"Treatment\":null,\"Strain\":\"Cov\\u00e8\",\"N exposed\":101,\"N dead\":101,\"% Mortality\":100,\"95% CI\":\"\\u2013\"}}\n", - "\n", - "header: Table 3. Overall entry and exiting of wild, pyrethroid-resistant Anopheles gambiae sensu lato entering experimental huts in Covè, southern Benin.\n", - "footer: * Values in the same column sharing a superscript letter do not differ significantly (P>0.05).\n", - "columns: ['Treatment', 'Total females caught', 'Average catch per night', '% Deterrence', 'Total exiting', '% Exophily�', '95% CI']\n", - "\n", - "{\"0\":{\"Treatment\":\"Untreated hut (control)\",\"Total females caught\":711,\"Average catch per night\":7,\"% Deterrence\":\"\\u2013\",\"Total exiting\":322,\"% Exophily\\ufffd\":\"45a\",\"95% CI\":\"42\\u201349\"},\"1\":{\"Treatment\":\"Untreated net (control)\",\"Total females caught\":420,\"Average catch per night\":4,\"% Deterrence\":\"41\",\"Total exiting\":165,\"% Exophily\\ufffd\":\"39a\",\"95% CI\":\"35\\u201344\"},\"2\":{\"Treatment\":\"DuraNet\",\"Total females caught\":619,\"Average catch per night\":6,\"% Deterrence\":\"13\",\"Total exiting\":350,\"% Exophily\\ufffd\":\"57b\",\"95% CI\":\"53\\u201361\"},\"3\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught\":508,\"Average catch per night\":5,\"% Deterrence\":\"29\",\"Total exiting\":389,\"% Exophily\\ufffd\":\"77c\",\"95% CI\":\"73\\u201380\"},\"4\":{\"Treatment\":\"DuraNet + Bendiocarb IRS\",\"Total females caught\":537,\"Average catch per night\":6,\"% Deterrence\":\"25\",\"Total exiting\":373,\"% Exophily\\ufffd\":\"70cd\",\"95% CI\":\"66\\u201373\"},\"5\":{\"Treatment\":\"Chlorfenapyr IRS\",\"Total females caught\":478,\"Average catch per night\":5,\"% Deterrence\":\"33\",\"Total exiting\":297,\"% Exophily\\ufffd\":\"62bd\",\"95% CI\":\"58\\u201367\"},\"6\":{\"Treatment\":\"DuraNet + Chlorfenapyr IRS\",\"Total females caught\":411,\"Average catch per night\":4,\"% Deterrence\":\"42\",\"Total exiting\":241,\"% Exophily\\ufffd\":\"59b\",\"95% CI\":\"54\\u201363\"},\"7\":{\"Treatment\":\"Pirimiphos-methyl CS IRS\",\"Total females caught\":528,\"Average catch per night\":6,\"% Deterrence\":\"26\",\"Total exiting\":356,\"% Exophily\\ufffd\":\"67d\",\"95% CI\":\"63\\u201371\"},\"8\":{\"Treatment\":\"DuraNet + Pirimiphos-methyl CS IRS\",\"Total females caught\":486,\"Average catch per night\":5,\"% Deterrence\":\"32\",\"Total exiting\":298,\"% Exophily\\ufffd\":\"61bd\",\"95% CI\":\"57\\u201366\"}}\n", - "\n", - "header: Methods\n", - "\n", - "The study was conducted at the CREC/LSHTM experimental hut station located in Cove, southern Benin (7deg14degN2deg18degE). The experimental huts are situated in a vast area of rice irrigation, which provide extensive and permanent breeding sites for mosquitoes. The rainy season extends from March to October and the dry season from November to February. _Anopheles coluzzeii_ and _An. gambiae_ sensu stricto (s.s.) occur in sympatry, with the latter present at lower densities and predominantly in the dry season [18]. The vector population is susceptible to organophosphates and carbamates but exhibits intense resistance to pyrethroids (200-fold) [18]. Molecular genotyping and microarray studies have demonstrated a high frequency of the knockdown resistance L1014F allele (>90%) and overexpression of the cytochrome P450, CYP6P3, associated with pyrethroid detoxification [18]. The experimental huts used were of the West African design [19], made from concrete bricks with a corrugated iron roof and a ceiling with palm-thatch mats. Interior walls were cement plastered and each hut was constructed on a concrete base containing a water-filled moat to preclude predators. Entry of mosquitoes occurred via four window slits, 1 cm wide and 30 cm long, positioned on two sides of the hut. A wooden framed veranda made of polyethylene sheeting and screening mesh projected from the rear wall of each hut to capture exiting mosquitoes.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `Observation` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Acknowledgments\n", - "\n", - "We thank BASF and Bayer for providing the insecticides. We also thank the technical staff of CREC (Abibath Odojo, Estelle Vigninou, Josias Fagbohoun, Edwige Kpanou etc) for their assistance. We are grateful to the rice farmers at Cove for their support in the hut study.\n", - "\n", - "header: Background: Methods\n", - "\n", - "The efficacy of combining a standard pyrethroid LLIN (DuraNet(r)) with IRS insecticides from three chemical classes (bendicocarb, chlorfenapyr and pirimiphos-methyl CS) was evaluated in an experimental hut trial against wild pyrethroid-resistant _Anopheles gambiae_ s.l. in Cove, Benin. The combinations were also compared to each intervention alone. WHO cylinder and CDC bottle bioassays were performed to assess susceptibility of the local _An. gambiae_ s.l. vector population at the Cove hut site to insecticides used in the combinations.\n", - "\n", - "header: Results\n", - "\n", - "Susceptibility bioassays revealed that the vector population at Cove, was resistant to pyrethroids (<20% mortality) but susceptible to carbamates, chlorfenapyr and organophosphates (>=98% mortality). Mortality of wild free-flying pyrethroid resistant _An. gambiae_ s.l. entering the hut with the untreated net control (4%) did not differ significantly from DuraNet(r) alone (8%, p = 0.169). Pirimiphos-methyl CS IRS induced the highest mortality both on its own (85%) and in combination with DuraNet(r) (81%). Mortality with the DuraNet(r) + chlorfenapyr IRS combination was significantly higher than each intervention alone (46% vs. 33% and 8%, p<0.05) demonstrating an additive effect. The DuraNet(r) + bendicocarb IRS combination induced significantly lower mortality compared to the other combinations (32%, p<0.05). Blood-feeding inhibition was very low with the IRS treatments alone (3-5%) but \n", - "increased significantly when they were combined with DuraNet(r) (61% - 71%, p<0.05). Blood-feeding rates in the combinations were similar to the net alone. Adding bendicorarb IRS to DuraNet(r) induced significantly lower levels of mosquito feeding compared to adding chlorfenapyr IRS (28% vs. 37%, p = 0.015).\n", - "\n", - "header: Results\n", - "\n", - "Mortality rates of wild _An. gambiae_ s.l. from Cove in WHO susceptibility and CDC bottle bioassays are presented in Tables 1 and 2 respectively. Low proportions of adult F1 progeny of field-collected _An. gambiae_ s.l. were killed following exposure to alpha-cypermethrin (11%) and permethrin (20%); demonstrating pyrethroid resistance in the vector population. In contrast, the vast majority if not all mosquitoes from Cove were killed following exposure to bendiocarb (98%), fenitrothion (100%) and chlorfenapyr (100%); demonstrating susceptibility to carbamates, organophosphates and chlorfenapyr. With the insecticide susceptible _An. gambiae_ s.s. Kisumu colony, mortality was 100% with all insecticides.\n", - "\n", - "header: Conclusions\n", - "\n", - "Adding non-pyrethroid IRS to standard pyrethroid-only LLINs against a pyrethroid-resistant vector population which is susceptible to the IRS insecticide, can provide higher levels of vector mosquito control compared to the pyrethroid net alone or IRS alone. Adding pirimphos-methyl CS IRS may provide substantial improvements in vector control while adding chlorfenapyr IRS can demonstrate an additive effect relative to both interventions alone. Adding bendicorarb IRS may show limited enhancements in vector control owing to its short residual effect.\n", - "\n", - "header: Conclusions\n", - "\n", - "Adding non-pyrethroid IRS to standard pyrethroid-only nets against a pyrethroid-resistant vector population which was susceptible to the IRS insecticide, generally provided higher levels of vector mosquito control compared to the pyrethroid net alone or IRS alone; the IRS intervention was responsible for improved mosquito mortality while the pyrethroid net provided blood-feeding inhibition. The combination with pirimiphos-methyl CS IRS was the most efficacious. Adding chlorfenapyr IRS to the pyrethroid LLIN demonstrated an additive mortality effect relative to both interventions alone. The combination with benidocarb IRS provided the \n", - "lowest levels of mortality owing to its short residual effect but also induced lower levels of mosquito feeding compared to combinations with the other IRS insecticides.\n", - "\n", - "header: Susceptibility bioassays\n", - "\n", - "WHO susceptibility cylinder bioassays [20] and CDC bottle bioassays [21] were performed in parallel to the experimental hut trial to determine the susceptibility of the vector population at the Cove experimental hut site to the constituent insecticides in the hut treatments. Adult F1 progeny of field-collected _An. gambiae_ s.l. were exposed to filter papers treated with discriminating doses of alpha-cypermethrin (0.05%), permethrin (0.75%), bendiocarb (0.1%) and fenitrothion (1.0%) in WHO cylinders and CDC bottles impregnated with 100 mg of chlorfenapyr. Comparison was made with the laboratory-maintained, susceptible _An. gambiae_ s.s. Kisumu colony. For each insecticide and strain, 100 adult female mosquitoes aged 2-3 days were introduced to four insecticide-treated cylinders/bottles in batches of 25. In the control arms, mosquitoes were exposed to silicone oil-treated filter papers and acetone-treated bottles. After 1 h exposure, mosquitoes were transferred to holding tubes and observation cups and provided access to 10% glucose solution (w/v). Mortality was recorded after 24 h for mosquitoes exposed to permethrin, alpha-cypermethrin, bendiocarb and fenitrothion in WHO cylinder bioassays and every 24 h up to 72 h for mosquitoes exposed to chlorfenapyr in CDC bottles. The insecticide treated filter papers used for the WHO cylinder bioassays were obtained from Universiti Sains Malaysia.\n", - "\n", - "header: Table 4. Blood-feeding results of wild, pyrethroid-resistant Anopheles gambiae sensu lato entering experimental huts in Covè, southern Benin.\n", - "footer: * Values in the same column sharing a superscript letter do not differ significantly (P>0.05).\n", - "columns: ['Treatment', 'Total blood-fed', '% Blood-fed*', '95% CI', '% Blood-feeding inhibition', '% Personal protection']\n", - "\n", - "{\"0\":{\"Treatment\":\"Untreated hut (control)\",\"Total blood-fed\":675,\"% Blood-fed*\":\"95a\",\"95% CI\":\"93\\u201397\",\"% Blood-feeding inhibition\":\"\\u2013\",\"% Personal protection\":\"\\u2013\"},\"1\":{\"Treatment\":\"Untreated net (control)\",\"Total blood-fed\":231,\"% Blood-fed*\":\"55b\",\"95% CI\":\"50\\u201360\",\"% Blood-feeding inhibition\":\"42\",\"% Personal protection\":\"66\"},\"2\":{\"Treatment\":\"DuraNet\",\"Total blood-fed\":202,\"% Blood-fed*\":\"33cd\",\"95% CI\":\"29\\u201336\",\"% Blood-feeding inhibition\":\"66\",\"% Personal protection\":\"70\"},\"3\":{\"Treatment\":\"Bendiocarb IRS\",\"Total blood-fed\":460,\"% Blood-fed*\":\"91e\",\"95% CI\":\"88\\u201393\",\"% Blood-feeding inhibition\":\"5\",\"% Personal protection\":\"32\"},\"4\":{\"Treatment\":\"DuraNet + Bendiocarb IRS\",\"Total blood-fed\":150,\"% Blood-fed*\":\"28c\",\"95% CI\":\"24\\u201332\",\"% Blood-feeding inhibition\":\"71\",\"% Personal protection\":\"78\"},\"5\":{\"Treatment\":\"Chlorfenapyr IRS\",\"Total blood-fed\":440,\"% Blood-fed*\":\"92ae\",\"95% CI\":\"90\\u201394\",\"% Blood-feeding inhibition\":\"3\",\"% Personal protection\":\"35\"},\"6\":{\"Treatment\":\"DuraNet + Chlorfenapyr IRS\",\"Total blood-fed\":153,\"% Blood-fed*\":\"37d\",\"95% CI\":\"33\\u201342\",\"% Blood-feeding inhibition\":\"61\",\"% Personal protection\":\"77\"},\"7\":{\"Treatment\":\"Pirimiphos-methyl CS IRS\",\"Total blood-fed\":488,\"% Blood-fed*\":\"92ae\",\"95% CI\":\"90\\u201395\",\"% Blood-feeding inhibition\":\"3\",\"% Personal protection\":\"28\"},\"8\":{\"Treatment\":\"DuraNet + Pirimiphos-methyl CS IRS\",\"Total blood-fed\":160,\"% Blood-fed*\":\"33cd\",\"95% CI\":\"29\\u201337\",\"% Blood-feeding inhibition\":\"65\",\"% Personal protection\":\"76\"}}\n", - "\n", - "header: Ethical considerations\n", - "\n", - "Ethical approval was obtained from the ethics review committees of the London School of Hygiene & Tropical Medicine (LSHTM) (Reference No. 15265) and the local Ministry of Health in Benin (Reference No. N'39/CEIC/CREC). All volunteers provided informed written consent and were offered a course of chemoprophylaxis (doxycycline) prior to their participation in the study and up to four weeks following its completion. A nurse was available throughout the study to assess any cases of fever. In the event a volunteer tested positive for malaria, they were immediately withdrawn from the trial and administered effective treatment.\n", - "\n", - "header: Outcome measures\n", - "\n", - "The efficacy of each experimental hut treatment was expressed in terms of the following outcome measures:\n", - "\n", - "* Exophily-exiting rates due to potential irritant effect of the treatment expressed as the proportion of mosquitoes collected in the veranda\n", - "* Deterrence-defined as the percentage reduction in numbers of mosquitoes collected in a treated hut relative to the untreated control\n", - "* Blood-feeding-proportion of blood-fed mosquitoes at the time of collection\n", - "\n", - "Where _B__\\({}_{\\mu}\\)_ is the proportion of blood-fed mosquitoes in the untreated control and _B__\\({}_{\\beta}\\)_ is the proportion of blood-fed mosquitoes in the treated hut.\n", - "\n", - "\n", - "- B_{i})}{B_{u}}\\] Where \\(B_{u}\\) is the number of blood-fed mosquitoes in the untreated control and \\(B_{i}\\) is the number of blood-fed mosquitoes in the huts with insecticide treatments.\n", - "* Mortality-proportion of dead mosquitoes after a 72 h holding period Mosquito deterrence, blood-feeding inhibition and personal protection were calculated relative to the untreated net control hut for treatments which involved the LLIN and relative to the untreated hut control for IRS-only treatments.\n", - "\n", - "header: Table 2: Susceptibility of field-collected Anopheles gambiae sensu late from Cove to chlorfenapyr in CDC bottle bioassays.\n", - "footer: None\n", - "columns: ['Treatment', 'Strain', 'N exposed', 'N dead', '% Mortality�', '95% CI']\n", - "\n", - "{\"0\":{\"Treatment\":\"Control\",\"Strain\":\"Kisumu\",\"N exposed\":101,\"N dead\":0,\"% Mortality\\ufffd\":0,\"95% CI\":\"\\u2013\"},\"1\":{\"Treatment\":\"Control\",\"Strain\":\"Cov\\u00e8\",\"N exposed\":100,\"N dead\":0,\"% Mortality\\ufffd\":0,\"95% CI\":\"\\u2013\"},\"2\":{\"Treatment\":\"Chlorfenapyr (100 \\u03bcg)\",\"Strain\":\"Kisumu\",\"N exposed\":103,\"N dead\":103,\"% Mortality\\ufffd\":100,\"95% CI\":\"\\u2013\"},\"3\":{\"Treatment\":\"Chlorfenapyr (100 \\u03bcg)\",\"Strain\":\"Cov\\u00e8\",\"N exposed\":102,\"N dead\":102,\"% Mortality\\ufffd\":100,\"95% CI\":\"\\u2013\"}}\n", - "\n", - "header: Study site and experimental huts: Experimental hut treatments\n", - "\n", - "The following treatments were assessed in 9 experimental huts:\n", - "\n", - "1. Control (untreated hut)\n", - "2. Control (untreated net)\n", - "3. DuraNet(r) (Alpha-cypermethrin LLIN, 261 mg/m2, Shobikaa Impex)\n", - "4. Bendiocarb IRS applied at 400 mg/m2 (Ficam(r) WP, Bayer)\n", - "5. DuraNet(r) + Bendiocarb IRS applied at 400 mg/m2\n", - "6. Chlorfenapyr IRS applied at 250 mg/m2 (Sylando(r) 240SC, BASF)\n", - "7. DuraNet(r) + Chlorfenapryr IRS applied at 250 mg/m2\n", - "8. Pirimiphos-methyl CS IRS applied at 1000 mg/m2 (Actellic(r) 300CS, Syngenta)\n", - "9. DuraNet(r) + Pirimiphos-methyl CS IRS applied at 1000 mg/m2\n", - "\n", - "Interior hut walls were sprayed from top to bottom with IRS insecticide solutions using a Hudson X-pert(r) compression sprayer equipped with a flat-fan nozzle. To improve spraying accuracy, spray swaths were pre-marked on hut walls and a guidance pole was attached to the end of the spray lance to maintain a fixed distance to the wall. After spraying each hut, the volume remaining in the spray tank was measured to assess the overall volume sprayed. All spray volumes were within 30% of the target. The palm match used on the ceiling was sprayed flat on the ground outside the experimental hut and allowed to dry for 2 hours prior to being fitted on the ceiling of the hut. Three replicate nets were used per LLIN treatment and these were rotated every 2 nights within the same hut. To simulate wear and tear from field use, 6 holes each measuring 16 cm2 were cut into each bed net (one per panel) used in the trial.\n", - "\n", - "header: Susceptibility bioassay results: Experimental hut results\n", - "\n", - "A total of 4,698 female _An. gambiae_ s.l. were collected in the experimental huts over the 4-month trial period (Tables 3 and S1). Due to the inability to\n", - "\n", - "rotate IRS, it was not possible to distinguish treatment-induced deterrence for the IRS treatments from differential attractiveness due to hut position. The proportion of mosquitoes exiting into the veranda for the untreated hut and untreated net controls were 45% and 39% respectively. Exiting was significantly higher in all experimental hut treatments relative to both controls (p<0.01), suggesting the insecticide treatments induced an irritant response which caused mosquitoes to seek refuge in the veranda. The highest level of mosquito exiting was achieved with beniodicarb IRS alone (77%). Adding beniodicarb IRS to DuraNet(r) also induced significantly higher levels of mosquito exiting compared to DuraNet(r) alone (57% with DuraNet(r) vs. 70% with DuraNet(r) + beniodicarb IRS, p = 0.001). This effect was, however, not observed with chlorfenapyr IRS and pirimiphos-methyl CS IRS; exiting rates were similar between the combinations with these IRS insecticides and DuraNet(r) alone, (59% - 61% vs 57%, p>0.05).\n", - "\n", - "**Blood-feeding and personal protection.** Blood-feeding and personal protection results of wild, pyrethroid-resistant _An. gambiae_ s.l. in the experimental huts are presented in Table 4. Blood-feeding rates with the untreated hut and untreated net controls were 95% and 55% respectively. DuraNet(r) induced significantly lower blood-feeding rates than the control untreated net (33% with DuraNet(r) vs. 55% with untreated net, p<0.001). Meanwhile, blood-feeding was high across all IRS treatments (91-92%) thus providing very limited blood-feeding inhibition (3% - 5%) compared to the untreated hut control (Table 4). All three combinations provided significantly higher levels of blood-feeding inhibition relative to the IRS treatments\n", - "\n", - "alone (60% - 71% vs. 3% - 5%, p<0.001). Between the combinations, DuraNet(r) + bendiocarb IRS induced the lowest blood-feeding rate (28%) and offered personal protection of 78% while DuraNet(r) + chlorfenapyr IRS induced a higher blood-feeding rate (37%, p = 0.015) though providing about the same levels of personal protection (77%).\n", - "\n", - "**Mortality rates in experimental huts.** Overall mortality rates of wild, pyrethroid-resistant _An. gambiae_ s.l. in the untreated hut and untreated net controls were 2% and 4% respectively (Table 5). Mortality with DuraNet(r) was low and did not differ significantly from the untreated net control (8% vs. 4%, p = 0.169). The IRS treatments alone and the combinations induced significantly higher mortality than DuraNet(r) and the untreated controls (p < 0.001); adding any IRS treatment onto DuraNet(r) therefore always significantly improved vector mortality compared to DuraNet(r) alone. Between the IRS only treatments, the highest mortality was achieved with pirimiphos-methyl CS (85%, p < 0.001) while chlorfenapyr and bendiocarb induced fairly similar mortality rates (34% and 28%, p = 0.09). Combining DuraNet(r) with bendiocarb and pirimiphos-methyl CS IRS treatments did not improve mortality compared to the corresponding IRS alone (bendiocarb: 28% vs. 32%, p = 0.265 and pirimiphos-methyl CS: 85% vs. 81%, p = 0.129) (Table 5). With chlorfenapyr IRS, mortality was significantly higher in the combination compared to chlorfenapyr IRS alone over the 4-month trial (34% vs. 46%, p < 0.001) (Fig 3). Between the combinations, the highest mortality was achieved with DuraNet(r) + pirimiphos-methyl CS IRS (81%). Mortality was significantly higher with the DuraNet(r) + chlorfenapyr IRS combination compared to DuraNet(r) + bendiocarb IRS (46% vs. 32%, p < 0.001) (Table 5).\n", - "\n", - "Initial monthly wild mosquito mortality with pirimiphos-methyl CS IRS and chlorfenapyr IRS was steady and did not decline substantially over the course of the 4 months trial both when applied alone and in combination with DuraNet(r) (Figs 1 and 2). By contrast, wild mosquito mortality with bendiocarb IRS declined sharply from ~55% to about 28-32% by the last month of the trial both when applied alone and in combination with DuraNet(r) (Fig 3).\n", - "\n", - "**Wall cone bioassay results.** Mortality rates of the laboratory maintained, insecticide-susceptible _An. gambiae_ s.s. Kisumu colony following exposure to IRS-treated walls in monthly, 30 mins wall cone bioassays are presented in Fig 4 with more details in supporting information (S2 Table). On pirimiphos-methyl CS-treated surfaces, cone bioassay mortality was very high (> 85%) throughout all 4 months of the trial. As observed with wild free-flying mosquitoes, a progressive decline in cone bioassay mortality with increasing months elapsed from spraying was observed with bendiocarb, beginning at 63% in month 1 and decreasing to 19% by month 4. Cone bioassay mortality with chlorfenapyr IRS was consistently low throughout the trial,\n", - "ranging from 11-31%. Cone bioassay mortality on untreated control walls did not exceed 10% in any month of the trial (Fig 4).\n", - "\n", - "header: Background\n", - "\n", - "Insecticide-treated nets (ITNs) and indoor residual spraying (IRS) are core interventions for preventing and controlling malaria [1]. Both methods have independently proven to be highly effective in reducing the burden of disease in diverse epidemiological settings. The substantial reductions in malaria morbidity and mortality observed in endemic countries over the last two decades, has been attributed to a significant increase in the roll out of ITNs and IRS during this period [2]. Where resources are available, both interventions have been deployed together in the same geographical location, with the primary aim of reducing the disease burden to a greater extent than could be achieved with either method alone [3,4].\n", - "\n", - "The benefits of combining these interventions is, however, contentious. Some community-randomised controlled trials (RCTs) have compared epidemiological outcomes in communities receiving pyrethroid long-lasting insecticidal nets (LLINs) plus IRS versus LLINs alone, yielding conflicting results. Whilst trials in Tanzania [5] and Sudan [6] associated combined use of LLINs and IRS with significant reductions in malaria infection prevalence, similar studies in Benin [7], Eritrea [8], Ethiopia [9] and The Gambla [10] reported no such effect. Based on a Cochrane review demonstrating the inconsistencies in epidemiological evidence [4], the World Health Organisation (WHO) has recently issued a provisional recommendation against combining LLINs and IRS as a means of reducing malaria-associated morbidity and mortality [1]. National Malaria Control Programmes are encouraged to prioritise delivering either ITNs or IRS at high coverage and to a high standard, rather than introducing the second intervention as a means to compensate for deficiencies in the implementation of the first. However, this should not be interpreted to mean that the combined IRS and ITN approach is redundant in all settings. Considering the recent stall in progress against malaria [11] and increasing prevalence of pyrethroid resistance in malaria vector populations across Africa [12], combining interventions may be vital for high transmission settings and insecticide resistance management. Vector control programmes are expected to be guided by local evidence to decide when, where and how to combine IRS with ITNs for different epidemiological settings [1].\n", - "\n", - "Evidence from RCTs and operational studies suggests that the impact of co-implementing LLINs and IRS may depend on a number of location-specific factors including: intervention coverage, transmission intensity, vector behaviour, choice of IRS insecticide and insecticide resistance [13,14]. The choice of IRS insecticide for a specific geographical setting whether deployed alone or together with LLINs will be influenced largely by the susceptibility of the target vector population to the insecticide, its mode of action, chemical properties and residual \n", - "activity on wall substrates. To maximise the impact of the combined intervention approach, it is important to consider the interactions that may occur between the insecticide in the LLIN and the chosen IRS insecticide. Where the mode of action of the IRS insecticides is not complementary to the insecticide on the net, the combination might be redundant or result in lower levels of vector control than what is achievable with either intervention alone. Although pyrethroids are not recommended for IRS, the redundancy of combining pyrethroid IRS or wall linings with pyrethroid LLINs has been clearly demonstrated in experimental but studies against pyrethroid-resistant malaria vectors in West Africa [15,16].\n", - "\n", - "Insecticides belonging to four classes of compounds have been approved by the WHO for IRS against malaria vectors; pyrethroids, organophosphates, carbamates and more recently, the neonicotinoid clothianidin [1,17]. While RCTs are the most robust method for generating evidence on the impact of combining vector control interventions, they are often time-consuming, expensive and unrealistic in some settings. Evidence from experimental but trials may provide some insights on what to expect when different types IRS insecticides are deployed to complement pyrethroid-only nets. In this study, we compared the impact of combining pyrethroid LLINs with IRS insecticides from three distinct chemical classes in experimental huts against wild free-flying pyrethroid-resistant malaria vectors in southern Benin.\n", - "\n", - "header: Data analysis\n", - "\n", - "Differences in proportional outcomes (exophily, blood-feeding, mortality) between experimental hut treatments were analysed using a blocked logistic regression model whereas differences in numerical outcomes (mosquito entry) were assessed using a negative binomial regression model. In addition to the fixed effect of the treatment, both models were adjusted to account for variation due to differential attractiveness of the volunteer sleepers and huts.\n", - "\n", - "\n", - "Mortality in susceptibility bioassays was interpreted according to WHO criteria. All analyses were performed in Stata version 15.1.\n", - "\n", - "header: Trial procedure\n", - "\n", - "The trial began three days after IRS application and continued for 4 months, between July and October 2018 and followed WHO guidelines [19]. Nine (9) consenting human volunteers kept in experimental huts each trial night to attract mosquitoes. To account for bias due to differential attractiveness to mosquitoes, volunteers were rotated through experimental huts daily in accordance with a predetermined Latin square design. To mitigate the effect of hut position on mosquito entry, bed nets were rotated through experimental huts on a weekly basis. IRS treatments could not be rotated thus remained fixed throughout the trial. At dawn, sleepers collected all mosquitoes from under the net, the sleeping room and the veranda using a torch and aspirator and placed them in correspondingly labelled plastic cups. Mosquito collections were subsequently transferred to the laboratory for morphological identification and scoring of blood-feeding and mortality. To account for the slow-action of chlorfenapyr, delayed mortality was recorded every 24 h up to 72 h after collection for all treatments. All alive _An. gambiae_ s.l. were held at 27 +- 2deg C and 75 +- 10% RH and provided access to 10% (w/v) glucose solution.\n", - "\n", - "header: Table 3. Overall entry and exiting of wild, pyrethroid-resistant Anopheles gambiae sensu lato entering experimental huts in Covè, southern Benin.\n", - "footer: * Values in the same column sharing a superscript letter do not differ significantly (P>0.05).\n", - "columns: ['Treatment', 'Total females caught', 'Average catch per night', '% Deterrence', 'Total exiting', '% Exophily�', '95% CI']\n", - "\n", - "{\"0\":{\"Treatment\":\"Untreated hut (control)\",\"Total females caught\":711,\"Average catch per night\":7,\"% Deterrence\":\"\\u2013\",\"Total exiting\":322,\"% Exophily\\ufffd\":\"45a\",\"95% CI\":\"42\\u201349\"},\"1\":{\"Treatment\":\"Untreated net (control)\",\"Total females caught\":420,\"Average catch per night\":4,\"% Deterrence\":\"41\",\"Total exiting\":165,\"% Exophily\\ufffd\":\"39a\",\"95% CI\":\"35\\u201344\"},\"2\":{\"Treatment\":\"DuraNet\",\"Total females caught\":619,\"Average catch per night\":6,\"% Deterrence\":\"13\",\"Total exiting\":350,\"% Exophily\\ufffd\":\"57b\",\"95% CI\":\"53\\u201361\"},\"3\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught\":508,\"Average catch per night\":5,\"% Deterrence\":\"29\",\"Total exiting\":389,\"% Exophily\\ufffd\":\"77c\",\"95% CI\":\"73\\u201380\"},\"4\":{\"Treatment\":\"DuraNet + Bendiocarb IRS\",\"Total females caught\":537,\"Average catch per night\":6,\"% Deterrence\":\"25\",\"Total exiting\":373,\"% Exophily\\ufffd\":\"70cd\",\"95% CI\":\"66\\u201373\"},\"5\":{\"Treatment\":\"Chlorfenapyr IRS\",\"Total females caught\":478,\"Average catch per night\":5,\"% Deterrence\":\"33\",\"Total exiting\":297,\"% Exophily\\ufffd\":\"62bd\",\"95% CI\":\"58\\u201367\"},\"6\":{\"Treatment\":\"DuraNet + Chlorfenapyr IRS\",\"Total females caught\":411,\"Average catch per night\":4,\"% Deterrence\":\"42\",\"Total exiting\":241,\"% Exophily\\ufffd\":\"59b\",\"95% CI\":\"54\\u201363\"},\"7\":{\"Treatment\":\"Pirimiphos-methyl CS IRS\",\"Total females caught\":528,\"Average catch per night\":6,\"% Deterrence\":\"26\",\"Total exiting\":356,\"% Exophily\\ufffd\":\"67d\",\"95% CI\":\"63\\u201371\"},\"8\":{\"Treatment\":\"DuraNet + Pirimiphos-methyl CS IRS\",\"Total females caught\":486,\"Average catch per night\":5,\"% Deterrence\":\"32\",\"Total exiting\":298,\"% Exophily\\ufffd\":\"61bd\",\"95% CI\":\"57\\u201366\"}}\n", - "\n", - "header: Residual activity of IRS treatments\n", - "\n", - "Cone bioassays were performed at monthly intervals after spraying to assess the residual activity of IRS treatments on hut walls following WHO guidelines [19]. Laboratory-maintained, susceptible _An. gambiae_ s.s. Kisumu mosquitoes were used for this purpose. In each IRS-treated hut, 50, 3-5-day old adult female mosquitoes were transferred to five cones attached to the walls and ceiling in batches of 10. As a control, mosquitoes were introduced into cones attached to an unsprayed wall. Mosquitoes were exposed to the surfaces for 30 mins before being transferred to netted cups. Mosquitoes were held at 27 +- 2' C and 75 +- 10% RH and provided access to 10% (w/v) glucose solution. Knockdown was recorded 1 h post-exposure and delayed mortality every 24 h up to 72 h thereafter.\n", - "\n", - "header: Mosquito entry and exiting.: Discussion\n", - "\n", - "The ultimate purpose of combining IRS with LLINs is to achieve greater levels of vector control through the differential effects of the interventions and modes of action of the insecticides involved than what is achievable with a single intervention on its own. Transmission dynamics models have suggested that the levels of vector mosquito mortality and blood-feeding inhibition observed in an experimental hut setting could be predictive of the capacity of an indoor vector control intervention or a combination of these to control vector populations, reduce vector biting and improve public health impact when deployed on a large scale [22,23]. In this study, we demonstrate that where vectors are resistant to pyrethroids but susceptible to a given non-pyrethroid IRS insecticide, it should be possible to achieve substantially improved vector control by adding the non-pyrethroid IRS to a standard pyrethroid-only LLIN to boost\n", - "\n", - "Fig 1: Monthly mortality rates of wild, free-flying pyrethroid-resistant _Anopheles gambiae_ sensu late entering experimental huts with pirimphos-methyl CS IRS applied alone and in combination with DuraNet(r) in Cové, southern Benin. Mortality was cumulated over successive months. Error bars represent 95% CI.\n", - "\n", - "Fig 2: Monthly mortality rates of wild, free-flying pyrethroid-resistant _Anopheles gambiae_ sensu late entering experimental huts with chlorfenapyr IRS applied alone and in combination with DuraNet(r) in Cové, southern Benin. Mortality was cumulated over successive months. Error bars represent 95% CI.\n", - "\n", - "\n", - "mortality rates through the IRS intervention, while benefiting from the blood-feeding inhibition provided by the LLIN.\n", - "\n", - "The level of improved mortality achieved in the pyrethroid-only LLIN plus non-pyrethroid IRS combinations relative to the pyrethroid LLIN alone was clearly dependent on the type of non-pyrethroid IRS insecticide used. The combination with pirimiphos-methyl CS IRS induced the highest mortality rate (81%) and this can be attributed to the high and prolonged activity of the pirimiphos-methyl CS IRS formulation on cement walls as demonstrated in this study and previous studies in Benin [24]. This substantiates findings from community trials and operational studies demonstrating significant reductions in transmission of malaria by pyrethroid-resistant vector populations when a single round of pirimiphos-methyl CS IRS was deployed against a background of moderate to high coverage with standard pyrethroid nets [25-27]. By contrast the levels of mortality achieved in the combination with bendiocarb IRS was much lower (32%); attributable to the fast decline in efficacy with the insecticide as observed monthly in the experimental huts and in cone bioassays. The poor residual effect of\n", - "\n", - "Fig 4: **Mortality (72 h) of laboratory maintained, insecticide-susceptible _Anopheles gambiae_ sensu stricto Kisumu colony exposed to IRS-treated hut walls in monthly, 30 mins wall cone bioassays in experimental huts in Cove, southern Benin. Error bars represent 95% CI. Approximately fifty (50) 2–3 days old mosquitoes were exposed for 30 mins to each IRS treated hut in batches of 10 per cone and mortality recorded after 72 h.**\n", - "\n", - "Fig 3: **Monthly mortality rates of wild, free-flying pyrethroid-resistant _Anopheles gambiae_ sensu lato entering experimental huts with bendiocarb IRS applied alone and in combination with DuraNet® in Cove, southern Benin. Mortality was cumulated over successive months. Error bars represent 95% CI.**\n", - "bendiocarb for IRS is well documented [28, 29, 30]. The failure of a combination of bendiocarb treated walls and pyrethroid nets to provide improved control of clinical malaria compared to either intervention alone in a previous RCT in Benin [7] was also largely attributed to the short-lived efficacy of bendiocarb on the treated walls [13, 14]. Multiple IRS campaign rounds may be necessary to achieve sustained levels of improved vector control when bendiocarb IRS is deployed to complement standard pyrethroid LLINs. Given the significant costs associated with running IRS campaigns, these findings raise questions over the suitability of currently available formulations of bendiocarb for IRS and the cost-effectiveness of its combination with pyrethroid nets. Considering the high initial mortality rates usually achieved with the insecticide, reformulation chemistry may help address the short residual efficacy of bendiocarb and improve the utility of this insecticide for vector control.\n", - "\n", - "While mortality in the combinations with pirimiphos-methyl CS IRS and bendiocarb IRS were similar to each IRS alone, the combination with chlorfenapyr IRS induced significantly higher levels of mortality compared to chlorfenapyr IRS alone. This demonstrates an additive effect of the chlorfenapyr IRS plus pyrethroid LLINs combination which was not observed with the other IRS insecticides tested. This trend is consistent with previous experimental hut studies in Benin [31, 32] though the levels of mortality achieved with the combination were substantially higher (73%-83% vs. 46%). The difference in mortality could be due to changes in the composition of the vector population and/or increasing pyrethroid resistance levels over time. Chlorfenapyr is a new repurposed pyrrole insecticide with a unique mode of action that has shown potential for IRS but often inducing moderate mortality rates when applied alone in experimental huts against pyrethroid-resistant malaria vectors [29, 33]. It acts on the oxidative/metabolic pathway of insects hence its action can be enhanced by physical activity in the insect [34]. The additive mortality observed in the chlorfenapyr IRS plus pyrethroid net combination may therefore be attributed to the irritant effect of the pyrethroid in the LLIN on mosquitoes as they alight on the chlorfenapyr-treated wall after failed attempts to feed on the sleeper under the net. In addition, owing to the non-neurotoxic and non-irritant effect of chlorfenapyr [35], mosquitoes may have alighted on chlorfenapyr-treated walls for longer, leading to increased insecticide pick-up, potentially contributing to the additional mortality observed with this combination. The inability of the WHO 30-min cone bioassays to predict wild mosquito mortality with chlorfenapyr IRS in experimental huts [29, 34] is further demonstrated in this study; while cone bioassay mortality of the susceptible Kisumu strain was very low, wild mosquito mortality was higher and consistent throughout the trial confirming previous findings [29]. Considering the prolonged effect of chlorfenapyr IRS on wild mosquitoes [29], substantial and sustained improvements in the control of pyrethroid-resistant vector populations can be expected if the IRS insecticide is deployed to complement pyrethroid LLINs.\n", - "\n", - "IRS is highly effective for malaria vector control when deployed on its own but provides limited personal protection from mosquito biting and this is evident from the high blood-feeding rates observed with the IRS treatments alone. In the absence of a bed net, mosquitoes will usually feed on the human occupants in an IRS treated home before resting on the wall where they pick up the insecticide, consequently, direct blood-feeding inhibition is not expected when the intervention is applied independently. By contrast, pyrethroid LLINs reduce mosquito biting and provide substantial levels of personal protection for the user; an effect which is attributable to the physical barrier of the net and the excito-repellent effect of the pyrethroid insecticide. The findings from this study demonstrate that this effect can persist even against a vector population that has developed intense resistance to pyrethroids as observed in Cove [18]. By combining the IRS treatments with a pyrethroid LLIN, it was possible to achieve substantially improved levels of blood-feeding inhibition and personal protection compared to \n", - "the IRS alone. The reduced exposure to infective bites constitutes a crucial advantage of the combination strategy over IRS alone. The blood-feeding rate in the combination appeared to depend on the type of IRS insecticide used albeit to a lesser extent than the levels of mortality achieved; lower blood-feeding rates and thus higher levels of blood-feeding inhibition were achieved in the combination with benidocarb IRS compared to the combination with chlorfenapyr IRS. This can be due to differences in the mode of action of both IRS insecticides; in contrast to chlorfenapyr, benidocarb acts on the insect's nervous system eliciting an irritant rapid knockdown effect on mosquitoes [35] and this together with the excito-repellent effect of the pyrethroid in the standard pyrethroid LLIN could have contributed to the high levels of early exiting and reduced blood-feeding rates observed when both interventions were combined in a hut.\n", - "\n", - "Overall, the results demonstrate the superiority of the organophosphate, pirimiphos-methyl CS for IRS on its own and in combination with pyrethroid LLINs over benidocarb and the pyrrole, chlorfenapyr. However, this finding may not be generalisable to areas where vectors are resistant to organophosphates. Indeed, previous experimental hut studies in Cote d'Ivoire failed to demonstrate improved vector control with the combination compared to the net alone when standard pyrethroid LLINs were combined with pirimiphos-methyl CS-treated wall linings against a vector population that was resistant to pyrethroids and organophosphates [36]. Resistance to organophosphates and carbamates is unfortunately increasing in malaria vector populations especially in West Africa [37, 38, 39, 40]. To mitigate its impact, vector control programmes are encouraged to rotate between IRS insecticides with different modes of action [41]. Considering that most IRS campaigns will usually be deployed against a background of high LLIN coverage, effective IRS rotation plans should prioritise IRS insecticides which in addition to providing improved and prolonged vector control, can efficiently complement LLINs. Based on the findings of this study, chlorfenapyr IRS shows some potential to be a useful addition to such IRS rotation plans in pyrethroid-resistant areas with high pyrethroid LLIN coverage. It will be interesting to investigate the impact of combining pyrethroid LLINs with other newly approved IRS formulations containing clothianidin [17].\n", - "\n", - "The low mortality rates achieved with the standard pyrethroid net in this study (8%), further demonstrates the threat of pyrethroid resistance on the efficacy of standard pyrethroids. Pyrethroid resistance is widespread in malaria vectors across Africa and increasing in intensity the more they are used [12]. A new generation of LLINs treated with a pyrethroid and non-pyrethroid insecticide are now in advanced development. Studies have demonstrated the potential of some of these nets to provide improved control of clinical malaria transmitted by pyrethroid-resistant malaria vectors compared to standard pyrethroid nets [42, 43, 44]. As next generation nets come into the market, and are rolled out in endemic countries, it will be essential to explore any possible interactions with the different types of IRS insecticides that could be deployed together with them in a combined intervention approach.\n", - "\n", - "header: Abstract\n", - "\n", - "Which indoor residual spraying insecticide best complements standard pyrethroid long-lasting insecticidal nets for improved control of pyrethroid resistant malaria vectors?\n", - "\n", - "Thomas Syme, Augustin Fongnikin, Damien Todjinou, Renaud Goveetchan, Mark Rowland, Martin Akogbeto, Corine Nguforo\n", - "\n", - "\n", - "\n", - "Where resources are available, non-pyrethroid IRS can be deployed to complement standard pyrethroid LLINs with the aim of achieving improved vector control and managing insecticide resistance. The impact of the combination may however depend on the type of IRS insecticide deployed. Studies comparing combinations of pyrethroid LLINs with different types of non-pyrethroid IRS products will be necessary for decision making.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ClinicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `ClinicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `ClinicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}, \"Start_month\": {\"title\": \"Start Month\", \"description\": \"Numerical start month of the reporting period (some studies may report multiple time periods)\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Hut trial\",\"Country\":\"Benin\",\"Site\":\"Cove\",\"Start_month\":7,\"Start_year\":2018,\"End_month\":10,\"End_year\":2018}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Concentration_initial\": {\"title\": \"Insecticide concentration (initial)\", \"description\": \"Enter the initial concentration of the insecticide(s) for net type at the time of distribution.\"}, \"Net_holed\": {\"title\": \"Net Holed\", \"description\": \"Numerical count of the number of holes a net has - 0 if new and NA if not reported\\nNote - for tunnel tests there are holes that allow the mosquitoes the option of passing through to feed on the guinea pig.\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"DuraNet\",\"Insecticide\":\"Alpha-cypermethrin\",\"Concentration_initial\":\"261 mg\\/m2\",\"Net_holed\":6.0}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Acknowledgments\n", - "\n", - "We thank BASF and Bayer for providing the insecticides. We also thank the technical staff of CREC (Abibath Odojo, Estelle Vigninou, Josias Fagbohoun, Edwige Kpanou etc) for their assistance. We are grateful to the rice farmers at Cove for their support in the hut study.\n", - "\n", - "header: Results\n", - "\n", - "Susceptibility bioassays revealed that the vector population at Cove, was resistant to pyrethroids (<20% mortality) but susceptible to carbamates, chlorfenapyr and organophosphates (>=98% mortality). Mortality of wild free-flying pyrethroid resistant _An. gambiae_ s.l. entering the hut with the untreated net control (4%) did not differ significantly from DuraNet(r) alone (8%, p = 0.169). Pirimiphos-methyl CS IRS induced the highest mortality both on its own (85%) and in combination with DuraNet(r) (81%). Mortality with the DuraNet(r) + chlorfenapyr IRS combination was significantly higher than each intervention alone (46% vs. 33% and 8%, p<0.05) demonstrating an additive effect. The DuraNet(r) + bendicocarb IRS combination induced significantly lower mortality compared to the other combinations (32%, p<0.05). Blood-feeding inhibition was very low with the IRS treatments alone (3-5%) but \n", - "increased significantly when they were combined with DuraNet(r) (61% - 71%, p<0.05). Blood-feeding rates in the combinations were similar to the net alone. Adding bendicorarb IRS to DuraNet(r) induced significantly lower levels of mosquito feeding compared to adding chlorfenapyr IRS (28% vs. 37%, p = 0.015).\n", - "\n", - "header: Conclusions\n", - "\n", - "Adding non-pyrethroid IRS to standard pyrethroid-only LLINs against a pyrethroid-resistant vector population which is susceptible to the IRS insecticide, can provide higher levels of vector mosquito control compared to the pyrethroid net alone or IRS alone. Adding pirimphos-methyl CS IRS may provide substantial improvements in vector control while adding chlorfenapyr IRS can demonstrate an additive effect relative to both interventions alone. Adding bendicorarb IRS may show limited enhancements in vector control owing to its short residual effect.\n", - "\n", - "header: Background: Methods\n", - "\n", - "The efficacy of combining a standard pyrethroid LLIN (DuraNet(r)) with IRS insecticides from three chemical classes (bendicocarb, chlorfenapyr and pirimiphos-methyl CS) was evaluated in an experimental hut trial against wild pyrethroid-resistant _Anopheles gambiae_ s.l. in Cove, Benin. The combinations were also compared to each intervention alone. WHO cylinder and CDC bottle bioassays were performed to assess susceptibility of the local _An. gambiae_ s.l. vector population at the Cove hut site to insecticides used in the combinations.\n", - "\n", - "header: Conclusions\n", - "\n", - "Adding non-pyrethroid IRS to standard pyrethroid-only nets against a pyrethroid-resistant vector population which was susceptible to the IRS insecticide, generally provided higher levels of vector mosquito control compared to the pyrethroid net alone or IRS alone; the IRS intervention was responsible for improved mosquito mortality while the pyrethroid net provided blood-feeding inhibition. The combination with pirimiphos-methyl CS IRS was the most efficacious. Adding chlorfenapyr IRS to the pyrethroid LLIN demonstrated an additive mortality effect relative to both interventions alone. The combination with benidocarb IRS provided the \n", - "lowest levels of mortality owing to its short residual effect but also induced lower levels of mosquito feeding compared to combinations with the other IRS insecticides.\n", - "\n", - "header: Results\n", - "\n", - "Mortality rates of wild _An. gambiae_ s.l. from Cove in WHO susceptibility and CDC bottle bioassays are presented in Tables 1 and 2 respectively. Low proportions of adult F1 progeny of field-collected _An. gambiae_ s.l. were killed following exposure to alpha-cypermethrin (11%) and permethrin (20%); demonstrating pyrethroid resistance in the vector population. In contrast, the vast majority if not all mosquitoes from Cove were killed following exposure to bendiocarb (98%), fenitrothion (100%) and chlorfenapyr (100%); demonstrating susceptibility to carbamates, organophosphates and chlorfenapyr. With the insecticide susceptible _An. gambiae_ s.s. Kisumu colony, mortality was 100% with all insecticides.\n", - "\n", - "header: Ethical considerations\n", - "\n", - "Ethical approval was obtained from the ethics review committees of the London School of Hygiene & Tropical Medicine (LSHTM) (Reference No. 15265) and the local Ministry of Health in Benin (Reference No. N'39/CEIC/CREC). All volunteers provided informed written consent and were offered a course of chemoprophylaxis (doxycycline) prior to their participation in the study and up to four weeks following its completion. A nurse was available throughout the study to assess any cases of fever. In the event a volunteer tested positive for malaria, they were immediately withdrawn from the trial and administered effective treatment.\n", - "\n", - "header: Table 4. Blood-feeding results of wild, pyrethroid-resistant Anopheles gambiae sensu lato entering experimental huts in Covè, southern Benin.\n", - "footer: * Values in the same column sharing a superscript letter do not differ significantly (P>0.05).\n", - "columns: ['Treatment', 'Total blood-fed', '% Blood-fed*', '95% CI', '% Blood-feeding inhibition', '% Personal protection']\n", - "\n", - "{\"0\":{\"Treatment\":\"Untreated hut (control)\",\"Total blood-fed\":675,\"% Blood-fed*\":\"95a\",\"95% CI\":\"93\\u201397\",\"% Blood-feeding inhibition\":\"\\u2013\",\"% Personal protection\":\"\\u2013\"},\"1\":{\"Treatment\":\"Untreated net (control)\",\"Total blood-fed\":231,\"% Blood-fed*\":\"55b\",\"95% CI\":\"50\\u201360\",\"% Blood-feeding inhibition\":\"42\",\"% Personal protection\":\"66\"},\"2\":{\"Treatment\":\"DuraNet\",\"Total blood-fed\":202,\"% Blood-fed*\":\"33cd\",\"95% CI\":\"29\\u201336\",\"% Blood-feeding inhibition\":\"66\",\"% Personal protection\":\"70\"},\"3\":{\"Treatment\":\"Bendiocarb IRS\",\"Total blood-fed\":460,\"% Blood-fed*\":\"91e\",\"95% CI\":\"88\\u201393\",\"% Blood-feeding inhibition\":\"5\",\"% Personal protection\":\"32\"},\"4\":{\"Treatment\":\"DuraNet + Bendiocarb IRS\",\"Total blood-fed\":150,\"% Blood-fed*\":\"28c\",\"95% CI\":\"24\\u201332\",\"% Blood-feeding inhibition\":\"71\",\"% Personal protection\":\"78\"},\"5\":{\"Treatment\":\"Chlorfenapyr IRS\",\"Total blood-fed\":440,\"% Blood-fed*\":\"92ae\",\"95% CI\":\"90\\u201394\",\"% Blood-feeding inhibition\":\"3\",\"% Personal protection\":\"35\"},\"6\":{\"Treatment\":\"DuraNet + Chlorfenapyr IRS\",\"Total blood-fed\":153,\"% Blood-fed*\":\"37d\",\"95% CI\":\"33\\u201342\",\"% Blood-feeding inhibition\":\"61\",\"% Personal protection\":\"77\"},\"7\":{\"Treatment\":\"Pirimiphos-methyl CS IRS\",\"Total blood-fed\":488,\"% Blood-fed*\":\"92ae\",\"95% CI\":\"90\\u201395\",\"% Blood-feeding inhibition\":\"3\",\"% Personal protection\":\"28\"},\"8\":{\"Treatment\":\"DuraNet + Pirimiphos-methyl CS IRS\",\"Total blood-fed\":160,\"% Blood-fed*\":\"33cd\",\"95% CI\":\"29\\u201337\",\"% Blood-feeding inhibition\":\"65\",\"% Personal protection\":\"76\"}}\n", - "\n", - "header: Susceptibility bioassays\n", - "\n", - "WHO susceptibility cylinder bioassays [20] and CDC bottle bioassays [21] were performed in parallel to the experimental hut trial to determine the susceptibility of the vector population at the Cove experimental hut site to the constituent insecticides in the hut treatments. Adult F1 progeny of field-collected _An. gambiae_ s.l. were exposed to filter papers treated with discriminating doses of alpha-cypermethrin (0.05%), permethrin (0.75%), bendiocarb (0.1%) and fenitrothion (1.0%) in WHO cylinders and CDC bottles impregnated with 100 mg of chlorfenapyr. Comparison was made with the laboratory-maintained, susceptible _An. gambiae_ s.s. Kisumu colony. For each insecticide and strain, 100 adult female mosquitoes aged 2-3 days were introduced to four insecticide-treated cylinders/bottles in batches of 25. In the control arms, mosquitoes were exposed to silicone oil-treated filter papers and acetone-treated bottles. After 1 h exposure, mosquitoes were transferred to holding tubes and observation cups and provided access to 10% glucose solution (w/v). Mortality was recorded after 24 h for mosquitoes exposed to permethrin, alpha-cypermethrin, bendiocarb and fenitrothion in WHO cylinder bioassays and every 24 h up to 72 h for mosquitoes exposed to chlorfenapyr in CDC bottles. The insecticide treated filter papers used for the WHO cylinder bioassays were obtained from Universiti Sains Malaysia.\n", - "\n", - "header: Outcome measures\n", - "\n", - "The efficacy of each experimental hut treatment was expressed in terms of the following outcome measures:\n", - "\n", - "* Exophily-exiting rates due to potential irritant effect of the treatment expressed as the proportion of mosquitoes collected in the veranda\n", - "* Deterrence-defined as the percentage reduction in numbers of mosquitoes collected in a treated hut relative to the untreated control\n", - "* Blood-feeding-proportion of blood-fed mosquitoes at the time of collection\n", - "\n", - "Where _B__\\({}_{\\mu}\\)_ is the proportion of blood-fed mosquitoes in the untreated control and _B__\\({}_{\\beta}\\)_ is the proportion of blood-fed mosquitoes in the treated hut.\n", - "\n", - "\n", - "- B_{i})}{B_{u}}\\] Where \\(B_{u}\\) is the number of blood-fed mosquitoes in the untreated control and \\(B_{i}\\) is the number of blood-fed mosquitoes in the huts with insecticide treatments.\n", - "* Mortality-proportion of dead mosquitoes after a 72 h holding period Mosquito deterrence, blood-feeding inhibition and personal protection were calculated relative to the untreated net control hut for treatments which involved the LLIN and relative to the untreated hut control for IRS-only treatments.\n", - "\n", - "header: Susceptibility bioassay results: Experimental hut results\n", - "\n", - "A total of 4,698 female _An. gambiae_ s.l. were collected in the experimental huts over the 4-month trial period (Tables 3 and S1). Due to the inability to\n", - "\n", - "rotate IRS, it was not possible to distinguish treatment-induced deterrence for the IRS treatments from differential attractiveness due to hut position. The proportion of mosquitoes exiting into the veranda for the untreated hut and untreated net controls were 45% and 39% respectively. Exiting was significantly higher in all experimental hut treatments relative to both controls (p<0.01), suggesting the insecticide treatments induced an irritant response which caused mosquitoes to seek refuge in the veranda. The highest level of mosquito exiting was achieved with beniodicarb IRS alone (77%). Adding beniodicarb IRS to DuraNet(r) also induced significantly higher levels of mosquito exiting compared to DuraNet(r) alone (57% with DuraNet(r) vs. 70% with DuraNet(r) + beniodicarb IRS, p = 0.001). This effect was, however, not observed with chlorfenapyr IRS and pirimiphos-methyl CS IRS; exiting rates were similar between the combinations with these IRS insecticides and DuraNet(r) alone, (59% - 61% vs 57%, p>0.05).\n", - "\n", - "**Blood-feeding and personal protection.** Blood-feeding and personal protection results of wild, pyrethroid-resistant _An. gambiae_ s.l. in the experimental huts are presented in Table 4. Blood-feeding rates with the untreated hut and untreated net controls were 95% and 55% respectively. DuraNet(r) induced significantly lower blood-feeding rates than the control untreated net (33% with DuraNet(r) vs. 55% with untreated net, p<0.001). Meanwhile, blood-feeding was high across all IRS treatments (91-92%) thus providing very limited blood-feeding inhibition (3% - 5%) compared to the untreated hut control (Table 4). All three combinations provided significantly higher levels of blood-feeding inhibition relative to the IRS treatments\n", - "\n", - "alone (60% - 71% vs. 3% - 5%, p<0.001). Between the combinations, DuraNet(r) + bendiocarb IRS induced the lowest blood-feeding rate (28%) and offered personal protection of 78% while DuraNet(r) + chlorfenapyr IRS induced a higher blood-feeding rate (37%, p = 0.015) though providing about the same levels of personal protection (77%).\n", - "\n", - "**Mortality rates in experimental huts.** Overall mortality rates of wild, pyrethroid-resistant _An. gambiae_ s.l. in the untreated hut and untreated net controls were 2% and 4% respectively (Table 5). Mortality with DuraNet(r) was low and did not differ significantly from the untreated net control (8% vs. 4%, p = 0.169). The IRS treatments alone and the combinations induced significantly higher mortality than DuraNet(r) and the untreated controls (p < 0.001); adding any IRS treatment onto DuraNet(r) therefore always significantly improved vector mortality compared to DuraNet(r) alone. Between the IRS only treatments, the highest mortality was achieved with pirimiphos-methyl CS (85%, p < 0.001) while chlorfenapyr and bendiocarb induced fairly similar mortality rates (34% and 28%, p = 0.09). Combining DuraNet(r) with bendiocarb and pirimiphos-methyl CS IRS treatments did not improve mortality compared to the corresponding IRS alone (bendiocarb: 28% vs. 32%, p = 0.265 and pirimiphos-methyl CS: 85% vs. 81%, p = 0.129) (Table 5). With chlorfenapyr IRS, mortality was significantly higher in the combination compared to chlorfenapyr IRS alone over the 4-month trial (34% vs. 46%, p < 0.001) (Fig 3). Between the combinations, the highest mortality was achieved with DuraNet(r) + pirimiphos-methyl CS IRS (81%). Mortality was significantly higher with the DuraNet(r) + chlorfenapyr IRS combination compared to DuraNet(r) + bendiocarb IRS (46% vs. 32%, p < 0.001) (Table 5).\n", - "\n", - "Initial monthly wild mosquito mortality with pirimiphos-methyl CS IRS and chlorfenapyr IRS was steady and did not decline substantially over the course of the 4 months trial both when applied alone and in combination with DuraNet(r) (Figs 1 and 2). By contrast, wild mosquito mortality with bendiocarb IRS declined sharply from ~55% to about 28-32% by the last month of the trial both when applied alone and in combination with DuraNet(r) (Fig 3).\n", - "\n", - "**Wall cone bioassay results.** Mortality rates of the laboratory maintained, insecticide-susceptible _An. gambiae_ s.s. Kisumu colony following exposure to IRS-treated walls in monthly, 30 mins wall cone bioassays are presented in Fig 4 with more details in supporting information (S2 Table). On pirimiphos-methyl CS-treated surfaces, cone bioassay mortality was very high (> 85%) throughout all 4 months of the trial. As observed with wild free-flying mosquitoes, a progressive decline in cone bioassay mortality with increasing months elapsed from spraying was observed with bendiocarb, beginning at 63% in month 1 and decreasing to 19% by month 4. Cone bioassay mortality with chlorfenapyr IRS was consistently low throughout the trial,\n", - "ranging from 11-31%. Cone bioassay mortality on untreated control walls did not exceed 10% in any month of the trial (Fig 4).\n", - "\n", - "header: Table 2: Susceptibility of field-collected Anopheles gambiae sensu late from Cove to chlorfenapyr in CDC bottle bioassays.\n", - "footer: None\n", - "columns: ['Treatment', 'Strain', 'N exposed', 'N dead', '% Mortality�', '95% CI']\n", - "\n", - "{\"0\":{\"Treatment\":\"Control\",\"Strain\":\"Kisumu\",\"N exposed\":101,\"N dead\":0,\"% Mortality\\ufffd\":0,\"95% CI\":\"\\u2013\"},\"1\":{\"Treatment\":\"Control\",\"Strain\":\"Cov\\u00e8\",\"N exposed\":100,\"N dead\":0,\"% Mortality\\ufffd\":0,\"95% CI\":\"\\u2013\"},\"2\":{\"Treatment\":\"Chlorfenapyr (100 \\u03bcg)\",\"Strain\":\"Kisumu\",\"N exposed\":103,\"N dead\":103,\"% Mortality\\ufffd\":100,\"95% CI\":\"\\u2013\"},\"3\":{\"Treatment\":\"Chlorfenapyr (100 \\u03bcg)\",\"Strain\":\"Cov\\u00e8\",\"N exposed\":102,\"N dead\":102,\"% Mortality\\ufffd\":100,\"95% CI\":\"\\u2013\"}}\n", - "\n", - "header: Study site and experimental huts: Experimental hut treatments\n", - "\n", - "The following treatments were assessed in 9 experimental huts:\n", - "\n", - "1. Control (untreated hut)\n", - "2. Control (untreated net)\n", - "3. DuraNet(r) (Alpha-cypermethrin LLIN, 261 mg/m2, Shobikaa Impex)\n", - "4. Bendiocarb IRS applied at 400 mg/m2 (Ficam(r) WP, Bayer)\n", - "5. DuraNet(r) + Bendiocarb IRS applied at 400 mg/m2\n", - "6. Chlorfenapyr IRS applied at 250 mg/m2 (Sylando(r) 240SC, BASF)\n", - "7. DuraNet(r) + Chlorfenapryr IRS applied at 250 mg/m2\n", - "8. Pirimiphos-methyl CS IRS applied at 1000 mg/m2 (Actellic(r) 300CS, Syngenta)\n", - "9. DuraNet(r) + Pirimiphos-methyl CS IRS applied at 1000 mg/m2\n", - "\n", - "Interior hut walls were sprayed from top to bottom with IRS insecticide solutions using a Hudson X-pert(r) compression sprayer equipped with a flat-fan nozzle. To improve spraying accuracy, spray swaths were pre-marked on hut walls and a guidance pole was attached to the end of the spray lance to maintain a fixed distance to the wall. After spraying each hut, the volume remaining in the spray tank was measured to assess the overall volume sprayed. All spray volumes were within 30% of the target. The palm match used on the ceiling was sprayed flat on the ground outside the experimental hut and allowed to dry for 2 hours prior to being fitted on the ceiling of the hut. Three replicate nets were used per LLIN treatment and these were rotated every 2 nights within the same hut. To simulate wear and tear from field use, 6 holes each measuring 16 cm2 were cut into each bed net (one per panel) used in the trial.\n", - "\n", - "header: Background\n", - "\n", - "Insecticide-treated nets (ITNs) and indoor residual spraying (IRS) are core interventions for preventing and controlling malaria [1]. Both methods have independently proven to be highly effective in reducing the burden of disease in diverse epidemiological settings. The substantial reductions in malaria morbidity and mortality observed in endemic countries over the last two decades, has been attributed to a significant increase in the roll out of ITNs and IRS during this period [2]. Where resources are available, both interventions have been deployed together in the same geographical location, with the primary aim of reducing the disease burden to a greater extent than could be achieved with either method alone [3,4].\n", - "\n", - "The benefits of combining these interventions is, however, contentious. Some community-randomised controlled trials (RCTs) have compared epidemiological outcomes in communities receiving pyrethroid long-lasting insecticidal nets (LLINs) plus IRS versus LLINs alone, yielding conflicting results. Whilst trials in Tanzania [5] and Sudan [6] associated combined use of LLINs and IRS with significant reductions in malaria infection prevalence, similar studies in Benin [7], Eritrea [8], Ethiopia [9] and The Gambla [10] reported no such effect. Based on a Cochrane review demonstrating the inconsistencies in epidemiological evidence [4], the World Health Organisation (WHO) has recently issued a provisional recommendation against combining LLINs and IRS as a means of reducing malaria-associated morbidity and mortality [1]. National Malaria Control Programmes are encouraged to prioritise delivering either ITNs or IRS at high coverage and to a high standard, rather than introducing the second intervention as a means to compensate for deficiencies in the implementation of the first. However, this should not be interpreted to mean that the combined IRS and ITN approach is redundant in all settings. Considering the recent stall in progress against malaria [11] and increasing prevalence of pyrethroid resistance in malaria vector populations across Africa [12], combining interventions may be vital for high transmission settings and insecticide resistance management. Vector control programmes are expected to be guided by local evidence to decide when, where and how to combine IRS with ITNs for different epidemiological settings [1].\n", - "\n", - "Evidence from RCTs and operational studies suggests that the impact of co-implementing LLINs and IRS may depend on a number of location-specific factors including: intervention coverage, transmission intensity, vector behaviour, choice of IRS insecticide and insecticide resistance [13,14]. The choice of IRS insecticide for a specific geographical setting whether deployed alone or together with LLINs will be influenced largely by the susceptibility of the target vector population to the insecticide, its mode of action, chemical properties and residual \n", - "activity on wall substrates. To maximise the impact of the combined intervention approach, it is important to consider the interactions that may occur between the insecticide in the LLIN and the chosen IRS insecticide. Where the mode of action of the IRS insecticides is not complementary to the insecticide on the net, the combination might be redundant or result in lower levels of vector control than what is achievable with either intervention alone. Although pyrethroids are not recommended for IRS, the redundancy of combining pyrethroid IRS or wall linings with pyrethroid LLINs has been clearly demonstrated in experimental but studies against pyrethroid-resistant malaria vectors in West Africa [15,16].\n", - "\n", - "Insecticides belonging to four classes of compounds have been approved by the WHO for IRS against malaria vectors; pyrethroids, organophosphates, carbamates and more recently, the neonicotinoid clothianidin [1,17]. While RCTs are the most robust method for generating evidence on the impact of combining vector control interventions, they are often time-consuming, expensive and unrealistic in some settings. Evidence from experimental but trials may provide some insights on what to expect when different types IRS insecticides are deployed to complement pyrethroid-only nets. In this study, we compared the impact of combining pyrethroid LLINs with IRS insecticides from three distinct chemical classes in experimental huts against wild free-flying pyrethroid-resistant malaria vectors in southern Benin.\n", - "\n", - "header: Trial procedure\n", - "\n", - "The trial began three days after IRS application and continued for 4 months, between July and October 2018 and followed WHO guidelines [19]. Nine (9) consenting human volunteers kept in experimental huts each trial night to attract mosquitoes. To account for bias due to differential attractiveness to mosquitoes, volunteers were rotated through experimental huts daily in accordance with a predetermined Latin square design. To mitigate the effect of hut position on mosquito entry, bed nets were rotated through experimental huts on a weekly basis. IRS treatments could not be rotated thus remained fixed throughout the trial. At dawn, sleepers collected all mosquitoes from under the net, the sleeping room and the veranda using a torch and aspirator and placed them in correspondingly labelled plastic cups. Mosquito collections were subsequently transferred to the laboratory for morphological identification and scoring of blood-feeding and mortality. To account for the slow-action of chlorfenapyr, delayed mortality was recorded every 24 h up to 72 h after collection for all treatments. All alive _An. gambiae_ s.l. were held at 27 +- 2deg C and 75 +- 10% RH and provided access to 10% (w/v) glucose solution.\n", - "\n", - "header: Residual activity of IRS treatments\n", - "\n", - "Cone bioassays were performed at monthly intervals after spraying to assess the residual activity of IRS treatments on hut walls following WHO guidelines [19]. Laboratory-maintained, susceptible _An. gambiae_ s.s. Kisumu mosquitoes were used for this purpose. In each IRS-treated hut, 50, 3-5-day old adult female mosquitoes were transferred to five cones attached to the walls and ceiling in batches of 10. As a control, mosquitoes were introduced into cones attached to an unsprayed wall. Mosquitoes were exposed to the surfaces for 30 mins before being transferred to netted cups. Mosquitoes were held at 27 +- 2' C and 75 +- 10% RH and provided access to 10% (w/v) glucose solution. Knockdown was recorded 1 h post-exposure and delayed mortality every 24 h up to 72 h thereafter.\n", - "\n", - "header: Abstract\n", - "\n", - "Which indoor residual spraying insecticide best complements standard pyrethroid long-lasting insecticidal nets for improved control of pyrethroid resistant malaria vectors?\n", - "\n", - "Thomas Syme, Augustin Fongnikin, Damien Todjinou, Renaud Goveetchan, Mark Rowland, Martin Akogbeto, Corine Nguforo\n", - "\n", - "\n", - "\n", - "Where resources are available, non-pyrethroid IRS can be deployed to complement standard pyrethroid LLINs with the aim of achieving improved vector control and managing insecticide resistance. The impact of the combination may however depend on the type of IRS insecticide deployed. Studies comparing combinations of pyrethroid LLINs with different types of non-pyrethroid IRS products will be necessary for decision making.\n", - "\n", - "header: Mosquito entry and exiting.: Discussion\n", - "\n", - "The ultimate purpose of combining IRS with LLINs is to achieve greater levels of vector control through the differential effects of the interventions and modes of action of the insecticides involved than what is achievable with a single intervention on its own. Transmission dynamics models have suggested that the levels of vector mosquito mortality and blood-feeding inhibition observed in an experimental hut setting could be predictive of the capacity of an indoor vector control intervention or a combination of these to control vector populations, reduce vector biting and improve public health impact when deployed on a large scale [22,23]. In this study, we demonstrate that where vectors are resistant to pyrethroids but susceptible to a given non-pyrethroid IRS insecticide, it should be possible to achieve substantially improved vector control by adding the non-pyrethroid IRS to a standard pyrethroid-only LLIN to boost\n", - "\n", - "Fig 1: Monthly mortality rates of wild, free-flying pyrethroid-resistant _Anopheles gambiae_ sensu late entering experimental huts with pirimphos-methyl CS IRS applied alone and in combination with DuraNet(r) in Cové, southern Benin. Mortality was cumulated over successive months. Error bars represent 95% CI.\n", - "\n", - "Fig 2: Monthly mortality rates of wild, free-flying pyrethroid-resistant _Anopheles gambiae_ sensu late entering experimental huts with chlorfenapyr IRS applied alone and in combination with DuraNet(r) in Cové, southern Benin. Mortality was cumulated over successive months. Error bars represent 95% CI.\n", - "\n", - "\n", - "mortality rates through the IRS intervention, while benefiting from the blood-feeding inhibition provided by the LLIN.\n", - "\n", - "The level of improved mortality achieved in the pyrethroid-only LLIN plus non-pyrethroid IRS combinations relative to the pyrethroid LLIN alone was clearly dependent on the type of non-pyrethroid IRS insecticide used. The combination with pirimiphos-methyl CS IRS induced the highest mortality rate (81%) and this can be attributed to the high and prolonged activity of the pirimiphos-methyl CS IRS formulation on cement walls as demonstrated in this study and previous studies in Benin [24]. This substantiates findings from community trials and operational studies demonstrating significant reductions in transmission of malaria by pyrethroid-resistant vector populations when a single round of pirimiphos-methyl CS IRS was deployed against a background of moderate to high coverage with standard pyrethroid nets [25-27]. By contrast the levels of mortality achieved in the combination with bendiocarb IRS was much lower (32%); attributable to the fast decline in efficacy with the insecticide as observed monthly in the experimental huts and in cone bioassays. The poor residual effect of\n", - "\n", - "Fig 4: **Mortality (72 h) of laboratory maintained, insecticide-susceptible _Anopheles gambiae_ sensu stricto Kisumu colony exposed to IRS-treated hut walls in monthly, 30 mins wall cone bioassays in experimental huts in Cove, southern Benin. Error bars represent 95% CI. Approximately fifty (50) 2–3 days old mosquitoes were exposed for 30 mins to each IRS treated hut in batches of 10 per cone and mortality recorded after 72 h.**\n", - "\n", - "Fig 3: **Monthly mortality rates of wild, free-flying pyrethroid-resistant _Anopheles gambiae_ sensu lato entering experimental huts with bendiocarb IRS applied alone and in combination with DuraNet® in Cove, southern Benin. Mortality was cumulated over successive months. Error bars represent 95% CI.**\n", - "bendiocarb for IRS is well documented [28, 29, 30]. The failure of a combination of bendiocarb treated walls and pyrethroid nets to provide improved control of clinical malaria compared to either intervention alone in a previous RCT in Benin [7] was also largely attributed to the short-lived efficacy of bendiocarb on the treated walls [13, 14]. Multiple IRS campaign rounds may be necessary to achieve sustained levels of improved vector control when bendiocarb IRS is deployed to complement standard pyrethroid LLINs. Given the significant costs associated with running IRS campaigns, these findings raise questions over the suitability of currently available formulations of bendiocarb for IRS and the cost-effectiveness of its combination with pyrethroid nets. Considering the high initial mortality rates usually achieved with the insecticide, reformulation chemistry may help address the short residual efficacy of bendiocarb and improve the utility of this insecticide for vector control.\n", - "\n", - "While mortality in the combinations with pirimiphos-methyl CS IRS and bendiocarb IRS were similar to each IRS alone, the combination with chlorfenapyr IRS induced significantly higher levels of mortality compared to chlorfenapyr IRS alone. This demonstrates an additive effect of the chlorfenapyr IRS plus pyrethroid LLINs combination which was not observed with the other IRS insecticides tested. This trend is consistent with previous experimental hut studies in Benin [31, 32] though the levels of mortality achieved with the combination were substantially higher (73%-83% vs. 46%). The difference in mortality could be due to changes in the composition of the vector population and/or increasing pyrethroid resistance levels over time. Chlorfenapyr is a new repurposed pyrrole insecticide with a unique mode of action that has shown potential for IRS but often inducing moderate mortality rates when applied alone in experimental huts against pyrethroid-resistant malaria vectors [29, 33]. It acts on the oxidative/metabolic pathway of insects hence its action can be enhanced by physical activity in the insect [34]. The additive mortality observed in the chlorfenapyr IRS plus pyrethroid net combination may therefore be attributed to the irritant effect of the pyrethroid in the LLIN on mosquitoes as they alight on the chlorfenapyr-treated wall after failed attempts to feed on the sleeper under the net. In addition, owing to the non-neurotoxic and non-irritant effect of chlorfenapyr [35], mosquitoes may have alighted on chlorfenapyr-treated walls for longer, leading to increased insecticide pick-up, potentially contributing to the additional mortality observed with this combination. The inability of the WHO 30-min cone bioassays to predict wild mosquito mortality with chlorfenapyr IRS in experimental huts [29, 34] is further demonstrated in this study; while cone bioassay mortality of the susceptible Kisumu strain was very low, wild mosquito mortality was higher and consistent throughout the trial confirming previous findings [29]. Considering the prolonged effect of chlorfenapyr IRS on wild mosquitoes [29], substantial and sustained improvements in the control of pyrethroid-resistant vector populations can be expected if the IRS insecticide is deployed to complement pyrethroid LLINs.\n", - "\n", - "IRS is highly effective for malaria vector control when deployed on its own but provides limited personal protection from mosquito biting and this is evident from the high blood-feeding rates observed with the IRS treatments alone. In the absence of a bed net, mosquitoes will usually feed on the human occupants in an IRS treated home before resting on the wall where they pick up the insecticide, consequently, direct blood-feeding inhibition is not expected when the intervention is applied independently. By contrast, pyrethroid LLINs reduce mosquito biting and provide substantial levels of personal protection for the user; an effect which is attributable to the physical barrier of the net and the excito-repellent effect of the pyrethroid insecticide. The findings from this study demonstrate that this effect can persist even against a vector population that has developed intense resistance to pyrethroids as observed in Cove [18]. By combining the IRS treatments with a pyrethroid LLIN, it was possible to achieve substantially improved levels of blood-feeding inhibition and personal protection compared to \n", - "the IRS alone. The reduced exposure to infective bites constitutes a crucial advantage of the combination strategy over IRS alone. The blood-feeding rate in the combination appeared to depend on the type of IRS insecticide used albeit to a lesser extent than the levels of mortality achieved; lower blood-feeding rates and thus higher levels of blood-feeding inhibition were achieved in the combination with benidocarb IRS compared to the combination with chlorfenapyr IRS. This can be due to differences in the mode of action of both IRS insecticides; in contrast to chlorfenapyr, benidocarb acts on the insect's nervous system eliciting an irritant rapid knockdown effect on mosquitoes [35] and this together with the excito-repellent effect of the pyrethroid in the standard pyrethroid LLIN could have contributed to the high levels of early exiting and reduced blood-feeding rates observed when both interventions were combined in a hut.\n", - "\n", - "Overall, the results demonstrate the superiority of the organophosphate, pirimiphos-methyl CS for IRS on its own and in combination with pyrethroid LLINs over benidocarb and the pyrrole, chlorfenapyr. However, this finding may not be generalisable to areas where vectors are resistant to organophosphates. Indeed, previous experimental hut studies in Cote d'Ivoire failed to demonstrate improved vector control with the combination compared to the net alone when standard pyrethroid LLINs were combined with pirimiphos-methyl CS-treated wall linings against a vector population that was resistant to pyrethroids and organophosphates [36]. Resistance to organophosphates and carbamates is unfortunately increasing in malaria vector populations especially in West Africa [37, 38, 39, 40]. To mitigate its impact, vector control programmes are encouraged to rotate between IRS insecticides with different modes of action [41]. Considering that most IRS campaigns will usually be deployed against a background of high LLIN coverage, effective IRS rotation plans should prioritise IRS insecticides which in addition to providing improved and prolonged vector control, can efficiently complement LLINs. Based on the findings of this study, chlorfenapyr IRS shows some potential to be a useful addition to such IRS rotation plans in pyrethroid-resistant areas with high pyrethroid LLIN coverage. It will be interesting to investigate the impact of combining pyrethroid LLINs with other newly approved IRS formulations containing clothianidin [17].\n", - "\n", - "The low mortality rates achieved with the standard pyrethroid net in this study (8%), further demonstrates the threat of pyrethroid resistance on the efficacy of standard pyrethroids. Pyrethroid resistance is widespread in malaria vectors across Africa and increasing in intensity the more they are used [12]. A new generation of LLINs treated with a pyrethroid and non-pyrethroid insecticide are now in advanced development. Studies have demonstrated the potential of some of these nets to provide improved control of clinical malaria transmitted by pyrethroid-resistant malaria vectors compared to standard pyrethroid nets [42, 43, 44]. As next generation nets come into the market, and are rolled out in endemic countries, it will be essential to explore any possible interactions with the different types of IRS insecticides that could be deployed together with them in a combined intervention approach.\n", - "\n", - "header: Data analysis\n", - "\n", - "Differences in proportional outcomes (exophily, blood-feeding, mortality) between experimental hut treatments were analysed using a blocked logistic regression model whereas differences in numerical outcomes (mosquito entry) were assessed using a negative binomial regression model. In addition to the fixed effect of the treatment, both models were adjusted to account for variation due to differential attractiveness of the volunteer sleepers and huts.\n", - "\n", - "\n", - "Mortality in susceptibility bioassays was interpreted according to WHO criteria. All analyses were performed in Stata version 15.1.\n", - "\n", - "header: Table 3. Overall entry and exiting of wild, pyrethroid-resistant Anopheles gambiae sensu lato entering experimental huts in Covè, southern Benin.\n", - "footer: * Values in the same column sharing a superscript letter do not differ significantly (P>0.05).\n", - "columns: ['Treatment', 'Total females caught', 'Average catch per night', '% Deterrence', 'Total exiting', '% Exophily�', '95% CI']\n", - "\n", - "{\"0\":{\"Treatment\":\"Untreated hut (control)\",\"Total females caught\":711,\"Average catch per night\":7,\"% Deterrence\":\"\\u2013\",\"Total exiting\":322,\"% Exophily\\ufffd\":\"45a\",\"95% CI\":\"42\\u201349\"},\"1\":{\"Treatment\":\"Untreated net (control)\",\"Total females caught\":420,\"Average catch per night\":4,\"% Deterrence\":\"41\",\"Total exiting\":165,\"% Exophily\\ufffd\":\"39a\",\"95% CI\":\"35\\u201344\"},\"2\":{\"Treatment\":\"DuraNet\",\"Total females caught\":619,\"Average catch per night\":6,\"% Deterrence\":\"13\",\"Total exiting\":350,\"% Exophily\\ufffd\":\"57b\",\"95% CI\":\"53\\u201361\"},\"3\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught\":508,\"Average catch per night\":5,\"% Deterrence\":\"29\",\"Total exiting\":389,\"% Exophily\\ufffd\":\"77c\",\"95% CI\":\"73\\u201380\"},\"4\":{\"Treatment\":\"DuraNet + Bendiocarb IRS\",\"Total females caught\":537,\"Average catch per night\":6,\"% Deterrence\":\"25\",\"Total exiting\":373,\"% Exophily\\ufffd\":\"70cd\",\"95% CI\":\"66\\u201373\"},\"5\":{\"Treatment\":\"Chlorfenapyr IRS\",\"Total females caught\":478,\"Average catch per night\":5,\"% Deterrence\":\"33\",\"Total exiting\":297,\"% Exophily\\ufffd\":\"62bd\",\"95% CI\":\"58\\u201367\"},\"6\":{\"Treatment\":\"DuraNet + Chlorfenapyr IRS\",\"Total females caught\":411,\"Average catch per night\":4,\"% Deterrence\":\"42\",\"Total exiting\":241,\"% Exophily\\ufffd\":\"59b\",\"95% CI\":\"54\\u201363\"},\"7\":{\"Treatment\":\"Pirimiphos-methyl CS IRS\",\"Total females caught\":528,\"Average catch per night\":6,\"% Deterrence\":\"26\",\"Total exiting\":356,\"% Exophily\\ufffd\":\"67d\",\"95% CI\":\"63\\u201371\"},\"8\":{\"Treatment\":\"DuraNet + Pirimiphos-methyl CS IRS\",\"Total females caught\":486,\"Average catch per night\":5,\"% Deterrence\":\"32\",\"Total exiting\":298,\"% Exophily\\ufffd\":\"61bd\",\"95% CI\":\"57\\u201366\"}}\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `EntomologicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `EntomologicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `EntomologicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}, \"Start_month\": {\"title\": \"Start Month\", \"description\": \"Numerical start month of the reporting period (some studies may report multiple time periods)\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Hut trial\",\"Country\":\"Benin\",\"Site\":\"Cove\",\"Start_month\":7,\"Start_year\":2018,\"End_month\":10,\"End_year\":2018}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Concentration_initial\": {\"title\": \"Insecticide concentration (initial)\", \"description\": \"Enter the initial concentration of the insecticide(s) for net type at the time of distribution.\"}, \"Net_holed\": {\"title\": \"Net Holed\", \"description\": \"Numerical count of the number of holes a net has - 0 if new and NA if not reported\\nNote - for tunnel tests there are holes that allow the mosquitoes the option of passing through to feed on the guinea pig.\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"DuraNet\",\"Insecticide\":\"Alpha-cypermethrin\",\"Concentration_initial\":\"261 mg\\/m2\",\"Net_holed\":6.0}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Tunnel test\n", - "\n", - "The tunnel test outcomes confirmed the cone bioassay results for the susceptible _An. gambiae s.s._ Kisumu strain, with strong blood-feeding inhibition and high mortality in all nets being above the WHO tunnel test thresholds (>= 90% blood-feeding inhibition or >= 80% mortality) (Fig. 4). The blood-feeding inhibition was high only in unwashed and used samples of PermaNet(r) Dual (A) (92.4%), PermaNet(r) Dual (B) (91.6%) and PermaNet(r) 3.0 (92.3%) (Fig. 4A). The mortality was very high (100%) in unwashed or washed and unused or used samples of all nets (PermaNet(r) Dual, PermaNet(r) 3.0 and PermaNet(r) 2.0) (Fig. 4B), thus showing their good efficacy against this pyrethroid-susceptible _An. gambiae_ Kisumu strain. Additional file shows the Kisumu strain mortality with tunnel tests in more detail (see Additional file 4: Table S4). For the pyrethroid-resistant _An. gambiae s.l._, only washed and unused PermaNet(r) Dual (A) induced a strong blood-feeding inhibition (91.3%) being above the WHO tunnel cut-off of 90% (Fig. 5A). However, the mortality with all samples (unwashed or washed and unused) of PermaNet(r) Dual (85.2-94.9%) were higher compared with PermaNet(r) 3.0 and PermaNet(r) 2.0 (Fig. 5B), and consistent with the higher efficacy of PermaNet(r) Dual against the free-flying pyrethroid-resistant _An. gambiae s.l._ Tiassale strain populations observed in the concurrent experimental hut trials. Additional file shows the pyrethroid-resistant Tiassale strain mortality with tunnel tests in more detail (see Additional file 5: Table S5).\n", - "\n", - "header: Background: Methods\n", - "\n", - "PermaNet(r) Dual, PermaNet(r) 3.0 and PermaNet(r) 2.0, unwashed and washed (20 washes), were tested against free-flying pyrethroid-resistant _An. gambiae s.l._ in the experimental huts in Tiassale, Cote d'lvoire from March to August 2020. Complementary laboratory cone bioassays (daytime and 3-min exposure) and tunnel tests (nightly and 15-h exposure) were performed against pyrethroid-susceptible _An. gambiae_ sensu stricto (_S.S._) (Kisumu strain) and pyrethroid-resistant _An. gambiae s.l._ (Tiassale strain).\n", - "\n", - "header: Small-scale field evaluation of PermaNet(r): Abstract\n", - "\n", - "Dual (a long-lasting net coated with a mixture of chlorfenapyr and deltamethrin) against pyrethroid-resistant _Anopheles gambiae_ mosquitoes from Tiassale, Cote d'lvoire\n", - "\n", - "Julien Z. B. Zahouli\n", - "\n", - "Julien Z. B. Zahouli\n", - "\n", - "Julien.zahouli@crsrs.ci\n", - "\n", - "Constant A. V. Edi\n", - "\n", - "1Laurence A. Yao\n", - "\n", - "1Emmanuelle G. Lisro\n", - "\n", - "1Marc Adou\n", - "\n", - "1Inza Kone\n", - "\n", - "1Graham Small\n", - "\n", - "2Leanore D. Sternberg\n", - "\n", - "28Benjamin G. Koudou\n", - "\n", - "\n", - "\n", - "Due to the rapid expansion of pyrethroid-resistance in malaria vectors in Africa, Global Plan for insecticide Resistance Management (GIPRM) has recommended the development of long-lasting insecticidal nets (LLINs), containing insecticide mixtures of active ingredients with different modes of action to mitigate resistance and improve LLIN efficacy. This good laboratory practice (GLP) study evaluated the efficacy of the chlorfenapyr and deltamethrin-coated PermaNet(r) Dual, in comparison with the deltamethrin and synergismt piperonyl butoxide (PBO)-treated PermaNet(r) 3.0 and the deltamethrin-coated PermaNet(r) 2.0, against wild free-flying pyrethroid-resistant _Anopheles gambiae_ sensu lato (_S.I._), in experimental huts in Tiassale, Cote d'lvoire (West Africa).\n", - "\n", - "header: Comparison of laboratory bioassay results with hut trial results\n", - "\n", - "Comparing the laboratory cone bioassay and tunnel test results with the experimental hut trial results with the same pyrethroid-resistant _An. gambiae s.l._ strain showed that these laboratory bioassays predicted the response in the huts for PermaNet(r) 3.0 and PermaNet(r) 2.0. Indeed, the unwashed and washed PermaNet(r) 3.0 and PermaNet(r) 2.0 induced relatively lower mortality in the pyrethroid-resistant _An. gambiae_ strain with the cone bioassays, the tunnel test and the hut trial. Focussing on the bioefficacy of PermaNet(r) Dual, the respective mortality rates in the cone, tunnel and hut were 14.0%, 84.5% and 94.9% for unwashed PermaNet(r) Dual (A), 24.0%, 86.5% and 90.2% for unwashed PermaNet(r) Dual (B), and 10.0%, 87.5% and 90.4% for washed PermaNet(r) Dual (B). This suggests that laboratory tunnel tests are more predictive of the performance of PermaNet(r) Dual in experimental huts. Additionally, there were correlations in the blood-feeding rates and blood-feeding inhibition between the tunnel test results and the hut trial results. The high mortality and strong blood-feeding inhibition of PermaNet(r) Dual in tunnel tests with the pyrethroid-resistant _An. gambiae_ Tiassale strain shows that the chlorfenapyr component of PermaNet(r) Dual provided good efficacy against pyrethroid-resistant _Anopheles_.\n", - "\n", - "header: Chemical analysis\n", - "\n", - "Pieces of netting were sampled from unwashed and washed PermaNet(r) Dual (A and B), PermaNet(r) 3.0 and PermaNet(r) 2.0 LLINs before and after being used in the hut trial, in accordance with the WHO protocol for chemical analysis [25]. All sampled net pieces were labelled and stored individually in aluminium foil at 3.7-4.2 degC. The net pieces were then shipped to the Vestergaard's ISO IEC17025 laboratory in Vietnam for chemical analysis of chlorfenapyr and deltamethrin. Deltamethrin and PBO contents were determined following the Collaborative International Pesticides Analytical Council Ltd (CIPAC) (i.e. ClPAC 33/LN/(M2)/3) methods [26]. Briefly, chlorfenapyr content was analysed using in-house method VCL-098-20 that was undergoing ClIPAC validation and was still to be published. Chlorfenapyr content was extracted from the PermaNet(r) Dual net using a mixture of n-hexane and 1,4-dioxane (95:5, v:v) solvents with an internal standard of dibutylphthalate added. The mixture was shaken by shaking machine to extract chlorfenapyr. Extracted solution was filtered through 0.45 mm Teflon membrane and analysed by a normal phase high performance liquid chromatography for chlorfenapyr concentration, detector UV 236 nm.\n", - "\n", - "header: Supporting laboratory testing of net samples\n", - "\n", - "Standard WHO cone bioassays and tunnel tests were conducted with unwashed and washed nets under laboratory conditions, to predict their responses in the field experimental huts. The insecticide susceptible Kisumu strains and field-collected F0 generation of pyrethroid-resistant Tiassale strain of _An. gambiae_ were tested with samples (25 cm x 25 cm) cut from each of the eight net \n", - "types (unwashed and washed net samples) before and after their inclusion into the hut trial [23]. For the tunnel tests, tunnels were divided into two sections by netting samples held in a frame. Nine holes of 1 cm in diameter were cut in each net sample (with one hole located at the centre of the square, and the other eight equidistant and located 5 cm from the border), and the surface of netting available to the mosquitoes was 400 cm\\({}^{2}\\) (20 cm \\(\\times\\) 20 cm).\n", - "\n", - "For each type of net and wash status, 100 non-blood-fed, 2-5-day-old females per strain were subjected to 3-min exposure in cone bioassays in replicates of five mosquitoes per cone according to the WHO guidelines [22]. For the tunnel tests, 100 non-blood-fed, 5-8-day-old mosquito females per strain were subjected to a 15-h exposure overnight using guinea pig as host, following the WHO guidelines [23]. Testing and holding conditions were 27 +- 2 degC and 80 +- 10% relative humidity. The 60-min knockdown for cone bioassays, blood-feeding status for tunnel tests and 24, 48 and 72-h mortality for both methods were recorded.\n", - "\n", - "header: Availability of data and materials\n", - "\n", - "All relevant data are within the manuscript.\n", - "\n", - "header: Conclusion\n", - "\n", - "The deltamethrin-chlorfenapyr-coated PermaNet(r) Dual induced a high efficacy and performed better than the deltamethrin-PBO PermaNet(r) 3.0 and the deltamethrin-only PermaNet(r) 2.0, testing both unwashed and 20 times washed samples against the pyrethroid-susceptible and resistant strains of _An. gambiae s.l._ The inclusion of chlorfenapyr with deltamethrin in PermaNet(r) Dual net greatly improved protection and control of pyrethroid-resistant _An. gambiae_ populations. PermaNet(r) Dual thus represents a promising tool, with a high potential to reduce malaria transmission and provide community protection in areas compromised by mosquito vector resistance to pyrethroids.\n", - "\n", - "header: Blood-feeding and personal protection\n", - "\n", - "The blood-feeding effect of the nets in wild pyrethroid-resistant _An. gambiae_ that entered the trial huts and personal protection are presented in Fig. 1A and Table 1. Before washing, the percentage blood-feeding with PernaNet(r) Dual (A) (36.7 +- 4.0%) did not differ significantly from PernaNet(r) Dual (B) (37.5 +- 4.4%) and PernaNet(r) 2.0 (55.7 +- 3.7%), but was significantly higher than PernaNet(r) 2.0 (31.3 +- 4.4%) (z = - 2.17; p = 0.030). The percentage blood-feeding for unwashed PernaNet(r) Dual (B) was similar to unwashed samples of PernaNet(r) 2.0 (z = 1.74; p = 0.081) and PernaNet(r) 3.0 (z = - 1.49; p = 0.136). Washing 20 times did not influence significantly the percentage blood-feeding in PernaNet(r) Dual (B) (z = 0.10; p = 0.921). After washing,\n", - "the percentage blood-feeding of PermaNet(r) Dual (B) (36.0 +- 3.7%) was substantially lower, but without significant differences when compared with PermaNet(r) 3.0 (57.7 +- 3.7%) (z = 1.71; p = 0.087), PermaNet(r) 2.0 (72.3 +- 3.2%) (z = 1.78; p = 0.076) and the untreated control net (z = 1.72; p = 0.085). For blood-feeding inhibition, unwashed PermaNet(r) Dual (A) (42.5 +- 6.8%) was similar to unwashed PermaNet(r) Dual (B) (41.4 +- 6.9%) (z = 0.25; p = 0.802) and washed PermaNet(r) Dual (B) (43.7 +- 4.8%) that was not affected by washing (z = - 0.41; p = 0.682). Compared with PermaNet(r) 3.0, the blood-feeding inhibition of PermaNet(r) Dual (B) was significantly higher before washing (z = - 0.72; p = 0.469), and significantly lower after washing (z = - 1.92; p = 0.045). However, both unwashed and washed PermaNet(r) Dual (B) provided, respectively, significantly higher blood-feeding inhibition than unwashed and washed PermaNet(r) 2.0 (all p < 0.05). The personal protection was similar between unwashed samples of PermaNet(r) Dual (A) (58.8 +- 3.5%) and PermaNet(r) Dual (B) (60.8 +- 3.8%) (z = - 0.04; p = 0.968). Unwashed PermaNet(r) Dual (B) resulted in a personal protection that was similar to unwashed PermaNet(r) 3.0 (62.9 +- 4.2%) (z = 0.21; p = 0.738), and significantly different from unwashed PermaNet(r) 2.0 (28.8 +- 1.9%) (z = 3.21; p = 0.001). With 20 washes, the personal protection with PermaNet(r) Dual (B) declined significantly from 60.8 +- 3.8% to 20.2 +- 1.1% (z = - 2.96; p = 0.003). However, washed PermaNet(r) Dual (B) provided significantly higher personal protection compared with their washed counterparts of PermaNet(r) 3.0 (9.8 +- 0.7%) (z = 2.89; p = 0.004) and PermaNet(r) 2.0 (- 32.6 +- 2.2%) (z = 2.93; p = 0.003).\n", - "\n", - "header: Background\n", - "\n", - "According to the latest World Malaria Report 2022 of the World Health Organization (WHO), there were 247 million malaria cases and 619,000 malaria deaths in 84 malaria endemic countries worldwide in 2021 [1, 2]. This represents about 13.4 million more cases in 2021 compared to 2019 attributable to disruptions to essential malaria services during the COVID-18 pandemic [1]. The WHO African Region, with an estimated 234 million cases in 2021, accounted for about 95% of global cases malaria [1]. The recent decline of malaria burden from 2000 to 2019 was largely due to the massive distribution and use of long-lasting insecticidal nets (LLINs) (2.5 billion LLINs were delivered from 2004 to 2021) for _Anopheles_ mosquito vector control [1]. The malaria burden reduction is now slowing down and is threatened by the spread of resistance to pyrethroids (78 of 88 endemic countries have detected resistance to at least one insecticide class reported to the WHO from 2010 to 2020) [1]. The WHO Global Plan for Insecticide Resistance Management (GPIRM) has recommended the development of LLINs with insecticide mixtures of active ingredients with different modes of action to mitigate resistance [3]. The WHO Global Technical Strategy (GTS) aims for a reduction of malaria case incidence and mortality rate of at least 40% by 2020, 75% by 2025 and 90% by 2030 from the 2015 baseline [1, 4]. To meet these targets, GTS has called for the development of new tools, with combined or more effective insecticide molecules to control insecticide-resistant _Anopheles_ vectors [4]. These new vector control tools must incorporate new insecticide molecules and/or insecticide mixtures containing at least two active ingredients with different modes of action for the management of malaria vector resistance to insecticides [1, 3].\n", - "\n", - "Malaria is endemic throughout Cote d'Ivoire and represents the leading cause of mortality and morbidity in the country. Several studies have shown a wide spread resistance in local _Anopheles_ to most of the insecticide classes currently used in malaria vector control (e.g. pyrethroids, DDT and carbamates) [5-8]. The existence of multiple mechanisms of resistance in the main vector, _Anopheles gambiae_ sensu lato (_s.l._) threatens the efficacy of vector control tools currently used in Cote d'Ivoire, including LLINs [9-11]. Meiwald et al. [11] found that pyrethroid resistance is associated with significant overexpression of _CYP6P4, CYP6P3,_ and _CYP6Z1_ in _Anopheles coluzzii_ in Cote d'Ivoire. High allelic frequencies of knock-down resistance (_kdr_) _L1014F_ mutation (range: 0.46-1), relatively low frequencies of the _ace-1R_ mutation in the acetylcholinesterase gene associated with target-site insensitivity to carbamates and organophosphates (<0.5), and elevated activity of insecticide detoxifying enzymes (mainly mixed function oxidases (MFOs), esterase and glutathione S-transferase (GST)), have been reported in Cote d'Ivoire [5, 7, 10]. Recent laboratory (WHO tube and CDC bottle) bioassays against local pyrethroid-resistant _An. gambiae_ from Cote d'Ivoire have shown that pyrethroids induce low mortality, whilst pre-exposure to the synergist piperonyl butoxide (PBO) increases the mortality but does not restore fully the susceptibility due to resistance [9]. However, the pyrrole insecticide chlorfenapyr induces higher mortality in resistant _An. gambiae_ compared with pyrethroids alone or combined with PBO in Cote d'Ivoire [9].\n", - "\n", - "The present good laboratory practice (GLP) study evaluated the bio-efficacy of a new candidate LLIN, PermaNet(r) Dual, against pyrethroid-resistant _An. gambiae s.l._ in comparison with the WHO Prequalification Unit, Vector Control Product Assessment Team (PQT/VCP) listed standard LLINs, PermaNet(r) 2.0 and PermaNet(r) 3.0, through the conduct of an experimental hut trial and laboratory bioassays in Tiassale, Cote d'Ivoire. PermaNet(r) Dual has a mixture of the pyrrole chlorfenapyr and the pyrethroid deltamethrin coated onto a polyester fabric. PermaNet(r) 3.0 is treated with deltamethrin and PBO, and PermaNet(r) 2.0 is treated with deltamethrin only. Chlorfenapyr is a pro-insecticide activated by the oxygenase function of cytochrome P450s and oxidative removal of the N-ethoxymethyl\n", - "group leads to a toxic form identified as CL 303,268. The toxic form uncouples oxidative phosphorylation in the mitochondria, resulting in disruption of the production of adenosine triphosphate and loss of energy, leading to cell dysfunction and ultimately death of the insect [12]. The WHO has received some resistance monitoring data for chlorfenapyr, but these data are insufficient to assess the potential presence of resistance to this insecticide [1]. Deltamethrin is a neurotoxic insecticide and has excito-repellent effects on mosquitoes. PBO, used on PermaNet(r) 3.0, is a synergist which inhibits mixed function oxidases, blocking the detoxification of pyrethroids and at least partially restoring pyrethroid susceptibility [1, 13]. Pyrethroid-resistant strains of _Anopheles_ have so far been found to be susceptible to chlorfenapyr [9, 14-18]. Thus, the hypothesis of the current study was that chlorfenapyr would kill the pyrethroid-resistant _An. gambiae_ population in Tiassale, and PermaNet(r) Dual would induce higher mortality compared to both PermaNet(r) 3.0 and PermaNet(r) 2.0 in the experimental huts, and the supplementary laboratory cone and tunnel bioassays could predict these hut trial outcomes.\n", - "\n", - "header: Supplementary Information\n", - "\n", - "The online version contains supplementary material available at [https://doi.org/10.11016/s12936-023-04455-z](https://doi.org/10.11016/s12936-023-04455-z).\n", - "\n", - "header: Funding\n", - "\n", - "This study was funded by a Grant from Vestergaard Sarl, Lausanne, Switzerland.\n", - "\n", - "header: Results\n", - "\n", - "The outcomes of the current experimental hut trial showed that the parameters of the net efficacy against the pyrethroid-resistant _An. gambiae s.l._ Tiassale population varied as a function of net type and wash status, with the performance of PermaNet(r) Dual being better overall compared with PermaNet(r) 3.0 and PermaNet(r) 2.0 (Fig. 1 and Table 1).\n", - "\n", - "header: Experimental huts and mosquitoes: Net treatments and treatment arms\n", - "\n", - "This study included the PermaNet(r) Dual (candidate net), PermaNet(r) 3.0 and PermaNet(r) 2.0 (reference nets) and untreated net (negative control). All mosquito nets were new and unwashed nets supplied by Vestergaard Sarl (Lausanne, Switzerland). The untreated nets were made of polyester fabric without any insecticide. PermaNet(r) Dual was made of polyester fabric coated with chlorfenapyr at 5.0 g/kg +- 25% and deltamethrin at 2.1 g/kg +- 25%. The unwashed PermaNet(r) Dual arm was replicated using nets from two different production batches (referred to as A and B). PermaNet(r) 3.0 was made of polyester fabric coated with 2.1 g/kg +- 25% of deltamethrin on the sides, and polyethylene incorporated with 4.0 g/kg +- 25% of deltamethrin and 25.0 g/kg +- 25% of PBO on the roof. PermaNet(r) 2.0 was made of polyester fabric coated with 1.4 g/kg +- 25% of deltamethrin.\n", - "\n", - "Eight treatment arms were compared in the experimental huts and laboratory: PermaNet(r) Dual (A) unwashed; PermaNet(r) Dual (B) unwashed and washed 20 times; PermaNet(r) 3.0 unwashed and washed 20 times; PermaNet(r) 2.0 unwashed and washed 20 times; and untreated control net. The nets were prepared and washed using a soap called \"Savon de Marseille\" and according to the WHO guidelines on small-scale field hut trials and laboratory testing [23]. The interval of time between two consecutive washes was one day, corresponding to the regeneration time of all the nets. The regeneration time of the PermaNet(r) Dual (i.e. 1 day) was supplied by Vestergaard. The nets were washed 20 times. Before testing them in the experimental huts, all the unwashed, washed and untreated control nets were deliberately holed with six holes of 4 cm in diameter to stimulate the conditions of torn nets according to the WHO guidelines [23].\n", - "\n", - "header: Ethics approval and consent to participate: Consent for publication\n", - "\n", - "Not applicable.\n", - "\n", - "header: Additional file 3: Table 53.\n", - "\n", - "Mean knock-down and mortality rates in multi-resistant _Anopheles gambiae s.l._ (Tissale strain) exposed to long-lasting insecticidal nets using cone bioassays before and after experimental hut trial in Tassale, Cape d'hore.\n", - "\n", - "header: Conclusion\n", - "\n", - "The present small-scale GLP experimental hut study demonstrated that the deltamethrin- chlorfenapyr PermaNet(r) Dual net has high bio-efficacy, inducing significantly higher mortality and blood-feeding inhibition effects in the wild insecticide-resistant _An. gambiae s.l._ when compared with the deltamethrin-PBO PermaNet(r) 3.0 and deltamethrin-only PermaNet(r) 2.0. The inclusion of chlorfenapyr with pyrethroid in PermaNet(r) Dual net has greatly improved protection and control of free-flying wild pyrethroid-resistant _An. gambiae_ populations. The chlorfenapyr-deltamethrin-coated PermaNet(r) Dual net has great potential to reduce malaria transmission, particularly in areas compromised by high level of pyrethroid resistance in _Anopheles_ mosquitoes. Further validations in large-scale field trials are required to assess the effectiveness, the durability and the acceptability of this new tool for malaria vector control.\n", - "\n", - "header: Discussion\n", - "\n", - "The current study evaluated the efficacy of PermaNet(r) Dual, a new candidate net coated with a mixture of chlorfenapyr and deltamethrin, against _An. gambiae_ in a small-scale GLP but study in Tiassale, Cote d'Ivoire, with supporting exploratory laboratory cone and tunnel\n", - "\n", - "Fig. 4: Mean blood-feeding inhibition (**A**) and corrected mortality (**B**) rates in the susceptible _Anopheles gambiae_ s.s. Kisumu strain exposed to net samples using tunnel tests before and after experimental hut trial in Tiassale, Côte d’Ivoire. Error bars show the standard error of the mean\n", - "bioassays. WHO-prequalified PermaNet(r) 3.0 (co-treated with deltamethrin and PBO) and PermaNet(r) 2.0 (treated with deltamethrin only) were used as the reference nets. In this GLP but study, PermaNet(r) Dual performed better than PermaNet(r) 3.0 and PermaNet(r) 2.0, in terms of mortality and blood-feeding inhibition, for both unwashed and unstressed cases, respectively.\n", - "\n", - "Fig. 5: Mean of blood-feeding inhibition (**A**) and corrected mortality (**B**) rates in the pyrethroid-resistant _Anopheles gambiae s1_. Tassale strain exposed to net samples using tunnel tests before and after experimental hut trial in Tassale, Côte d’thovie. Error bars show the standard error of the mean \n", - "and washed samples. Unlike the cone bioassays, the tunnel tests successfully confirmed the field efficacy of the nets. Briefly, this hut trial showed the benefit of mixing deltamethrin and chlorfenapyr together in a long-lasting net, PermaNet(r) Dual, for an effective control of pyrethroid-resistant _Anopheles._\n", - "\n", - "The current experimental hut study demonstrated that PermaNet(r) Dual had increased efficacy against highly pyrethroid-resistant _An. gambiae._ Indeed, hut mortality of _An. gambiae_ Tiassale strain was significantly higher with PermaNet(r) Dual (>83%) in comparison with PermaNet(r) 3.0 (<38%) and PermaNet(r) 2.0 (<12%), for both unwashed and 20 times washed samples (Fig. 1B and Table 1). This PermaNet(r) Dual efficacy was similar to chlorfenapyr and alpha-cypermethrin mixture-coated Intercept G2 in West and East Africa [16, 17, 27, 28, 29, 30, 31, 32]. The good performance of PermaNet(r) Dual might be attributed to the susceptibility of the highly pyrethroid-resistant _An. gambiae_ s.l. to chlorfenapyr [9, 11]. Due to the novel mode of action of chlorfenapyr, the present pyrethroid-resistance mechanisms did not provide any cross-resistance to this insecticide [12]. Indeed, chlorfenapyr-treated tool has been shown to control a number of different multiple-insecticide-resistant _Anopheles_ populations [14, 15, 27, 28, 29, 30, 31, 32].\n", - "\n", - "This hut study showed that the percentage blood-feeding in wild pyrethroid-resistant _An. gambiae_ population was lower for PermaNet(r) Dual (unwashed and washed) compared with PermaNet(r) 2.0 (unwashed and washed) and washed PermaNet(r) 3.0, but slightly higher than\n", - "unwashed PermaNet(r) 3.0 (Fig. 1A and Table 1). Likewise, blood-feeding inhibition with PermaNet(r) Dual was comparable or stronger than with PermaNet(r) 2.0 and washed PermaNet(r) 3.0. This PermaNet(r) Dual blood-feeding inhibition outcome is consistent with that caused by Intercept G2 in earlier hut trials in West Africa [27-31], and may be explained by the irritant effects of the deltamethrin [32-35]. While unwashed PermaNet(r) Dual and PermaNet(r) 3.0 produced similar levels of blood-feeding inhibition, the 20 times washed PermaNet(r) Dual induced a statistically greater blood-feeding inhibition in comparison with both PermaNet(r) 3.0 and PermaNet(r) 2.0 washed 20 times. This suggests that PermaNet(r) Dual may have performed better than PermaNet(r) 3.0 and PermaNet(r) 2.0 over time. PermaNet(r) Dual effectiveness for inhibiting blood-feeding could imply its good potential for reducing the human-biting and blood-feeding, adding value into its killing effects in malaria vectors.\n", - "\n", - "In the present hut study, unwashed PermaNet(r) Dual deterrence effect against the wild pyrethroid-resistant _An. gambiae_ population was comparable to that recorded in PermaNet(r) 2.0 and PermaNet(r) 3.0. The deltamethrin component of PermaNet(r) Dual has a deterrence effect and may have induced exiting in mosquitoes. However, the 20 times washed PermaNet(r) Dual did not have a deterrence effect (Table 1), probably due to a reduction of the chemical contents (Table 2). A dipped chlorfenapyr net did seem to have a deterrence effect, but did not have a significant effect on exiting rates in West Africa [15, 16, 26-31]. The higher deterrence effect may be due to both the chlorfenapyr and deltamethrin components, but higher exiting rate would likely be due only to the deltamethrin component. Thus, PermaNet(r) Dual may have both deterrent and excito-repellency effects, providing personal protection against pyrethroid-resistant _An. gambiae_ mosquitoes, and reducing human-vector contacts, which may, in turn, lead to an increased user acceptance [36].\n", - "\n", - "While standard laboratory cone bioassays failed to predict PermaNet(r) Dual efficacy against pyrethroid-resistant _An. gambiae s.l.,_ tunnel tests successfully predicted its efficacy against the same strain in the semi-field experimental huts. Both cone and tunnel bioassays met the WHO criteria [44], with the susceptible _An. gambiae s.s._ Kisumu strain. However, _An. gambiae s.s._ Kisumu strain mortality against unwashed and used PermaNet(r) Dual (A) was lower (34%) with cone bioassay (Fig. 2B) probably due to the reduction of the chemical bioavailability on netting fibre surface of net samples tested, or the inappropriateness of cone bioassay method for evaluation of the chlorfenapyr-coated PermaNet(r) Dual as the mortality was higher (100%) with tunnel test (Fig. 4B). With the wild pyrethroid-resistant _An. gambiae s.l._ Tiassale strain, only the tunnel tests achieved high efficacy that was consistent with that observed in the huts with PermaNet(r) Dual. The difference in PermaNet(r) Dual efficacy between both _Anopheles_ Kiumu and Tiassale strains may be explained by the difference in the levels of their resistance to insecticides. However, the lower efficacy of PermaNet(r) Dual against pyrethroid-resistant _An. gambiae s.l._ with cone bioassays (daytime and 3-min exposure) compared with tunnel tests (night-time and 15-h exposure) may be attributable to the slow mode of action of chlorfenapyr and that mosquitoes need to be metabolically active for the activation of the chlorfenapyr pro-insecticide [12, 13, 37]. Indeed, chlorfenapyr has a previously been observed to have a slower action and delayed toxic activity of 2-3 days post-exposure compared to other insecticides (pyrethroids and organophosphates) used in mosquito vector control [14, 28, 29]. The cone bioassay method was developed to assess the bioefficacy of pyrethroid-only LLINs, and the use of this method to test LLINs containing non-neurotoxic insecticides, such as chlorfenapyr, may not necessarily be predictive of field impact, even with increased exposure time of mosquitoes inside the cones [16, 27]. In contrast, the tunnel test results with pyrethroid-resistant _An. gambiae s.l._ Tiassale strain (field-collected F0 generation) were more predictive of PermaNet(r) Dual efficacy in huts, as observed for other chlorfenapyr-coated nets, such as Interceptor(r) G2 [16, 27, 28]. Tunnel tests provide an increased exposure time of mosquitoes to the LLIN samples being tested, and being an overnight exposure. As the female mosquitoes in the tunnel tests are also exhibiting host-seeking behaviour and are, therefore, metabolically active, the activation of chlorfenapyr following tarsal pickup by mosquitoes may be more effective. The tunnel test was a better predictor of PermaNet(r) Dual field efficacy because exposure occurred at night when host-seeking mosquitoes are more vulnerable to chlorfenapyr. Tunnel test thus is a more reliable technique to assess the efficacy of a chlorfenapyr-treated net prior to field trials against free-flying mosquitoes [16, 38, 39].\n", - "\n", - "In PermaNet(r) Dual, deltamethrin and chlorfenapyr contents varied slightly, but complied with the dose interval limits of target specification [23]. This revealed a good homogeneity of the active ingredients' distribution over and a good retention of these active ingredients in PermaNet(r) Dual, thus resulting in high and similar mortality and blood-feeding inhibition between unwashed samples of PermaNet(r) Dual (A) and PermaNet(r) Dual (B). The reduction of chemical contents due to the loss of chlorfenapyr and deltamethrin with 20 washes had no apparent effect on PermaNet(r) Dual efficacy as the washed samples were still producing high mortality against the pyrethroid-resistant mosquitoes. Overall,\n", - "PernaNet(r) Dual chemical bioavailability was sufficient and produced high mortality in pyrethroid-resistant _Anopheles_ mosquitoes after 20 standardized washes (corresponding to a 3-year use) and over the hut trial.\n", - "\n", - "The high vector mortality and personal protection effect of the PernaNet(r) Dual found in this study are the desired outcomes of any vector control tool. The high mortality effects and the additive blood-feeding inhibition impacts induced by PernaNet(r) Dual in this hut trial are expected to substantially diminish the malaria vector density and biting rates in the field, and hence the transmission of malaria in the areas where vectors are resistant to insecticides [40-47]. Additionally, PernaNet(r) Dual performed better than the reference PernaNet(r) 3.0 and PernaNet(r) 2.0 nets, when washed 20 times, thus meeting the WHO hut trial criteria [23].\n", - "\n", - "However, these results need to be further validated in a large-scale field trial to assess the durability and acceptability of this new tool for malaria vector control [48-50]. A community trial would be the best way to evaluate the community level effect of this promising candidate net (i.e. PernaNet(r) Dual) against malaria transmission, by monitoring entomological infection rate, _Plasmodium_ prevalence and disease incidence [48-50]. Such a community trial could be a randomized controlled trial as with dual-active-ingredient LLINs (e.g. Interceptor G2) in Tanzania [49], soon in Benin [48, 50], and the pilot deployments that are part of the New Nets Project led by PATH [51]. Furthermore, PernaNet(r) Dual should be tested against wild populations of _Anopheles funestus_[32], or other main or secondary vectors of malaria in Africa [52-56]. Ultimately, in the present study, the series of hut and laboratory tests demonstrated that the chlorfenapyr component of PernaNet(r) Dual could make a major contribution to controlling the pyrethroid-resistant _An. gambiae_ populations. Furthermore, there were no adverse effects reported among hut sleepers and mosquito collectors during the trial in the huts where PernaNet(r) Dual were used, and this may possibly increase the rate of future user acceptability and improve the usage of this net for malaria vector control.\n", - "\n", - "header: Outcomes measures\n", - "\n", - "The following entomological outcomes were used to evaluate the efficacy of each treatment arm in the current experimental hut trial [23]:\n", - "\n", - "1. Deterrence: proportional reduction in the number of mosquitoes caught in treated hut relative to the number caught in the control hut.\n", - "2. Exiting rate: percentage of the mosquitoes collected from the veranda trap out of all mosquitoes collected.\n", - "3. Induced exophily: proportional reduction of mosquitoes found in the exit and veranda traps relative to control hut.\n", - "4. Blood-feeding: percentage of blood-fed mosquitoes relative to the total collected.\n", - "5. Blood-feeding inhibition: proportional reduction in blood feeding percentage in treated huts relative to the control hut.\n", - "6. Mortality: percentage of dead mosquitoes found dead in hut in the morning (immediate mortality) or after being caught alive and dead during holding (delayed mortality) in treatment huts out of mosquitoes collected, and corrected for control mortality.\n", - "7. Personal protection: the proportional reduction in the number of blood-fed mosquitoes in the treated huts relative to the number of blood-fed mosquitoes in the untreated control.\n", - "8. Killing effect: the proportional reduction in the number of mosquitoes killed in the treated huts relative to the number of mosquitoes killed in the untreated control.\n", - "\n", - "The formulas of key entomological outcomes measured in this study are [23]:\n", - "\n", - "\\[\\text{Deterrence}(\\%) = \\frac{\\text{Nc} - \\text{Nt}}{\\text{Nc}} \\times 100 = \\left( 1 - \\frac{\\text{Nt}}{\\text{Nc}} \\right) \\times 100,\\]\n", - "\n", - "where Nt the total number of mosquitoes collected in the treatment hut and veranda/exit traps and Nc the total number of mosquitoes in the control hut and veranda/exit traps.\n", - "\n", - "\\[\\text{Exiting}\\,\\text{rate}(\\%) = \\frac{\\text{n}}{\\text{N}} \\times 100,\\]\n", - "\n", - "where n is the number of mosquitoes from veranda and window traps, while N is the total number of mosquitoes collected in the hut.\n", - "\n", - "\\[\\text{Induced}\\,\\text{exophily}(\\%) = \\frac{\\text{Pt} - \\text{Pc}}{\\text{Pc}} \\times 100\\] \\[= \\left( \\frac{\\text{Pt}}{\\text{Pc}} - 1 \\right) \\times 100,\\]\n", - "\n", - "where Pt is the proportion of mosquitoes from veranda and window traps of treated hut while Pc is the number of mosquitoes from veranda and window traps of untreated control hut.\n", - "\n", - "\\[\\text{Blood} - \\text{feeding}\\,\\text{inhibition}(\\%) = \\frac{\\text{Pc} - \\text{Pt}}{\\text{Pc}} \\times 100,\\]\n", - "\n", - "where Pt the proportion of blood-fed mosquitoes in the treatment hut, and Pc the proportion of blood-fed mosquitoes in the control hut.\n", - "\n", - "\\[\\text{Personal}\\,\\text{protection}(\\%) = \\frac{\\text{Bc} - \\text{Bt}}{\\text{Bc}} \\times 100\\] \\[= \\left( 1 - \\frac{\\text{Bt}}{\\text{Bc}} \\right) \\times 100,\\]\n", - "\n", - "where Bt the number of blood-fed mosquitoes in the treatment hut and Bc the number of blood-fed mosquitoes in the control hut.\n", - "\n", - "\\[\\text{Killing}\\,\\text{effect}(\\%) = \\frac{\\text{Kt} - \\text{Kc}}{\\text{Tc}} \\times 100,\\]\n", - "\n", - "where Kt is the number of mosquitoes killed in the treatment huts, Kc is the number of mosquitoes killed in the control huts, and Tc is the total number of mosquitoes collected from the control.\n", - "\n", - "header: Results\n", - "\n", - "PermaNet(r) Dual demonstrated significantly improved efficacy, compared to PermaNet(r) 3.0 and PermaNet(r) 2.0, against the pyrethroid-resistant _An. gambiae s.l._ Indeed, the experimental hut trial data showed that the mortality and blood-feeding inhibition in the wild pyrethroid-resistant _An. gambiae s.l._ were overall significantly higher with PermaNet(r) Dual compared with PermaNet(r) 3.0 and PermaNet(r) 2.0, for both unwashed and washed samples. The mortality with unwashed and washed samples were 93.6 +- 0.2% and 83.2 +- 0.9% for PermaNet(r) Dual, 37.5 +- 2.9% and 14.4 +- 3.3% for PermaNet(r) 3.0, and 7.4 +- 5.1% and 11.7 +- 3.4% for PermaNet(r) 2.0, respectively. Moreover, unwashed and washed samples produced the respective percentage blood-feeding inhibition of 41.4 +- 6.9% and 43.7 +- 4.8% with PermaNet(r) Dual, 51.0 +- 5.7% and 9.8 +- 3.6% with PermaNet(r) 3.0, and 12.8 +- 4.3% and - 13.0 +- 3.6% with PermaNet(r) 2.0. Overall, PermaNet(r) Dual also induced higher or similar deterrence, exophily and personal protection when compared with the standard PermaNet(r) 3.0 and PermaNet(r) 2.0 reference nets, with both unwashed and\n", - "washed net samples. In contrast to cone bioassays, tunnel tests predicted the efficacy of PermaNet(r) Dual seen in the current experimental hut trial.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ITNCondition` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Tunnel test\n", - "\n", - "The tunnel test outcomes confirmed the cone bioassay results for the susceptible _An. gambiae s.s._ Kisumu strain, with strong blood-feeding inhibition and high mortality in all nets being above the WHO tunnel test thresholds (>= 90% blood-feeding inhibition or >= 80% mortality) (Fig. 4). The blood-feeding inhibition was high only in unwashed and used samples of PermaNet(r) Dual (A) (92.4%), PermaNet(r) Dual (B) (91.6%) and PermaNet(r) 3.0 (92.3%) (Fig. 4A). The mortality was very high (100%) in unwashed or washed and unused or used samples of all nets (PermaNet(r) Dual, PermaNet(r) 3.0 and PermaNet(r) 2.0) (Fig. 4B), thus showing their good efficacy against this pyrethroid-susceptible _An. gambiae_ Kisumu strain. Additional file shows the Kisumu strain mortality with tunnel tests in more detail (see Additional file 4: Table S4). For the pyrethroid-resistant _An. gambiae s.l._, only washed and unused PermaNet(r) Dual (A) induced a strong blood-feeding inhibition (91.3%) being above the WHO tunnel cut-off of 90% (Fig. 5A). However, the mortality with all samples (unwashed or washed and unused) of PermaNet(r) Dual (85.2-94.9%) were higher compared with PermaNet(r) 3.0 and PermaNet(r) 2.0 (Fig. 5B), and consistent with the higher efficacy of PermaNet(r) Dual against the free-flying pyrethroid-resistant _An. gambiae s.l._ Tiassale strain populations observed in the concurrent experimental hut trials. Additional file shows the pyrethroid-resistant Tiassale strain mortality with tunnel tests in more detail (see Additional file 5: Table S5).\n", - "\n", - "header: Background: Methods\n", - "\n", - "PermaNet(r) Dual, PermaNet(r) 3.0 and PermaNet(r) 2.0, unwashed and washed (20 washes), were tested against free-flying pyrethroid-resistant _An. gambiae s.l._ in the experimental huts in Tiassale, Cote d'lvoire from March to August 2020. Complementary laboratory cone bioassays (daytime and 3-min exposure) and tunnel tests (nightly and 15-h exposure) were performed against pyrethroid-susceptible _An. gambiae_ sensu stricto (_S.S._) (Kisumu strain) and pyrethroid-resistant _An. gambiae s.l._ (Tiassale strain).\n", - "\n", - "header: Comparison of laboratory bioassay results with hut trial results\n", - "\n", - "Comparing the laboratory cone bioassay and tunnel test results with the experimental hut trial results with the same pyrethroid-resistant _An. gambiae s.l._ strain showed that these laboratory bioassays predicted the response in the huts for PermaNet(r) 3.0 and PermaNet(r) 2.0. Indeed, the unwashed and washed PermaNet(r) 3.0 and PermaNet(r) 2.0 induced relatively lower mortality in the pyrethroid-resistant _An. gambiae_ strain with the cone bioassays, the tunnel test and the hut trial. Focussing on the bioefficacy of PermaNet(r) Dual, the respective mortality rates in the cone, tunnel and hut were 14.0%, 84.5% and 94.9% for unwashed PermaNet(r) Dual (A), 24.0%, 86.5% and 90.2% for unwashed PermaNet(r) Dual (B), and 10.0%, 87.5% and 90.4% for washed PermaNet(r) Dual (B). This suggests that laboratory tunnel tests are more predictive of the performance of PermaNet(r) Dual in experimental huts. Additionally, there were correlations in the blood-feeding rates and blood-feeding inhibition between the tunnel test results and the hut trial results. The high mortality and strong blood-feeding inhibition of PermaNet(r) Dual in tunnel tests with the pyrethroid-resistant _An. gambiae_ Tiassale strain shows that the chlorfenapyr component of PermaNet(r) Dual provided good efficacy against pyrethroid-resistant _Anopheles_.\n", - "\n", - "header: Conclusion\n", - "\n", - "The deltamethrin-chlorfenapyr-coated PermaNet(r) Dual induced a high efficacy and performed better than the deltamethrin-PBO PermaNet(r) 3.0 and the deltamethrin-only PermaNet(r) 2.0, testing both unwashed and 20 times washed samples against the pyrethroid-susceptible and resistant strains of _An. gambiae s.l._ The inclusion of chlorfenapyr with deltamethrin in PermaNet(r) Dual net greatly improved protection and control of pyrethroid-resistant _An. gambiae_ populations. PermaNet(r) Dual thus represents a promising tool, with a high potential to reduce malaria transmission and provide community protection in areas compromised by mosquito vector resistance to pyrethroids.\n", - "\n", - "header: Availability of data and materials\n", - "\n", - "All relevant data are within the manuscript.\n", - "\n", - "header: Small-scale field evaluation of PermaNet(r): Abstract\n", - "\n", - "Dual (a long-lasting net coated with a mixture of chlorfenapyr and deltamethrin) against pyrethroid-resistant _Anopheles gambiae_ mosquitoes from Tiassale, Cote d'lvoire\n", - "\n", - "Julien Z. B. Zahouli\n", - "\n", - "Julien Z. B. Zahouli\n", - "\n", - "Julien.zahouli@crsrs.ci\n", - "\n", - "Constant A. V. Edi\n", - "\n", - "1Laurence A. Yao\n", - "\n", - "1Emmanuelle G. Lisro\n", - "\n", - "1Marc Adou\n", - "\n", - "1Inza Kone\n", - "\n", - "1Graham Small\n", - "\n", - "2Leanore D. Sternberg\n", - "\n", - "28Benjamin G. Koudou\n", - "\n", - "\n", - "\n", - "Due to the rapid expansion of pyrethroid-resistance in malaria vectors in Africa, Global Plan for insecticide Resistance Management (GIPRM) has recommended the development of long-lasting insecticidal nets (LLINs), containing insecticide mixtures of active ingredients with different modes of action to mitigate resistance and improve LLIN efficacy. This good laboratory practice (GLP) study evaluated the efficacy of the chlorfenapyr and deltamethrin-coated PermaNet(r) Dual, in comparison with the deltamethrin and synergismt piperonyl butoxide (PBO)-treated PermaNet(r) 3.0 and the deltamethrin-coated PermaNet(r) 2.0, against wild free-flying pyrethroid-resistant _Anopheles gambiae_ sensu lato (_S.I._), in experimental huts in Tiassale, Cote d'lvoire (West Africa).\n", - "\n", - "header: Supplementary Information\n", - "\n", - "The online version contains supplementary material available at [https://doi.org/10.11016/s12936-023-04455-z](https://doi.org/10.11016/s12936-023-04455-z).\n", - "\n", - "header: Background\n", - "\n", - "According to the latest World Malaria Report 2022 of the World Health Organization (WHO), there were 247 million malaria cases and 619,000 malaria deaths in 84 malaria endemic countries worldwide in 2021 [1, 2]. This represents about 13.4 million more cases in 2021 compared to 2019 attributable to disruptions to essential malaria services during the COVID-18 pandemic [1]. The WHO African Region, with an estimated 234 million cases in 2021, accounted for about 95% of global cases malaria [1]. The recent decline of malaria burden from 2000 to 2019 was largely due to the massive distribution and use of long-lasting insecticidal nets (LLINs) (2.5 billion LLINs were delivered from 2004 to 2021) for _Anopheles_ mosquito vector control [1]. The malaria burden reduction is now slowing down and is threatened by the spread of resistance to pyrethroids (78 of 88 endemic countries have detected resistance to at least one insecticide class reported to the WHO from 2010 to 2020) [1]. The WHO Global Plan for Insecticide Resistance Management (GPIRM) has recommended the development of LLINs with insecticide mixtures of active ingredients with different modes of action to mitigate resistance [3]. The WHO Global Technical Strategy (GTS) aims for a reduction of malaria case incidence and mortality rate of at least 40% by 2020, 75% by 2025 and 90% by 2030 from the 2015 baseline [1, 4]. To meet these targets, GTS has called for the development of new tools, with combined or more effective insecticide molecules to control insecticide-resistant _Anopheles_ vectors [4]. These new vector control tools must incorporate new insecticide molecules and/or insecticide mixtures containing at least two active ingredients with different modes of action for the management of malaria vector resistance to insecticides [1, 3].\n", - "\n", - "Malaria is endemic throughout Cote d'Ivoire and represents the leading cause of mortality and morbidity in the country. Several studies have shown a wide spread resistance in local _Anopheles_ to most of the insecticide classes currently used in malaria vector control (e.g. pyrethroids, DDT and carbamates) [5-8]. The existence of multiple mechanisms of resistance in the main vector, _Anopheles gambiae_ sensu lato (_s.l._) threatens the efficacy of vector control tools currently used in Cote d'Ivoire, including LLINs [9-11]. Meiwald et al. [11] found that pyrethroid resistance is associated with significant overexpression of _CYP6P4, CYP6P3,_ and _CYP6Z1_ in _Anopheles coluzzii_ in Cote d'Ivoire. High allelic frequencies of knock-down resistance (_kdr_) _L1014F_ mutation (range: 0.46-1), relatively low frequencies of the _ace-1R_ mutation in the acetylcholinesterase gene associated with target-site insensitivity to carbamates and organophosphates (<0.5), and elevated activity of insecticide detoxifying enzymes (mainly mixed function oxidases (MFOs), esterase and glutathione S-transferase (GST)), have been reported in Cote d'Ivoire [5, 7, 10]. Recent laboratory (WHO tube and CDC bottle) bioassays against local pyrethroid-resistant _An. gambiae_ from Cote d'Ivoire have shown that pyrethroids induce low mortality, whilst pre-exposure to the synergist piperonyl butoxide (PBO) increases the mortality but does not restore fully the susceptibility due to resistance [9]. However, the pyrrole insecticide chlorfenapyr induces higher mortality in resistant _An. gambiae_ compared with pyrethroids alone or combined with PBO in Cote d'Ivoire [9].\n", - "\n", - "The present good laboratory practice (GLP) study evaluated the bio-efficacy of a new candidate LLIN, PermaNet(r) Dual, against pyrethroid-resistant _An. gambiae s.l._ in comparison with the WHO Prequalification Unit, Vector Control Product Assessment Team (PQT/VCP) listed standard LLINs, PermaNet(r) 2.0 and PermaNet(r) 3.0, through the conduct of an experimental hut trial and laboratory bioassays in Tiassale, Cote d'Ivoire. PermaNet(r) Dual has a mixture of the pyrrole chlorfenapyr and the pyrethroid deltamethrin coated onto a polyester fabric. PermaNet(r) 3.0 is treated with deltamethrin and PBO, and PermaNet(r) 2.0 is treated with deltamethrin only. Chlorfenapyr is a pro-insecticide activated by the oxygenase function of cytochrome P450s and oxidative removal of the N-ethoxymethyl\n", - "group leads to a toxic form identified as CL 303,268. The toxic form uncouples oxidative phosphorylation in the mitochondria, resulting in disruption of the production of adenosine triphosphate and loss of energy, leading to cell dysfunction and ultimately death of the insect [12]. The WHO has received some resistance monitoring data for chlorfenapyr, but these data are insufficient to assess the potential presence of resistance to this insecticide [1]. Deltamethrin is a neurotoxic insecticide and has excito-repellent effects on mosquitoes. PBO, used on PermaNet(r) 3.0, is a synergist which inhibits mixed function oxidases, blocking the detoxification of pyrethroids and at least partially restoring pyrethroid susceptibility [1, 13]. Pyrethroid-resistant strains of _Anopheles_ have so far been found to be susceptible to chlorfenapyr [9, 14-18]. Thus, the hypothesis of the current study was that chlorfenapyr would kill the pyrethroid-resistant _An. gambiae_ population in Tiassale, and PermaNet(r) Dual would induce higher mortality compared to both PermaNet(r) 3.0 and PermaNet(r) 2.0 in the experimental huts, and the supplementary laboratory cone and tunnel bioassays could predict these hut trial outcomes.\n", - "\n", - "header: Supporting laboratory testing of net samples\n", - "\n", - "Standard WHO cone bioassays and tunnel tests were conducted with unwashed and washed nets under laboratory conditions, to predict their responses in the field experimental huts. The insecticide susceptible Kisumu strains and field-collected F0 generation of pyrethroid-resistant Tiassale strain of _An. gambiae_ were tested with samples (25 cm x 25 cm) cut from each of the eight net \n", - "types (unwashed and washed net samples) before and after their inclusion into the hut trial [23]. For the tunnel tests, tunnels were divided into two sections by netting samples held in a frame. Nine holes of 1 cm in diameter were cut in each net sample (with one hole located at the centre of the square, and the other eight equidistant and located 5 cm from the border), and the surface of netting available to the mosquitoes was 400 cm\\({}^{2}\\) (20 cm \\(\\times\\) 20 cm).\n", - "\n", - "For each type of net and wash status, 100 non-blood-fed, 2-5-day-old females per strain were subjected to 3-min exposure in cone bioassays in replicates of five mosquitoes per cone according to the WHO guidelines [22]. For the tunnel tests, 100 non-blood-fed, 5-8-day-old mosquito females per strain were subjected to a 15-h exposure overnight using guinea pig as host, following the WHO guidelines [23]. Testing and holding conditions were 27 +- 2 degC and 80 +- 10% relative humidity. The 60-min knockdown for cone bioassays, blood-feeding status for tunnel tests and 24, 48 and 72-h mortality for both methods were recorded.\n", - "\n", - "header: Results\n", - "\n", - "The outcomes of the current experimental hut trial showed that the parameters of the net efficacy against the pyrethroid-resistant _An. gambiae s.l._ Tiassale population varied as a function of net type and wash status, with the performance of PermaNet(r) Dual being better overall compared with PermaNet(r) 3.0 and PermaNet(r) 2.0 (Fig. 1 and Table 1).\n", - "\n", - "header: Additional file 3: Table 53.\n", - "\n", - "Mean knock-down and mortality rates in multi-resistant _Anopheles gambiae s.l._ (Tissale strain) exposed to long-lasting insecticidal nets using cone bioassays before and after experimental hut trial in Tassale, Cape d'hore.\n", - "\n", - "header: Chemical analysis\n", - "\n", - "Pieces of netting were sampled from unwashed and washed PermaNet(r) Dual (A and B), PermaNet(r) 3.0 and PermaNet(r) 2.0 LLINs before and after being used in the hut trial, in accordance with the WHO protocol for chemical analysis [25]. All sampled net pieces were labelled and stored individually in aluminium foil at 3.7-4.2 degC. The net pieces were then shipped to the Vestergaard's ISO IEC17025 laboratory in Vietnam for chemical analysis of chlorfenapyr and deltamethrin. Deltamethrin and PBO contents were determined following the Collaborative International Pesticides Analytical Council Ltd (CIPAC) (i.e. ClPAC 33/LN/(M2)/3) methods [26]. Briefly, chlorfenapyr content was analysed using in-house method VCL-098-20 that was undergoing ClIPAC validation and was still to be published. Chlorfenapyr content was extracted from the PermaNet(r) Dual net using a mixture of n-hexane and 1,4-dioxane (95:5, v:v) solvents with an internal standard of dibutylphthalate added. The mixture was shaken by shaking machine to extract chlorfenapyr. Extracted solution was filtered through 0.45 mm Teflon membrane and analysed by a normal phase high performance liquid chromatography for chlorfenapyr concentration, detector UV 236 nm.\n", - "\n", - "header: Ethics approval and consent to participate: Consent for publication\n", - "\n", - "Not applicable.\n", - "\n", - "header: Blood-feeding and personal protection\n", - "\n", - "The blood-feeding effect of the nets in wild pyrethroid-resistant _An. gambiae_ that entered the trial huts and personal protection are presented in Fig. 1A and Table 1. Before washing, the percentage blood-feeding with PernaNet(r) Dual (A) (36.7 +- 4.0%) did not differ significantly from PernaNet(r) Dual (B) (37.5 +- 4.4%) and PernaNet(r) 2.0 (55.7 +- 3.7%), but was significantly higher than PernaNet(r) 2.0 (31.3 +- 4.4%) (z = - 2.17; p = 0.030). The percentage blood-feeding for unwashed PernaNet(r) Dual (B) was similar to unwashed samples of PernaNet(r) 2.0 (z = 1.74; p = 0.081) and PernaNet(r) 3.0 (z = - 1.49; p = 0.136). Washing 20 times did not influence significantly the percentage blood-feeding in PernaNet(r) Dual (B) (z = 0.10; p = 0.921). After washing,\n", - "the percentage blood-feeding of PermaNet(r) Dual (B) (36.0 +- 3.7%) was substantially lower, but without significant differences when compared with PermaNet(r) 3.0 (57.7 +- 3.7%) (z = 1.71; p = 0.087), PermaNet(r) 2.0 (72.3 +- 3.2%) (z = 1.78; p = 0.076) and the untreated control net (z = 1.72; p = 0.085). For blood-feeding inhibition, unwashed PermaNet(r) Dual (A) (42.5 +- 6.8%) was similar to unwashed PermaNet(r) Dual (B) (41.4 +- 6.9%) (z = 0.25; p = 0.802) and washed PermaNet(r) Dual (B) (43.7 +- 4.8%) that was not affected by washing (z = - 0.41; p = 0.682). Compared with PermaNet(r) 3.0, the blood-feeding inhibition of PermaNet(r) Dual (B) was significantly higher before washing (z = - 0.72; p = 0.469), and significantly lower after washing (z = - 1.92; p = 0.045). However, both unwashed and washed PermaNet(r) Dual (B) provided, respectively, significantly higher blood-feeding inhibition than unwashed and washed PermaNet(r) 2.0 (all p < 0.05). The personal protection was similar between unwashed samples of PermaNet(r) Dual (A) (58.8 +- 3.5%) and PermaNet(r) Dual (B) (60.8 +- 3.8%) (z = - 0.04; p = 0.968). Unwashed PermaNet(r) Dual (B) resulted in a personal protection that was similar to unwashed PermaNet(r) 3.0 (62.9 +- 4.2%) (z = 0.21; p = 0.738), and significantly different from unwashed PermaNet(r) 2.0 (28.8 +- 1.9%) (z = 3.21; p = 0.001). With 20 washes, the personal protection with PermaNet(r) Dual (B) declined significantly from 60.8 +- 3.8% to 20.2 +- 1.1% (z = - 2.96; p = 0.003). However, washed PermaNet(r) Dual (B) provided significantly higher personal protection compared with their washed counterparts of PermaNet(r) 3.0 (9.8 +- 0.7%) (z = 2.89; p = 0.004) and PermaNet(r) 2.0 (- 32.6 +- 2.2%) (z = 2.93; p = 0.003).\n", - "\n", - "header: Additional file 2: Table 52.\n", - "\n", - "Mean knock-down and mortality rates in multi-resistant _Anopheles gambiae s.l._ (bisumu strain) exposed to long-lasting insecticidal nets using cone bioassays before and after experimental hut trial in Tassale, Cape d'hore.\n", - "\n", - "header: Conclusion\n", - "\n", - "The present small-scale GLP experimental hut study demonstrated that the deltamethrin- chlorfenapyr PermaNet(r) Dual net has high bio-efficacy, inducing significantly higher mortality and blood-feeding inhibition effects in the wild insecticide-resistant _An. gambiae s.l._ when compared with the deltamethrin-PBO PermaNet(r) 3.0 and deltamethrin-only PermaNet(r) 2.0. The inclusion of chlorfenapyr with pyrethroid in PermaNet(r) Dual net has greatly improved protection and control of free-flying wild pyrethroid-resistant _An. gambiae_ populations. The chlorfenapyr-deltamethrin-coated PermaNet(r) Dual net has great potential to reduce malaria transmission, particularly in areas compromised by high level of pyrethroid resistance in _Anopheles_ mosquitoes. Further validations in large-scale field trials are required to assess the effectiveness, the durability and the acceptability of this new tool for malaria vector control.\n", - "\n", - "header: Results\n", - "\n", - "PermaNet(r) Dual demonstrated significantly improved efficacy, compared to PermaNet(r) 3.0 and PermaNet(r) 2.0, against the pyrethroid-resistant _An. gambiae s.l._ Indeed, the experimental hut trial data showed that the mortality and blood-feeding inhibition in the wild pyrethroid-resistant _An. gambiae s.l._ were overall significantly higher with PermaNet(r) Dual compared with PermaNet(r) 3.0 and PermaNet(r) 2.0, for both unwashed and washed samples. The mortality with unwashed and washed samples were 93.6 +- 0.2% and 83.2 +- 0.9% for PermaNet(r) Dual, 37.5 +- 2.9% and 14.4 +- 3.3% for PermaNet(r) 3.0, and 7.4 +- 5.1% and 11.7 +- 3.4% for PermaNet(r) 2.0, respectively. Moreover, unwashed and washed samples produced the respective percentage blood-feeding inhibition of 41.4 +- 6.9% and 43.7 +- 4.8% with PermaNet(r) Dual, 51.0 +- 5.7% and 9.8 +- 3.6% with PermaNet(r) 3.0, and 12.8 +- 4.3% and - 13.0 +- 3.6% with PermaNet(r) 2.0. Overall, PermaNet(r) Dual also induced higher or similar deterrence, exophily and personal protection when compared with the standard PermaNet(r) 3.0 and PermaNet(r) 2.0 reference nets, with both unwashed and\n", - "washed net samples. In contrast to cone bioassays, tunnel tests predicted the efficacy of PermaNet(r) Dual seen in the current experimental hut trial.\n", - "\n", - "header: Outcomes measures\n", - "\n", - "The following entomological outcomes were used to evaluate the efficacy of each treatment arm in the current experimental hut trial [23]:\n", - "\n", - "1. Deterrence: proportional reduction in the number of mosquitoes caught in treated hut relative to the number caught in the control hut.\n", - "2. Exiting rate: percentage of the mosquitoes collected from the veranda trap out of all mosquitoes collected.\n", - "3. Induced exophily: proportional reduction of mosquitoes found in the exit and veranda traps relative to control hut.\n", - "4. Blood-feeding: percentage of blood-fed mosquitoes relative to the total collected.\n", - "5. Blood-feeding inhibition: proportional reduction in blood feeding percentage in treated huts relative to the control hut.\n", - "6. Mortality: percentage of dead mosquitoes found dead in hut in the morning (immediate mortality) or after being caught alive and dead during holding (delayed mortality) in treatment huts out of mosquitoes collected, and corrected for control mortality.\n", - "7. Personal protection: the proportional reduction in the number of blood-fed mosquitoes in the treated huts relative to the number of blood-fed mosquitoes in the untreated control.\n", - "8. Killing effect: the proportional reduction in the number of mosquitoes killed in the treated huts relative to the number of mosquitoes killed in the untreated control.\n", - "\n", - "The formulas of key entomological outcomes measured in this study are [23]:\n", - "\n", - "\\[\\text{Deterrence}(\\%) = \\frac{\\text{Nc} - \\text{Nt}}{\\text{Nc}} \\times 100 = \\left( 1 - \\frac{\\text{Nt}}{\\text{Nc}} \\right) \\times 100,\\]\n", - "\n", - "where Nt the total number of mosquitoes collected in the treatment hut and veranda/exit traps and Nc the total number of mosquitoes in the control hut and veranda/exit traps.\n", - "\n", - "\\[\\text{Exiting}\\,\\text{rate}(\\%) = \\frac{\\text{n}}{\\text{N}} \\times 100,\\]\n", - "\n", - "where n is the number of mosquitoes from veranda and window traps, while N is the total number of mosquitoes collected in the hut.\n", - "\n", - "\\[\\text{Induced}\\,\\text{exophily}(\\%) = \\frac{\\text{Pt} - \\text{Pc}}{\\text{Pc}} \\times 100\\] \\[= \\left( \\frac{\\text{Pt}}{\\text{Pc}} - 1 \\right) \\times 100,\\]\n", - "\n", - "where Pt is the proportion of mosquitoes from veranda and window traps of treated hut while Pc is the number of mosquitoes from veranda and window traps of untreated control hut.\n", - "\n", - "\\[\\text{Blood} - \\text{feeding}\\,\\text{inhibition}(\\%) = \\frac{\\text{Pc} - \\text{Pt}}{\\text{Pc}} \\times 100,\\]\n", - "\n", - "where Pt the proportion of blood-fed mosquitoes in the treatment hut, and Pc the proportion of blood-fed mosquitoes in the control hut.\n", - "\n", - "\\[\\text{Personal}\\,\\text{protection}(\\%) = \\frac{\\text{Bc} - \\text{Bt}}{\\text{Bc}} \\times 100\\] \\[= \\left( 1 - \\frac{\\text{Bt}}{\\text{Bc}} \\right) \\times 100,\\]\n", - "\n", - "where Bt the number of blood-fed mosquitoes in the treatment hut and Bc the number of blood-fed mosquitoes in the control hut.\n", - "\n", - "\\[\\text{Killing}\\,\\text{effect}(\\%) = \\frac{\\text{Kt} - \\text{Kc}}{\\text{Tc}} \\times 100,\\]\n", - "\n", - "where Kt is the number of mosquitoes killed in the treatment huts, Kc is the number of mosquitoes killed in the control huts, and Tc is the total number of mosquitoes collected from the control.\n", - "\n", - "header: Discussion\n", - "\n", - "The current study evaluated the efficacy of PermaNet(r) Dual, a new candidate net coated with a mixture of chlorfenapyr and deltamethrin, against _An. gambiae_ in a small-scale GLP but study in Tiassale, Cote d'Ivoire, with supporting exploratory laboratory cone and tunnel\n", - "\n", - "Fig. 4: Mean blood-feeding inhibition (**A**) and corrected mortality (**B**) rates in the susceptible _Anopheles gambiae_ s.s. Kisumu strain exposed to net samples using tunnel tests before and after experimental hut trial in Tiassale, Côte d’Ivoire. Error bars show the standard error of the mean\n", - "bioassays. WHO-prequalified PermaNet(r) 3.0 (co-treated with deltamethrin and PBO) and PermaNet(r) 2.0 (treated with deltamethrin only) were used as the reference nets. In this GLP but study, PermaNet(r) Dual performed better than PermaNet(r) 3.0 and PermaNet(r) 2.0, in terms of mortality and blood-feeding inhibition, for both unwashed and unstressed cases, respectively.\n", - "\n", - "Fig. 5: Mean of blood-feeding inhibition (**A**) and corrected mortality (**B**) rates in the pyrethroid-resistant _Anopheles gambiae s1_. Tassale strain exposed to net samples using tunnel tests before and after experimental hut trial in Tassale, Côte d’thovie. Error bars show the standard error of the mean \n", - "and washed samples. Unlike the cone bioassays, the tunnel tests successfully confirmed the field efficacy of the nets. Briefly, this hut trial showed the benefit of mixing deltamethrin and chlorfenapyr together in a long-lasting net, PermaNet(r) Dual, for an effective control of pyrethroid-resistant _Anopheles._\n", - "\n", - "The current experimental hut study demonstrated that PermaNet(r) Dual had increased efficacy against highly pyrethroid-resistant _An. gambiae._ Indeed, hut mortality of _An. gambiae_ Tiassale strain was significantly higher with PermaNet(r) Dual (>83%) in comparison with PermaNet(r) 3.0 (<38%) and PermaNet(r) 2.0 (<12%), for both unwashed and 20 times washed samples (Fig. 1B and Table 1). This PermaNet(r) Dual efficacy was similar to chlorfenapyr and alpha-cypermethrin mixture-coated Intercept G2 in West and East Africa [16, 17, 27, 28, 29, 30, 31, 32]. The good performance of PermaNet(r) Dual might be attributed to the susceptibility of the highly pyrethroid-resistant _An. gambiae_ s.l. to chlorfenapyr [9, 11]. Due to the novel mode of action of chlorfenapyr, the present pyrethroid-resistance mechanisms did not provide any cross-resistance to this insecticide [12]. Indeed, chlorfenapyr-treated tool has been shown to control a number of different multiple-insecticide-resistant _Anopheles_ populations [14, 15, 27, 28, 29, 30, 31, 32].\n", - "\n", - "This hut study showed that the percentage blood-feeding in wild pyrethroid-resistant _An. gambiae_ population was lower for PermaNet(r) Dual (unwashed and washed) compared with PermaNet(r) 2.0 (unwashed and washed) and washed PermaNet(r) 3.0, but slightly higher than\n", - "unwashed PermaNet(r) 3.0 (Fig. 1A and Table 1). Likewise, blood-feeding inhibition with PermaNet(r) Dual was comparable or stronger than with PermaNet(r) 2.0 and washed PermaNet(r) 3.0. This PermaNet(r) Dual blood-feeding inhibition outcome is consistent with that caused by Intercept G2 in earlier hut trials in West Africa [27-31], and may be explained by the irritant effects of the deltamethrin [32-35]. While unwashed PermaNet(r) Dual and PermaNet(r) 3.0 produced similar levels of blood-feeding inhibition, the 20 times washed PermaNet(r) Dual induced a statistically greater blood-feeding inhibition in comparison with both PermaNet(r) 3.0 and PermaNet(r) 2.0 washed 20 times. This suggests that PermaNet(r) Dual may have performed better than PermaNet(r) 3.0 and PermaNet(r) 2.0 over time. PermaNet(r) Dual effectiveness for inhibiting blood-feeding could imply its good potential for reducing the human-biting and blood-feeding, adding value into its killing effects in malaria vectors.\n", - "\n", - "In the present hut study, unwashed PermaNet(r) Dual deterrence effect against the wild pyrethroid-resistant _An. gambiae_ population was comparable to that recorded in PermaNet(r) 2.0 and PermaNet(r) 3.0. The deltamethrin component of PermaNet(r) Dual has a deterrence effect and may have induced exiting in mosquitoes. However, the 20 times washed PermaNet(r) Dual did not have a deterrence effect (Table 1), probably due to a reduction of the chemical contents (Table 2). A dipped chlorfenapyr net did seem to have a deterrence effect, but did not have a significant effect on exiting rates in West Africa [15, 16, 26-31]. The higher deterrence effect may be due to both the chlorfenapyr and deltamethrin components, but higher exiting rate would likely be due only to the deltamethrin component. Thus, PermaNet(r) Dual may have both deterrent and excito-repellency effects, providing personal protection against pyrethroid-resistant _An. gambiae_ mosquitoes, and reducing human-vector contacts, which may, in turn, lead to an increased user acceptance [36].\n", - "\n", - "While standard laboratory cone bioassays failed to predict PermaNet(r) Dual efficacy against pyrethroid-resistant _An. gambiae s.l.,_ tunnel tests successfully predicted its efficacy against the same strain in the semi-field experimental huts. Both cone and tunnel bioassays met the WHO criteria [44], with the susceptible _An. gambiae s.s._ Kisumu strain. However, _An. gambiae s.s._ Kisumu strain mortality against unwashed and used PermaNet(r) Dual (A) was lower (34%) with cone bioassay (Fig. 2B) probably due to the reduction of the chemical bioavailability on netting fibre surface of net samples tested, or the inappropriateness of cone bioassay method for evaluation of the chlorfenapyr-coated PermaNet(r) Dual as the mortality was higher (100%) with tunnel test (Fig. 4B). With the wild pyrethroid-resistant _An. gambiae s.l._ Tiassale strain, only the tunnel tests achieved high efficacy that was consistent with that observed in the huts with PermaNet(r) Dual. The difference in PermaNet(r) Dual efficacy between both _Anopheles_ Kiumu and Tiassale strains may be explained by the difference in the levels of their resistance to insecticides. However, the lower efficacy of PermaNet(r) Dual against pyrethroid-resistant _An. gambiae s.l._ with cone bioassays (daytime and 3-min exposure) compared with tunnel tests (night-time and 15-h exposure) may be attributable to the slow mode of action of chlorfenapyr and that mosquitoes need to be metabolically active for the activation of the chlorfenapyr pro-insecticide [12, 13, 37]. Indeed, chlorfenapyr has a previously been observed to have a slower action and delayed toxic activity of 2-3 days post-exposure compared to other insecticides (pyrethroids and organophosphates) used in mosquito vector control [14, 28, 29]. The cone bioassay method was developed to assess the bioefficacy of pyrethroid-only LLINs, and the use of this method to test LLINs containing non-neurotoxic insecticides, such as chlorfenapyr, may not necessarily be predictive of field impact, even with increased exposure time of mosquitoes inside the cones [16, 27]. In contrast, the tunnel test results with pyrethroid-resistant _An. gambiae s.l._ Tiassale strain (field-collected F0 generation) were more predictive of PermaNet(r) Dual efficacy in huts, as observed for other chlorfenapyr-coated nets, such as Interceptor(r) G2 [16, 27, 28]. Tunnel tests provide an increased exposure time of mosquitoes to the LLIN samples being tested, and being an overnight exposure. As the female mosquitoes in the tunnel tests are also exhibiting host-seeking behaviour and are, therefore, metabolically active, the activation of chlorfenapyr following tarsal pickup by mosquitoes may be more effective. The tunnel test was a better predictor of PermaNet(r) Dual field efficacy because exposure occurred at night when host-seeking mosquitoes are more vulnerable to chlorfenapyr. Tunnel test thus is a more reliable technique to assess the efficacy of a chlorfenapyr-treated net prior to field trials against free-flying mosquitoes [16, 38, 39].\n", - "\n", - "In PermaNet(r) Dual, deltamethrin and chlorfenapyr contents varied slightly, but complied with the dose interval limits of target specification [23]. This revealed a good homogeneity of the active ingredients' distribution over and a good retention of these active ingredients in PermaNet(r) Dual, thus resulting in high and similar mortality and blood-feeding inhibition between unwashed samples of PermaNet(r) Dual (A) and PermaNet(r) Dual (B). The reduction of chemical contents due to the loss of chlorfenapyr and deltamethrin with 20 washes had no apparent effect on PermaNet(r) Dual efficacy as the washed samples were still producing high mortality against the pyrethroid-resistant mosquitoes. Overall,\n", - "PernaNet(r) Dual chemical bioavailability was sufficient and produced high mortality in pyrethroid-resistant _Anopheles_ mosquitoes after 20 standardized washes (corresponding to a 3-year use) and over the hut trial.\n", - "\n", - "The high vector mortality and personal protection effect of the PernaNet(r) Dual found in this study are the desired outcomes of any vector control tool. The high mortality effects and the additive blood-feeding inhibition impacts induced by PernaNet(r) Dual in this hut trial are expected to substantially diminish the malaria vector density and biting rates in the field, and hence the transmission of malaria in the areas where vectors are resistant to insecticides [40-47]. Additionally, PernaNet(r) Dual performed better than the reference PernaNet(r) 3.0 and PernaNet(r) 2.0 nets, when washed 20 times, thus meeting the WHO hut trial criteria [23].\n", - "\n", - "However, these results need to be further validated in a large-scale field trial to assess the durability and acceptability of this new tool for malaria vector control [48-50]. A community trial would be the best way to evaluate the community level effect of this promising candidate net (i.e. PernaNet(r) Dual) against malaria transmission, by monitoring entomological infection rate, _Plasmodium_ prevalence and disease incidence [48-50]. Such a community trial could be a randomized controlled trial as with dual-active-ingredient LLINs (e.g. Interceptor G2) in Tanzania [49], soon in Benin [48, 50], and the pilot deployments that are part of the New Nets Project led by PATH [51]. Furthermore, PernaNet(r) Dual should be tested against wild populations of _Anopheles funestus_[32], or other main or secondary vectors of malaria in Africa [52-56]. Ultimately, in the present study, the series of hut and laboratory tests demonstrated that the chlorfenapyr component of PernaNet(r) Dual could make a major contribution to controlling the pyrethroid-resistant _An. gambiae_ populations. Furthermore, there were no adverse effects reported among hut sleepers and mosquito collectors during the trial in the huts where PernaNet(r) Dual were used, and this may possibly increase the rate of future user acceptability and improve the usage of this net for malaria vector control.\n", - "\n", - "header: Additional file 55.\n", - "\n", - "Up to 72-h mortality in multiple-resistant populations of _Anopheles gambiae s.l._ (Tissale strain) exposed to long-lasting insecticidal nets using tunnel tests before and after the experimental hut trial.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `Observation` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Tunnel test\n", - "\n", - "The tunnel test outcomes confirmed the cone bioassay results for the susceptible _An. gambiae s.s._ Kisumu strain, with strong blood-feeding inhibition and high mortality in all nets being above the WHO tunnel test thresholds (>= 90% blood-feeding inhibition or >= 80% mortality) (Fig. 4). The blood-feeding inhibition was high only in unwashed and used samples of PermaNet(r) Dual (A) (92.4%), PermaNet(r) Dual (B) (91.6%) and PermaNet(r) 3.0 (92.3%) (Fig. 4A). The mortality was very high (100%) in unwashed or washed and unused or used samples of all nets (PermaNet(r) Dual, PermaNet(r) 3.0 and PermaNet(r) 2.0) (Fig. 4B), thus showing their good efficacy against this pyrethroid-susceptible _An. gambiae_ Kisumu strain. Additional file shows the Kisumu strain mortality with tunnel tests in more detail (see Additional file 4: Table S4). For the pyrethroid-resistant _An. gambiae s.l._, only washed and unused PermaNet(r) Dual (A) induced a strong blood-feeding inhibition (91.3%) being above the WHO tunnel cut-off of 90% (Fig. 5A). However, the mortality with all samples (unwashed or washed and unused) of PermaNet(r) Dual (85.2-94.9%) were higher compared with PermaNet(r) 3.0 and PermaNet(r) 2.0 (Fig. 5B), and consistent with the higher efficacy of PermaNet(r) Dual against the free-flying pyrethroid-resistant _An. gambiae s.l._ Tiassale strain populations observed in the concurrent experimental hut trials. Additional file shows the pyrethroid-resistant Tiassale strain mortality with tunnel tests in more detail (see Additional file 5: Table S5).\n", - "\n", - "header: Comparison of laboratory bioassay results with hut trial results\n", - "\n", - "Comparing the laboratory cone bioassay and tunnel test results with the experimental hut trial results with the same pyrethroid-resistant _An. gambiae s.l._ strain showed that these laboratory bioassays predicted the response in the huts for PermaNet(r) 3.0 and PermaNet(r) 2.0. Indeed, the unwashed and washed PermaNet(r) 3.0 and PermaNet(r) 2.0 induced relatively lower mortality in the pyrethroid-resistant _An. gambiae_ strain with the cone bioassays, the tunnel test and the hut trial. Focussing on the bioefficacy of PermaNet(r) Dual, the respective mortality rates in the cone, tunnel and hut were 14.0%, 84.5% and 94.9% for unwashed PermaNet(r) Dual (A), 24.0%, 86.5% and 90.2% for unwashed PermaNet(r) Dual (B), and 10.0%, 87.5% and 90.4% for washed PermaNet(r) Dual (B). This suggests that laboratory tunnel tests are more predictive of the performance of PermaNet(r) Dual in experimental huts. Additionally, there were correlations in the blood-feeding rates and blood-feeding inhibition between the tunnel test results and the hut trial results. The high mortality and strong blood-feeding inhibition of PermaNet(r) Dual in tunnel tests with the pyrethroid-resistant _An. gambiae_ Tiassale strain shows that the chlorfenapyr component of PermaNet(r) Dual provided good efficacy against pyrethroid-resistant _Anopheles_.\n", - "\n", - "header: Chemical analysis\n", - "\n", - "Pieces of netting were sampled from unwashed and washed PermaNet(r) Dual (A and B), PermaNet(r) 3.0 and PermaNet(r) 2.0 LLINs before and after being used in the hut trial, in accordance with the WHO protocol for chemical analysis [25]. All sampled net pieces were labelled and stored individually in aluminium foil at 3.7-4.2 degC. The net pieces were then shipped to the Vestergaard's ISO IEC17025 laboratory in Vietnam for chemical analysis of chlorfenapyr and deltamethrin. Deltamethrin and PBO contents were determined following the Collaborative International Pesticides Analytical Council Ltd (CIPAC) (i.e. ClPAC 33/LN/(M2)/3) methods [26]. Briefly, chlorfenapyr content was analysed using in-house method VCL-098-20 that was undergoing ClIPAC validation and was still to be published. Chlorfenapyr content was extracted from the PermaNet(r) Dual net using a mixture of n-hexane and 1,4-dioxane (95:5, v:v) solvents with an internal standard of dibutylphthalate added. The mixture was shaken by shaking machine to extract chlorfenapyr. Extracted solution was filtered through 0.45 mm Teflon membrane and analysed by a normal phase high performance liquid chromatography for chlorfenapyr concentration, detector UV 236 nm.\n", - "\n", - "header: Supplementary Information\n", - "\n", - "The online version contains supplementary material available at [https://doi.org/10.11016/s12936-023-04455-z](https://doi.org/10.11016/s12936-023-04455-z).\n", - "\n", - "header: Background: Methods\n", - "\n", - "PermaNet(r) Dual, PermaNet(r) 3.0 and PermaNet(r) 2.0, unwashed and washed (20 washes), were tested against free-flying pyrethroid-resistant _An. gambiae s.l._ in the experimental huts in Tiassale, Cote d'lvoire from March to August 2020. Complementary laboratory cone bioassays (daytime and 3-min exposure) and tunnel tests (nightly and 15-h exposure) were performed against pyrethroid-susceptible _An. gambiae_ sensu stricto (_S.S._) (Kisumu strain) and pyrethroid-resistant _An. gambiae s.l._ (Tiassale strain).\n", - "\n", - "header: Small-scale field evaluation of PermaNet(r): Abstract\n", - "\n", - "Dual (a long-lasting net coated with a mixture of chlorfenapyr and deltamethrin) against pyrethroid-resistant _Anopheles gambiae_ mosquitoes from Tiassale, Cote d'lvoire\n", - "\n", - "Julien Z. B. Zahouli\n", - "\n", - "Julien Z. B. Zahouli\n", - "\n", - "Julien.zahouli@crsrs.ci\n", - "\n", - "Constant A. V. Edi\n", - "\n", - "1Laurence A. Yao\n", - "\n", - "1Emmanuelle G. Lisro\n", - "\n", - "1Marc Adou\n", - "\n", - "1Inza Kone\n", - "\n", - "1Graham Small\n", - "\n", - "2Leanore D. Sternberg\n", - "\n", - "28Benjamin G. Koudou\n", - "\n", - "\n", - "\n", - "Due to the rapid expansion of pyrethroid-resistance in malaria vectors in Africa, Global Plan for insecticide Resistance Management (GIPRM) has recommended the development of long-lasting insecticidal nets (LLINs), containing insecticide mixtures of active ingredients with different modes of action to mitigate resistance and improve LLIN efficacy. This good laboratory practice (GLP) study evaluated the efficacy of the chlorfenapyr and deltamethrin-coated PermaNet(r) Dual, in comparison with the deltamethrin and synergismt piperonyl butoxide (PBO)-treated PermaNet(r) 3.0 and the deltamethrin-coated PermaNet(r) 2.0, against wild free-flying pyrethroid-resistant _Anopheles gambiae_ sensu lato (_S.I._), in experimental huts in Tiassale, Cote d'lvoire (West Africa).\n", - "\n", - "header: Outcomes measures\n", - "\n", - "The following entomological outcomes were used to evaluate the efficacy of each treatment arm in the current experimental hut trial [23]:\n", - "\n", - "1. Deterrence: proportional reduction in the number of mosquitoes caught in treated hut relative to the number caught in the control hut.\n", - "2. Exiting rate: percentage of the mosquitoes collected from the veranda trap out of all mosquitoes collected.\n", - "3. Induced exophily: proportional reduction of mosquitoes found in the exit and veranda traps relative to control hut.\n", - "4. Blood-feeding: percentage of blood-fed mosquitoes relative to the total collected.\n", - "5. Blood-feeding inhibition: proportional reduction in blood feeding percentage in treated huts relative to the control hut.\n", - "6. Mortality: percentage of dead mosquitoes found dead in hut in the morning (immediate mortality) or after being caught alive and dead during holding (delayed mortality) in treatment huts out of mosquitoes collected, and corrected for control mortality.\n", - "7. Personal protection: the proportional reduction in the number of blood-fed mosquitoes in the treated huts relative to the number of blood-fed mosquitoes in the untreated control.\n", - "8. Killing effect: the proportional reduction in the number of mosquitoes killed in the treated huts relative to the number of mosquitoes killed in the untreated control.\n", - "\n", - "The formulas of key entomological outcomes measured in this study are [23]:\n", - "\n", - "\\[\\text{Deterrence}(\\%) = \\frac{\\text{Nc} - \\text{Nt}}{\\text{Nc}} \\times 100 = \\left( 1 - \\frac{\\text{Nt}}{\\text{Nc}} \\right) \\times 100,\\]\n", - "\n", - "where Nt the total number of mosquitoes collected in the treatment hut and veranda/exit traps and Nc the total number of mosquitoes in the control hut and veranda/exit traps.\n", - "\n", - "\\[\\text{Exiting}\\,\\text{rate}(\\%) = \\frac{\\text{n}}{\\text{N}} \\times 100,\\]\n", - "\n", - "where n is the number of mosquitoes from veranda and window traps, while N is the total number of mosquitoes collected in the hut.\n", - "\n", - "\\[\\text{Induced}\\,\\text{exophily}(\\%) = \\frac{\\text{Pt} - \\text{Pc}}{\\text{Pc}} \\times 100\\] \\[= \\left( \\frac{\\text{Pt}}{\\text{Pc}} - 1 \\right) \\times 100,\\]\n", - "\n", - "where Pt is the proportion of mosquitoes from veranda and window traps of treated hut while Pc is the number of mosquitoes from veranda and window traps of untreated control hut.\n", - "\n", - "\\[\\text{Blood} - \\text{feeding}\\,\\text{inhibition}(\\%) = \\frac{\\text{Pc} - \\text{Pt}}{\\text{Pc}} \\times 100,\\]\n", - "\n", - "where Pt the proportion of blood-fed mosquitoes in the treatment hut, and Pc the proportion of blood-fed mosquitoes in the control hut.\n", - "\n", - "\\[\\text{Personal}\\,\\text{protection}(\\%) = \\frac{\\text{Bc} - \\text{Bt}}{\\text{Bc}} \\times 100\\] \\[= \\left( 1 - \\frac{\\text{Bt}}{\\text{Bc}} \\right) \\times 100,\\]\n", - "\n", - "where Bt the number of blood-fed mosquitoes in the treatment hut and Bc the number of blood-fed mosquitoes in the control hut.\n", - "\n", - "\\[\\text{Killing}\\,\\text{effect}(\\%) = \\frac{\\text{Kt} - \\text{Kc}}{\\text{Tc}} \\times 100,\\]\n", - "\n", - "where Kt is the number of mosquitoes killed in the treatment huts, Kc is the number of mosquitoes killed in the control huts, and Tc is the total number of mosquitoes collected from the control.\n", - "\n", - "header: Availability of data and materials\n", - "\n", - "All relevant data are within the manuscript.\n", - "\n", - "header: Conclusion\n", - "\n", - "The deltamethrin-chlorfenapyr-coated PermaNet(r) Dual induced a high efficacy and performed better than the deltamethrin-PBO PermaNet(r) 3.0 and the deltamethrin-only PermaNet(r) 2.0, testing both unwashed and 20 times washed samples against the pyrethroid-susceptible and resistant strains of _An. gambiae s.l._ The inclusion of chlorfenapyr with deltamethrin in PermaNet(r) Dual net greatly improved protection and control of pyrethroid-resistant _An. gambiae_ populations. PermaNet(r) Dual thus represents a promising tool, with a high potential to reduce malaria transmission and provide community protection in areas compromised by mosquito vector resistance to pyrethroids.\n", - "\n", - "header: Background\n", - "\n", - "According to the latest World Malaria Report 2022 of the World Health Organization (WHO), there were 247 million malaria cases and 619,000 malaria deaths in 84 malaria endemic countries worldwide in 2021 [1, 2]. This represents about 13.4 million more cases in 2021 compared to 2019 attributable to disruptions to essential malaria services during the COVID-18 pandemic [1]. The WHO African Region, with an estimated 234 million cases in 2021, accounted for about 95% of global cases malaria [1]. The recent decline of malaria burden from 2000 to 2019 was largely due to the massive distribution and use of long-lasting insecticidal nets (LLINs) (2.5 billion LLINs were delivered from 2004 to 2021) for _Anopheles_ mosquito vector control [1]. The malaria burden reduction is now slowing down and is threatened by the spread of resistance to pyrethroids (78 of 88 endemic countries have detected resistance to at least one insecticide class reported to the WHO from 2010 to 2020) [1]. The WHO Global Plan for Insecticide Resistance Management (GPIRM) has recommended the development of LLINs with insecticide mixtures of active ingredients with different modes of action to mitigate resistance [3]. The WHO Global Technical Strategy (GTS) aims for a reduction of malaria case incidence and mortality rate of at least 40% by 2020, 75% by 2025 and 90% by 2030 from the 2015 baseline [1, 4]. To meet these targets, GTS has called for the development of new tools, with combined or more effective insecticide molecules to control insecticide-resistant _Anopheles_ vectors [4]. These new vector control tools must incorporate new insecticide molecules and/or insecticide mixtures containing at least two active ingredients with different modes of action for the management of malaria vector resistance to insecticides [1, 3].\n", - "\n", - "Malaria is endemic throughout Cote d'Ivoire and represents the leading cause of mortality and morbidity in the country. Several studies have shown a wide spread resistance in local _Anopheles_ to most of the insecticide classes currently used in malaria vector control (e.g. pyrethroids, DDT and carbamates) [5-8]. The existence of multiple mechanisms of resistance in the main vector, _Anopheles gambiae_ sensu lato (_s.l._) threatens the efficacy of vector control tools currently used in Cote d'Ivoire, including LLINs [9-11]. Meiwald et al. [11] found that pyrethroid resistance is associated with significant overexpression of _CYP6P4, CYP6P3,_ and _CYP6Z1_ in _Anopheles coluzzii_ in Cote d'Ivoire. High allelic frequencies of knock-down resistance (_kdr_) _L1014F_ mutation (range: 0.46-1), relatively low frequencies of the _ace-1R_ mutation in the acetylcholinesterase gene associated with target-site insensitivity to carbamates and organophosphates (<0.5), and elevated activity of insecticide detoxifying enzymes (mainly mixed function oxidases (MFOs), esterase and glutathione S-transferase (GST)), have been reported in Cote d'Ivoire [5, 7, 10]. Recent laboratory (WHO tube and CDC bottle) bioassays against local pyrethroid-resistant _An. gambiae_ from Cote d'Ivoire have shown that pyrethroids induce low mortality, whilst pre-exposure to the synergist piperonyl butoxide (PBO) increases the mortality but does not restore fully the susceptibility due to resistance [9]. However, the pyrrole insecticide chlorfenapyr induces higher mortality in resistant _An. gambiae_ compared with pyrethroids alone or combined with PBO in Cote d'Ivoire [9].\n", - "\n", - "The present good laboratory practice (GLP) study evaluated the bio-efficacy of a new candidate LLIN, PermaNet(r) Dual, against pyrethroid-resistant _An. gambiae s.l._ in comparison with the WHO Prequalification Unit, Vector Control Product Assessment Team (PQT/VCP) listed standard LLINs, PermaNet(r) 2.0 and PermaNet(r) 3.0, through the conduct of an experimental hut trial and laboratory bioassays in Tiassale, Cote d'Ivoire. PermaNet(r) Dual has a mixture of the pyrrole chlorfenapyr and the pyrethroid deltamethrin coated onto a polyester fabric. PermaNet(r) 3.0 is treated with deltamethrin and PBO, and PermaNet(r) 2.0 is treated with deltamethrin only. Chlorfenapyr is a pro-insecticide activated by the oxygenase function of cytochrome P450s and oxidative removal of the N-ethoxymethyl\n", - "group leads to a toxic form identified as CL 303,268. The toxic form uncouples oxidative phosphorylation in the mitochondria, resulting in disruption of the production of adenosine triphosphate and loss of energy, leading to cell dysfunction and ultimately death of the insect [12]. The WHO has received some resistance monitoring data for chlorfenapyr, but these data are insufficient to assess the potential presence of resistance to this insecticide [1]. Deltamethrin is a neurotoxic insecticide and has excito-repellent effects on mosquitoes. PBO, used on PermaNet(r) 3.0, is a synergist which inhibits mixed function oxidases, blocking the detoxification of pyrethroids and at least partially restoring pyrethroid susceptibility [1, 13]. Pyrethroid-resistant strains of _Anopheles_ have so far been found to be susceptible to chlorfenapyr [9, 14-18]. Thus, the hypothesis of the current study was that chlorfenapyr would kill the pyrethroid-resistant _An. gambiae_ population in Tiassale, and PermaNet(r) Dual would induce higher mortality compared to both PermaNet(r) 3.0 and PermaNet(r) 2.0 in the experimental huts, and the supplementary laboratory cone and tunnel bioassays could predict these hut trial outcomes.\n", - "\n", - "header: Ethics approval and consent to participate: Consent for publication\n", - "\n", - "Not applicable.\n", - "\n", - "header: Supporting laboratory testing of net samples\n", - "\n", - "Standard WHO cone bioassays and tunnel tests were conducted with unwashed and washed nets under laboratory conditions, to predict their responses in the field experimental huts. The insecticide susceptible Kisumu strains and field-collected F0 generation of pyrethroid-resistant Tiassale strain of _An. gambiae_ were tested with samples (25 cm x 25 cm) cut from each of the eight net \n", - "types (unwashed and washed net samples) before and after their inclusion into the hut trial [23]. For the tunnel tests, tunnels were divided into two sections by netting samples held in a frame. Nine holes of 1 cm in diameter were cut in each net sample (with one hole located at the centre of the square, and the other eight equidistant and located 5 cm from the border), and the surface of netting available to the mosquitoes was 400 cm\\({}^{2}\\) (20 cm \\(\\times\\) 20 cm).\n", - "\n", - "For each type of net and wash status, 100 non-blood-fed, 2-5-day-old females per strain were subjected to 3-min exposure in cone bioassays in replicates of five mosquitoes per cone according to the WHO guidelines [22]. For the tunnel tests, 100 non-blood-fed, 5-8-day-old mosquito females per strain were subjected to a 15-h exposure overnight using guinea pig as host, following the WHO guidelines [23]. Testing and holding conditions were 27 +- 2 degC and 80 +- 10% relative humidity. The 60-min knockdown for cone bioassays, blood-feeding status for tunnel tests and 24, 48 and 72-h mortality for both methods were recorded.\n", - "\n", - "header: Blood-feeding and personal protection\n", - "\n", - "The blood-feeding effect of the nets in wild pyrethroid-resistant _An. gambiae_ that entered the trial huts and personal protection are presented in Fig. 1A and Table 1. Before washing, the percentage blood-feeding with PernaNet(r) Dual (A) (36.7 +- 4.0%) did not differ significantly from PernaNet(r) Dual (B) (37.5 +- 4.4%) and PernaNet(r) 2.0 (55.7 +- 3.7%), but was significantly higher than PernaNet(r) 2.0 (31.3 +- 4.4%) (z = - 2.17; p = 0.030). The percentage blood-feeding for unwashed PernaNet(r) Dual (B) was similar to unwashed samples of PernaNet(r) 2.0 (z = 1.74; p = 0.081) and PernaNet(r) 3.0 (z = - 1.49; p = 0.136). Washing 20 times did not influence significantly the percentage blood-feeding in PernaNet(r) Dual (B) (z = 0.10; p = 0.921). After washing,\n", - "the percentage blood-feeding of PermaNet(r) Dual (B) (36.0 +- 3.7%) was substantially lower, but without significant differences when compared with PermaNet(r) 3.0 (57.7 +- 3.7%) (z = 1.71; p = 0.087), PermaNet(r) 2.0 (72.3 +- 3.2%) (z = 1.78; p = 0.076) and the untreated control net (z = 1.72; p = 0.085). For blood-feeding inhibition, unwashed PermaNet(r) Dual (A) (42.5 +- 6.8%) was similar to unwashed PermaNet(r) Dual (B) (41.4 +- 6.9%) (z = 0.25; p = 0.802) and washed PermaNet(r) Dual (B) (43.7 +- 4.8%) that was not affected by washing (z = - 0.41; p = 0.682). Compared with PermaNet(r) 3.0, the blood-feeding inhibition of PermaNet(r) Dual (B) was significantly higher before washing (z = - 0.72; p = 0.469), and significantly lower after washing (z = - 1.92; p = 0.045). However, both unwashed and washed PermaNet(r) Dual (B) provided, respectively, significantly higher blood-feeding inhibition than unwashed and washed PermaNet(r) 2.0 (all p < 0.05). The personal protection was similar between unwashed samples of PermaNet(r) Dual (A) (58.8 +- 3.5%) and PermaNet(r) Dual (B) (60.8 +- 3.8%) (z = - 0.04; p = 0.968). Unwashed PermaNet(r) Dual (B) resulted in a personal protection that was similar to unwashed PermaNet(r) 3.0 (62.9 +- 4.2%) (z = 0.21; p = 0.738), and significantly different from unwashed PermaNet(r) 2.0 (28.8 +- 1.9%) (z = 3.21; p = 0.001). With 20 washes, the personal protection with PermaNet(r) Dual (B) declined significantly from 60.8 +- 3.8% to 20.2 +- 1.1% (z = - 2.96; p = 0.003). However, washed PermaNet(r) Dual (B) provided significantly higher personal protection compared with their washed counterparts of PermaNet(r) 3.0 (9.8 +- 0.7%) (z = 2.89; p = 0.004) and PermaNet(r) 2.0 (- 32.6 +- 2.2%) (z = 2.93; p = 0.003).\n", - "\n", - "header: Results\n", - "\n", - "The outcomes of the current experimental hut trial showed that the parameters of the net efficacy against the pyrethroid-resistant _An. gambiae s.l._ Tiassale population varied as a function of net type and wash status, with the performance of PermaNet(r) Dual being better overall compared with PermaNet(r) 3.0 and PermaNet(r) 2.0 (Fig. 1 and Table 1).\n", - "\n", - "header: Funding\n", - "\n", - "This study was funded by a Grant from Vestergaard Sarl, Lausanne, Switzerland.\n", - "\n", - "header: Additional file 3: Table 53.\n", - "\n", - "Mean knock-down and mortality rates in multi-resistant _Anopheles gambiae s.l._ (Tissale strain) exposed to long-lasting insecticidal nets using cone bioassays before and after experimental hut trial in Tassale, Cape d'hore.\n", - "\n", - "header: Additional file 2: Table 52.\n", - "\n", - "Mean knock-down and mortality rates in multi-resistant _Anopheles gambiae s.l._ (bisumu strain) exposed to long-lasting insecticidal nets using cone bioassays before and after experimental hut trial in Tassale, Cape d'hore.\n", - "\n", - "header: Results\n", - "\n", - "PermaNet(r) Dual demonstrated significantly improved efficacy, compared to PermaNet(r) 3.0 and PermaNet(r) 2.0, against the pyrethroid-resistant _An. gambiae s.l._ Indeed, the experimental hut trial data showed that the mortality and blood-feeding inhibition in the wild pyrethroid-resistant _An. gambiae s.l._ were overall significantly higher with PermaNet(r) Dual compared with PermaNet(r) 3.0 and PermaNet(r) 2.0, for both unwashed and washed samples. The mortality with unwashed and washed samples were 93.6 +- 0.2% and 83.2 +- 0.9% for PermaNet(r) Dual, 37.5 +- 2.9% and 14.4 +- 3.3% for PermaNet(r) 3.0, and 7.4 +- 5.1% and 11.7 +- 3.4% for PermaNet(r) 2.0, respectively. Moreover, unwashed and washed samples produced the respective percentage blood-feeding inhibition of 41.4 +- 6.9% and 43.7 +- 4.8% with PermaNet(r) Dual, 51.0 +- 5.7% and 9.8 +- 3.6% with PermaNet(r) 3.0, and 12.8 +- 4.3% and - 13.0 +- 3.6% with PermaNet(r) 2.0. Overall, PermaNet(r) Dual also induced higher or similar deterrence, exophily and personal protection when compared with the standard PermaNet(r) 3.0 and PermaNet(r) 2.0 reference nets, with both unwashed and\n", - "washed net samples. In contrast to cone bioassays, tunnel tests predicted the efficacy of PermaNet(r) Dual seen in the current experimental hut trial.\n", - "\n", - "header: Conclusion\n", - "\n", - "The present small-scale GLP experimental hut study demonstrated that the deltamethrin- chlorfenapyr PermaNet(r) Dual net has high bio-efficacy, inducing significantly higher mortality and blood-feeding inhibition effects in the wild insecticide-resistant _An. gambiae s.l._ when compared with the deltamethrin-PBO PermaNet(r) 3.0 and deltamethrin-only PermaNet(r) 2.0. The inclusion of chlorfenapyr with pyrethroid in PermaNet(r) Dual net has greatly improved protection and control of free-flying wild pyrethroid-resistant _An. gambiae_ populations. The chlorfenapyr-deltamethrin-coated PermaNet(r) Dual net has great potential to reduce malaria transmission, particularly in areas compromised by high level of pyrethroid resistance in _Anopheles_ mosquitoes. Further validations in large-scale field trials are required to assess the effectiveness, the durability and the acceptability of this new tool for malaria vector control.\n", - "\n", - "header: Discussion\n", - "\n", - "The current study evaluated the efficacy of PermaNet(r) Dual, a new candidate net coated with a mixture of chlorfenapyr and deltamethrin, against _An. gambiae_ in a small-scale GLP but study in Tiassale, Cote d'Ivoire, with supporting exploratory laboratory cone and tunnel\n", - "\n", - "Fig. 4: Mean blood-feeding inhibition (**A**) and corrected mortality (**B**) rates in the susceptible _Anopheles gambiae_ s.s. Kisumu strain exposed to net samples using tunnel tests before and after experimental hut trial in Tiassale, Côte d’Ivoire. Error bars show the standard error of the mean\n", - "bioassays. WHO-prequalified PermaNet(r) 3.0 (co-treated with deltamethrin and PBO) and PermaNet(r) 2.0 (treated with deltamethrin only) were used as the reference nets. In this GLP but study, PermaNet(r) Dual performed better than PermaNet(r) 3.0 and PermaNet(r) 2.0, in terms of mortality and blood-feeding inhibition, for both unwashed and unstressed cases, respectively.\n", - "\n", - "Fig. 5: Mean of blood-feeding inhibition (**A**) and corrected mortality (**B**) rates in the pyrethroid-resistant _Anopheles gambiae s1_. Tassale strain exposed to net samples using tunnel tests before and after experimental hut trial in Tassale, Côte d’thovie. Error bars show the standard error of the mean \n", - "and washed samples. Unlike the cone bioassays, the tunnel tests successfully confirmed the field efficacy of the nets. Briefly, this hut trial showed the benefit of mixing deltamethrin and chlorfenapyr together in a long-lasting net, PermaNet(r) Dual, for an effective control of pyrethroid-resistant _Anopheles._\n", - "\n", - "The current experimental hut study demonstrated that PermaNet(r) Dual had increased efficacy against highly pyrethroid-resistant _An. gambiae._ Indeed, hut mortality of _An. gambiae_ Tiassale strain was significantly higher with PermaNet(r) Dual (>83%) in comparison with PermaNet(r) 3.0 (<38%) and PermaNet(r) 2.0 (<12%), for both unwashed and 20 times washed samples (Fig. 1B and Table 1). This PermaNet(r) Dual efficacy was similar to chlorfenapyr and alpha-cypermethrin mixture-coated Intercept G2 in West and East Africa [16, 17, 27, 28, 29, 30, 31, 32]. The good performance of PermaNet(r) Dual might be attributed to the susceptibility of the highly pyrethroid-resistant _An. gambiae_ s.l. to chlorfenapyr [9, 11]. Due to the novel mode of action of chlorfenapyr, the present pyrethroid-resistance mechanisms did not provide any cross-resistance to this insecticide [12]. Indeed, chlorfenapyr-treated tool has been shown to control a number of different multiple-insecticide-resistant _Anopheles_ populations [14, 15, 27, 28, 29, 30, 31, 32].\n", - "\n", - "This hut study showed that the percentage blood-feeding in wild pyrethroid-resistant _An. gambiae_ population was lower for PermaNet(r) Dual (unwashed and washed) compared with PermaNet(r) 2.0 (unwashed and washed) and washed PermaNet(r) 3.0, but slightly higher than\n", - "unwashed PermaNet(r) 3.0 (Fig. 1A and Table 1). Likewise, blood-feeding inhibition with PermaNet(r) Dual was comparable or stronger than with PermaNet(r) 2.0 and washed PermaNet(r) 3.0. This PermaNet(r) Dual blood-feeding inhibition outcome is consistent with that caused by Intercept G2 in earlier hut trials in West Africa [27-31], and may be explained by the irritant effects of the deltamethrin [32-35]. While unwashed PermaNet(r) Dual and PermaNet(r) 3.0 produced similar levels of blood-feeding inhibition, the 20 times washed PermaNet(r) Dual induced a statistically greater blood-feeding inhibition in comparison with both PermaNet(r) 3.0 and PermaNet(r) 2.0 washed 20 times. This suggests that PermaNet(r) Dual may have performed better than PermaNet(r) 3.0 and PermaNet(r) 2.0 over time. PermaNet(r) Dual effectiveness for inhibiting blood-feeding could imply its good potential for reducing the human-biting and blood-feeding, adding value into its killing effects in malaria vectors.\n", - "\n", - "In the present hut study, unwashed PermaNet(r) Dual deterrence effect against the wild pyrethroid-resistant _An. gambiae_ population was comparable to that recorded in PermaNet(r) 2.0 and PermaNet(r) 3.0. The deltamethrin component of PermaNet(r) Dual has a deterrence effect and may have induced exiting in mosquitoes. However, the 20 times washed PermaNet(r) Dual did not have a deterrence effect (Table 1), probably due to a reduction of the chemical contents (Table 2). A dipped chlorfenapyr net did seem to have a deterrence effect, but did not have a significant effect on exiting rates in West Africa [15, 16, 26-31]. The higher deterrence effect may be due to both the chlorfenapyr and deltamethrin components, but higher exiting rate would likely be due only to the deltamethrin component. Thus, PermaNet(r) Dual may have both deterrent and excito-repellency effects, providing personal protection against pyrethroid-resistant _An. gambiae_ mosquitoes, and reducing human-vector contacts, which may, in turn, lead to an increased user acceptance [36].\n", - "\n", - "While standard laboratory cone bioassays failed to predict PermaNet(r) Dual efficacy against pyrethroid-resistant _An. gambiae s.l.,_ tunnel tests successfully predicted its efficacy against the same strain in the semi-field experimental huts. Both cone and tunnel bioassays met the WHO criteria [44], with the susceptible _An. gambiae s.s._ Kisumu strain. However, _An. gambiae s.s._ Kisumu strain mortality against unwashed and used PermaNet(r) Dual (A) was lower (34%) with cone bioassay (Fig. 2B) probably due to the reduction of the chemical bioavailability on netting fibre surface of net samples tested, or the inappropriateness of cone bioassay method for evaluation of the chlorfenapyr-coated PermaNet(r) Dual as the mortality was higher (100%) with tunnel test (Fig. 4B). With the wild pyrethroid-resistant _An. gambiae s.l._ Tiassale strain, only the tunnel tests achieved high efficacy that was consistent with that observed in the huts with PermaNet(r) Dual. The difference in PermaNet(r) Dual efficacy between both _Anopheles_ Kiumu and Tiassale strains may be explained by the difference in the levels of their resistance to insecticides. However, the lower efficacy of PermaNet(r) Dual against pyrethroid-resistant _An. gambiae s.l._ with cone bioassays (daytime and 3-min exposure) compared with tunnel tests (night-time and 15-h exposure) may be attributable to the slow mode of action of chlorfenapyr and that mosquitoes need to be metabolically active for the activation of the chlorfenapyr pro-insecticide [12, 13, 37]. Indeed, chlorfenapyr has a previously been observed to have a slower action and delayed toxic activity of 2-3 days post-exposure compared to other insecticides (pyrethroids and organophosphates) used in mosquito vector control [14, 28, 29]. The cone bioassay method was developed to assess the bioefficacy of pyrethroid-only LLINs, and the use of this method to test LLINs containing non-neurotoxic insecticides, such as chlorfenapyr, may not necessarily be predictive of field impact, even with increased exposure time of mosquitoes inside the cones [16, 27]. In contrast, the tunnel test results with pyrethroid-resistant _An. gambiae s.l._ Tiassale strain (field-collected F0 generation) were more predictive of PermaNet(r) Dual efficacy in huts, as observed for other chlorfenapyr-coated nets, such as Interceptor(r) G2 [16, 27, 28]. Tunnel tests provide an increased exposure time of mosquitoes to the LLIN samples being tested, and being an overnight exposure. As the female mosquitoes in the tunnel tests are also exhibiting host-seeking behaviour and are, therefore, metabolically active, the activation of chlorfenapyr following tarsal pickup by mosquitoes may be more effective. The tunnel test was a better predictor of PermaNet(r) Dual field efficacy because exposure occurred at night when host-seeking mosquitoes are more vulnerable to chlorfenapyr. Tunnel test thus is a more reliable technique to assess the efficacy of a chlorfenapyr-treated net prior to field trials against free-flying mosquitoes [16, 38, 39].\n", - "\n", - "In PermaNet(r) Dual, deltamethrin and chlorfenapyr contents varied slightly, but complied with the dose interval limits of target specification [23]. This revealed a good homogeneity of the active ingredients' distribution over and a good retention of these active ingredients in PermaNet(r) Dual, thus resulting in high and similar mortality and blood-feeding inhibition between unwashed samples of PermaNet(r) Dual (A) and PermaNet(r) Dual (B). The reduction of chemical contents due to the loss of chlorfenapyr and deltamethrin with 20 washes had no apparent effect on PermaNet(r) Dual efficacy as the washed samples were still producing high mortality against the pyrethroid-resistant mosquitoes. Overall,\n", - "PernaNet(r) Dual chemical bioavailability was sufficient and produced high mortality in pyrethroid-resistant _Anopheles_ mosquitoes after 20 standardized washes (corresponding to a 3-year use) and over the hut trial.\n", - "\n", - "The high vector mortality and personal protection effect of the PernaNet(r) Dual found in this study are the desired outcomes of any vector control tool. The high mortality effects and the additive blood-feeding inhibition impacts induced by PernaNet(r) Dual in this hut trial are expected to substantially diminish the malaria vector density and biting rates in the field, and hence the transmission of malaria in the areas where vectors are resistant to insecticides [40-47]. Additionally, PernaNet(r) Dual performed better than the reference PernaNet(r) 3.0 and PernaNet(r) 2.0 nets, when washed 20 times, thus meeting the WHO hut trial criteria [23].\n", - "\n", - "However, these results need to be further validated in a large-scale field trial to assess the durability and acceptability of this new tool for malaria vector control [48-50]. A community trial would be the best way to evaluate the community level effect of this promising candidate net (i.e. PernaNet(r) Dual) against malaria transmission, by monitoring entomological infection rate, _Plasmodium_ prevalence and disease incidence [48-50]. Such a community trial could be a randomized controlled trial as with dual-active-ingredient LLINs (e.g. Interceptor G2) in Tanzania [49], soon in Benin [48, 50], and the pilot deployments that are part of the New Nets Project led by PATH [51]. Furthermore, PernaNet(r) Dual should be tested against wild populations of _Anopheles funestus_[32], or other main or secondary vectors of malaria in Africa [52-56]. Ultimately, in the present study, the series of hut and laboratory tests demonstrated that the chlorfenapyr component of PernaNet(r) Dual could make a major contribution to controlling the pyrethroid-resistant _An. gambiae_ populations. Furthermore, there were no adverse effects reported among hut sleepers and mosquito collectors during the trial in the huts where PernaNet(r) Dual were used, and this may possibly increase the rate of future user acceptability and improve the usage of this net for malaria vector control.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ClinicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `ClinicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `ClinicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}, \"Start_month\": {\"title\": \"Start Month\", \"description\": \"Numerical start month of the reporting period (some studies may report multiple time periods)\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"tunnel test\",\"Country\":\"Cote d'Ivoire\",\"Site\":\"Tiassale\",\"Start_month\":3,\"Start_year\":2020,\"End_month\":8,\"End_year\":2020}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Net_washed\": {\"title\": \"Net Washed\", \"description\": \"Numerical count of number of net washes - 0 if none and NA if not reported.\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"PermaNet(r) Dual\",\"Insecticide\":\"chlorfenapyr, deltamethrin\",\"Net_washed\":0.0},\"N02\":{\"Net_type\":\"PermaNet(r) Dual\",\"Insecticide\":\"chlorfenapyr, deltamethrin\",\"Net_washed\":20.0},\"N03\":{\"Net_type\":\"PermaNet(r) 3.0\",\"Insecticide\":\"deltamethrin, PBO\",\"Net_washed\":0.0},\"N04\":{\"Net_type\":\"PermaNet(r) 3.0\",\"Insecticide\":\"deltamethrin, PBO\",\"Net_washed\":20.0},\"N05\":{\"Net_type\":\"PermaNet(r) 2.0\",\"Insecticide\":\"deltamethrin\",\"Net_washed\":0.0},\"N06\":{\"Net_type\":\"PermaNet(r) 2.0\",\"Insecticide\":\"deltamethrin\",\"Net_washed\":20.0}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Tunnel test\n", - "\n", - "The tunnel test outcomes confirmed the cone bioassay results for the susceptible _An. gambiae s.s._ Kisumu strain, with strong blood-feeding inhibition and high mortality in all nets being above the WHO tunnel test thresholds (>= 90% blood-feeding inhibition or >= 80% mortality) (Fig. 4). The blood-feeding inhibition was high only in unwashed and used samples of PermaNet(r) Dual (A) (92.4%), PermaNet(r) Dual (B) (91.6%) and PermaNet(r) 3.0 (92.3%) (Fig. 4A). The mortality was very high (100%) in unwashed or washed and unused or used samples of all nets (PermaNet(r) Dual, PermaNet(r) 3.0 and PermaNet(r) 2.0) (Fig. 4B), thus showing their good efficacy against this pyrethroid-susceptible _An. gambiae_ Kisumu strain. Additional file shows the Kisumu strain mortality with tunnel tests in more detail (see Additional file 4: Table S4). For the pyrethroid-resistant _An. gambiae s.l._, only washed and unused PermaNet(r) Dual (A) induced a strong blood-feeding inhibition (91.3%) being above the WHO tunnel cut-off of 90% (Fig. 5A). However, the mortality with all samples (unwashed or washed and unused) of PermaNet(r) Dual (85.2-94.9%) were higher compared with PermaNet(r) 3.0 and PermaNet(r) 2.0 (Fig. 5B), and consistent with the higher efficacy of PermaNet(r) Dual against the free-flying pyrethroid-resistant _An. gambiae s.l._ Tiassale strain populations observed in the concurrent experimental hut trials. Additional file shows the pyrethroid-resistant Tiassale strain mortality with tunnel tests in more detail (see Additional file 5: Table S5).\n", - "\n", - "header: Comparison of laboratory bioassay results with hut trial results\n", - "\n", - "Comparing the laboratory cone bioassay and tunnel test results with the experimental hut trial results with the same pyrethroid-resistant _An. gambiae s.l._ strain showed that these laboratory bioassays predicted the response in the huts for PermaNet(r) 3.0 and PermaNet(r) 2.0. Indeed, the unwashed and washed PermaNet(r) 3.0 and PermaNet(r) 2.0 induced relatively lower mortality in the pyrethroid-resistant _An. gambiae_ strain with the cone bioassays, the tunnel test and the hut trial. Focussing on the bioefficacy of PermaNet(r) Dual, the respective mortality rates in the cone, tunnel and hut were 14.0%, 84.5% and 94.9% for unwashed PermaNet(r) Dual (A), 24.0%, 86.5% and 90.2% for unwashed PermaNet(r) Dual (B), and 10.0%, 87.5% and 90.4% for washed PermaNet(r) Dual (B). This suggests that laboratory tunnel tests are more predictive of the performance of PermaNet(r) Dual in experimental huts. Additionally, there were correlations in the blood-feeding rates and blood-feeding inhibition between the tunnel test results and the hut trial results. The high mortality and strong blood-feeding inhibition of PermaNet(r) Dual in tunnel tests with the pyrethroid-resistant _An. gambiae_ Tiassale strain shows that the chlorfenapyr component of PermaNet(r) Dual provided good efficacy against pyrethroid-resistant _Anopheles_.\n", - "\n", - "header: Background: Methods\n", - "\n", - "PermaNet(r) Dual, PermaNet(r) 3.0 and PermaNet(r) 2.0, unwashed and washed (20 washes), were tested against free-flying pyrethroid-resistant _An. gambiae s.l._ in the experimental huts in Tiassale, Cote d'lvoire from March to August 2020. Complementary laboratory cone bioassays (daytime and 3-min exposure) and tunnel tests (nightly and 15-h exposure) were performed against pyrethroid-susceptible _An. gambiae_ sensu stricto (_S.S._) (Kisumu strain) and pyrethroid-resistant _An. gambiae s.l._ (Tiassale strain).\n", - "\n", - "header: Chemical analysis\n", - "\n", - "Pieces of netting were sampled from unwashed and washed PermaNet(r) Dual (A and B), PermaNet(r) 3.0 and PermaNet(r) 2.0 LLINs before and after being used in the hut trial, in accordance with the WHO protocol for chemical analysis [25]. All sampled net pieces were labelled and stored individually in aluminium foil at 3.7-4.2 degC. The net pieces were then shipped to the Vestergaard's ISO IEC17025 laboratory in Vietnam for chemical analysis of chlorfenapyr and deltamethrin. Deltamethrin and PBO contents were determined following the Collaborative International Pesticides Analytical Council Ltd (CIPAC) (i.e. ClPAC 33/LN/(M2)/3) methods [26]. Briefly, chlorfenapyr content was analysed using in-house method VCL-098-20 that was undergoing ClIPAC validation and was still to be published. Chlorfenapyr content was extracted from the PermaNet(r) Dual net using a mixture of n-hexane and 1,4-dioxane (95:5, v:v) solvents with an internal standard of dibutylphthalate added. The mixture was shaken by shaking machine to extract chlorfenapyr. Extracted solution was filtered through 0.45 mm Teflon membrane and analysed by a normal phase high performance liquid chromatography for chlorfenapyr concentration, detector UV 236 nm.\n", - "\n", - "header: Conclusion\n", - "\n", - "The deltamethrin-chlorfenapyr-coated PermaNet(r) Dual induced a high efficacy and performed better than the deltamethrin-PBO PermaNet(r) 3.0 and the deltamethrin-only PermaNet(r) 2.0, testing both unwashed and 20 times washed samples against the pyrethroid-susceptible and resistant strains of _An. gambiae s.l._ The inclusion of chlorfenapyr with deltamethrin in PermaNet(r) Dual net greatly improved protection and control of pyrethroid-resistant _An. gambiae_ populations. PermaNet(r) Dual thus represents a promising tool, with a high potential to reduce malaria transmission and provide community protection in areas compromised by mosquito vector resistance to pyrethroids.\n", - "\n", - "header: Small-scale field evaluation of PermaNet(r): Abstract\n", - "\n", - "Dual (a long-lasting net coated with a mixture of chlorfenapyr and deltamethrin) against pyrethroid-resistant _Anopheles gambiae_ mosquitoes from Tiassale, Cote d'lvoire\n", - "\n", - "Julien Z. B. Zahouli\n", - "\n", - "Julien Z. B. Zahouli\n", - "\n", - "Julien.zahouli@crsrs.ci\n", - "\n", - "Constant A. V. Edi\n", - "\n", - "1Laurence A. Yao\n", - "\n", - "1Emmanuelle G. Lisro\n", - "\n", - "1Marc Adou\n", - "\n", - "1Inza Kone\n", - "\n", - "1Graham Small\n", - "\n", - "2Leanore D. Sternberg\n", - "\n", - "28Benjamin G. Koudou\n", - "\n", - "\n", - "\n", - "Due to the rapid expansion of pyrethroid-resistance in malaria vectors in Africa, Global Plan for insecticide Resistance Management (GIPRM) has recommended the development of long-lasting insecticidal nets (LLINs), containing insecticide mixtures of active ingredients with different modes of action to mitigate resistance and improve LLIN efficacy. This good laboratory practice (GLP) study evaluated the efficacy of the chlorfenapyr and deltamethrin-coated PermaNet(r) Dual, in comparison with the deltamethrin and synergismt piperonyl butoxide (PBO)-treated PermaNet(r) 3.0 and the deltamethrin-coated PermaNet(r) 2.0, against wild free-flying pyrethroid-resistant _Anopheles gambiae_ sensu lato (_S.I._), in experimental huts in Tiassale, Cote d'lvoire (West Africa).\n", - "\n", - "header: Supplementary Information\n", - "\n", - "The online version contains supplementary material available at [https://doi.org/10.11016/s12936-023-04455-z](https://doi.org/10.11016/s12936-023-04455-z).\n", - "\n", - "header: Availability of data and materials\n", - "\n", - "All relevant data are within the manuscript.\n", - "\n", - "header: Supporting laboratory testing of net samples\n", - "\n", - "Standard WHO cone bioassays and tunnel tests were conducted with unwashed and washed nets under laboratory conditions, to predict their responses in the field experimental huts. The insecticide susceptible Kisumu strains and field-collected F0 generation of pyrethroid-resistant Tiassale strain of _An. gambiae_ were tested with samples (25 cm x 25 cm) cut from each of the eight net \n", - "types (unwashed and washed net samples) before and after their inclusion into the hut trial [23]. For the tunnel tests, tunnels were divided into two sections by netting samples held in a frame. Nine holes of 1 cm in diameter were cut in each net sample (with one hole located at the centre of the square, and the other eight equidistant and located 5 cm from the border), and the surface of netting available to the mosquitoes was 400 cm\\({}^{2}\\) (20 cm \\(\\times\\) 20 cm).\n", - "\n", - "For each type of net and wash status, 100 non-blood-fed, 2-5-day-old females per strain were subjected to 3-min exposure in cone bioassays in replicates of five mosquitoes per cone according to the WHO guidelines [22]. For the tunnel tests, 100 non-blood-fed, 5-8-day-old mosquito females per strain were subjected to a 15-h exposure overnight using guinea pig as host, following the WHO guidelines [23]. Testing and holding conditions were 27 +- 2 degC and 80 +- 10% relative humidity. The 60-min knockdown for cone bioassays, blood-feeding status for tunnel tests and 24, 48 and 72-h mortality for both methods were recorded.\n", - "\n", - "header: Blood-feeding and personal protection\n", - "\n", - "The blood-feeding effect of the nets in wild pyrethroid-resistant _An. gambiae_ that entered the trial huts and personal protection are presented in Fig. 1A and Table 1. Before washing, the percentage blood-feeding with PernaNet(r) Dual (A) (36.7 +- 4.0%) did not differ significantly from PernaNet(r) Dual (B) (37.5 +- 4.4%) and PernaNet(r) 2.0 (55.7 +- 3.7%), but was significantly higher than PernaNet(r) 2.0 (31.3 +- 4.4%) (z = - 2.17; p = 0.030). The percentage blood-feeding for unwashed PernaNet(r) Dual (B) was similar to unwashed samples of PernaNet(r) 2.0 (z = 1.74; p = 0.081) and PernaNet(r) 3.0 (z = - 1.49; p = 0.136). Washing 20 times did not influence significantly the percentage blood-feeding in PernaNet(r) Dual (B) (z = 0.10; p = 0.921). After washing,\n", - "the percentage blood-feeding of PermaNet(r) Dual (B) (36.0 +- 3.7%) was substantially lower, but without significant differences when compared with PermaNet(r) 3.0 (57.7 +- 3.7%) (z = 1.71; p = 0.087), PermaNet(r) 2.0 (72.3 +- 3.2%) (z = 1.78; p = 0.076) and the untreated control net (z = 1.72; p = 0.085). For blood-feeding inhibition, unwashed PermaNet(r) Dual (A) (42.5 +- 6.8%) was similar to unwashed PermaNet(r) Dual (B) (41.4 +- 6.9%) (z = 0.25; p = 0.802) and washed PermaNet(r) Dual (B) (43.7 +- 4.8%) that was not affected by washing (z = - 0.41; p = 0.682). Compared with PermaNet(r) 3.0, the blood-feeding inhibition of PermaNet(r) Dual (B) was significantly higher before washing (z = - 0.72; p = 0.469), and significantly lower after washing (z = - 1.92; p = 0.045). However, both unwashed and washed PermaNet(r) Dual (B) provided, respectively, significantly higher blood-feeding inhibition than unwashed and washed PermaNet(r) 2.0 (all p < 0.05). The personal protection was similar between unwashed samples of PermaNet(r) Dual (A) (58.8 +- 3.5%) and PermaNet(r) Dual (B) (60.8 +- 3.8%) (z = - 0.04; p = 0.968). Unwashed PermaNet(r) Dual (B) resulted in a personal protection that was similar to unwashed PermaNet(r) 3.0 (62.9 +- 4.2%) (z = 0.21; p = 0.738), and significantly different from unwashed PermaNet(r) 2.0 (28.8 +- 1.9%) (z = 3.21; p = 0.001). With 20 washes, the personal protection with PermaNet(r) Dual (B) declined significantly from 60.8 +- 3.8% to 20.2 +- 1.1% (z = - 2.96; p = 0.003). However, washed PermaNet(r) Dual (B) provided significantly higher personal protection compared with their washed counterparts of PermaNet(r) 3.0 (9.8 +- 0.7%) (z = 2.89; p = 0.004) and PermaNet(r) 2.0 (- 32.6 +- 2.2%) (z = 2.93; p = 0.003).\n", - "\n", - "header: Outcomes measures\n", - "\n", - "The following entomological outcomes were used to evaluate the efficacy of each treatment arm in the current experimental hut trial [23]:\n", - "\n", - "1. Deterrence: proportional reduction in the number of mosquitoes caught in treated hut relative to the number caught in the control hut.\n", - "2. Exiting rate: percentage of the mosquitoes collected from the veranda trap out of all mosquitoes collected.\n", - "3. Induced exophily: proportional reduction of mosquitoes found in the exit and veranda traps relative to control hut.\n", - "4. Blood-feeding: percentage of blood-fed mosquitoes relative to the total collected.\n", - "5. Blood-feeding inhibition: proportional reduction in blood feeding percentage in treated huts relative to the control hut.\n", - "6. Mortality: percentage of dead mosquitoes found dead in hut in the morning (immediate mortality) or after being caught alive and dead during holding (delayed mortality) in treatment huts out of mosquitoes collected, and corrected for control mortality.\n", - "7. Personal protection: the proportional reduction in the number of blood-fed mosquitoes in the treated huts relative to the number of blood-fed mosquitoes in the untreated control.\n", - "8. Killing effect: the proportional reduction in the number of mosquitoes killed in the treated huts relative to the number of mosquitoes killed in the untreated control.\n", - "\n", - "The formulas of key entomological outcomes measured in this study are [23]:\n", - "\n", - "\\[\\text{Deterrence}(\\%) = \\frac{\\text{Nc} - \\text{Nt}}{\\text{Nc}} \\times 100 = \\left( 1 - \\frac{\\text{Nt}}{\\text{Nc}} \\right) \\times 100,\\]\n", - "\n", - "where Nt the total number of mosquitoes collected in the treatment hut and veranda/exit traps and Nc the total number of mosquitoes in the control hut and veranda/exit traps.\n", - "\n", - "\\[\\text{Exiting}\\,\\text{rate}(\\%) = \\frac{\\text{n}}{\\text{N}} \\times 100,\\]\n", - "\n", - "where n is the number of mosquitoes from veranda and window traps, while N is the total number of mosquitoes collected in the hut.\n", - "\n", - "\\[\\text{Induced}\\,\\text{exophily}(\\%) = \\frac{\\text{Pt} - \\text{Pc}}{\\text{Pc}} \\times 100\\] \\[= \\left( \\frac{\\text{Pt}}{\\text{Pc}} - 1 \\right) \\times 100,\\]\n", - "\n", - "where Pt is the proportion of mosquitoes from veranda and window traps of treated hut while Pc is the number of mosquitoes from veranda and window traps of untreated control hut.\n", - "\n", - "\\[\\text{Blood} - \\text{feeding}\\,\\text{inhibition}(\\%) = \\frac{\\text{Pc} - \\text{Pt}}{\\text{Pc}} \\times 100,\\]\n", - "\n", - "where Pt the proportion of blood-fed mosquitoes in the treatment hut, and Pc the proportion of blood-fed mosquitoes in the control hut.\n", - "\n", - "\\[\\text{Personal}\\,\\text{protection}(\\%) = \\frac{\\text{Bc} - \\text{Bt}}{\\text{Bc}} \\times 100\\] \\[= \\left( 1 - \\frac{\\text{Bt}}{\\text{Bc}} \\right) \\times 100,\\]\n", - "\n", - "where Bt the number of blood-fed mosquitoes in the treatment hut and Bc the number of blood-fed mosquitoes in the control hut.\n", - "\n", - "\\[\\text{Killing}\\,\\text{effect}(\\%) = \\frac{\\text{Kt} - \\text{Kc}}{\\text{Tc}} \\times 100,\\]\n", - "\n", - "where Kt is the number of mosquitoes killed in the treatment huts, Kc is the number of mosquitoes killed in the control huts, and Tc is the total number of mosquitoes collected from the control.\n", - "\n", - "header: Ethics approval and consent to participate: Consent for publication\n", - "\n", - "Not applicable.\n", - "\n", - "header: Results\n", - "\n", - "The outcomes of the current experimental hut trial showed that the parameters of the net efficacy against the pyrethroid-resistant _An. gambiae s.l._ Tiassale population varied as a function of net type and wash status, with the performance of PermaNet(r) Dual being better overall compared with PermaNet(r) 3.0 and PermaNet(r) 2.0 (Fig. 1 and Table 1).\n", - "\n", - "header: Background\n", - "\n", - "According to the latest World Malaria Report 2022 of the World Health Organization (WHO), there were 247 million malaria cases and 619,000 malaria deaths in 84 malaria endemic countries worldwide in 2021 [1, 2]. This represents about 13.4 million more cases in 2021 compared to 2019 attributable to disruptions to essential malaria services during the COVID-18 pandemic [1]. The WHO African Region, with an estimated 234 million cases in 2021, accounted for about 95% of global cases malaria [1]. The recent decline of malaria burden from 2000 to 2019 was largely due to the massive distribution and use of long-lasting insecticidal nets (LLINs) (2.5 billion LLINs were delivered from 2004 to 2021) for _Anopheles_ mosquito vector control [1]. The malaria burden reduction is now slowing down and is threatened by the spread of resistance to pyrethroids (78 of 88 endemic countries have detected resistance to at least one insecticide class reported to the WHO from 2010 to 2020) [1]. The WHO Global Plan for Insecticide Resistance Management (GPIRM) has recommended the development of LLINs with insecticide mixtures of active ingredients with different modes of action to mitigate resistance [3]. The WHO Global Technical Strategy (GTS) aims for a reduction of malaria case incidence and mortality rate of at least 40% by 2020, 75% by 2025 and 90% by 2030 from the 2015 baseline [1, 4]. To meet these targets, GTS has called for the development of new tools, with combined or more effective insecticide molecules to control insecticide-resistant _Anopheles_ vectors [4]. These new vector control tools must incorporate new insecticide molecules and/or insecticide mixtures containing at least two active ingredients with different modes of action for the management of malaria vector resistance to insecticides [1, 3].\n", - "\n", - "Malaria is endemic throughout Cote d'Ivoire and represents the leading cause of mortality and morbidity in the country. Several studies have shown a wide spread resistance in local _Anopheles_ to most of the insecticide classes currently used in malaria vector control (e.g. pyrethroids, DDT and carbamates) [5-8]. The existence of multiple mechanisms of resistance in the main vector, _Anopheles gambiae_ sensu lato (_s.l._) threatens the efficacy of vector control tools currently used in Cote d'Ivoire, including LLINs [9-11]. Meiwald et al. [11] found that pyrethroid resistance is associated with significant overexpression of _CYP6P4, CYP6P3,_ and _CYP6Z1_ in _Anopheles coluzzii_ in Cote d'Ivoire. High allelic frequencies of knock-down resistance (_kdr_) _L1014F_ mutation (range: 0.46-1), relatively low frequencies of the _ace-1R_ mutation in the acetylcholinesterase gene associated with target-site insensitivity to carbamates and organophosphates (<0.5), and elevated activity of insecticide detoxifying enzymes (mainly mixed function oxidases (MFOs), esterase and glutathione S-transferase (GST)), have been reported in Cote d'Ivoire [5, 7, 10]. Recent laboratory (WHO tube and CDC bottle) bioassays against local pyrethroid-resistant _An. gambiae_ from Cote d'Ivoire have shown that pyrethroids induce low mortality, whilst pre-exposure to the synergist piperonyl butoxide (PBO) increases the mortality but does not restore fully the susceptibility due to resistance [9]. However, the pyrrole insecticide chlorfenapyr induces higher mortality in resistant _An. gambiae_ compared with pyrethroids alone or combined with PBO in Cote d'Ivoire [9].\n", - "\n", - "The present good laboratory practice (GLP) study evaluated the bio-efficacy of a new candidate LLIN, PermaNet(r) Dual, against pyrethroid-resistant _An. gambiae s.l._ in comparison with the WHO Prequalification Unit, Vector Control Product Assessment Team (PQT/VCP) listed standard LLINs, PermaNet(r) 2.0 and PermaNet(r) 3.0, through the conduct of an experimental hut trial and laboratory bioassays in Tiassale, Cote d'Ivoire. PermaNet(r) Dual has a mixture of the pyrrole chlorfenapyr and the pyrethroid deltamethrin coated onto a polyester fabric. PermaNet(r) 3.0 is treated with deltamethrin and PBO, and PermaNet(r) 2.0 is treated with deltamethrin only. Chlorfenapyr is a pro-insecticide activated by the oxygenase function of cytochrome P450s and oxidative removal of the N-ethoxymethyl\n", - "group leads to a toxic form identified as CL 303,268. The toxic form uncouples oxidative phosphorylation in the mitochondria, resulting in disruption of the production of adenosine triphosphate and loss of energy, leading to cell dysfunction and ultimately death of the insect [12]. The WHO has received some resistance monitoring data for chlorfenapyr, but these data are insufficient to assess the potential presence of resistance to this insecticide [1]. Deltamethrin is a neurotoxic insecticide and has excito-repellent effects on mosquitoes. PBO, used on PermaNet(r) 3.0, is a synergist which inhibits mixed function oxidases, blocking the detoxification of pyrethroids and at least partially restoring pyrethroid susceptibility [1, 13]. Pyrethroid-resistant strains of _Anopheles_ have so far been found to be susceptible to chlorfenapyr [9, 14-18]. Thus, the hypothesis of the current study was that chlorfenapyr would kill the pyrethroid-resistant _An. gambiae_ population in Tiassale, and PermaNet(r) Dual would induce higher mortality compared to both PermaNet(r) 3.0 and PermaNet(r) 2.0 in the experimental huts, and the supplementary laboratory cone and tunnel bioassays could predict these hut trial outcomes.\n", - "\n", - "header: Additional file 3: Table 53.\n", - "\n", - "Mean knock-down and mortality rates in multi-resistant _Anopheles gambiae s.l._ (Tissale strain) exposed to long-lasting insecticidal nets using cone bioassays before and after experimental hut trial in Tassale, Cape d'hore.\n", - "\n", - "header: Results\n", - "\n", - "PermaNet(r) Dual demonstrated significantly improved efficacy, compared to PermaNet(r) 3.0 and PermaNet(r) 2.0, against the pyrethroid-resistant _An. gambiae s.l._ Indeed, the experimental hut trial data showed that the mortality and blood-feeding inhibition in the wild pyrethroid-resistant _An. gambiae s.l._ were overall significantly higher with PermaNet(r) Dual compared with PermaNet(r) 3.0 and PermaNet(r) 2.0, for both unwashed and washed samples. The mortality with unwashed and washed samples were 93.6 +- 0.2% and 83.2 +- 0.9% for PermaNet(r) Dual, 37.5 +- 2.9% and 14.4 +- 3.3% for PermaNet(r) 3.0, and 7.4 +- 5.1% and 11.7 +- 3.4% for PermaNet(r) 2.0, respectively. Moreover, unwashed and washed samples produced the respective percentage blood-feeding inhibition of 41.4 +- 6.9% and 43.7 +- 4.8% with PermaNet(r) Dual, 51.0 +- 5.7% and 9.8 +- 3.6% with PermaNet(r) 3.0, and 12.8 +- 4.3% and - 13.0 +- 3.6% with PermaNet(r) 2.0. Overall, PermaNet(r) Dual also induced higher or similar deterrence, exophily and personal protection when compared with the standard PermaNet(r) 3.0 and PermaNet(r) 2.0 reference nets, with both unwashed and\n", - "washed net samples. In contrast to cone bioassays, tunnel tests predicted the efficacy of PermaNet(r) Dual seen in the current experimental hut trial.\n", - "\n", - "header: Additional file 2: Table 52.\n", - "\n", - "Mean knock-down and mortality rates in multi-resistant _Anopheles gambiae s.l._ (bisumu strain) exposed to long-lasting insecticidal nets using cone bioassays before and after experimental hut trial in Tassale, Cape d'hore.\n", - "\n", - "header: Funding\n", - "\n", - "This study was funded by a Grant from Vestergaard Sarl, Lausanne, Switzerland.\n", - "\n", - "header: Conclusion\n", - "\n", - "The present small-scale GLP experimental hut study demonstrated that the deltamethrin- chlorfenapyr PermaNet(r) Dual net has high bio-efficacy, inducing significantly higher mortality and blood-feeding inhibition effects in the wild insecticide-resistant _An. gambiae s.l._ when compared with the deltamethrin-PBO PermaNet(r) 3.0 and deltamethrin-only PermaNet(r) 2.0. The inclusion of chlorfenapyr with pyrethroid in PermaNet(r) Dual net has greatly improved protection and control of free-flying wild pyrethroid-resistant _An. gambiae_ populations. The chlorfenapyr-deltamethrin-coated PermaNet(r) Dual net has great potential to reduce malaria transmission, particularly in areas compromised by high level of pyrethroid resistance in _Anopheles_ mosquitoes. Further validations in large-scale field trials are required to assess the effectiveness, the durability and the acceptability of this new tool for malaria vector control.\n", - "\n", - "header: Experimental huts and mosquitoes: Net treatments and treatment arms\n", - "\n", - "This study included the PermaNet(r) Dual (candidate net), PermaNet(r) 3.0 and PermaNet(r) 2.0 (reference nets) and untreated net (negative control). All mosquito nets were new and unwashed nets supplied by Vestergaard Sarl (Lausanne, Switzerland). The untreated nets were made of polyester fabric without any insecticide. PermaNet(r) Dual was made of polyester fabric coated with chlorfenapyr at 5.0 g/kg +- 25% and deltamethrin at 2.1 g/kg +- 25%. The unwashed PermaNet(r) Dual arm was replicated using nets from two different production batches (referred to as A and B). PermaNet(r) 3.0 was made of polyester fabric coated with 2.1 g/kg +- 25% of deltamethrin on the sides, and polyethylene incorporated with 4.0 g/kg +- 25% of deltamethrin and 25.0 g/kg +- 25% of PBO on the roof. PermaNet(r) 2.0 was made of polyester fabric coated with 1.4 g/kg +- 25% of deltamethrin.\n", - "\n", - "Eight treatment arms were compared in the experimental huts and laboratory: PermaNet(r) Dual (A) unwashed; PermaNet(r) Dual (B) unwashed and washed 20 times; PermaNet(r) 3.0 unwashed and washed 20 times; PermaNet(r) 2.0 unwashed and washed 20 times; and untreated control net. The nets were prepared and washed using a soap called \"Savon de Marseille\" and according to the WHO guidelines on small-scale field hut trials and laboratory testing [23]. The interval of time between two consecutive washes was one day, corresponding to the regeneration time of all the nets. The regeneration time of the PermaNet(r) Dual (i.e. 1 day) was supplied by Vestergaard. The nets were washed 20 times. Before testing them in the experimental huts, all the unwashed, washed and untreated control nets were deliberately holed with six holes of 4 cm in diameter to stimulate the conditions of torn nets according to the WHO guidelines [23].\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `EntomologicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `EntomologicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `EntomologicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}, \"Start_month\": {\"title\": \"Start Month\", \"description\": \"Numerical start month of the reporting period (some studies may report multiple time periods)\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"tunnel test\",\"Country\":\"Cote d'Ivoire\",\"Site\":\"Tiassale\",\"Start_month\":3,\"Start_year\":2020,\"End_month\":8,\"End_year\":2020}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Net_washed\": {\"title\": \"Net Washed\", \"description\": \"Numerical count of number of net washes - 0 if none and NA if not reported.\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"PermaNet(r) Dual\",\"Insecticide\":\"chlorfenapyr, deltamethrin\",\"Net_washed\":0.0},\"N02\":{\"Net_type\":\"PermaNet(r) Dual\",\"Insecticide\":\"chlorfenapyr, deltamethrin\",\"Net_washed\":20.0},\"N03\":{\"Net_type\":\"PermaNet(r) 3.0\",\"Insecticide\":\"deltamethrin, PBO\",\"Net_washed\":0.0},\"N04\":{\"Net_type\":\"PermaNet(r) 3.0\",\"Insecticide\":\"deltamethrin, PBO\",\"Net_washed\":20.0},\"N05\":{\"Net_type\":\"PermaNet(r) 2.0\",\"Insecticide\":\"deltamethrin\",\"Net_washed\":0.0},\"N06\":{\"Net_type\":\"PermaNet(r) 2.0\",\"Insecticide\":\"deltamethrin\",\"Net_washed\":20.0}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: PermaNet(r) 2.0 and Dawa Plus(r) 2.0: Life Net(r) and NetProtect(r)\n", - "\n", - "Each specimen set was weighed and placed in a 250 ml round-bottom boiling flask followed by the addition of 95 ml of xylene and 5 ml of a known concentration of internal standard dipropyl phthalate, (2 mg/ml). The flask was fitted with a reflux condenser and heated to boiling for 30 min. After cooling, approximately 2.5 ml of the extract was filtered and transferred to a glass tube and evaporated to dryness under a stream of dry nitrogen for 30 min at 60 degC. A known volume (0.75 ml) of the mobile phase (94/6 (v/v) isooctane/1, 4-dioxane) was used to reconstitute the residue and was transferred to a sample vial using a glass syringe fitted with a 0.45 mm reconstituted cellulose syringe filter. The filtrate was centrifuged (500g) for 2 min and transferred into a chromatographic vial after filtering through a glass syringe fitted with a 0.45 mm reconstituted cellulose syringe filter.\n", - "\n", - "header: Extraction of permethrin for Olyset Net(r)\n", - "\n", - "Permethrin analysis of Olyset Net(r) samples was based on CIPAC Method 331 [31]. Each specimen set was weighed and placed in a 100 ml round-bottom boiling flask, followed by heptane (45 ml) and triphenyl phosphate internal standard (5.0 ml of known concentration in heptane). The flask was fitted with a reflux condenser and heated to boiling for 45 min. After cooling, approximately 1.5 ml of the extract was transferred to a chromatographic sample vial using a glass syringe fitted with a 0.45 mm reconstituted cellulose syringe filter.\n", - "\n", - "header: Author details\n", - "\n", - "- Laboratoire d'Ecologie Vectorieile et Parastaire, Département de Biologie Animal, Faculte Des Sciences et Techniques, Universite Cheikh Anta Diop, Dakar, Senegal. 2institut Pasteur de Dakar, Dakar, Senegal. 3Laboratoire de Télédétection Appliquee, (ITA/IST/FST/UCAD, Dakar, Senegal. 4Division of Parabolic Diseases and Malaria, Centers for Disease Control (CDC) and Prevention, Atlanta, GA, USA.\n", - "\n", - "header: Mosquito net coverage\n", - "\n", - "A total of 3012 nets were distributed in 1249 households (Table 2). The overall average household coverage, 94% (95% CI 92.68-95.3), was 68.2% (95% CI 63.63-72.77) and 92% (95% CI 90-94) in Mbagame and Thies area villages, respectively. Moreover, the average percentage of households receiving only one mosquito net was 26% (95% CI 23-28) in all areas. The average percentage of households in Mbagame and Thies receiving only one mosquito net was estimated as 41.8% (95% CI 36.9-46.8) and 17.4% (95% CI 15-20.6), respectively.\n", - "\n", - "The global coverage of sleeping spaces (3,012/3,840) was 78% (95% CI 77-78). However, the sleeping space coverage in Mbagame area was estimated at 68.2% (95% CI: 65-70), and 95.3% (95% CI 94-96) in the villages surrounding Thies.\n", - "\n", - "header: Gas chromatography analysis\n", - "\n", - "The extracts were analysed using an Agilent 6890 N chromatograph fitted with a 30 m x 0.25 mm (i.d.) fused silica DB-1 capillary column coated with 0.25 mm cross linked polydimethylsiloxane stationary phase. Ultra-high purity nitrogen (1.2 ml/min) was used as the carrier gas. Injector port, column oven, and detector temperatures were 265 degC, 240 degC, and 300 degC, respectively. Flame ionization (FID) was used for analyte detection. Two injections were used for each sample and the results averaged. Permethrin concentration was calculated by comparing permethrin/triphenyl phosphate peak area ratios against a calibration curve generated from solutions containing known permethrin /triphenyl phosphate mass ratios.\n", - "\n", - "header: Methods\n", - "\n", - "A total of five brands of LLINs were distributed to households: NetProtect(r), PermaNet(r) 2.0, Dawa Plus(r) 2.0, Olyset Net(r) and Life Net(r) (Table 1). NetProtect(r) mosquito nets were white, rectangular (length = 190, width = 180 and height = 150 cm) made of 118 denier polyethylene mono filaments and 136 holes/in2 mesh. PermaNet(r) 2.0 mosquito nets were white, rectangular (length = 190, width = 180 and height = 200 cm), made with 75 denier polyester filament tulle and 156 holes/inch2 mesh. Dawa Plus(r) 2.0 were white, rectangular (length = 200, width = 160 and height = 180 cm), made of polyester multi-filament tulle, 75 deniers and 156 holes/inch2 mesh. Olyset Net(r) were white, conical (circumference 1250 cm, height = 250 cm), made with a denier polyethylene mono filament tulle greater than 150 cm and 56 holes/inch2 mesh. Life Net(r) nets were the only mosquito nets made from polypropylene, they were white, rectangular (length = 190, width = 180 and height = 150 cm) made with multi-filament tulle with 110 denier and 156 holes/inch2 mesh.\n", - "\n", - "Aside from the Olyset Net(r) mosquito nets which were treated with permethrin, all other nets distributed were impregnated with deltamethrin. Olyset Net(r) and Life Net(r) were donated by OMVS (Senegal River Basin Development Organization) and BAYER AG (Germany),\n", - "respectively, while the three other brands (PermaNet(r) 2.0, Dawa Plus(r) 2.0 and NetProtect(r)) were purchased from vendors approved by manufacturers.\n", - "\n", - "header: Extraction of deltamethrin\n", - "\n", - "Each specimen set was weighed and placed in a 125 ml screw capped Erlenmeyer flask and 50 ml of the extraction solvent mixture was added making sure that the net was completely submerged in the mixture. The flask was tightly capped and sealed with paraffin film before placing in an ultrasonic bath for 15 min. Later the flask was shaken in a bath at 25 degC for 30 min at a frequency of 155 cycles per min. The extract was transferred into a chromatographic vial after filtering through a glass syringe fitted with a 0.45 mm reconstituted cellulose syringe filter.\n", - "\n", - "header: Physical integrity\n", - "\n", - "At least 83% (95% CI 80-90) of mosquito nets had holes (all types of holes) at the end of the study. Except the Life Net(r), the average number of holes increased with time for all LLINs. For the LLINs inspected in laboratory, at the end of the 6th semester of follow-up, the majority of them had holes, with average proportions of 95.2% 95%, 93.3%, 100% and 60% for Dawa Plus(r) 2.0, NetProtect(r) PermaNet(r) 2.0, Olyset Net(r) and Life Net(r), respectively. The average number of holes remained relatively low for Life Net(r) (Fisher's exact test, OR: 12.02; 95% CI 0.96-684.89, P = 0.027).\n", - "\n", - "At each semester, size 1 holes (Fig. 3) were predominant for all types of mosquito nets. The average number of holes (all types) per mosquito net was 39 per LLIN at the end of six semesters of study. It was 13, 39, 15, 48 and 54 respectively for Life Net(r), NetProtect(r) Dawa Plus(r) 2.0, PermaNet(r) 2.0 and Olyset Net(r), respectively. Only NetProtect(r) and PermaNet(r) 2.0 types were still in good condition at the end of the three-year study (Table 3). Proportions of mosquito nets in good condition in\n", - "\n", - "Figure 2: Retained proportions not removed (red), retention after sampling (blue) and cumulative number of nets removed by type and semester after 3 years\n", - "households were 71% (NetProtect(r)) and 50% (PernaNet(r) 2.0) in both mosquito nets.\n", - "\n", - "header: Ethics approval and consent to participate: Consent for publication\n", - "\n", - "Not applicable.\n", - "\n", - "header: Rate of sampling mosquito nets, retention of LLINs\n", - "\n", - "From the beginning of the study in 2011 to the end in 2014 (6 semesters), 839 mosquito nets (all types) were removed representing 93.2% of the expected 900 LLINs to be removed (Fig. 2, Table 3). Of the 180 mosquito nets of each brand expected to be sampled, 94.4%, 79.4%, 94.4%, 98.9% and 98.3% of the Dawa Plus(r) 2.0, Life Net(r), NetProtect(r), Olyset Net(r) and PermaNet(r) 2.0, respectively, were removed from the field. The number of mosquito nets sampled was less than the 28-30 units expected in the 5th and 6th semester for Life Net(r), and in the 6th semester for Dawa Plus(r) 2.0 and NetProtect(r). At the end of the study, the retention rate of all five LLIN types was 12.5% (95% CI 11.4-13.7) based on the total number of nets distributed and was relatively better for Olyset Net(r) at 20.5% (95% CI 17.8-23.4) and to a lesser extent for Dawa Plus(r) 2.0 with 15.1% (95% CI 12.4-18.2). With more than half of the mosquito nets not found after only two semesters of follow-up, the average percentage of Life Net(r) found in households fell to about one in five mosquito nets distributed remaining in the third semester.\n", - "\n", - "header: Table 3 Physical integrity of the LLINs inspected in the laboratory per type and semester after three years\n", - "footer: N: Number of samples \n", - "columns: ['Semesters', 'Types', 'N', 'General State - Good condition - N', 'General State - Good condition - %', 'General State - Serviceable condition - N', 'General State - Serviceable condition - %', 'General State - Tear - N', 'General State - Tear - %']\n", - "\n", - "{\"0\":{\"Semesters\":1,\"Types\":\"Dawa Plus\\u00ae 2.0\",\"N\":30,\"General State - Good condition - N\":21,\"General State - Good condition - %\":70.0,\"General State - Serviceable condition - N\":2,\"General State - Serviceable condition - %\":7.0,\"General State - Tear - N\":7,\"General State - Tear - %\":23.0},\"1\":{\"Semesters\":1,\"Types\":\"Life Net\\u00ae\",\"N\":30,\"General State - Good condition - N\":28,\"General State - Good condition - %\":93.3,\"General State - Serviceable condition - N\":1,\"General State - Serviceable condition - %\":3.3,\"General State - Tear - N\":1,\"General State - Tear - %\":3.3},\"2\":{\"Semesters\":1,\"Types\":\"NetProtect\\u00ae\",\"N\":30,\"General State - Good condition - N\":26,\"General State - Good condition - %\":86.7,\"General State - Serviceable condition - N\":0,\"General State - Serviceable condition - %\":0.0,\"General State - Tear - N\":4,\"General State - Tear - %\":13.3},\"3\":{\"Semesters\":1,\"Types\":\"Olyset Net\\u00ae\",\"N\":30,\"General State - Good condition - N\":13,\"General State - Good condition - %\":43.3,\"General State - Serviceable condition - N\":7,\"General State - Serviceable condition - %\":23.3,\"General State - Tear - N\":10,\"General State - Tear - %\":33.4},\"4\":{\"Semesters\":1,\"Types\":\"PermaNet\\u00ae 2.0\",\"N\":30,\"General State - Good condition - N\":19,\"General State - Good condition - %\":63.3,\"General State - Serviceable condition - N\":0,\"General State - Serviceable condition - %\":0.0,\"General State - Tear - N\":11,\"General State - Tear - %\":36.7},\"5\":{\"Semesters\":2,\"Types\":\"Dawa Plus\\u00ae 2.0\",\"N\":30,\"General State - Good condition - N\":18,\"General State - Good condition - %\":60.0,\"General State - Serviceable condition - N\":5,\"General State - Serviceable condition - %\":16.7,\"General State - Tear - N\":7,\"General State - Tear - %\":23.3},\"6\":{\"Semesters\":2,\"Types\":\"Life Net\\u00ae\",\"N\":30,\"General State - Good condition - N\":24,\"General State - Good condition - %\":80.0,\"General State - Serviceable condition - N\":0,\"General State - Serviceable condition - %\":0.0,\"General State - Tear - N\":6,\"General State - Tear - %\":20.0},\"7\":{\"Semesters\":2,\"Types\":\"NetProtect\\u00ae\",\"N\":30,\"General State - Good condition - N\":22,\"General State - Good condition - %\":73.3,\"General State - Serviceable condition - N\":2,\"General State - Serviceable condition - %\":6.7,\"General State - Tear - N\":6,\"General State - Tear - %\":20.0},\"8\":{\"Semesters\":2,\"Types\":\"Olyset Net\\u00ae\",\"N\":30,\"General State - Good condition - N\":13,\"General State - Good condition - %\":43.3,\"General State - Serviceable condition - N\":10,\"General State - Serviceable condition - %\":33.4,\"General State - Tear - N\":7,\"General State - Tear - %\":23.3},\"9\":{\"Semesters\":2,\"Types\":\"PermaNet\\u00ae 2.0\",\"N\":28,\"General State - Good condition - N\":10,\"General State - Good condition - %\":35.7,\"General State - Serviceable condition - N\":2,\"General State - Serviceable condition - %\":7.1,\"General State - Tear - N\":16,\"General State - Tear - %\":57.2},\"10\":{\"Semesters\":3,\"Types\":\"Dawa Plus\\u00ae 2.0\",\"N\":30,\"General State - Good condition - N\":15,\"General State - Good condition - %\":50.0,\"General State - Serviceable condition - N\":5,\"General State - Serviceable condition - %\":17.0,\"General State - Tear - N\":10,\"General State - Tear - %\":33.0},\"11\":{\"Semesters\":3,\"Types\":\"Life Net\\u00ae\",\"N\":29,\"General State - Good condition - N\":18,\"General State - Good condition - %\":62.0,\"General State - Serviceable condition - N\":2,\"General State - Serviceable condition - %\":7.0,\"General State - Tear - N\":9,\"General State - Tear - %\":31.0},\"12\":{\"Semesters\":3,\"Types\":\"NetProtect\\u00ae\",\"N\":30,\"General State - Good condition - N\":18,\"General State - Good condition - %\":60.0,\"General State - Serviceable condition - N\":12,\"General State - Serviceable condition - %\":40.0,\"General State - Tear - N\":0,\"General State - Tear - %\":0.0},\"13\":{\"Semesters\":3,\"Types\":\"Olyset Net\\u00ae\",\"N\":28,\"General State - Good condition - N\":7,\"General State - Good condition - %\":25.0,\"General State - Serviceable condition - N\":9,\"General State - Serviceable condition - %\":32.0,\"General State - Tear - N\":12,\"General State - Tear - %\":43.0},\"14\":{\"Semesters\":3,\"Types\":\"PermaNet \\u00ae2.0\",\"N\":30,\"General State - Good condition - N\":19,\"General State - Good condition - %\":63.0,\"General State - Serviceable condition - N\":2,\"General State - Serviceable condition - %\":7.0,\"General State - Tear - N\":9,\"General State - Tear - %\":30.0},\"15\":{\"Semesters\":4,\"Types\":\"Dawa Plus\\u00ae 2.0\",\"N\":30,\"General State - Good condition - N\":1,\"General State - Good condition - %\":3.0,\"General State - Serviceable condition - N\":20,\"General State - Serviceable condition - %\":67.0,\"General State - Tear - N\":9,\"General State - Tear - %\":30.0},\"16\":{\"Semesters\":4,\"Types\":\"Life Net\\u00ae\",\"N\":29,\"General State - Good condition - N\":25,\"General State - Good condition - %\":86.0,\"General State - Serviceable condition - N\":3,\"General State - Serviceable condition - %\":10.0,\"General State - Tear - N\":1,\"General State - Tear - %\":3.0},\"17\":{\"Semesters\":4,\"Types\":\"NetProtect\\u00ae\",\"N\":30,\"General State - Good condition - N\":14,\"General State - Good condition - %\":47.0,\"General State - Serviceable condition - N\":3,\"General State - Serviceable condition - %\":10.0,\"General State - Tear - N\":13,\"General State - Tear - %\":43.0},\"18\":{\"Semesters\":4,\"Types\":\"Olyset Net\\u00ae\",\"N\":30,\"General State - Good condition - N\":0,\"General State - Good condition - %\":0.0,\"General State - Serviceable condition - N\":24,\"General State - Serviceable condition - %\":80.0,\"General State - Tear - N\":6,\"General State - Tear - %\":20.0},\"19\":{\"Semesters\":4,\"Types\":\"PermaNet \\u00ae2.0\",\"N\":30,\"General State - Good condition - N\":11,\"General State - Good condition - %\":37.0,\"General State - Serviceable condition - N\":11,\"General State - Serviceable condition - %\":37.0,\"General State - Tear - N\":8,\"General State - Tear - %\":27.0},\"20\":{\"Semesters\":5,\"Types\":\"Dawa Plus\\u00ae 2.0\",\"N\":29,\"General State - Good condition - N\":10,\"General State - Good condition - %\":34.0,\"General State - Serviceable condition - N\":10,\"General State - Serviceable condition - %\":34.0,\"General State - Tear - N\":9,\"General State - Tear - %\":31.0},\"21\":{\"Semesters\":5,\"Types\":\"Life Net\\u00ae\",\"N\":15,\"General State - Good condition - N\":15,\"General State - Good condition - %\":0.0,\"General State - Serviceable condition - N\":0,\"General State - Serviceable condition - %\":0.0,\"General State - Tear - N\":0,\"General State - Tear - %\":0.0},\"22\":{\"Semesters\":5,\"Types\":\"NetProtect\\u00ae\",\"N\":30,\"General State - Good condition - N\":16,\"General State - Good condition - %\":53.0,\"General State - Serviceable condition - N\":3,\"General State - Serviceable condition - %\":10.0,\"General State - Tear - N\":11,\"General State - Tear - %\":37.0},\"23\":{\"Semesters\":5,\"Types\":\"Olyset Net\\u00ae\",\"N\":30,\"General State - Good condition - N\":5,\"General State - Good condition - %\":17.0,\"General State - Serviceable condition - N\":18,\"General State - Serviceable condition - %\":60.0,\"General State - Tear - N\":7,\"General State - Tear - %\":23.0},\"24\":{\"Semesters\":5,\"Types\":\"PermaNet\\u00ae 2.0\",\"N\":29,\"General State - Good condition - N\":16,\"General State - Good condition - %\":55.0,\"General State - Serviceable condition - N\":6,\"General State - Serviceable condition - %\":21.0,\"General State - Tear - N\":7,\"General State - Tear - %\":24.0},\"25\":{\"Semesters\":6,\"Types\":\"Dawa Plus\\u00ae 2.0\",\"N\":21,\"General State - Good condition - N\":1,\"General State - Good condition - %\":5.0,\"General State - Serviceable condition - N\":18,\"General State - Serviceable condition - %\":86.0,\"General State - Tear - N\":3,\"General State - Tear - %\":14.0},\"26\":{\"Semesters\":6,\"Types\":\"Life Net\\u00ae\",\"N\":10,\"General State - Good condition - N\":0,\"General State - Good condition - %\":0.0,\"General State - Serviceable condition - N\":0,\"General State - Serviceable condition - %\":0.0,\"General State - Tear - N\":10,\"General State - Tear - %\":100.0},\"27\":{\"Semesters\":6,\"Types\":\"NetProtect\\u00ae\",\"N\":21,\"General State - Good condition - N\":15,\"General State - Good condition - %\":71.0,\"General State - Serviceable condition - N\":1,\"General State - Serviceable condition - %\":5.0,\"General State - Tear - N\":5,\"General State - Tear - %\":24.0},\"28\":{\"Semesters\":6,\"Types\":\"Olyset Net\\u00ae\",\"N\":30,\"General State - Good condition - N\":2,\"General State - Good condition - %\":7.0,\"General State - Serviceable condition - N\":24,\"General State - Serviceable condition - %\":80.0,\"General State - Tear - N\":4,\"General State - Tear - %\":13.0},\"29\":{\"Semesters\":6,\"Types\":\"PermaNet \\u00ae2.0\",\"N\":30,\"General State - Good condition - N\":15,\"General State - Good condition - %\":50.0,\"General State - Serviceable condition - N\":10,\"General State - Serviceable condition - %\":33.0,\"General State - Tear - N\":5,\"General State - Tear - %\":17.0}}\n", - "\n", - "header: Competing interests\n", - "\n", - "The authors declare that they have no competing interests.\n", - "\n", - "header: Physical integrity of LLINs\n", - "\n", - "The condition of each LLIN was checked every six months. Physical integrity of sampled LLINs was assessed in the laboratory by searching for holes or tears on 170 Dawa Plus(r) 2.0, 171 NetProtect(r), 143 Life Net(r), 178 Olyset Net(r) and 177 PermaNet(r) 2.0. Holes were classified as size 1 (0.5-2 cm diameter), size 2 (2-10 cm diameter) or size 3 (diameter > 10 cm) [28]. The proportional hole index (pHI) value was calculated on each LLIN inspected per WHO guidelines [28, 29]. It is the sum of the proportional indexes by categories. The proportional index for a category was the product of the number of holes in category and the index attributed to that size:\n", - "\n", - "\\[\\begin{array}{l} {\\text{pH}} \\equiv \\neq \\text{size}\\;1\\;\\text{holes}\\;\\times\\;1+(\\text{\\#size}\\;2\\;\\text{holes}\\; \\times\\;23)\\\\ {}\n", - "\n", - "\n", - "\n", - "{\n", - "\n", - "\n", - "sampling pattern recommended by WHOPES [28]. For all the net samples, insecticide from five swatches of all the four sides and one from the top were extracted and analysed. Each specimen was trimmed to a 10 cm x 10 cm square (0.010m2) using a die cutting in a pneumatic press. During the cutting operation, each specimen was sandwiched between layers of aluminum foil to prevent cross-contamination. The specimen set from each net was analysed as a group to yield an average value of insecticide concentration for the whole net. Chemical analysis was based on methods published by the Collaborative International Pesticides Analytical Council (CIPAC). Deltamethrin analysis of PermaNet(r)2.0 and Dawa Plus(r) samples was based on CIPAC Method 333 [32-34].\n", - "\n", - "header: Data entry and statistical analysis\n", - "\n", - "Household survey data were entered on EPI data Entry 3.0, exported to Excel Microsoft office 2010 and analysed with R software. The calculation of proportions and averages was done according to the normal law by 95% Confidence Intervals (CI). Comparisons and proportions were made by Chi-squared tests (kh2) of homogeneity. Generalized linear models were performed to understand the relationship between mosquito mortality and LLIN washing and mortality bioassay results and insecticide chemical content. The analysis of the condition of the mosquito net, the values obtained for pHI, the torn surface and its shape was used to establish one of the criteria of durability [28]; a mosquito net was in good condition when the pHI was between 0 and 64, is usable when pHI was in 65-642 and was too torn when the pHI was greater than 643 [30]. The acceptable residual efficacy of each type of LLIN was determined based on WHO criteria [30].\n", - "\n", - "Residual efficacy was optimal if the KD 60 or the mortality rate (MR), defined as the number of dead females\n", - "relative to the total number of mosquitoes exposed per mosquito net was >= 95% or >= 80%, respectively, after 20 washes in the laboratory or after three years of use [28]. The proportion of mosquito nets meeting optimal bio efficacy levels of KD60 and mortality rates were determined for each type of LLINs by performing cone bioassays in the laboratory. A minimal bio-efficacy criteria of >= 75% for KD or >= 50% mortality rate was used to determine the efficacy status of LLINs [28]. The MR was corrected by the Abbott formula [35] if the mortality rate for controls was less than 20% and the bioassay was redone if it was greater than 20%. Generalized linear regression models were run to estimate the relationship in mortality rate between washed and non-washed mosquito nets.\n", - "\n", - "The retention rate was calculated for each type of LLIN at each follow up period. It was defined as the ratio of the number of the original study mosquito nets available in households to the total number of mosquito nets initially distributed. The mosquito nets declared lost but found in the following survey were included in the calculation of the retention rate of the previous semester.\n", - "\n", - "header: Table 1: Characteristics of types of LLINs distributed in study areas\n", - "footer: None\n", - "columns: ['Type of LLINs', 'Manufacturers', 'Material', 'Mesh (holes/ square inch2)', 'Denier', 'Insecticide', 'Standard Dose (mg/ m2)']\n", - "\n", - "{\"0\":{\"Type of LLINs\":\"NetProtect\\u00ae\",\"Manufacturers\":\"Intelligent Insect Control, France\",\"Material\":\"Polyethylene\",\"Mesh (holes\\/ square inch2)\":136,\"Denier\":\"118\",\"Insecticide\":\"Deltamethrin\",\"Standard Dose (mg\\/ m2)\":68},\"1\":{\"Type of LLINs\":\"PermaNet\\u00ae 2.0\",\"Manufacturers\":\"Vestergaard-Frandsen, Suisse\",\"Material\":\"Polyester\",\"Mesh (holes\\/ square inch2)\":156,\"Denier\":\"75\",\"Insecticide\":\"Deltamethrin\",\"Standard Dose (mg\\/ m2)\":55},\"2\":{\"Type of LLINs\":\"Dawa Plus\\u00ae 2.0\",\"Manufacturers\":\"Tana Netting, CO,LTD,Thailand\",\"Material\":\"Polyester\",\"Mesh (holes\\/ square inch2)\":156,\"Denier\":\"75\",\"Insecticide\":\"Deltamethrin\",\"Standard Dose (mg\\/ m2)\":80},\"3\":{\"Type of LLINs\":\"Olyset Net\\u00ae\",\"Manufacturers\":\"Sumitomo Chemical, Japon\",\"Material\":\"Polyethylene\",\"Mesh (holes\\/ square inch2)\":56,\"Denier\":\"> 150\",\"Insecticide\":\"Permethrin\",\"Standard Dose (mg\\/ m2)\":1000},\"4\":{\"Type of LLINs\":\"Life Net\\u00ae\",\"Manufacturers\":\"Bayer CropSciences, France\",\"Material\":\"Polypropylene\",\"Mesh (holes\\/ square inch2)\":156,\"Denier\":\"110\",\"Insecticide\":\"Deltamethrin\",\"Standard Dose (mg\\/ m2)\":340}}\n", - "\n", - "header: Use and maintenance of LLINs\n", - "\n", - "The regular use of the mosquito nets (use the night before the survey) at the end of the follow up was 23.3%, 38.5%, 7.3%, 78.3% and 16.1% for the Dawa Plus(r) 2.0, Life Net(r), NetProtect(r) Olyset Net(r) and PermaNet(r) 2.0 types, respectively. For the NetProtect(r) this rate was statistically lower compared to the Life Net(r) and Olyset Net(r) (Fisher's exact test, OR: 0.13; 95% CI: 0.017-0.83, P = 0.014; Fisher's exact test, OR: 0.022; 95% CI 0.017-0.83, P < 0.001).\n", - "\n", - "Dawa Plus(r) 2.0 and PermaNet(r) 2.0 used the night before the survey consistently exceeded 50% during the first four semesters. For Olyset Net(r), this rate was always above 60% during the three years of follow-up. In contrast, the NetProtect(r) and Life Net(r) types were the least used in households. Their regular use rates were only satisfactory in the first two semesters following LLINs distribution, with 52.6% (95% CI 47.7-57.5) for NetProtect(r) in semester one and 53% (95% CI 46-59.6) for Life Net(r) in the second.\n", - "\n", - "For all LLIN types distributed, only 19% (95% CI 18-20) were washed. The results obtained with washing habits showed that 66% (95% CI 64-69) of the washed mosquito nets were washed with warm water. In addition, 73% (95% CI 71-76) of the cases used local soap and 50% of the mosquito net was dried in shade after the washing.\n", - "\n", - "header: Conclusions\n", - "\n", - "The evaluation of LLINs after three years of use revealed a loss of integrity of almost all types of nets distributed. Despite this loss of integrity, biological efficacy was maintained for the Dawa Plus(r) 2.0, PermaNet(r) 2.0 and Life Net(r) brands.\n", - "\n", - "header: Abbreviations\n", - "\n", - "Cl 95%: Confidence interval 95%: CIO: Collaborative international pesticides analytical council; KD60: Proportion of mosquitoes knocked down at 60 min post-exposure; HPLC: High performance liquid chromatography; IQR: Intra quarter-time; LINK: Long-lasting insecticidal nets; pH: Proportional hole index; MW: World Health Organization; WHOPS: World Health Organization pesticide evaluation scheme; UV: Ultraviolet; PVC: Polyvinyl chloride; CDC: Centers for disease control and prevention; MR: Mortality rate; CNRS: National research on contract for health; OMVS: Senegal river basin development organization; NMC: National malaria control programme; P: Probability; OR: Odd ratio.\n", - "\n", - "header: Availability of data and materials\n", - "\n", - "The data used and analysed during the current study are available from the corresponding author on reasonable request.\n", - "\n", - "header: Funding\n", - "\n", - "- This work was supported by President's Malaria Initiative and Universite Cheikh Anta Diop (Dakar).\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ITNCondition` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: PermaNet(r) 2.0 and Dawa Plus(r) 2.0: Life Net(r) and NetProtect(r)\n", - "\n", - "Each specimen set was weighed and placed in a 250 ml round-bottom boiling flask followed by the addition of 95 ml of xylene and 5 ml of a known concentration of internal standard dipropyl phthalate, (2 mg/ml). The flask was fitted with a reflux condenser and heated to boiling for 30 min. After cooling, approximately 2.5 ml of the extract was filtered and transferred to a glass tube and evaporated to dryness under a stream of dry nitrogen for 30 min at 60 degC. A known volume (0.75 ml) of the mobile phase (94/6 (v/v) isooctane/1, 4-dioxane) was used to reconstitute the residue and was transferred to a sample vial using a glass syringe fitted with a 0.45 mm reconstituted cellulose syringe filter. The filtrate was centrifuged (500g) for 2 min and transferred into a chromatographic vial after filtering through a glass syringe fitted with a 0.45 mm reconstituted cellulose syringe filter.\n", - "\n", - "header: Gas chromatography analysis\n", - "\n", - "The extracts were analysed using an Agilent 6890 N chromatograph fitted with a 30 m x 0.25 mm (i.d.) fused silica DB-1 capillary column coated with 0.25 mm cross linked polydimethylsiloxane stationary phase. Ultra-high purity nitrogen (1.2 ml/min) was used as the carrier gas. Injector port, column oven, and detector temperatures were 265 degC, 240 degC, and 300 degC, respectively. Flame ionization (FID) was used for analyte detection. Two injections were used for each sample and the results averaged. Permethrin concentration was calculated by comparing permethrin/triphenyl phosphate peak area ratios against a calibration curve generated from solutions containing known permethrin /triphenyl phosphate mass ratios.\n", - "\n", - "header: Extraction of permethrin for Olyset Net(r)\n", - "\n", - "Permethrin analysis of Olyset Net(r) samples was based on CIPAC Method 331 [31]. Each specimen set was weighed and placed in a 100 ml round-bottom boiling flask, followed by heptane (45 ml) and triphenyl phosphate internal standard (5.0 ml of known concentration in heptane). The flask was fitted with a reflux condenser and heated to boiling for 45 min. After cooling, approximately 1.5 ml of the extract was transferred to a chromatographic sample vial using a glass syringe fitted with a 0.45 mm reconstituted cellulose syringe filter.\n", - "\n", - "header: Author details\n", - "\n", - "- Laboratoire d'Ecologie Vectorieile et Parastaire, Département de Biologie Animal, Faculte Des Sciences et Techniques, Universite Cheikh Anta Diop, Dakar, Senegal. 2institut Pasteur de Dakar, Dakar, Senegal. 3Laboratoire de Télédétection Appliquee, (ITA/IST/FST/UCAD, Dakar, Senegal. 4Division of Parabolic Diseases and Malaria, Centers for Disease Control (CDC) and Prevention, Atlanta, GA, USA.\n", - "\n", - "header: Mosquito net coverage\n", - "\n", - "A total of 3012 nets were distributed in 1249 households (Table 2). The overall average household coverage, 94% (95% CI 92.68-95.3), was 68.2% (95% CI 63.63-72.77) and 92% (95% CI 90-94) in Mbagame and Thies area villages, respectively. Moreover, the average percentage of households receiving only one mosquito net was 26% (95% CI 23-28) in all areas. The average percentage of households in Mbagame and Thies receiving only one mosquito net was estimated as 41.8% (95% CI 36.9-46.8) and 17.4% (95% CI 15-20.6), respectively.\n", - "\n", - "The global coverage of sleeping spaces (3,012/3,840) was 78% (95% CI 77-78). However, the sleeping space coverage in Mbagame area was estimated at 68.2% (95% CI: 65-70), and 95.3% (95% CI 94-96) in the villages surrounding Thies.\n", - "\n", - "header: Extraction of deltamethrin\n", - "\n", - "Each specimen set was weighed and placed in a 125 ml screw capped Erlenmeyer flask and 50 ml of the extraction solvent mixture was added making sure that the net was completely submerged in the mixture. The flask was tightly capped and sealed with paraffin film before placing in an ultrasonic bath for 15 min. Later the flask was shaken in a bath at 25 degC for 30 min at a frequency of 155 cycles per min. The extract was transferred into a chromatographic vial after filtering through a glass syringe fitted with a 0.45 mm reconstituted cellulose syringe filter.\n", - "\n", - "header: Ethics approval and consent to participate: Consent for publication\n", - "\n", - "Not applicable.\n", - "\n", - "header: Competing interests\n", - "\n", - "The authors declare that they have no competing interests.\n", - "\n", - "header: High performance liquid chromatography (HPLC) analysis\n", - "\n", - "The deltamethrin content was analysed using Agilent 1200 HPLC equipped with a UV detector set at 230 nm and a 150 x 4.6 mm (i.d.) Ascents Si 5 mm column held at 40 degC. The mobile phase was 94/6 (v/v) isooctane/1, 4-dioxane with a flow rate of 1.5 ml/min. For each extract, three injections of 20 ml were made. Injections, calibrations, and quantification of the deltamethrin content were followed as per the procedure in the Collaborative International Pesticides Analytical Council (CIPAC) 333 [32-34].\n", - "\n", - "header: Methods\n", - "\n", - "A total of five brands of LLINs were distributed to households: NetProtect(r), PermaNet(r) 2.0, Dawa Plus(r) 2.0, Olyset Net(r) and Life Net(r) (Table 1). NetProtect(r) mosquito nets were white, rectangular (length = 190, width = 180 and height = 150 cm) made of 118 denier polyethylene mono filaments and 136 holes/in2 mesh. PermaNet(r) 2.0 mosquito nets were white, rectangular (length = 190, width = 180 and height = 200 cm), made with 75 denier polyester filament tulle and 156 holes/inch2 mesh. Dawa Plus(r) 2.0 were white, rectangular (length = 200, width = 160 and height = 180 cm), made of polyester multi-filament tulle, 75 deniers and 156 holes/inch2 mesh. Olyset Net(r) were white, conical (circumference 1250 cm, height = 250 cm), made with a denier polyethylene mono filament tulle greater than 150 cm and 56 holes/inch2 mesh. Life Net(r) nets were the only mosquito nets made from polypropylene, they were white, rectangular (length = 190, width = 180 and height = 150 cm) made with multi-filament tulle with 110 denier and 156 holes/inch2 mesh.\n", - "\n", - "Aside from the Olyset Net(r) mosquito nets which were treated with permethrin, all other nets distributed were impregnated with deltamethrin. Olyset Net(r) and Life Net(r) were donated by OMVS (Senegal River Basin Development Organization) and BAYER AG (Germany),\n", - "respectively, while the three other brands (PermaNet(r) 2.0, Dawa Plus(r) 2.0 and NetProtect(r)) were purchased from vendors approved by manufacturers.\n", - "\n", - "header: Abbreviations\n", - "\n", - "Cl 95%: Confidence interval 95%: CIO: Collaborative international pesticides analytical council; KD60: Proportion of mosquitoes knocked down at 60 min post-exposure; HPLC: High performance liquid chromatography; IQR: Intra quarter-time; LINK: Long-lasting insecticidal nets; pH: Proportional hole index; MW: World Health Organization; WHOPS: World Health Organization pesticide evaluation scheme; UV: Ultraviolet; PVC: Polyvinyl chloride; CDC: Centers for disease control and prevention; MR: Mortality rate; CNRS: National research on contract for health; OMVS: Senegal river basin development organization; NMC: National malaria control programme; P: Probability; OR: Odd ratio.\n", - "\n", - "header: Conclusions\n", - "\n", - "The evaluation of LLINs after three years of use revealed a loss of integrity of almost all types of nets distributed. Despite this loss of integrity, biological efficacy was maintained for the Dawa Plus(r) 2.0, PermaNet(r) 2.0 and Life Net(r) brands.\n", - "\n", - "header: Physical integrity\n", - "\n", - "At least 83% (95% CI 80-90) of mosquito nets had holes (all types of holes) at the end of the study. Except the Life Net(r), the average number of holes increased with time for all LLINs. For the LLINs inspected in laboratory, at the end of the 6th semester of follow-up, the majority of them had holes, with average proportions of 95.2% 95%, 93.3%, 100% and 60% for Dawa Plus(r) 2.0, NetProtect(r) PermaNet(r) 2.0, Olyset Net(r) and Life Net(r), respectively. The average number of holes remained relatively low for Life Net(r) (Fisher's exact test, OR: 12.02; 95% CI 0.96-684.89, P = 0.027).\n", - "\n", - "At each semester, size 1 holes (Fig. 3) were predominant for all types of mosquito nets. The average number of holes (all types) per mosquito net was 39 per LLIN at the end of six semesters of study. It was 13, 39, 15, 48 and 54 respectively for Life Net(r), NetProtect(r) Dawa Plus(r) 2.0, PermaNet(r) 2.0 and Olyset Net(r), respectively. Only NetProtect(r) and PermaNet(r) 2.0 types were still in good condition at the end of the three-year study (Table 3). Proportions of mosquito nets in good condition in\n", - "\n", - "Figure 2: Retained proportions not removed (red), retention after sampling (blue) and cumulative number of nets removed by type and semester after 3 years\n", - "households were 71% (NetProtect(r)) and 50% (PernaNet(r) 2.0) in both mosquito nets.\n", - "\n", - "header: Results\n", - "\n", - "A total of 1,249 households were enrolled in both study areas. On average, 92.7% (95% CI 90-94) of heads of households were men, with an average 53 years of age. This average percentage was 78.2% in the Mbagame area with an average age of 52 years (95% CI 49-55) and 94.8% in the villages around Thies with a mean age of 53 years (95% CI 51.6-54.4) (P < 0.001). The average percentage of heads of households with any schooling was 38.4% (95% CI 34-42). The gender breakdown was 96% for men (n = 456) and 4% for women (n = 19).\n", - "\n", - "Of 604 households, 37.7% (228/604) had means of transportation among which 68% (95% CI 61-74) used carts while only 14% (95% CI 8-20) owned cars. The overall average percentage of households with electricity was 31% (95% CI 27-35). In Mbagame village, 87.2% households had electricity compared to an average of 22.6% for the study villages near Thies (_kh_2 = 132.4377, df = 1, P < 0.0001). Wood was the main form of fuel for cooking in 97.7% of households in both study areas.\n", - "\n", - "header: Rate of sampling mosquito nets, retention of LLINs\n", - "\n", - "From the beginning of the study in 2011 to the end in 2014 (6 semesters), 839 mosquito nets (all types) were removed representing 93.2% of the expected 900 LLINs to be removed (Fig. 2, Table 3). Of the 180 mosquito nets of each brand expected to be sampled, 94.4%, 79.4%, 94.4%, 98.9% and 98.3% of the Dawa Plus(r) 2.0, Life Net(r), NetProtect(r), Olyset Net(r) and PermaNet(r) 2.0, respectively, were removed from the field. The number of mosquito nets sampled was less than the 28-30 units expected in the 5th and 6th semester for Life Net(r), and in the 6th semester for Dawa Plus(r) 2.0 and NetProtect(r). At the end of the study, the retention rate of all five LLIN types was 12.5% (95% CI 11.4-13.7) based on the total number of nets distributed and was relatively better for Olyset Net(r) at 20.5% (95% CI 17.8-23.4) and to a lesser extent for Dawa Plus(r) 2.0 with 15.1% (95% CI 12.4-18.2). With more than half of the mosquito nets not found after only two semesters of follow-up, the average percentage of Life Net(r) found in households fell to about one in five mosquito nets distributed remaining in the third semester.\n", - "\n", - "header: Data entry and statistical analysis\n", - "\n", - "Household survey data were entered on EPI data Entry 3.0, exported to Excel Microsoft office 2010 and analysed with R software. The calculation of proportions and averages was done according to the normal law by 95% Confidence Intervals (CI). Comparisons and proportions were made by Chi-squared tests (kh2) of homogeneity. Generalized linear models were performed to understand the relationship between mosquito mortality and LLIN washing and mortality bioassay results and insecticide chemical content. The analysis of the condition of the mosquito net, the values obtained for pHI, the torn surface and its shape was used to establish one of the criteria of durability [28]; a mosquito net was in good condition when the pHI was between 0 and 64, is usable when pHI was in 65-642 and was too torn when the pHI was greater than 643 [30]. The acceptable residual efficacy of each type of LLIN was determined based on WHO criteria [30].\n", - "\n", - "Residual efficacy was optimal if the KD 60 or the mortality rate (MR), defined as the number of dead females\n", - "relative to the total number of mosquitoes exposed per mosquito net was >= 95% or >= 80%, respectively, after 20 washes in the laboratory or after three years of use [28]. The proportion of mosquito nets meeting optimal bio efficacy levels of KD60 and mortality rates were determined for each type of LLINs by performing cone bioassays in the laboratory. A minimal bio-efficacy criteria of >= 75% for KD or >= 50% mortality rate was used to determine the efficacy status of LLINs [28]. The MR was corrected by the Abbott formula [35] if the mortality rate for controls was less than 20% and the bioassay was redone if it was greater than 20%. Generalized linear regression models were run to estimate the relationship in mortality rate between washed and non-washed mosquito nets.\n", - "\n", - "The retention rate was calculated for each type of LLIN at each follow up period. It was defined as the ratio of the number of the original study mosquito nets available in households to the total number of mosquito nets initially distributed. The mosquito nets declared lost but found in the following survey were included in the calculation of the retention rate of the previous semester.\n", - "\n", - "header: Availability of data and materials\n", - "\n", - "The data used and analysed during the current study are available from the corresponding author on reasonable request.\n", - "\n", - "header: Table 3 Physical integrity of the LLINs inspected in the laboratory per type and semester after three years\n", - "footer: N: Number of samples \n", - "columns: ['Semesters', 'Types', 'N', 'General State - Good condition - N', 'General State - Good condition - %', 'General State - Serviceable condition - N', 'General State - Serviceable condition - %', 'General State - Tear - N', 'General State - Tear - %']\n", - "\n", - "{\"0\":{\"Semesters\":1,\"Types\":\"Dawa Plus\\u00ae 2.0\",\"N\":30,\"General State - Good condition - N\":21,\"General State - Good condition - %\":70.0,\"General State - Serviceable condition - N\":2,\"General State - Serviceable condition - %\":7.0,\"General State - Tear - N\":7,\"General State - Tear - %\":23.0},\"1\":{\"Semesters\":1,\"Types\":\"Life Net\\u00ae\",\"N\":30,\"General State - Good condition - N\":28,\"General State - Good condition - %\":93.3,\"General State - Serviceable condition - N\":1,\"General State - Serviceable condition - %\":3.3,\"General State - Tear - N\":1,\"General State - Tear - %\":3.3},\"2\":{\"Semesters\":1,\"Types\":\"NetProtect\\u00ae\",\"N\":30,\"General State - Good condition - N\":26,\"General State - Good condition - %\":86.7,\"General State - Serviceable condition - N\":0,\"General State - Serviceable condition - %\":0.0,\"General State - Tear - N\":4,\"General State - Tear - %\":13.3},\"3\":{\"Semesters\":1,\"Types\":\"Olyset Net\\u00ae\",\"N\":30,\"General State - Good condition - N\":13,\"General State - Good condition - %\":43.3,\"General State - Serviceable condition - N\":7,\"General State - Serviceable condition - %\":23.3,\"General State - Tear - N\":10,\"General State - Tear - %\":33.4},\"4\":{\"Semesters\":1,\"Types\":\"PermaNet\\u00ae 2.0\",\"N\":30,\"General State - Good condition - N\":19,\"General State - Good condition - %\":63.3,\"General State - Serviceable condition - N\":0,\"General State - Serviceable condition - %\":0.0,\"General State - Tear - N\":11,\"General State - Tear - %\":36.7},\"5\":{\"Semesters\":2,\"Types\":\"Dawa Plus\\u00ae 2.0\",\"N\":30,\"General State - Good condition - N\":18,\"General State - Good condition - %\":60.0,\"General State - Serviceable condition - N\":5,\"General State - Serviceable condition - %\":16.7,\"General State - Tear - N\":7,\"General State - Tear - %\":23.3},\"6\":{\"Semesters\":2,\"Types\":\"Life Net\\u00ae\",\"N\":30,\"General State - Good condition - N\":24,\"General State - Good condition - %\":80.0,\"General State - Serviceable condition - N\":0,\"General State - Serviceable condition - %\":0.0,\"General State - Tear - N\":6,\"General State - Tear - %\":20.0},\"7\":{\"Semesters\":2,\"Types\":\"NetProtect\\u00ae\",\"N\":30,\"General State - Good condition - N\":22,\"General State - Good condition - %\":73.3,\"General State - Serviceable condition - N\":2,\"General State - Serviceable condition - %\":6.7,\"General State - Tear - N\":6,\"General State - Tear - %\":20.0},\"8\":{\"Semesters\":2,\"Types\":\"Olyset Net\\u00ae\",\"N\":30,\"General State - Good condition - N\":13,\"General State - Good condition - %\":43.3,\"General State - Serviceable condition - N\":10,\"General State - Serviceable condition - %\":33.4,\"General State - Tear - N\":7,\"General State - Tear - %\":23.3},\"9\":{\"Semesters\":2,\"Types\":\"PermaNet\\u00ae 2.0\",\"N\":28,\"General State - Good condition - N\":10,\"General State - Good condition - %\":35.7,\"General State - Serviceable condition - N\":2,\"General State - Serviceable condition - %\":7.1,\"General State - Tear - N\":16,\"General State - Tear - %\":57.2},\"10\":{\"Semesters\":3,\"Types\":\"Dawa Plus\\u00ae 2.0\",\"N\":30,\"General State - Good condition - N\":15,\"General State - Good condition - %\":50.0,\"General State - Serviceable condition - N\":5,\"General State - Serviceable condition - %\":17.0,\"General State - Tear - N\":10,\"General State - Tear - %\":33.0},\"11\":{\"Semesters\":3,\"Types\":\"Life Net\\u00ae\",\"N\":29,\"General State - Good condition - N\":18,\"General State - Good condition - %\":62.0,\"General State - Serviceable condition - N\":2,\"General State - Serviceable condition - %\":7.0,\"General State - Tear - N\":9,\"General State - Tear - %\":31.0},\"12\":{\"Semesters\":3,\"Types\":\"NetProtect\\u00ae\",\"N\":30,\"General State - Good condition - N\":18,\"General State - Good condition - %\":60.0,\"General State - Serviceable condition - N\":12,\"General State - Serviceable condition - %\":40.0,\"General State - Tear - N\":0,\"General State - Tear - %\":0.0},\"13\":{\"Semesters\":3,\"Types\":\"Olyset Net\\u00ae\",\"N\":28,\"General State - Good condition - N\":7,\"General State - Good condition - %\":25.0,\"General State - Serviceable condition - N\":9,\"General State - Serviceable condition - %\":32.0,\"General State - Tear - N\":12,\"General State - Tear - %\":43.0},\"14\":{\"Semesters\":3,\"Types\":\"PermaNet \\u00ae2.0\",\"N\":30,\"General State - Good condition - N\":19,\"General State - Good condition - %\":63.0,\"General State - Serviceable condition - N\":2,\"General State - Serviceable condition - %\":7.0,\"General State - Tear - N\":9,\"General State - Tear - %\":30.0},\"15\":{\"Semesters\":4,\"Types\":\"Dawa Plus\\u00ae 2.0\",\"N\":30,\"General State - Good condition - N\":1,\"General State - Good condition - %\":3.0,\"General State - Serviceable condition - N\":20,\"General State - Serviceable condition - %\":67.0,\"General State - Tear - N\":9,\"General State - Tear - %\":30.0},\"16\":{\"Semesters\":4,\"Types\":\"Life Net\\u00ae\",\"N\":29,\"General State - Good condition - N\":25,\"General State - Good condition - %\":86.0,\"General State - Serviceable condition - N\":3,\"General State - Serviceable condition - %\":10.0,\"General State - Tear - N\":1,\"General State - Tear - %\":3.0},\"17\":{\"Semesters\":4,\"Types\":\"NetProtect\\u00ae\",\"N\":30,\"General State - Good condition - N\":14,\"General State - Good condition - %\":47.0,\"General State - Serviceable condition - N\":3,\"General State - Serviceable condition - %\":10.0,\"General State - Tear - N\":13,\"General State - Tear - %\":43.0},\"18\":{\"Semesters\":4,\"Types\":\"Olyset Net\\u00ae\",\"N\":30,\"General State - Good condition - N\":0,\"General State - Good condition - %\":0.0,\"General State - Serviceable condition - N\":24,\"General State - Serviceable condition - %\":80.0,\"General State - Tear - N\":6,\"General State - Tear - %\":20.0},\"19\":{\"Semesters\":4,\"Types\":\"PermaNet \\u00ae2.0\",\"N\":30,\"General State - Good condition - N\":11,\"General State - Good condition - %\":37.0,\"General State - Serviceable condition - N\":11,\"General State - Serviceable condition - %\":37.0,\"General State - Tear - N\":8,\"General State - Tear - %\":27.0},\"20\":{\"Semesters\":5,\"Types\":\"Dawa Plus\\u00ae 2.0\",\"N\":29,\"General State - Good condition - N\":10,\"General State - Good condition - %\":34.0,\"General State - Serviceable condition - N\":10,\"General State - Serviceable condition - %\":34.0,\"General State - Tear - N\":9,\"General State - Tear - %\":31.0},\"21\":{\"Semesters\":5,\"Types\":\"Life Net\\u00ae\",\"N\":15,\"General State - Good condition - N\":15,\"General State - Good condition - %\":0.0,\"General State - Serviceable condition - N\":0,\"General State - Serviceable condition - %\":0.0,\"General State - Tear - N\":0,\"General State - Tear - %\":0.0},\"22\":{\"Semesters\":5,\"Types\":\"NetProtect\\u00ae\",\"N\":30,\"General State - Good condition - N\":16,\"General State - Good condition - %\":53.0,\"General State - Serviceable condition - N\":3,\"General State - Serviceable condition - %\":10.0,\"General State - Tear - N\":11,\"General State - Tear - %\":37.0},\"23\":{\"Semesters\":5,\"Types\":\"Olyset Net\\u00ae\",\"N\":30,\"General State - Good condition - N\":5,\"General State - Good condition - %\":17.0,\"General State - Serviceable condition - N\":18,\"General State - Serviceable condition - %\":60.0,\"General State - Tear - N\":7,\"General State - Tear - %\":23.0},\"24\":{\"Semesters\":5,\"Types\":\"PermaNet\\u00ae 2.0\",\"N\":29,\"General State - Good condition - N\":16,\"General State - Good condition - %\":55.0,\"General State - Serviceable condition - N\":6,\"General State - Serviceable condition - %\":21.0,\"General State - Tear - N\":7,\"General State - Tear - %\":24.0},\"25\":{\"Semesters\":6,\"Types\":\"Dawa Plus\\u00ae 2.0\",\"N\":21,\"General State - Good condition - N\":1,\"General State - Good condition - %\":5.0,\"General State - Serviceable condition - N\":18,\"General State - Serviceable condition - %\":86.0,\"General State - Tear - N\":3,\"General State - Tear - %\":14.0},\"26\":{\"Semesters\":6,\"Types\":\"Life Net\\u00ae\",\"N\":10,\"General State - Good condition - N\":0,\"General State - Good condition - %\":0.0,\"General State - Serviceable condition - N\":0,\"General State - Serviceable condition - %\":0.0,\"General State - Tear - N\":10,\"General State - Tear - %\":100.0},\"27\":{\"Semesters\":6,\"Types\":\"NetProtect\\u00ae\",\"N\":21,\"General State - Good condition - N\":15,\"General State - Good condition - %\":71.0,\"General State - Serviceable condition - N\":1,\"General State - Serviceable condition - %\":5.0,\"General State - Tear - N\":5,\"General State - Tear - %\":24.0},\"28\":{\"Semesters\":6,\"Types\":\"Olyset Net\\u00ae\",\"N\":30,\"General State - Good condition - N\":2,\"General State - Good condition - %\":7.0,\"General State - Serviceable condition - N\":24,\"General State - Serviceable condition - %\":80.0,\"General State - Tear - N\":4,\"General State - Tear - %\":13.0},\"29\":{\"Semesters\":6,\"Types\":\"PermaNet \\u00ae2.0\",\"N\":30,\"General State - Good condition - N\":15,\"General State - Good condition - %\":50.0,\"General State - Serviceable condition - N\":10,\"General State - Serviceable condition - %\":33.0,\"General State - Tear - N\":5,\"General State - Tear - %\":17.0}}\n", - "\n", - "header: Table 5 Multiple regression washing and efficiency of LLINs\n", - "footer: CI: Confidence interval\n", - "columns: ['Parameter - Unnamed: 0_level_1', '95% Cl for odds Ratio - p-value', '95% Cl for odds Ratio - Lower', '95% Cl for odds Ratio - Odds ratio', '95% Cl for odds Ratio - Upper']\n", - "\n", - "{\"0\":{\"Parameter - Unnamed: 0_level_1\":\"Mortality (Intercept)\",\"95% Cl for odds Ratio - p-value\":\"<2.10\\u221216\",\"95% Cl for odds Ratio - Lower\":\"\\u2013\",\"95% Cl for odds Ratio - Odds ratio\":\"\\u2013\",\"95% Cl for odds Ratio - Upper\":\"\\u2013\"},\"1\":{\"Parameter - Unnamed: 0_level_1\":\"Ever Washed\",\"95% Cl for odds Ratio - p-value\":\"2.18 10\\u221211\",\"95% Cl for odds Ratio - Lower\":\"0.89\",\"95% Cl for odds Ratio - Odds ratio\":\"0.91\",\"95% Cl for odds Ratio - Upper\":\"0.94\"},\"2\":{\"Parameter - Unnamed: 0_level_1\":\"Insecticides\",\"95% Cl for odds Ratio - p-value\":\"2 10\\u221216\",\"95% Cl for odds Ratio - Lower\":\"1.0005\",\"95% Cl for odds Ratio - Odds ratio\":\"1.0006\",\"95% Cl for odds Ratio - Upper\":\"1.0007\"}}\n", - "\n", - "header: Physical integrity of LLINs\n", - "\n", - "The condition of each LLIN was checked every six months. Physical integrity of sampled LLINs was assessed in the laboratory by searching for holes or tears on 170 Dawa Plus(r) 2.0, 171 NetProtect(r), 143 Life Net(r), 178 Olyset Net(r) and 177 PermaNet(r) 2.0. Holes were classified as size 1 (0.5-2 cm diameter), size 2 (2-10 cm diameter) or size 3 (diameter > 10 cm) [28]. The proportional hole index (pHI) value was calculated on each LLIN inspected per WHO guidelines [28, 29]. It is the sum of the proportional indexes by categories. The proportional index for a category was the product of the number of holes in category and the index attributed to that size:\n", - "\n", - "\\[\\begin{array}{l} {\\text{pH}} \\equiv \\neq \\text{size}\\;1\\;\\text{holes}\\;\\times\\;1+(\\text{\\#size}\\;2\\;\\text{holes}\\; \\times\\;23)\\\\ {}\n", - "\n", - "\n", - "\n", - "{\n", - "\n", - "\n", - "sampling pattern recommended by WHOPES [28]. For all the net samples, insecticide from five swatches of all the four sides and one from the top were extracted and analysed. Each specimen was trimmed to a 10 cm x 10 cm square (0.010m2) using a die cutting in a pneumatic press. During the cutting operation, each specimen was sandwiched between layers of aluminum foil to prevent cross-contamination. The specimen set from each net was analysed as a group to yield an average value of insecticide concentration for the whole net. Chemical analysis was based on methods published by the Collaborative International Pesticides Analytical Council (CIPAC). Deltamethrin analysis of PermaNet(r)2.0 and Dawa Plus(r) samples was based on CIPAC Method 333 [32-34].\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `Observation` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: PermaNet(r) 2.0 and Dawa Plus(r) 2.0: Life Net(r) and NetProtect(r)\n", - "\n", - "Each specimen set was weighed and placed in a 250 ml round-bottom boiling flask followed by the addition of 95 ml of xylene and 5 ml of a known concentration of internal standard dipropyl phthalate, (2 mg/ml). The flask was fitted with a reflux condenser and heated to boiling for 30 min. After cooling, approximately 2.5 ml of the extract was filtered and transferred to a glass tube and evaporated to dryness under a stream of dry nitrogen for 30 min at 60 degC. A known volume (0.75 ml) of the mobile phase (94/6 (v/v) isooctane/1, 4-dioxane) was used to reconstitute the residue and was transferred to a sample vial using a glass syringe fitted with a 0.45 mm reconstituted cellulose syringe filter. The filtrate was centrifuged (500g) for 2 min and transferred into a chromatographic vial after filtering through a glass syringe fitted with a 0.45 mm reconstituted cellulose syringe filter.\n", - "\n", - "header: Extraction of permethrin for Olyset Net(r)\n", - "\n", - "Permethrin analysis of Olyset Net(r) samples was based on CIPAC Method 331 [31]. Each specimen set was weighed and placed in a 100 ml round-bottom boiling flask, followed by heptane (45 ml) and triphenyl phosphate internal standard (5.0 ml of known concentration in heptane). The flask was fitted with a reflux condenser and heated to boiling for 45 min. After cooling, approximately 1.5 ml of the extract was transferred to a chromatographic sample vial using a glass syringe fitted with a 0.45 mm reconstituted cellulose syringe filter.\n", - "\n", - "header: Gas chromatography analysis\n", - "\n", - "The extracts were analysed using an Agilent 6890 N chromatograph fitted with a 30 m x 0.25 mm (i.d.) fused silica DB-1 capillary column coated with 0.25 mm cross linked polydimethylsiloxane stationary phase. Ultra-high purity nitrogen (1.2 ml/min) was used as the carrier gas. Injector port, column oven, and detector temperatures were 265 degC, 240 degC, and 300 degC, respectively. Flame ionization (FID) was used for analyte detection. Two injections were used for each sample and the results averaged. Permethrin concentration was calculated by comparing permethrin/triphenyl phosphate peak area ratios against a calibration curve generated from solutions containing known permethrin /triphenyl phosphate mass ratios.\n", - "\n", - "header: Extraction of deltamethrin\n", - "\n", - "Each specimen set was weighed and placed in a 125 ml screw capped Erlenmeyer flask and 50 ml of the extraction solvent mixture was added making sure that the net was completely submerged in the mixture. The flask was tightly capped and sealed with paraffin film before placing in an ultrasonic bath for 15 min. Later the flask was shaken in a bath at 25 degC for 30 min at a frequency of 155 cycles per min. The extract was transferred into a chromatographic vial after filtering through a glass syringe fitted with a 0.45 mm reconstituted cellulose syringe filter.\n", - "\n", - "header: Author details\n", - "\n", - "- Laboratoire d'Ecologie Vectorieile et Parastaire, Département de Biologie Animal, Faculte Des Sciences et Techniques, Universite Cheikh Anta Diop, Dakar, Senegal. 2institut Pasteur de Dakar, Dakar, Senegal. 3Laboratoire de Télédétection Appliquee, (ITA/IST/FST/UCAD, Dakar, Senegal. 4Division of Parabolic Diseases and Malaria, Centers for Disease Control (CDC) and Prevention, Atlanta, GA, USA.\n", - "\n", - "header: Mosquito net coverage\n", - "\n", - "A total of 3012 nets were distributed in 1249 households (Table 2). The overall average household coverage, 94% (95% CI 92.68-95.3), was 68.2% (95% CI 63.63-72.77) and 92% (95% CI 90-94) in Mbagame and Thies area villages, respectively. Moreover, the average percentage of households receiving only one mosquito net was 26% (95% CI 23-28) in all areas. The average percentage of households in Mbagame and Thies receiving only one mosquito net was estimated as 41.8% (95% CI 36.9-46.8) and 17.4% (95% CI 15-20.6), respectively.\n", - "\n", - "The global coverage of sleeping spaces (3,012/3,840) was 78% (95% CI 77-78). However, the sleeping space coverage in Mbagame area was estimated at 68.2% (95% CI: 65-70), and 95.3% (95% CI 94-96) in the villages surrounding Thies.\n", - "\n", - "header: Abbreviations\n", - "\n", - "Cl 95%: Confidence interval 95%: CIO: Collaborative international pesticides analytical council; KD60: Proportion of mosquitoes knocked down at 60 min post-exposure; HPLC: High performance liquid chromatography; IQR: Intra quarter-time; LINK: Long-lasting insecticidal nets; pH: Proportional hole index; MW: World Health Organization; WHOPS: World Health Organization pesticide evaluation scheme; UV: Ultraviolet; PVC: Polyvinyl chloride; CDC: Centers for disease control and prevention; MR: Mortality rate; CNRS: National research on contract for health; OMVS: Senegal river basin development organization; NMC: National malaria control programme; P: Probability; OR: Odd ratio.\n", - "\n", - "header: Ethics approval and consent to participate: Consent for publication\n", - "\n", - "Not applicable.\n", - "\n", - "header: Results\n", - "\n", - "A total of 1,249 households were enrolled in both study areas. On average, 92.7% (95% CI 90-94) of heads of households were men, with an average 53 years of age. This average percentage was 78.2% in the Mbagame area with an average age of 52 years (95% CI 49-55) and 94.8% in the villages around Thies with a mean age of 53 years (95% CI 51.6-54.4) (P < 0.001). The average percentage of heads of households with any schooling was 38.4% (95% CI 34-42). The gender breakdown was 96% for men (n = 456) and 4% for women (n = 19).\n", - "\n", - "Of 604 households, 37.7% (228/604) had means of transportation among which 68% (95% CI 61-74) used carts while only 14% (95% CI 8-20) owned cars. The overall average percentage of households with electricity was 31% (95% CI 27-35). In Mbagame village, 87.2% households had electricity compared to an average of 22.6% for the study villages near Thies (_kh_2 = 132.4377, df = 1, P < 0.0001). Wood was the main form of fuel for cooking in 97.7% of households in both study areas.\n", - "\n", - "header: Methods\n", - "\n", - "A total of five brands of LLINs were distributed to households: NetProtect(r), PermaNet(r) 2.0, Dawa Plus(r) 2.0, Olyset Net(r) and Life Net(r) (Table 1). NetProtect(r) mosquito nets were white, rectangular (length = 190, width = 180 and height = 150 cm) made of 118 denier polyethylene mono filaments and 136 holes/in2 mesh. PermaNet(r) 2.0 mosquito nets were white, rectangular (length = 190, width = 180 and height = 200 cm), made with 75 denier polyester filament tulle and 156 holes/inch2 mesh. Dawa Plus(r) 2.0 were white, rectangular (length = 200, width = 160 and height = 180 cm), made of polyester multi-filament tulle, 75 deniers and 156 holes/inch2 mesh. Olyset Net(r) were white, conical (circumference 1250 cm, height = 250 cm), made with a denier polyethylene mono filament tulle greater than 150 cm and 56 holes/inch2 mesh. Life Net(r) nets were the only mosquito nets made from polypropylene, they were white, rectangular (length = 190, width = 180 and height = 150 cm) made with multi-filament tulle with 110 denier and 156 holes/inch2 mesh.\n", - "\n", - "Aside from the Olyset Net(r) mosquito nets which were treated with permethrin, all other nets distributed were impregnated with deltamethrin. Olyset Net(r) and Life Net(r) were donated by OMVS (Senegal River Basin Development Organization) and BAYER AG (Germany),\n", - "respectively, while the three other brands (PermaNet(r) 2.0, Dawa Plus(r) 2.0 and NetProtect(r)) were purchased from vendors approved by manufacturers.\n", - "\n", - "header: Competing interests\n", - "\n", - "The authors declare that they have no competing interests.\n", - "\n", - "header: High performance liquid chromatography (HPLC) analysis\n", - "\n", - "The deltamethrin content was analysed using Agilent 1200 HPLC equipped with a UV detector set at 230 nm and a 150 x 4.6 mm (i.d.) Ascents Si 5 mm column held at 40 degC. The mobile phase was 94/6 (v/v) isooctane/1, 4-dioxane with a flow rate of 1.5 ml/min. For each extract, three injections of 20 ml were made. Injections, calibrations, and quantification of the deltamethrin content were followed as per the procedure in the Collaborative International Pesticides Analytical Council (CIPAC) 333 [32-34].\n", - "\n", - "header: Funding\n", - "\n", - "- This work was supported by President's Malaria Initiative and Universite Cheikh Anta Diop (Dakar).\n", - "\n", - "header: Availability of data and materials\n", - "\n", - "The data used and analysed during the current study are available from the corresponding author on reasonable request.\n", - "\n", - "header: Physical integrity\n", - "\n", - "At least 83% (95% CI 80-90) of mosquito nets had holes (all types of holes) at the end of the study. Except the Life Net(r), the average number of holes increased with time for all LLINs. For the LLINs inspected in laboratory, at the end of the 6th semester of follow-up, the majority of them had holes, with average proportions of 95.2% 95%, 93.3%, 100% and 60% for Dawa Plus(r) 2.0, NetProtect(r) PermaNet(r) 2.0, Olyset Net(r) and Life Net(r), respectively. The average number of holes remained relatively low for Life Net(r) (Fisher's exact test, OR: 12.02; 95% CI 0.96-684.89, P = 0.027).\n", - "\n", - "At each semester, size 1 holes (Fig. 3) were predominant for all types of mosquito nets. The average number of holes (all types) per mosquito net was 39 per LLIN at the end of six semesters of study. It was 13, 39, 15, 48 and 54 respectively for Life Net(r), NetProtect(r) Dawa Plus(r) 2.0, PermaNet(r) 2.0 and Olyset Net(r), respectively. Only NetProtect(r) and PermaNet(r) 2.0 types were still in good condition at the end of the three-year study (Table 3). Proportions of mosquito nets in good condition in\n", - "\n", - "Figure 2: Retained proportions not removed (red), retention after sampling (blue) and cumulative number of nets removed by type and semester after 3 years\n", - "households were 71% (NetProtect(r)) and 50% (PernaNet(r) 2.0) in both mosquito nets.\n", - "\n", - "header: Data entry and statistical analysis\n", - "\n", - "Household survey data were entered on EPI data Entry 3.0, exported to Excel Microsoft office 2010 and analysed with R software. The calculation of proportions and averages was done according to the normal law by 95% Confidence Intervals (CI). Comparisons and proportions were made by Chi-squared tests (kh2) of homogeneity. Generalized linear models were performed to understand the relationship between mosquito mortality and LLIN washing and mortality bioassay results and insecticide chemical content. The analysis of the condition of the mosquito net, the values obtained for pHI, the torn surface and its shape was used to establish one of the criteria of durability [28]; a mosquito net was in good condition when the pHI was between 0 and 64, is usable when pHI was in 65-642 and was too torn when the pHI was greater than 643 [30]. The acceptable residual efficacy of each type of LLIN was determined based on WHO criteria [30].\n", - "\n", - "Residual efficacy was optimal if the KD 60 or the mortality rate (MR), defined as the number of dead females\n", - "relative to the total number of mosquitoes exposed per mosquito net was >= 95% or >= 80%, respectively, after 20 washes in the laboratory or after three years of use [28]. The proportion of mosquito nets meeting optimal bio efficacy levels of KD60 and mortality rates were determined for each type of LLINs by performing cone bioassays in the laboratory. A minimal bio-efficacy criteria of >= 75% for KD or >= 50% mortality rate was used to determine the efficacy status of LLINs [28]. The MR was corrected by the Abbott formula [35] if the mortality rate for controls was less than 20% and the bioassay was redone if it was greater than 20%. Generalized linear regression models were run to estimate the relationship in mortality rate between washed and non-washed mosquito nets.\n", - "\n", - "The retention rate was calculated for each type of LLIN at each follow up period. It was defined as the ratio of the number of the original study mosquito nets available in households to the total number of mosquito nets initially distributed. The mosquito nets declared lost but found in the following survey were included in the calculation of the retention rate of the previous semester.\n", - "\n", - "header: Rate of sampling mosquito nets, retention of LLINs\n", - "\n", - "From the beginning of the study in 2011 to the end in 2014 (6 semesters), 839 mosquito nets (all types) were removed representing 93.2% of the expected 900 LLINs to be removed (Fig. 2, Table 3). Of the 180 mosquito nets of each brand expected to be sampled, 94.4%, 79.4%, 94.4%, 98.9% and 98.3% of the Dawa Plus(r) 2.0, Life Net(r), NetProtect(r), Olyset Net(r) and PermaNet(r) 2.0, respectively, were removed from the field. The number of mosquito nets sampled was less than the 28-30 units expected in the 5th and 6th semester for Life Net(r), and in the 6th semester for Dawa Plus(r) 2.0 and NetProtect(r). At the end of the study, the retention rate of all five LLIN types was 12.5% (95% CI 11.4-13.7) based on the total number of nets distributed and was relatively better for Olyset Net(r) at 20.5% (95% CI 17.8-23.4) and to a lesser extent for Dawa Plus(r) 2.0 with 15.1% (95% CI 12.4-18.2). With more than half of the mosquito nets not found after only two semesters of follow-up, the average percentage of Life Net(r) found in households fell to about one in five mosquito nets distributed remaining in the third semester.\n", - "\n", - "header: Mortality rate associated with insecticide content\n", - "\n", - "Residual efficacy greater than 95% knock down was probably correlated with the content of insecticide. The overall correlation coefficients were: r = 0.08, r = 0.08, r = 0.22, r = 0.09 and r = 0.08 for Dawa Plus(r) 2.0, NetProtect(r) Life Net(r), Olyset Net(r) and PermaNet(r) 2.0, respectively (Fig. 5). For mortality rate, the correlation coefficient was more important for Life Net(r)(r = 0.43) when compared to other LLIN types.\n", - "\n", - "The generalized linear regression models have indicated that the mortality rate was significantly decreased with washing mosquito nets (Table 5). A significant difference (p < 0.001) in mortality rate was observed between washed and unwashed mosquito nets. This mortality rate was also associated with the average the amount of insecticide content present on the net.\n", - "\n", - "header: Conclusions\n", - "\n", - "The evaluation of LLINs after three years of use revealed a loss of integrity of almost all types of nets distributed. Despite this loss of integrity, biological efficacy was maintained for the Dawa Plus(r) 2.0, PermaNet(r) 2.0 and Life Net(r) brands.\n", - "\n", - "header: Use and maintenance of LLINs\n", - "\n", - "The regular use of the mosquito nets (use the night before the survey) at the end of the follow up was 23.3%, 38.5%, 7.3%, 78.3% and 16.1% for the Dawa Plus(r) 2.0, Life Net(r), NetProtect(r) Olyset Net(r) and PermaNet(r) 2.0 types, respectively. For the NetProtect(r) this rate was statistically lower compared to the Life Net(r) and Olyset Net(r) (Fisher's exact test, OR: 0.13; 95% CI: 0.017-0.83, P = 0.014; Fisher's exact test, OR: 0.022; 95% CI 0.017-0.83, P < 0.001).\n", - "\n", - "Dawa Plus(r) 2.0 and PermaNet(r) 2.0 used the night before the survey consistently exceeded 50% during the first four semesters. For Olyset Net(r), this rate was always above 60% during the three years of follow-up. In contrast, the NetProtect(r) and Life Net(r) types were the least used in households. Their regular use rates were only satisfactory in the first two semesters following LLINs distribution, with 52.6% (95% CI 47.7-57.5) for NetProtect(r) in semester one and 53% (95% CI 46-59.6) for Life Net(r) in the second.\n", - "\n", - "For all LLIN types distributed, only 19% (95% CI 18-20) were washed. The results obtained with washing habits showed that 66% (95% CI 64-69) of the washed mosquito nets were washed with warm water. In addition, 73% (95% CI 71-76) of the cases used local soap and 50% of the mosquito net was dried in shade after the washing.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ClinicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `ClinicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `ClinicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}, \"Start_month\": {\"title\": \"Start Month\", \"description\": \"Numerical start month of the reporting period (some studies may report multiple time periods)\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}}}\n", - "Data:\n", - "{\"S01\":{\"Country\":\"Senegal\",\"Site\":\"Mbagame\",\"Start_month\":1,\"Start_year\":2011,\"End_month\":12,\"End_year\":2014},\"S02\":{\"Country\":\"Senegal\",\"Site\":\"Thies\",\"Start_month\":1,\"Start_year\":2011,\"End_month\":12,\"End_year\":2014}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Net_washed\": {\"title\": \"Net Washed\", \"description\": \"Numerical count of number of net washes - 0 if none and NA if not reported.\"}, \"Net_holed\": {\"title\": \"Net Holed\", \"description\": \"Numerical count of the number of holes a net has - 0 if new and NA if not reported\\nNote - for tunnel tests there are holes that allow the mosquitoes the option of passing through to feed on the guinea pig.\"}, \"pHI_category\": {\"title\": \"Phi Category\", \"description\": \"Classification of the nets holed surface area, as one of \\\"Good\\\", \\\"Damaged\\\", \\\"Torn\\\", \\\"Serviceable\\\", or \\\"All\\\", as proposed by WHO\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"NetProtect(r)\",\"Insecticide\":\"Deltamethrin\",\"Net_washed\":19.0,\"Net_holed\":39.0,\"pHI_category\":\"Good\"},\"N02\":{\"Net_type\":\"PermaNet(r) 2.0\",\"Insecticide\":\"Deltamethrin\",\"Net_washed\":19.0,\"Net_holed\":48.0,\"pHI_category\":\"Good\"},\"N03\":{\"Net_type\":\"Dawa Plus(r) 2.0\",\"Insecticide\":\"Deltamethrin\",\"Net_washed\":19.0,\"Net_holed\":15.0,\"pHI_category\":\"Good\"},\"N04\":{\"Net_type\":\"Olyset Net(r)\",\"Insecticide\":\"Permethrin\",\"Net_washed\":19.0,\"Net_holed\":54.0,\"pHI_category\":\"Good\"},\"N05\":{\"Net_type\":\"Life Net(r)\",\"Insecticide\":\"Deltamethrin\",\"Net_washed\":19.0,\"Net_holed\":13.0,\"pHI_category\":\"Good\"}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: PermaNet(r) 2.0 and Dawa Plus(r) 2.0: Life Net(r) and NetProtect(r)\n", - "\n", - "Each specimen set was weighed and placed in a 250 ml round-bottom boiling flask followed by the addition of 95 ml of xylene and 5 ml of a known concentration of internal standard dipropyl phthalate, (2 mg/ml). The flask was fitted with a reflux condenser and heated to boiling for 30 min. After cooling, approximately 2.5 ml of the extract was filtered and transferred to a glass tube and evaporated to dryness under a stream of dry nitrogen for 30 min at 60 degC. A known volume (0.75 ml) of the mobile phase (94/6 (v/v) isooctane/1, 4-dioxane) was used to reconstitute the residue and was transferred to a sample vial using a glass syringe fitted with a 0.45 mm reconstituted cellulose syringe filter. The filtrate was centrifuged (500g) for 2 min and transferred into a chromatographic vial after filtering through a glass syringe fitted with a 0.45 mm reconstituted cellulose syringe filter.\n", - "\n", - "header: Extraction of permethrin for Olyset Net(r)\n", - "\n", - "Permethrin analysis of Olyset Net(r) samples was based on CIPAC Method 331 [31]. Each specimen set was weighed and placed in a 100 ml round-bottom boiling flask, followed by heptane (45 ml) and triphenyl phosphate internal standard (5.0 ml of known concentration in heptane). The flask was fitted with a reflux condenser and heated to boiling for 45 min. After cooling, approximately 1.5 ml of the extract was transferred to a chromatographic sample vial using a glass syringe fitted with a 0.45 mm reconstituted cellulose syringe filter.\n", - "\n", - "header: Extraction of deltamethrin\n", - "\n", - "Each specimen set was weighed and placed in a 125 ml screw capped Erlenmeyer flask and 50 ml of the extraction solvent mixture was added making sure that the net was completely submerged in the mixture. The flask was tightly capped and sealed with paraffin film before placing in an ultrasonic bath for 15 min. Later the flask was shaken in a bath at 25 degC for 30 min at a frequency of 155 cycles per min. The extract was transferred into a chromatographic vial after filtering through a glass syringe fitted with a 0.45 mm reconstituted cellulose syringe filter.\n", - "\n", - "header: Gas chromatography analysis\n", - "\n", - "The extracts were analysed using an Agilent 6890 N chromatograph fitted with a 30 m x 0.25 mm (i.d.) fused silica DB-1 capillary column coated with 0.25 mm cross linked polydimethylsiloxane stationary phase. Ultra-high purity nitrogen (1.2 ml/min) was used as the carrier gas. Injector port, column oven, and detector temperatures were 265 degC, 240 degC, and 300 degC, respectively. Flame ionization (FID) was used for analyte detection. Two injections were used for each sample and the results averaged. Permethrin concentration was calculated by comparing permethrin/triphenyl phosphate peak area ratios against a calibration curve generated from solutions containing known permethrin /triphenyl phosphate mass ratios.\n", - "\n", - "header: Mosquito net coverage\n", - "\n", - "A total of 3012 nets were distributed in 1249 households (Table 2). The overall average household coverage, 94% (95% CI 92.68-95.3), was 68.2% (95% CI 63.63-72.77) and 92% (95% CI 90-94) in Mbagame and Thies area villages, respectively. Moreover, the average percentage of households receiving only one mosquito net was 26% (95% CI 23-28) in all areas. The average percentage of households in Mbagame and Thies receiving only one mosquito net was estimated as 41.8% (95% CI 36.9-46.8) and 17.4% (95% CI 15-20.6), respectively.\n", - "\n", - "The global coverage of sleeping spaces (3,012/3,840) was 78% (95% CI 77-78). However, the sleeping space coverage in Mbagame area was estimated at 68.2% (95% CI: 65-70), and 95.3% (95% CI 94-96) in the villages surrounding Thies.\n", - "\n", - "header: Methods\n", - "\n", - "A total of five brands of LLINs were distributed to households: NetProtect(r), PermaNet(r) 2.0, Dawa Plus(r) 2.0, Olyset Net(r) and Life Net(r) (Table 1). NetProtect(r) mosquito nets were white, rectangular (length = 190, width = 180 and height = 150 cm) made of 118 denier polyethylene mono filaments and 136 holes/in2 mesh. PermaNet(r) 2.0 mosquito nets were white, rectangular (length = 190, width = 180 and height = 200 cm), made with 75 denier polyester filament tulle and 156 holes/inch2 mesh. Dawa Plus(r) 2.0 were white, rectangular (length = 200, width = 160 and height = 180 cm), made of polyester multi-filament tulle, 75 deniers and 156 holes/inch2 mesh. Olyset Net(r) were white, conical (circumference 1250 cm, height = 250 cm), made with a denier polyethylene mono filament tulle greater than 150 cm and 56 holes/inch2 mesh. Life Net(r) nets were the only mosquito nets made from polypropylene, they were white, rectangular (length = 190, width = 180 and height = 150 cm) made with multi-filament tulle with 110 denier and 156 holes/inch2 mesh.\n", - "\n", - "Aside from the Olyset Net(r) mosquito nets which were treated with permethrin, all other nets distributed were impregnated with deltamethrin. Olyset Net(r) and Life Net(r) were donated by OMVS (Senegal River Basin Development Organization) and BAYER AG (Germany),\n", - "respectively, while the three other brands (PermaNet(r) 2.0, Dawa Plus(r) 2.0 and NetProtect(r)) were purchased from vendors approved by manufacturers.\n", - "\n", - "header: Ethics approval and consent to participate: Consent for publication\n", - "\n", - "Not applicable.\n", - "\n", - "header: Author details\n", - "\n", - "- Laboratoire d'Ecologie Vectorieile et Parastaire, Département de Biologie Animal, Faculte Des Sciences et Techniques, Universite Cheikh Anta Diop, Dakar, Senegal. 2institut Pasteur de Dakar, Dakar, Senegal. 3Laboratoire de Télédétection Appliquee, (ITA/IST/FST/UCAD, Dakar, Senegal. 4Division of Parabolic Diseases and Malaria, Centers for Disease Control (CDC) and Prevention, Atlanta, GA, USA.\n", - "\n", - "header: Results\n", - "\n", - "A total of 1,249 households were enrolled in both study areas. On average, 92.7% (95% CI 90-94) of heads of households were men, with an average 53 years of age. This average percentage was 78.2% in the Mbagame area with an average age of 52 years (95% CI 49-55) and 94.8% in the villages around Thies with a mean age of 53 years (95% CI 51.6-54.4) (P < 0.001). The average percentage of heads of households with any schooling was 38.4% (95% CI 34-42). The gender breakdown was 96% for men (n = 456) and 4% for women (n = 19).\n", - "\n", - "Of 604 households, 37.7% (228/604) had means of transportation among which 68% (95% CI 61-74) used carts while only 14% (95% CI 8-20) owned cars. The overall average percentage of households with electricity was 31% (95% CI 27-35). In Mbagame village, 87.2% households had electricity compared to an average of 22.6% for the study villages near Thies (_kh_2 = 132.4377, df = 1, P < 0.0001). Wood was the main form of fuel for cooking in 97.7% of households in both study areas.\n", - "\n", - "header: Abbreviations\n", - "\n", - "Cl 95%: Confidence interval 95%: CIO: Collaborative international pesticides analytical council; KD60: Proportion of mosquitoes knocked down at 60 min post-exposure; HPLC: High performance liquid chromatography; IQR: Intra quarter-time; LINK: Long-lasting insecticidal nets; pH: Proportional hole index; MW: World Health Organization; WHOPS: World Health Organization pesticide evaluation scheme; UV: Ultraviolet; PVC: Polyvinyl chloride; CDC: Centers for disease control and prevention; MR: Mortality rate; CNRS: National research on contract for health; OMVS: Senegal river basin development organization; NMC: National malaria control programme; P: Probability; OR: Odd ratio.\n", - "\n", - "header: Competing interests\n", - "\n", - "The authors declare that they have no competing interests.\n", - "\n", - "header: Availability of data and materials\n", - "\n", - "The data used and analysed during the current study are available from the corresponding author on reasonable request.\n", - "\n", - "header: High performance liquid chromatography (HPLC) analysis\n", - "\n", - "The deltamethrin content was analysed using Agilent 1200 HPLC equipped with a UV detector set at 230 nm and a 150 x 4.6 mm (i.d.) Ascents Si 5 mm column held at 40 degC. The mobile phase was 94/6 (v/v) isooctane/1, 4-dioxane with a flow rate of 1.5 ml/min. For each extract, three injections of 20 ml were made. Injections, calibrations, and quantification of the deltamethrin content were followed as per the procedure in the Collaborative International Pesticides Analytical Council (CIPAC) 333 [32-34].\n", - "\n", - "header: Rate of sampling mosquito nets, retention of LLINs\n", - "\n", - "From the beginning of the study in 2011 to the end in 2014 (6 semesters), 839 mosquito nets (all types) were removed representing 93.2% of the expected 900 LLINs to be removed (Fig. 2, Table 3). Of the 180 mosquito nets of each brand expected to be sampled, 94.4%, 79.4%, 94.4%, 98.9% and 98.3% of the Dawa Plus(r) 2.0, Life Net(r), NetProtect(r), Olyset Net(r) and PermaNet(r) 2.0, respectively, were removed from the field. The number of mosquito nets sampled was less than the 28-30 units expected in the 5th and 6th semester for Life Net(r), and in the 6th semester for Dawa Plus(r) 2.0 and NetProtect(r). At the end of the study, the retention rate of all five LLIN types was 12.5% (95% CI 11.4-13.7) based on the total number of nets distributed and was relatively better for Olyset Net(r) at 20.5% (95% CI 17.8-23.4) and to a lesser extent for Dawa Plus(r) 2.0 with 15.1% (95% CI 12.4-18.2). With more than half of the mosquito nets not found after only two semesters of follow-up, the average percentage of Life Net(r) found in households fell to about one in five mosquito nets distributed remaining in the third semester.\n", - "\n", - "header: Physical integrity\n", - "\n", - "At least 83% (95% CI 80-90) of mosquito nets had holes (all types of holes) at the end of the study. Except the Life Net(r), the average number of holes increased with time for all LLINs. For the LLINs inspected in laboratory, at the end of the 6th semester of follow-up, the majority of them had holes, with average proportions of 95.2% 95%, 93.3%, 100% and 60% for Dawa Plus(r) 2.0, NetProtect(r) PermaNet(r) 2.0, Olyset Net(r) and Life Net(r), respectively. The average number of holes remained relatively low for Life Net(r) (Fisher's exact test, OR: 12.02; 95% CI 0.96-684.89, P = 0.027).\n", - "\n", - "At each semester, size 1 holes (Fig. 3) were predominant for all types of mosquito nets. The average number of holes (all types) per mosquito net was 39 per LLIN at the end of six semesters of study. It was 13, 39, 15, 48 and 54 respectively for Life Net(r), NetProtect(r) Dawa Plus(r) 2.0, PermaNet(r) 2.0 and Olyset Net(r), respectively. Only NetProtect(r) and PermaNet(r) 2.0 types were still in good condition at the end of the three-year study (Table 3). Proportions of mosquito nets in good condition in\n", - "\n", - "Figure 2: Retained proportions not removed (red), retention after sampling (blue) and cumulative number of nets removed by type and semester after 3 years\n", - "households were 71% (NetProtect(r)) and 50% (PernaNet(r) 2.0) in both mosquito nets.\n", - "\n", - "header: Funding\n", - "\n", - "- This work was supported by President's Malaria Initiative and Universite Cheikh Anta Diop (Dakar).\n", - "\n", - "header: Mortality rate associated with insecticide content\n", - "\n", - "Residual efficacy greater than 95% knock down was probably correlated with the content of insecticide. The overall correlation coefficients were: r = 0.08, r = 0.08, r = 0.22, r = 0.09 and r = 0.08 for Dawa Plus(r) 2.0, NetProtect(r) Life Net(r), Olyset Net(r) and PermaNet(r) 2.0, respectively (Fig. 5). For mortality rate, the correlation coefficient was more important for Life Net(r)(r = 0.43) when compared to other LLIN types.\n", - "\n", - "The generalized linear regression models have indicated that the mortality rate was significantly decreased with washing mosquito nets (Table 5). A significant difference (p < 0.001) in mortality rate was observed between washed and unwashed mosquito nets. This mortality rate was also associated with the average the amount of insecticide content present on the net.\n", - "\n", - "header: Conclusions\n", - "\n", - "The evaluation of LLINs after three years of use revealed a loss of integrity of almost all types of nets distributed. Despite this loss of integrity, biological efficacy was maintained for the Dawa Plus(r) 2.0, PermaNet(r) 2.0 and Life Net(r) brands.\n", - "\n", - "header: Use and maintenance of LLINs\n", - "\n", - "The regular use of the mosquito nets (use the night before the survey) at the end of the follow up was 23.3%, 38.5%, 7.3%, 78.3% and 16.1% for the Dawa Plus(r) 2.0, Life Net(r), NetProtect(r) Olyset Net(r) and PermaNet(r) 2.0 types, respectively. For the NetProtect(r) this rate was statistically lower compared to the Life Net(r) and Olyset Net(r) (Fisher's exact test, OR: 0.13; 95% CI: 0.017-0.83, P = 0.014; Fisher's exact test, OR: 0.022; 95% CI 0.017-0.83, P < 0.001).\n", - "\n", - "Dawa Plus(r) 2.0 and PermaNet(r) 2.0 used the night before the survey consistently exceeded 50% during the first four semesters. For Olyset Net(r), this rate was always above 60% during the three years of follow-up. In contrast, the NetProtect(r) and Life Net(r) types were the least used in households. Their regular use rates were only satisfactory in the first two semesters following LLINs distribution, with 52.6% (95% CI 47.7-57.5) for NetProtect(r) in semester one and 53% (95% CI 46-59.6) for Life Net(r) in the second.\n", - "\n", - "For all LLIN types distributed, only 19% (95% CI 18-20) were washed. The results obtained with washing habits showed that 66% (95% CI 64-69) of the washed mosquito nets were washed with warm water. In addition, 73% (95% CI 71-76) of the cases used local soap and 50% of the mosquito net was dried in shade after the washing.\n", - "\n", - "header: Data entry and statistical analysis\n", - "\n", - "Household survey data were entered on EPI data Entry 3.0, exported to Excel Microsoft office 2010 and analysed with R software. The calculation of proportions and averages was done according to the normal law by 95% Confidence Intervals (CI). Comparisons and proportions were made by Chi-squared tests (kh2) of homogeneity. Generalized linear models were performed to understand the relationship between mosquito mortality and LLIN washing and mortality bioassay results and insecticide chemical content. The analysis of the condition of the mosquito net, the values obtained for pHI, the torn surface and its shape was used to establish one of the criteria of durability [28]; a mosquito net was in good condition when the pHI was between 0 and 64, is usable when pHI was in 65-642 and was too torn when the pHI was greater than 643 [30]. The acceptable residual efficacy of each type of LLIN was determined based on WHO criteria [30].\n", - "\n", - "Residual efficacy was optimal if the KD 60 or the mortality rate (MR), defined as the number of dead females\n", - "relative to the total number of mosquitoes exposed per mosquito net was >= 95% or >= 80%, respectively, after 20 washes in the laboratory or after three years of use [28]. The proportion of mosquito nets meeting optimal bio efficacy levels of KD60 and mortality rates were determined for each type of LLINs by performing cone bioassays in the laboratory. A minimal bio-efficacy criteria of >= 75% for KD or >= 50% mortality rate was used to determine the efficacy status of LLINs [28]. The MR was corrected by the Abbott formula [35] if the mortality rate for controls was less than 20% and the bioassay was redone if it was greater than 20%. Generalized linear regression models were run to estimate the relationship in mortality rate between washed and non-washed mosquito nets.\n", - "\n", - "The retention rate was calculated for each type of LLIN at each follow up period. It was defined as the ratio of the number of the original study mosquito nets available in households to the total number of mosquito nets initially distributed. The mosquito nets declared lost but found in the following survey were included in the calculation of the retention rate of the previous semester.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `EntomologicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `EntomologicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `EntomologicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}, \"Start_month\": {\"title\": \"Start Month\", \"description\": \"Numerical start month of the reporting period (some studies may report multiple time periods)\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}}}\n", - "Data:\n", - "{\"S01\":{\"Country\":\"Senegal\",\"Site\":\"Mbagame\",\"Start_month\":1,\"Start_year\":2011,\"End_month\":12,\"End_year\":2014},\"S02\":{\"Country\":\"Senegal\",\"Site\":\"Thies\",\"Start_month\":1,\"Start_year\":2011,\"End_month\":12,\"End_year\":2014}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Net_washed\": {\"title\": \"Net Washed\", \"description\": \"Numerical count of number of net washes - 0 if none and NA if not reported.\"}, \"Net_holed\": {\"title\": \"Net Holed\", \"description\": \"Numerical count of the number of holes a net has - 0 if new and NA if not reported\\nNote - for tunnel tests there are holes that allow the mosquitoes the option of passing through to feed on the guinea pig.\"}, \"pHI_category\": {\"title\": \"Phi Category\", \"description\": \"Classification of the nets holed surface area, as one of \\\"Good\\\", \\\"Damaged\\\", \\\"Torn\\\", \\\"Serviceable\\\", or \\\"All\\\", as proposed by WHO\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"NetProtect(r)\",\"Insecticide\":\"Deltamethrin\",\"Net_washed\":19.0,\"Net_holed\":39.0,\"pHI_category\":\"Good\"},\"N02\":{\"Net_type\":\"PermaNet(r) 2.0\",\"Insecticide\":\"Deltamethrin\",\"Net_washed\":19.0,\"Net_holed\":48.0,\"pHI_category\":\"Good\"},\"N03\":{\"Net_type\":\"Dawa Plus(r) 2.0\",\"Insecticide\":\"Deltamethrin\",\"Net_washed\":19.0,\"Net_holed\":15.0,\"pHI_category\":\"Good\"},\"N04\":{\"Net_type\":\"Olyset Net(r)\",\"Insecticide\":\"Permethrin\",\"Net_washed\":19.0,\"Net_holed\":54.0,\"pHI_category\":\"Good\"},\"N05\":{\"Net_type\":\"Life Net(r)\",\"Insecticide\":\"Deltamethrin\",\"Net_washed\":19.0,\"Net_holed\":13.0,\"pHI_category\":\"Good\"}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: 3.2.1 Indoor Resting Density, Human Blood Index and Biting Rate: 3.2.2 Estimation of Sporozoite Infection Rate\n", - "\n", - "A total of 36 out of 66 heads/thoraces were positive for _P. falciparum_ (F\\({}_{+}\\) = 36), corresponding to an unusually high sporozoite rate of 54.55% \\(\\pm\\) 13.63. Validation of the TaqMan results using nested PCR [34] confirmed the _P. falciparum_ infection in the 36 samples.\n", - "\n", - "header: Composition of the Mosquito Species Collected Indoor: Entomological and Parasitological Parameters of Transmission\n", - "\n", - "The indoor resting density of the _An. funestus_ was estimated as 14 from the 112 blood females collected in eight houses. Analysis of the blood source of these 112 females by PCR revealed that they all fed on human blood, leading to a human blood index of 100%. The human biting rate was estimated as ~5.3 bites per person per night (CI: 4.91-5.69).\n", - "\n", - "header: Estimation of Entomological and Parasitological Parameters\n", - "\n", - "The indoor resting density (IRD) was calculated from the number of _An. funestus_ collected on the 4th d, relative to the number of houses assessed, as advised by the WHO [30; 31]. A total of 112 blood-fed females were dissected <48 h after collection, separating heads/thoraces from the abdomens. The abdomens were used for gDNA extraction as outlined in WHO guidelines [30] using the DNeasy Blood and Tissue Kit (QIAGEN, Hilden, Germany), according to manufacturer's protocol. Identification of the source of blood was conducted using the cocktail PCR of Kent et al. [32]. The human blood index was calculated from the number of females that have fed on humans, relative to the total number of females caught [30; 31]. The human biting rate was estimated from the number of the females that have fed on humans, relative to the total number of people in the houses sampled.\n", - "\n", - "header: 2.3.1 Estimation of Indoor Resting Density, Human Blood Index and Biting Rate: 2.3.2 Estimation of Sporozoite Rate\n", - "\n", - "Sixty-six females (22 individuals randomly selected from each of the three days of indoor collection) which laid eggs successfully were dissected, and the heads/thoraces separated from the abdomens immediately, as explained above. The presence of sporozoite was investigated using a TaqMan genotyping protocol, established by Bass and colleagues [33]. Real-time PCR MX 3005 (Agilent, Santa Clara, CA, USA) was used for the amplification. A total of 1 uL of gDNA, extracted from each female head/thorax, was used for PCR, with an initial denaturation at 95 \\({}^{\\circ}\\)C for 10 min, followed by 40 cycles each of 15 s at 95 \\({}^{\\circ}\\)C and 1 min at 60 \\({}^{\\circ}\\)C. Primers described by Bass (PlasF_GCTTAGTTACGATTAATAGGAGTAGCTTG and PlasR_GAAAATCTAAGAATTTCAC CTCTGACA) were used, together with two probes labelled with fluorophores, FAM (Falcip+_TCTGAAT ACGAATGTC) to detect _Plasmodium falciparum_, and HEX (OVM+_CTGAATACAAATGCC) to detect the combination of _P. ovale_, _P. vivax_ and _P. malariae_. Positive controls (known FAM+ and OVM+) were used, in addition to a negative control, in which 1 uL of ddH2O was added. To validate findings of the TaqMan assay, a nested PCR of Snounou et al. [34] was carried out, using all the samples that tested positive with TaqMan. The sporozoite rate was calculated as the percentage of females positive, relative to the total number of the females examined [30].\n", - "\n", - "header: Synergist Bioassay with Piperonyl Butoxide (PBO) and Diethyl Malate\n", - "\n", - "To investigate the potential role of P450 monooxygenases in pyrethroid resistance, a synergist bioassay was carried out using 4% PBO [an inhibitor of CYP450s [38]] against permethrin. The role of glutathione S-transferases (GSTs) in DDT resistance was also investigated by pre-exposure to 8% diethyl maleate (DEM). The insecticides and the synergists PBO were sourced from the WHO/Vector Control Research Unit (VCRU) of the University of Sains Malaysia (Penang, Malaysia). Four replicates of 22-26 F1 females (3-4 d old) were pre-exposed to PBO or DEM for 1 h, and then transferred to tubes containing permethrin [35] or DDT, respectively. Mosquitoes were treated as in the WHO bioassays described above, and mortalities scored after 24 h. Two replicates of 25 females each were exposed to PBO only, as a control.\n", - "\n", - "Genotyping of L119F Glutathione S-Transferase (GSTe2) Mutation Associated with DDT/Permethrin Resistance\n", - "\n", - "To detect the L119F _GSTe2_ mutation previously linked to DDT/pyrethroid metabolic resistance [20], TaqMan genotyping was conducted using 44 F0 females collected from the field. This was carried out using a real-time PCR thermocycler (Agilent Mx3005) following an established protocol [20]. The primers L119F_GSTe2F (5'-AACAATTTTTCATTTCTTATTCTCATTAC-3') and L119F_GSTe2R (5'- CGACTCGATCTTCGGGAATGTC-3') were utilised with the following probes: reporter L119 (VIC_AGGACGGTATTCTTTTTCTA) to detect the susceptibility allele, and reporter 119F (FAM_AGGAGCGTATTTTTTTCTA) for the resistance allele. The assay was performed in a 10 mL final volume comprise of 5 mL of 1x Sensimix (Bioline, London, UK), 800 nM each of primer, 200 nM of each probe, and 1 mL of gDNA. Thermocycling conditions were initial denaturation of 10 min at 95 \\({}^{\\circ}\\)C, followed by 40 cycles each of 92 \\({}^{\\circ}\\)C for 10 s, and 60 \\({}^{\\circ}\\)C for 45 s. Genotypes were scored from scatter plots of results produced by the Mx3005 v4.10 software (Agilent, Santa Clara, CA, USA). Three positive samples of known genotypes [20]--(i) homozygote resistant 1014F/1014F; (ii) heterozygote L1014/1014F; and (iii) susceptible L1014/L1014--were used as positive controls. For the negative control, 1 mL of ddH2O was incorporated into the control well. To assess the correlation between the presence of the 119F mutation and the resistance phenotype, 12 each of DDT-alive and -dead females were genotyped using the above protocol. In addition, these 12 alive and 12 dead females were also screened, using the recently established allele-specific PCR [39].\n", - "\n", - "header: Results\n", - "\n", - "_Anopheles funestus_ is the only mosquito species caught, a total of 721 in 4 d. Out of these, 590 were caught in the first 3 d (52 \\(\\circ\\), 538 \\(\\circ\\) [487 blood fed and 51 unfed]). A total of 312 \\(\\mathrm{\\SIUnitSymbolOhm}\\)ial eggs and 288 egg batches hatched successfully. A total of 131 mosquitoes were caught on the 4th day: 12 \\(\\circ\\) and 119 \\(\\circ\\) (112 of them blood fed and 7 unfed).\n", - "\n", - "header: Supplementary Materials:\n", - "\n", - "The following are available online at [http://www.mdpi.com/2073-4425/11/4/454/s1](http://www.mdpi.com/2073-4425/11/4/454/s1), Figure S1: Knockdown profiles of _An. funestus females_ exposed to pyrethroids and DDT. Each bar is a percentage knockdown of values from four different replicates from bioassays at different time points, Figure S2: Analysis of the _acc-_I fragment encompassing the 119 codon. (**a**). pattern of genetic variability of sequences from 12 bendiocarb-alive and -12 dead females; (**b**). a maximum likelihood phylogenetic tree of the sequences., Figure S3: Analysis of the _acc-_I fragment encompassing the 485 codon. (**a**). pattern of genetic variability of sequences from 12 bendiocarb-alive and -12 dead females; (**b**). a maximum likelihood phylogenetic tree of the sequences., Figure S4: Analysis of the _VGSC_ fragment encompassing the 1014 _kdr_ mutation codon. (**a**). pattern of genetic variability of 30 sequences from randomly selected F0 females; (**b**). a maximum likelihood phylogenetic tree of the sequences, Table S1: Summary statistics for polymorphism of a fragment of _acetylcholinesterase_-1 encompassing the 119 codon for alive and dead mosquitoes, Table S2: Summary statistics for polymorphism of a fragment of _acetylcholinesterase_-1 encompassing the 485 codon for alive and dead mosquitoes, Table S3: Summary statistics for polymorphism of a fragment of voltage-gated sodium channel encompassing the 1014 codon for the field F0 females, File S1: Analyzed sequences (gDNA partial fragments) from encompassing the G119S and N485I of _acetylcholinesterase_-1 gene and sequences from the partial fragment of the voltage-gated sodium channel spanning the 1014th codon.\n", - "\n", - "header: Investigating the Role of L119F-GSTe2 Mutation in DDT Resistance\n", - "\n", - "Initial genotyping of 43 F0 females revealed a high frequency of the L119F-GSTe2 mutation with 30.2% (13 individuals) heterozygotes (RS, L119/F119), 32.6% (14 individuals) homozygote resistant (RR, 119F/119F), and 16.3% (7 individuals) homozygote susceptible (SS, L119/L119) (Figure 3a).\n", - "\n", - "Figure 2: Resistance profiles of F1 _An. funestus_ females. (**a**). Results of WHO susceptibility bioassays with various insecticides. Results are the average of percentage mortalities from four replicates each ± standard error of mean (SEM); (**b**). Results of the cone bioassays with PermaNet®3.0 (side and roof), PermaNet®2.0, Olyset®Plus and Olyset®Net. Results are the average of percentage mortalities ± SEM of five replicates; (**c**). Effect of pre-exposure of synergist piperonylbutoxide (PBO) against permethrin and diethyl maleate (DEM) against DDT (dichlorodiphenyltrichloroethane). Results are the average of percentage mortalities from four replicates each ± SEM. **** = statistically significant at \\(P\\) < 0.0001, in a two-tailed Chi-square test between results from synergised bioassay and conventional bioassays; (**d**). Time-course bioassay for LTs0 estimation/test for strength of permethrin resistance.\n", - "\n", - "\n", - "The 119F allele frequency f(R) was calculated as ~0.84. 12 each of DDT-alive and -dead F1 females were used for allele-specific PCR to detect the L119F GSTe2 mutation. 8 of the DDT-alive (8/12, 66.66%) were homozygote resistant (RR) for the mutation (Figure 3b,c), and 4 females (4/12, 33.33%) were heterozygote resistant. From the dead females, one sample failed (Figure 3c), only one female was homozygote resistant (1/11, 9.09%), 8 were heterozygotes (8/11, 72.72%), and 2 were susceptible (2/11, 18.18%). A difference was observed in the distribution of the 119F mutation [Odds Ratio of 16.00 (95% CI: 6.67-38.3, \\(\\chi^{2}\\) = 3.70, \\(p\\) = 0.05)] when comparing the frequency of the homozygote resistant allele (RR) with susceptible allele (SS) in the alive and dead females. A comparison of all resistant (RR + RS) with susceptible (SS) individuals from alive and dead females revealed no genotype-phenotype association [OR = 0.49 (CI: 0.19-3.15, \\(\\chi^{2}\\) = 1.2, \\(p\\) = 0.27)]. No association was observed when comparing the heterozygote individuals (RS) from both alive and dead to the susceptible (SS) [OR = 2.44 (CI: 0.9-13.53, \\(\\chi^{2}\\) = 0.49, \\(p\\) = 0.48)].\n", - "\n", - "header: Investigating the Role of Metabolic Resistance Using Synergist Bioassays\n", - "\n", - "Pre-exposure to PBO and DEM recovered some susceptibility to both permethrin and DDT, respectively (Figure 2c). A significant increase in mortality was observed when comparing results of a repeat conventional bioassay with permethrin [mortality = 43.9% (95% CI: 40.93-46.90)] to the results from the PBO-synergised bioassay [mortality = 78.73% (95% CI: 69.53-87.94), kh2 = 22.33, df = 1, \\(P\\) < 0.0001]. Pre-exposure to DEM recovered DDT susceptibility as well, with repeat exposure to DDT producing mortality of 49.82% (95% CI: 45.54-54.9), compared to a synergised experiment with a mortality of 81.44% (95% CI: 74.36-88.52, kh2 = 19.12, df = 1, \\(P\\) < 0.0001). In both cases, the doubling of mortalities from synergist pre-exposure suggests the possible role of cytochrome P450s and GSTs, respectively, in the observed permethrin and DDT resistance. No mortality was obtained from the control individuals.\n", - "\n", - "header: Polymorphism Analysis of Voltage-Gated Sodium Channel Gene Spanning the 1014 kdr Locus\n", - "\n", - "A fragment of voltage-gated sodium channel spanning intron 19 and the exon 20 containing the 1014F/S mutations associated with knockdown resistance (_kdr_) in _An. gambiae_[21,22] was amplified and sequenced. This was done with DNA extracted from 30 F0 females that laid eggs successfully. PCR was carried using primers: AfunkdrExon19-20F: GTTCAATGAAAGCCCCTCAAA and Afunkdr Exon19-20R: CCGAAATTTGACAAAGCAAA, as described in previous works [43]. The PCR products were purified using the Qiaquick Purification Kit (QIAGEN, Hilden, Germany), sequenced and aligned using BioEdit. Polymorphisms analysis and maximum likelihood phylogenetic tree construction were as described above. All DNA sequences from the alive and dead females are provided in File S1.\n", - "\n", - "header: Insecticide Resistance Profile of An. funestus Population\n", - "\n", - "The _An. funestus_ population demonstrated high knockdown resistance, with ~5% of them knocked down at 1 h exposure with deltamethrin and DDT (Figure S1), and ~10% knocked down after 1 h exposure with permethrin. High resistance was observed towards the pyrethroids, with a higher mortality of 48.30% (95% CI: 41-55) for permethrin, compared with 29.44% (95% CI: 24-34) for deltamethrin (Figure 2a). A 100% mortality rate was obtained in the FANG susceptible colony. Significant resistance was also observed towards DDT and bendiocarb, with mortalities of 56.34% (95% CI: 51-62) and 54.05% (95% CI: 49-59), respectively. Moderate resistance was observed from exposure to fenitrothion with mortality of 94.22% (95% CI: 88-101).\n", - "\n", - "header: Estimation of Resistance Intensity with Time-Course Bioassay\n", - "\n", - "To establish the strength of pyrethroid resistance with time, additional bioassays were performed, with 0.75% permethrin, at varying times of exposure. Four replicates of 20-25 F1 females were exposed in time-course spanning 60, 120, 180, 240 and 300 min, to establish the time required to kill 50%\n", - "of them (LT50). Protocol was as described above in conventional bioassays, except for variation in time. Resistance intensity was established by comparing the LT50 from the Gajerar Giwa _An. fintestus_ populations to the LT50 previously established for the fully susceptible _Anopheles coluzzi_ lab colony [5]. This type of inter-species comparison of using _An. gambiae_ (Kisumu colony) LT50s had been done before in the absence of LT50 data from FANG colony [37].\n", - "\n", - "header: Study Site and Mosquito Sampling: Molecular Identification of Mosquito Species\n", - "\n", - "Genomic DNA (gDNA) was extracted from the females which laid eggs, using the Livak protocol [29], and the mosquitoes identified to species using the cocktail PCR of Koekemoer, et al. [28]. These include all the females from the first 3 days of collections, as well as all the females collected on day 4, which were used for the estimation of indoor resting density and identification of blood meal source.\n", - "\n", - "Figure 1: A map showing the sampling locality (Gajerar Giwa) in the Sahel of northern Nigeria.\n", - "\n", - "header: Determination of LLIN Efficacy with Cone Bioassays\n", - "\n", - "To investigate the efficacy of commonly distributed long-lasting insecticidal nets (LLINs), cone bioassays were conducted following the WHO protocol [36], using 3-4 d old F1 females. Five replicates of 9-12 mosquitoes were placed in a plastic cone attached to a fresh insecticide-containing bed net and tested. The LLINs include: the Olyset(r)Net (containing 2% permethrin), Olyset(r)Plus (containing 2% permethrin combined with 1% of the synergist, piperonyl butoxide, PBO), PermaNet(r)2.0 (containing 1.4-1.8 g/kg +-25% deltamethrin), PermaNet(r)3.0 side panel (containing 2.1-2.8 g/kg +-25% deltamethrin), and PermaNet(r)3.0 roof (containing 4.0 g/kg +-25% deltamethrin, combined with 25 g/kg +-25% of PBO). For each experiment, five different pieces cut from an LLIN brand were used for the five technical replicates. Mosquitoes were exposed for 3 min and immediately transferred to paper cups. They were supplied with 10% sucrose and mortalities recorded after 24 h. For the control, five replicates of ten mosquitoes were exposed to untreated net.\n", - "\n", - "header: A Low-Efficacy of Long-Lasting Insecticidal Nets Is a Serious Challenge to Malaria Control\n", - "\n", - "The high pyrethroid resistance was also evident in the low efficacy of insecticide-treated bed nets, most especially the Olyset(r)Net and the PermaNet(r)3.0 (the side panel). Except for PermaNet(r)3.0, profoundly lower efficacies were seen with all the nets, in line with observations in same species from southern Africa [46], and a recent report from northern Cameroon [50]. The recovery of susceptibilities from exposure to the roof of PermaNet(r)3.0 and the PBO-synergist bioassays suggest the preeminent role of CYP450s in the pyrethroid resistance in this population. This agrees with several studies carried out across Africa [46; 51; 52]. Low efficacy seen with Olyset(r)Plus net have been described in several studies with both _An. funestus_ and _An. coluzzii_[50; 51; 52; 53].\n", - "\n", - "Insecticide Resistance Mechanism Is Driven by Metabolic Resistance Mechanisms in Gajerar Giwa An. funestus Population\n", - "\n", - "The recovery of susceptibilities from pre-exposure to PBO and DEM suggests the preeminent role of CYP450s and GSTs in pyrethroid and DDT resistance, respectively. Indeed, several studies have used these synergists to establish the potential role of the above metabolic enzymes in resistance in _An. funestus_[51; 52; 54]. The role of metabolic resistance is strengthened by (i) the finding of high frequency of the 119F-_GSTe2_ mutation in the Gajerar Giwa population and its possible link to DDT resistance, as documented in several studies [20; 47; 51; 54]; (ii) the absence of the G119S and N485I mutations in the acetylcholinesterase gene; and (iii) the absence of the 1014F/_S kdr_ mutation in the voltage-gated sodium channel from the Gajerar Giwa population, in line with the observations across Africa [37; 52; 55]. The high diversity seen in the fragment spanning the exon 20 of the VGSC suggests lack of reduced diversity due to absence of selection.\n", - "\n", - "The high bendiocarb resistance prompted sequencing of the _ace-1_ fragment for the G119S and N485I mutations previously associated with carbamate/organophosphate resistance. The absence of these mutations in the highly bendiocarb-resistant Gajerar Giwa populations, and the observed relative fenitrothion susceptibility, suggests no cross resistance, and points to metabolic mechanism responsible for the bendiocarb resistance. Several studies have reported absence of the G119S mutation in various populations of _An. funestus_ across Africa [24; 43; 52]. The high diversity seen in the _ace-1_ fragment suggests a lack of selection in the gene. However, with only 12 females (low sample size) each of alive and dead used, the presence of this mutation at a low frequency cannot be ruled out.\n", - "\n", - "The absence of the N485I mutation in Gajerar Giwa populations confirmed previous observations of the mutation present only in southern African populations [24; 46]. However, with 12 females each of the alive and dead used, the presence of these mutations or others at a low frequency cannot be ruled out.\n", - "\n", - "header: Data Analysis\n", - "\n", - "The results of bioassays were interpreted as continuous variables, with normal distributions and percentage mortalities +- standard error of mean (SEM) calculated, based on the WHO protocol [35]. Results of mortalities from synergism-pyrethroid exposure were compared with values obtained from exposure to pyrethroid alone using a two-tailed Chi-Square test of independence, with the level of significance pegged as \\(P\\) < 0.05, as implemented in GraphPad Prism 7.02 (GraphPad Inc., La Jolla, CA, USA). For genotyping of 119F _GSTe2_ mutation allele frequency was calculated using the formula f(R) = (2 x RR + RS)/2\\(N\\) for individuals carrying the mutations, and f(S) = 1 - f(R) for the susceptible individuals; where RR = total number of homozygote resistant; RS = total number heterozygote resistant; \\(N\\), total number of individuals investigated. Genotype frequency was calculated as relative frequencies of the homozygote resistant and heterozygote resistant individuals. The correlation between the genotypes and resistance phenotypes was estimated by estimating the odds ratio using the epiR package [R version 3.5.0 ([https://cran.r-project.org/bin/windows/base/](https://cran.r-project.org/bin/windows/base/))] with statistical significance established based on the Fisher's exact probability test (_P_ < 0.05). For the estimation of LT50, a probit analysis was carried out using glm with a MASS package of R [44].\n", - "\n", - "header: WHO Insecticides Susceptibility Tests\n", - "\n", - "The bioassays were performed following the protocol of WHO [35], with various insecticides from four major public health classes. These include (i) the type I pyrethroid: permethrin (0.75%); (ii) the type II pyrethroid: deltamethrin (0.05%); (iii) the organochloride: DDT (4%); (iv) the carbamate: benodiocarb (0.1%); and (v) the organophosphate: fenitrothion (1%). All insecticide impregnated papers (reference: WHO/VBC/81.806) were sourced from the WHO/Vector Control Research Unit (VCRU) of University of Sains Malaysia (Penang, Malaysia). Four replicates of 24-26 F1 females (3-4 d old) per tube were used for each insecticide. The mosquitoes were transferred to tubes lined with insecticide papers and exposed for 1 h, after which they were transferred back to the holding tubes, supplied with 10% sugar, and mortality recorded at 24 h. For each bioassay, one replicate of 20-25 females unexposed to any insecticides were used as a control. The fully susceptible _An. funestus_ (FANG colony) [36] was tested, alongside the field populations, for the pyrethroid papers to ascertain the potency of the papers. The mosquitoes were deemed susceptible to an insecticide where mortality was >98%, suspected to be moderately resistant where mortality is between 90-98%, and resistant where mortality was <90% [35]. Figures were prepared using GraphPad Prism 7.02 (GraphPad Inc., La Jolla, CA, USA).\n", - "\n", - "header: Bed Net Efficacy Using Cone Bioassay\n", - "\n", - "A low efficacy was observed with the pyrethroid-based Olyset(r)Net (mortality = 22.22, 95% CI: 14.37-30.07) and the Perma(r)Net2.0 (mortality = 38.05%, CI: 19.12-56.98) (Figure 2b). The side panels of PermaNet(r)3.0 induced higher mortality of 67.41% (CI: 44.87-89.95). This is more than the mortality\n", - "observed with the PBO-containing Olyset(r)Plus (mortality = 52.31%, CI: 41.85-62.78). A 100% mortality rate was seen from exposure to the roof of PermaNet(r)3.0 (containing PBO). No mortality was obtained from the control populations, which were exposed to untreated nets.\n", - "\n", - "header: Materials and Methods\n", - "\n", - "Exploring the Mechanisms of Multiple Insecticide Resistance in a Highly _Plasmodium_-Infected Malaria Vector _Anopheles funestus_ Sensu Stricto from Sahel of Northern Nigeria\n", - "\n", - "Sulaiman S. Ibrahim, Muhamad M. Mukhtar, Helen Irving, Jacob M. Riveron, Amen N. Fadel, Williams Tchapga, Jack Hearn, Abdullahi Muhammad, Faruk Sarkinfada, Charles S. Wondji\n", - "\n", - "1Vector Biology Department, Liverpool School of Tropical Medicine (LSTM), Liverpool L3 5QA, UK; Helen.Irving@lstmed.ac.uk (H.I.); jack.hearn@lstmed.ac.uk (J.H.); Abdullahi.Muhammad@lstmed.ac.uk (A.M.); charles.wondji@lstmed.ac.uk (C.S.W.) Department of Biochemistry, Bayero University, PMB 3011 Kano, Nigeria; muhammadmaehuhtar@gmail.com (LSTM Research Unit, Centre for Research in Infectious Diseases (CRID), P.O. Box 13591 Yaounde, Cameroon; Jacob.Riveron_Miranda@syngenta.com (J.M.R.); amen.fadel@crid-cam.net (A.N.F.); williams.tchapga@crid-cam.net (W.T.) Centre for Biotechnology Research, Bayero University, PMB 3011 Kano, Nigeria; fstada.mcp@buk.edu.ng (Center for Biotechnology Research, Bayero University, PMB 3011 Kano, Nigeria; fstada.\n", - "\n", - "\n", - "\n", - "ng (Center for Biotechnology Research, Bayero University, PMB 30\n", - "\n", - "\n", - "countries like Nigeria, which reported increased cases of more than half a million in 2017, compared with 2016 [1]. With _Anopheles gambiae_ sensu lato and _Anopheles funestus_ sensu structo (_An. funestus_) as the major malaria vectors, and _Plasmodium falciparum_ as the major malaria-causing species (100% of all cases in 2017), it is not surprising that this disease accounts for ~60% of outpatient visits to health facilities and 30% of child mortality in Nigeria [3]. The lack of progress towards malaria pre-elimination in Nigeria is partly due to insufficient and/or discordant entomological and active case surveillance data [4], which are important guides to identify priority areas and the most vulnerable populations to implement data-driven decisions. In stark contrast to _An. gambiae_ s.l. [5-7], the major malaria vector _An. funestus_ from the Sudan/Sahel savannah of northern Nigeria has been neglected for decades, after comprehensive works conducted by several pioneers, before 1960. These almost seven decades old studies include (i) the work of Bruce-Chwatt and Haworth (carried out in 1955-56), which described _An. funestus_ populations from Sokoto, north-western Nigeria, highly resistant to DDT (dichlorodiphenyltrichloroethane), dieldrin, and benzene hexachloride [8]; (ii) a detailed examination of _An. funestus_ species, published in 1959 by W.M. Service [9] and its role in transmission in northern Nigeria [10]; as well as (iii) a 1964 small-scale hut trials to establish impact of DDT and malathion exposure on behaviour of _An. funestus_ and _An. gambiae_[11]. After the Garki Project (1960-1970) [12], interest in _An. funestus_ waned in northern Nigeria, though it is the chief vector in the dry season [13], extending the period of malaria transmission when densities of _An. gambiae_ s.l. have declined [14]. Due to its high vectorial capacity, conferred by its unusually high anthropophilic and endophilic behaviour [14,15], this species is very important target, which should not be neglected if the ambitious target of the WHO to reduce global malaria case incidence by 90% is to be realised [16]. Contrary to the north, several studies have characterised _An. funestus_ populations from southern Nigeria. For example, the role of this vector in malaria transmission was established in populations from four sites in southwest Nigeria [17], and recently its role in transmission and insecticide resistance profile was investigated by Djouaka and colleagues [18]. Unfortunately, information on this vector species from southern Nigeria cannot be extrapolated to the north, because Nigeria has five ecological zones which define intensity and seasonality of transmission and heterogeneity in mosquito vector compositions [19].\n", - "\n", - "Here, a primary data from study of the major malaria vector _An. funestus_ is presented. The role of this vector from Sahel of northern Nigeria in malaria transmission was investigated, and its resistance status to the major public health insecticides in use for bed nets and indoor-residual spraying established. The possible mechanisms driving metabolic resistance in the field were also investigated using the synergist bioassays and TaqMan genotyping for the 119F glutathione S-transferase (_GSTe2_) mutation, which confers resistance to DDT and pyrethroids [20]. The presence of the 1014F/S knockdown resistance (_kdr_) mutations previously associated with pyrethroid resistance [21,22], and the _acetylcholinesterase-1_ (_ace-I_) G119S [23] and N485I [24] mutations associated with carbamate/organophosphate resistance, was also assessed through sequencing. Findings of this study could guide the Nigerian National Malaria Elimination Program to implement evidence-based resistance management and malaria control measures in northern Nigeria as it scales up distribution of insecticide treated net (ITNs) as part of the goals of the National Malaria Strategic Plan (NMSP) 2014-2020 [25].\n", - "\n", - "\n", - "\n", - "Blood-fed female _Anopheles_ mosquitoes resting indoors were collected between 17-20 November 2018 using battery-operated aspirators (John. W. Hock, Gainesville, FL, USA). Collection was done in eight randomly selected houses (among those who consented), in the morning hours (6:00-7:00 a.m.) at Gajerar Giwa (13deg11'57.1'' N 7deg45'53.5'' E), a village in Katsina State, north-western Nigeria. Located in the semi-arid savannah, Gajerar Giwa (Figure 1) neighbors Ajiwa Dam, built in 1975 and is used by nearby communities, for domestic purposes, fishing, and the year-round\n", - "irrigation of vegetables, including tomato, lettuce, pepper, etc. Farmers apply quantities of pesticides mainly organophosphate-based, as well as pyrethroids and carbamates for the control of insect pests, undesirable herbs and fungi ([http://documents.worldbank.org/curated/pt/244751486100486129/pdf/SFG2945-EA-P148616-Box402883B-PUBLIC-Disclosed-1-31-2017.pdf](http://documents.worldbank.org/curated/pt/244751486100486129/pdf/SFG2945-EA-P148616-Box402883B-PUBLIC-Disclosed-1-31-2017.pdf)).\n", - "\n", - "Clearance for indoor collection previously obtained from Operational Research Advisory Committee, Ministry of Health (with reference number MOH/off/797/TI/402) was used. The blood fed females obtained were maintained on 10% sugar at 25 \\({}^{\\circ}\\)C +- 2 and 70-80% relative humidity for 6-7 d. Gravid females were transferred into 1.5 mL tubes individually and forced to lay eggs, using established protocols [26]. The F0 parents were identified as belonging to the _An. funestus_ group using morphological keys [27] and confirmed as _An. funestus_ s.s. using the cocktail polymerase chain reaction PCR [28]. Egg batches were transferred into paper cups for hatching in the insectary located at Bayero University Kano, Nigeria. Eggs that hatched were pooled into bowls and supplemented with Tetramin(tm) baby fish food. The 3- to 4-days old F1 females that emerged were mixed in cages and used for bioassays. DNA extracted from all F0 and F1 females and to be used for molecular analyses were transported to the Liverpool School of Tropical Medicine (LSTM), UK, under the DEFRA license (PATH/125/2012, UK). To establish the indoor resting densities of the _An. funestus_ and the source of blood meal, a pyrethrum spray collection was conducted indoor in the eight houses on 21 November 2018.\n", - "\n", - "header: Polymorphism Analysis of Acetylcholinesterase-1 (ace-1) for G119S and N485I Target-Site Mutations\n", - "\n", - "To detect the 119S _ace-1_ mutation linked to bendiocarb/organophosphate resistance [23] a fragment of the gene spanning exons 4 to 5 was amplified from 12 bendiocarb-alive and -12 dead females. The following primers spanning exon 4, through intron 4_5 and exon 5: AFUNace1_ex4-5F: 5'-ACGCTAACGATAATGATCCGCT-3' and AFUNace1_ex4-5R:5'AGTAGCTTCTTCGCGTGATA CA-3' were utilised. A 12.5 mL premix comprise of 2x AccuStar II PCR SuperMix (QuantaBio, Beverly, Massachusetts, USA), containing optimised concentrations of MgCl2 and dNTPs, 0.2 mmol/L each of the forward and reverse primer was prepared. A total of 1 mL gDNA from individual female mosquitoes was added, followed by 10.5 mL of ddH2O (final volume = 25 mL). Amplification was carried out using the following condition: initial denaturation of 1 cycle at 94 degC for 3 min; followed by 35 cycles each of 94 degC for 30 s (denaturation); 60 degC for 30 s (annealing); extension at 72 degC for 1 min; and final elongation of one cycle at 72 degC for 5 min. PCR products were cleaned with QIAquick(r) PCR Purification Kit (QIAGEN, Hilden, Germany) and sequenced on both strands, using the above primers.\n", - "\n", - "For the N485I mutation the same samples as above were used. A forward primer AfunExon6-7ace_F: 5'-AACAATGATACATGTACCT-3' was utilised together with a previously described reverse primer AfunExon4-7ace R: 5'-TGACACTAGCACACAACCA-3' [24] to amplify a fragment spanning exons 6-7. Thermocycling condition was as described above.\n", - "\n", - "Polymorphisms were detected through manual examination of sequence traces using BioEdit version 7.2.3.0 ([http://www.mbio.ncsu.edu/BioEdit/bioedit.html](http://www.mbio.ncsu.edu/BioEdit/bioedit.html)) [40], and analyses of genetic parameters of polymorphism were done using the DnaSP 5.10 [41]. Different sequences were compared by constructing a maximum likelihood phylogenetic tree using MEGA 6.0 [42]. All DNA sequences from the alive and dead females are provided in File S1.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ITNCondition` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: 3.2.1 Indoor Resting Density, Human Blood Index and Biting Rate: 3.2.2 Estimation of Sporozoite Infection Rate\n", - "\n", - "A total of 36 out of 66 heads/thoraces were positive for _P. falciparum_ (F\\({}_{+}\\) = 36), corresponding to an unusually high sporozoite rate of 54.55% \\(\\pm\\) 13.63. Validation of the TaqMan results using nested PCR [34] confirmed the _P. falciparum_ infection in the 36 samples.\n", - "\n", - "header: 2.3.1 Estimation of Indoor Resting Density, Human Blood Index and Biting Rate: 2.3.2 Estimation of Sporozoite Rate\n", - "\n", - "Sixty-six females (22 individuals randomly selected from each of the three days of indoor collection) which laid eggs successfully were dissected, and the heads/thoraces separated from the abdomens immediately, as explained above. The presence of sporozoite was investigated using a TaqMan genotyping protocol, established by Bass and colleagues [33]. Real-time PCR MX 3005 (Agilent, Santa Clara, CA, USA) was used for the amplification. A total of 1 uL of gDNA, extracted from each female head/thorax, was used for PCR, with an initial denaturation at 95 \\({}^{\\circ}\\)C for 10 min, followed by 40 cycles each of 15 s at 95 \\({}^{\\circ}\\)C and 1 min at 60 \\({}^{\\circ}\\)C. Primers described by Bass (PlasF_GCTTAGTTACGATTAATAGGAGTAGCTTG and PlasR_GAAAATCTAAGAATTTCAC CTCTGACA) were used, together with two probes labelled with fluorophores, FAM (Falcip+_TCTGAAT ACGAATGTC) to detect _Plasmodium falciparum_, and HEX (OVM+_CTGAATACAAATGCC) to detect the combination of _P. ovale_, _P. vivax_ and _P. malariae_. Positive controls (known FAM+ and OVM+) were used, in addition to a negative control, in which 1 uL of ddH2O was added. To validate findings of the TaqMan assay, a nested PCR of Snounou et al. [34] was carried out, using all the samples that tested positive with TaqMan. The sporozoite rate was calculated as the percentage of females positive, relative to the total number of the females examined [30].\n", - "\n", - "header: Estimation of Entomological and Parasitological Parameters\n", - "\n", - "The indoor resting density (IRD) was calculated from the number of _An. funestus_ collected on the 4th d, relative to the number of houses assessed, as advised by the WHO [30; 31]. A total of 112 blood-fed females were dissected <48 h after collection, separating heads/thoraces from the abdomens. The abdomens were used for gDNA extraction as outlined in WHO guidelines [30] using the DNeasy Blood and Tissue Kit (QIAGEN, Hilden, Germany), according to manufacturer's protocol. Identification of the source of blood was conducted using the cocktail PCR of Kent et al. [32]. The human blood index was calculated from the number of females that have fed on humans, relative to the total number of females caught [30; 31]. The human biting rate was estimated from the number of the females that have fed on humans, relative to the total number of people in the houses sampled.\n", - "\n", - "header: Composition of the Mosquito Species Collected Indoor: Entomological and Parasitological Parameters of Transmission\n", - "\n", - "The indoor resting density of the _An. funestus_ was estimated as 14 from the 112 blood females collected in eight houses. Analysis of the blood source of these 112 females by PCR revealed that they all fed on human blood, leading to a human blood index of 100%. The human biting rate was estimated as ~5.3 bites per person per night (CI: 4.91-5.69).\n", - "\n", - "header: Investigating the Role of Metabolic Resistance Using Synergist Bioassays\n", - "\n", - "Pre-exposure to PBO and DEM recovered some susceptibility to both permethrin and DDT, respectively (Figure 2c). A significant increase in mortality was observed when comparing results of a repeat conventional bioassay with permethrin [mortality = 43.9% (95% CI: 40.93-46.90)] to the results from the PBO-synergised bioassay [mortality = 78.73% (95% CI: 69.53-87.94), kh2 = 22.33, df = 1, \\(P\\) < 0.0001]. Pre-exposure to DEM recovered DDT susceptibility as well, with repeat exposure to DDT producing mortality of 49.82% (95% CI: 45.54-54.9), compared to a synergised experiment with a mortality of 81.44% (95% CI: 74.36-88.52, kh2 = 19.12, df = 1, \\(P\\) < 0.0001). In both cases, the doubling of mortalities from synergist pre-exposure suggests the possible role of cytochrome P450s and GSTs, respectively, in the observed permethrin and DDT resistance. No mortality was obtained from the control individuals.\n", - "\n", - "header: Synergist Bioassay with Piperonyl Butoxide (PBO) and Diethyl Malate\n", - "\n", - "To investigate the potential role of P450 monooxygenases in pyrethroid resistance, a synergist bioassay was carried out using 4% PBO [an inhibitor of CYP450s [38]] against permethrin. The role of glutathione S-transferases (GSTs) in DDT resistance was also investigated by pre-exposure to 8% diethyl maleate (DEM). The insecticides and the synergists PBO were sourced from the WHO/Vector Control Research Unit (VCRU) of the University of Sains Malaysia (Penang, Malaysia). Four replicates of 22-26 F1 females (3-4 d old) were pre-exposed to PBO or DEM for 1 h, and then transferred to tubes containing permethrin [35] or DDT, respectively. Mosquitoes were treated as in the WHO bioassays described above, and mortalities scored after 24 h. Two replicates of 25 females each were exposed to PBO only, as a control.\n", - "\n", - "Genotyping of L119F Glutathione S-Transferase (GSTe2) Mutation Associated with DDT/Permethrin Resistance\n", - "\n", - "To detect the L119F _GSTe2_ mutation previously linked to DDT/pyrethroid metabolic resistance [20], TaqMan genotyping was conducted using 44 F0 females collected from the field. This was carried out using a real-time PCR thermocycler (Agilent Mx3005) following an established protocol [20]. The primers L119F_GSTe2F (5'-AACAATTTTTCATTTCTTATTCTCATTAC-3') and L119F_GSTe2R (5'- CGACTCGATCTTCGGGAATGTC-3') were utilised with the following probes: reporter L119 (VIC_AGGACGGTATTCTTTTTCTA) to detect the susceptibility allele, and reporter 119F (FAM_AGGAGCGTATTTTTTTCTA) for the resistance allele. The assay was performed in a 10 mL final volume comprise of 5 mL of 1x Sensimix (Bioline, London, UK), 800 nM each of primer, 200 nM of each probe, and 1 mL of gDNA. Thermocycling conditions were initial denaturation of 10 min at 95 \\({}^{\\circ}\\)C, followed by 40 cycles each of 92 \\({}^{\\circ}\\)C for 10 s, and 60 \\({}^{\\circ}\\)C for 45 s. Genotypes were scored from scatter plots of results produced by the Mx3005 v4.10 software (Agilent, Santa Clara, CA, USA). Three positive samples of known genotypes [20]--(i) homozygote resistant 1014F/1014F; (ii) heterozygote L1014/1014F; and (iii) susceptible L1014/L1014--were used as positive controls. For the negative control, 1 mL of ddH2O was incorporated into the control well. To assess the correlation between the presence of the 119F mutation and the resistance phenotype, 12 each of DDT-alive and -dead females were genotyped using the above protocol. In addition, these 12 alive and 12 dead females were also screened, using the recently established allele-specific PCR [39].\n", - "\n", - "header: Results\n", - "\n", - "_Anopheles funestus_ is the only mosquito species caught, a total of 721 in 4 d. Out of these, 590 were caught in the first 3 d (52 \\(\\circ\\), 538 \\(\\circ\\) [487 blood fed and 51 unfed]). A total of 312 \\(\\mathrm{\\SIUnitSymbolOhm}\\)ial eggs and 288 egg batches hatched successfully. A total of 131 mosquitoes were caught on the 4th day: 12 \\(\\circ\\) and 119 \\(\\circ\\) (112 of them blood fed and 7 unfed).\n", - "\n", - "header: Data Analysis\n", - "\n", - "The results of bioassays were interpreted as continuous variables, with normal distributions and percentage mortalities +- standard error of mean (SEM) calculated, based on the WHO protocol [35]. Results of mortalities from synergism-pyrethroid exposure were compared with values obtained from exposure to pyrethroid alone using a two-tailed Chi-Square test of independence, with the level of significance pegged as \\(P\\) < 0.05, as implemented in GraphPad Prism 7.02 (GraphPad Inc., La Jolla, CA, USA). For genotyping of 119F _GSTe2_ mutation allele frequency was calculated using the formula f(R) = (2 x RR + RS)/2\\(N\\) for individuals carrying the mutations, and f(S) = 1 - f(R) for the susceptible individuals; where RR = total number of homozygote resistant; RS = total number heterozygote resistant; \\(N\\), total number of individuals investigated. Genotype frequency was calculated as relative frequencies of the homozygote resistant and heterozygote resistant individuals. The correlation between the genotypes and resistance phenotypes was estimated by estimating the odds ratio using the epiR package [R version 3.5.0 ([https://cran.r-project.org/bin/windows/base/](https://cran.r-project.org/bin/windows/base/))] with statistical significance established based on the Fisher's exact probability test (_P_ < 0.05). For the estimation of LT50, a probit analysis was carried out using glm with a MASS package of R [44].\n", - "\n", - "header: Study Site and Mosquito Sampling: Molecular Identification of Mosquito Species\n", - "\n", - "Genomic DNA (gDNA) was extracted from the females which laid eggs, using the Livak protocol [29], and the mosquitoes identified to species using the cocktail PCR of Koekemoer, et al. [28]. These include all the females from the first 3 days of collections, as well as all the females collected on day 4, which were used for the estimation of indoor resting density and identification of blood meal source.\n", - "\n", - "Figure 1: A map showing the sampling locality (Gajerar Giwa) in the Sahel of northern Nigeria.\n", - "\n", - "header: Supplementary Materials:\n", - "\n", - "The following are available online at [http://www.mdpi.com/2073-4425/11/4/454/s1](http://www.mdpi.com/2073-4425/11/4/454/s1), Figure S1: Knockdown profiles of _An. funestus females_ exposed to pyrethroids and DDT. Each bar is a percentage knockdown of values from four different replicates from bioassays at different time points, Figure S2: Analysis of the _acc-_I fragment encompassing the 119 codon. (**a**). pattern of genetic variability of sequences from 12 bendiocarb-alive and -12 dead females; (**b**). a maximum likelihood phylogenetic tree of the sequences., Figure S3: Analysis of the _acc-_I fragment encompassing the 485 codon. (**a**). pattern of genetic variability of sequences from 12 bendiocarb-alive and -12 dead females; (**b**). a maximum likelihood phylogenetic tree of the sequences., Figure S4: Analysis of the _VGSC_ fragment encompassing the 1014 _kdr_ mutation codon. (**a**). pattern of genetic variability of 30 sequences from randomly selected F0 females; (**b**). a maximum likelihood phylogenetic tree of the sequences, Table S1: Summary statistics for polymorphism of a fragment of _acetylcholinesterase_-1 encompassing the 119 codon for alive and dead mosquitoes, Table S2: Summary statistics for polymorphism of a fragment of _acetylcholinesterase_-1 encompassing the 485 codon for alive and dead mosquitoes, Table S3: Summary statistics for polymorphism of a fragment of voltage-gated sodium channel encompassing the 1014 codon for the field F0 females, File S1: Analyzed sequences (gDNA partial fragments) from encompassing the G119S and N485I of _acetylcholinesterase_-1 gene and sequences from the partial fragment of the voltage-gated sodium channel spanning the 1014th codon.\n", - "\n", - "header: Insecticide Resistance Profile of An. funestus Population\n", - "\n", - "The _An. funestus_ population demonstrated high knockdown resistance, with ~5% of them knocked down at 1 h exposure with deltamethrin and DDT (Figure S1), and ~10% knocked down after 1 h exposure with permethrin. High resistance was observed towards the pyrethroids, with a higher mortality of 48.30% (95% CI: 41-55) for permethrin, compared with 29.44% (95% CI: 24-34) for deltamethrin (Figure 2a). A 100% mortality rate was obtained in the FANG susceptible colony. Significant resistance was also observed towards DDT and bendiocarb, with mortalities of 56.34% (95% CI: 51-62) and 54.05% (95% CI: 49-59), respectively. Moderate resistance was observed from exposure to fenitrothion with mortality of 94.22% (95% CI: 88-101).\n", - "\n", - "header: Polymorphism Analysis of Voltage-Gated Sodium Channel Gene Spanning the 1014 kdr Locus\n", - "\n", - "A fragment of voltage-gated sodium channel spanning intron 19 and the exon 20 containing the 1014F/S mutations associated with knockdown resistance (_kdr_) in _An. gambiae_[21,22] was amplified and sequenced. This was done with DNA extracted from 30 F0 females that laid eggs successfully. PCR was carried using primers: AfunkdrExon19-20F: GTTCAATGAAAGCCCCTCAAA and Afunkdr Exon19-20R: CCGAAATTTGACAAAGCAAA, as described in previous works [43]. The PCR products were purified using the Qiaquick Purification Kit (QIAGEN, Hilden, Germany), sequenced and aligned using BioEdit. Polymorphisms analysis and maximum likelihood phylogenetic tree construction were as described above. All DNA sequences from the alive and dead females are provided in File S1.\n", - "\n", - "header: Bed Net Efficacy Using Cone Bioassay\n", - "\n", - "A low efficacy was observed with the pyrethroid-based Olyset(r)Net (mortality = 22.22, 95% CI: 14.37-30.07) and the Perma(r)Net2.0 (mortality = 38.05%, CI: 19.12-56.98) (Figure 2b). The side panels of PermaNet(r)3.0 induced higher mortality of 67.41% (CI: 44.87-89.95). This is more than the mortality\n", - "observed with the PBO-containing Olyset(r)Plus (mortality = 52.31%, CI: 41.85-62.78). A 100% mortality rate was seen from exposure to the roof of PermaNet(r)3.0 (containing PBO). No mortality was obtained from the control populations, which were exposed to untreated nets.\n", - "\n", - "header: Investigating the Role of L119F-GSTe2 Mutation in DDT Resistance\n", - "\n", - "Initial genotyping of 43 F0 females revealed a high frequency of the L119F-GSTe2 mutation with 30.2% (13 individuals) heterozygotes (RS, L119/F119), 32.6% (14 individuals) homozygote resistant (RR, 119F/119F), and 16.3% (7 individuals) homozygote susceptible (SS, L119/L119) (Figure 3a).\n", - "\n", - "Figure 2: Resistance profiles of F1 _An. funestus_ females. (**a**). Results of WHO susceptibility bioassays with various insecticides. Results are the average of percentage mortalities from four replicates each ± standard error of mean (SEM); (**b**). Results of the cone bioassays with PermaNet®3.0 (side and roof), PermaNet®2.0, Olyset®Plus and Olyset®Net. Results are the average of percentage mortalities ± SEM of five replicates; (**c**). Effect of pre-exposure of synergist piperonylbutoxide (PBO) against permethrin and diethyl maleate (DEM) against DDT (dichlorodiphenyltrichloroethane). Results are the average of percentage mortalities from four replicates each ± SEM. **** = statistically significant at \\(P\\) < 0.0001, in a two-tailed Chi-square test between results from synergised bioassay and conventional bioassays; (**d**). Time-course bioassay for LTs0 estimation/test for strength of permethrin resistance.\n", - "\n", - "\n", - "The 119F allele frequency f(R) was calculated as ~0.84. 12 each of DDT-alive and -dead F1 females were used for allele-specific PCR to detect the L119F GSTe2 mutation. 8 of the DDT-alive (8/12, 66.66%) were homozygote resistant (RR) for the mutation (Figure 3b,c), and 4 females (4/12, 33.33%) were heterozygote resistant. From the dead females, one sample failed (Figure 3c), only one female was homozygote resistant (1/11, 9.09%), 8 were heterozygotes (8/11, 72.72%), and 2 were susceptible (2/11, 18.18%). A difference was observed in the distribution of the 119F mutation [Odds Ratio of 16.00 (95% CI: 6.67-38.3, \\(\\chi^{2}\\) = 3.70, \\(p\\) = 0.05)] when comparing the frequency of the homozygote resistant allele (RR) with susceptible allele (SS) in the alive and dead females. A comparison of all resistant (RR + RS) with susceptible (SS) individuals from alive and dead females revealed no genotype-phenotype association [OR = 0.49 (CI: 0.19-3.15, \\(\\chi^{2}\\) = 1.2, \\(p\\) = 0.27)]. No association was observed when comparing the heterozygote individuals (RS) from both alive and dead to the susceptible (SS) [OR = 2.44 (CI: 0.9-13.53, \\(\\chi^{2}\\) = 0.49, \\(p\\) = 0.48)].\n", - "\n", - "header: Estimation of Resistance Intensity with Time-Course Bioassay\n", - "\n", - "To establish the strength of pyrethroid resistance with time, additional bioassays were performed, with 0.75% permethrin, at varying times of exposure. Four replicates of 20-25 F1 females were exposed in time-course spanning 60, 120, 180, 240 and 300 min, to establish the time required to kill 50%\n", - "of them (LT50). Protocol was as described above in conventional bioassays, except for variation in time. Resistance intensity was established by comparing the LT50 from the Gajerar Giwa _An. fintestus_ populations to the LT50 previously established for the fully susceptible _Anopheles coluzzi_ lab colony [5]. This type of inter-species comparison of using _An. gambiae_ (Kisumu colony) LT50s had been done before in the absence of LT50 data from FANG colony [37].\n", - "\n", - "header: A Low-Efficacy of Long-Lasting Insecticidal Nets Is a Serious Challenge to Malaria Control\n", - "\n", - "The high pyrethroid resistance was also evident in the low efficacy of insecticide-treated bed nets, most especially the Olyset(r)Net and the PermaNet(r)3.0 (the side panel). Except for PermaNet(r)3.0, profoundly lower efficacies were seen with all the nets, in line with observations in same species from southern Africa [46], and a recent report from northern Cameroon [50]. The recovery of susceptibilities from exposure to the roof of PermaNet(r)3.0 and the PBO-synergist bioassays suggest the preeminent role of CYP450s in the pyrethroid resistance in this population. This agrees with several studies carried out across Africa [46; 51; 52]. Low efficacy seen with Olyset(r)Plus net have been described in several studies with both _An. funestus_ and _An. coluzzii_[50; 51; 52; 53].\n", - "\n", - "Insecticide Resistance Mechanism Is Driven by Metabolic Resistance Mechanisms in Gajerar Giwa An. funestus Population\n", - "\n", - "The recovery of susceptibilities from pre-exposure to PBO and DEM suggests the preeminent role of CYP450s and GSTs in pyrethroid and DDT resistance, respectively. Indeed, several studies have used these synergists to establish the potential role of the above metabolic enzymes in resistance in _An. funestus_[51; 52; 54]. The role of metabolic resistance is strengthened by (i) the finding of high frequency of the 119F-_GSTe2_ mutation in the Gajerar Giwa population and its possible link to DDT resistance, as documented in several studies [20; 47; 51; 54]; (ii) the absence of the G119S and N485I mutations in the acetylcholinesterase gene; and (iii) the absence of the 1014F/_S kdr_ mutation in the voltage-gated sodium channel from the Gajerar Giwa population, in line with the observations across Africa [37; 52; 55]. The high diversity seen in the fragment spanning the exon 20 of the VGSC suggests lack of reduced diversity due to absence of selection.\n", - "\n", - "The high bendiocarb resistance prompted sequencing of the _ace-1_ fragment for the G119S and N485I mutations previously associated with carbamate/organophosphate resistance. The absence of these mutations in the highly bendiocarb-resistant Gajerar Giwa populations, and the observed relative fenitrothion susceptibility, suggests no cross resistance, and points to metabolic mechanism responsible for the bendiocarb resistance. Several studies have reported absence of the G119S mutation in various populations of _An. funestus_ across Africa [24; 43; 52]. The high diversity seen in the _ace-1_ fragment suggests a lack of selection in the gene. However, with only 12 females (low sample size) each of alive and dead used, the presence of this mutation at a low frequency cannot be ruled out.\n", - "\n", - "The absence of the N485I mutation in Gajerar Giwa populations confirmed previous observations of the mutation present only in southern African populations [24; 46]. However, with 12 females each of the alive and dead used, the presence of these mutations or others at a low frequency cannot be ruled out.\n", - "\n", - "header: Determination of LLIN Efficacy with Cone Bioassays\n", - "\n", - "To investigate the efficacy of commonly distributed long-lasting insecticidal nets (LLINs), cone bioassays were conducted following the WHO protocol [36], using 3-4 d old F1 females. Five replicates of 9-12 mosquitoes were placed in a plastic cone attached to a fresh insecticide-containing bed net and tested. The LLINs include: the Olyset(r)Net (containing 2% permethrin), Olyset(r)Plus (containing 2% permethrin combined with 1% of the synergist, piperonyl butoxide, PBO), PermaNet(r)2.0 (containing 1.4-1.8 g/kg +-25% deltamethrin), PermaNet(r)3.0 side panel (containing 2.1-2.8 g/kg +-25% deltamethrin), and PermaNet(r)3.0 roof (containing 4.0 g/kg +-25% deltamethrin, combined with 25 g/kg +-25% of PBO). For each experiment, five different pieces cut from an LLIN brand were used for the five technical replicates. Mosquitoes were exposed for 3 min and immediately transferred to paper cups. They were supplied with 10% sucrose and mortalities recorded after 24 h. For the control, five replicates of ten mosquitoes were exposed to untreated net.\n", - "\n", - "header: 5 Conclusions\n", - "\n", - "This study discovered a disproportionately high _Plasmodium_ infection in a major malaria vector _An. funestus_ from Nigeria, which will pose a serious threat to malaria control, and highlights the extent \n", - "of the efforts needed to reach the pre-elimination stage in this region of Nigeria. Pyrethroid and DDT resistance was seen at high levels which could compromise control tools using the LLINs and indoor residual spraying (IRS). The high bendiocarb resistance observed in the field populations of this vector may affect the future control measures in northern Nigeria, using the carbamate-based IRS. However, the PBO-containing combination bed net PermaNet(r)3.0 was found to be still effective in killing this species. The discovery of a high susceptibility to fenitrothion suggests that organophosphates could also be alternatives for IRS. Finally, all evidences pointed to the preeminent role of metabolic mechanisms in the multiple resistance in this populations of _An. funestus_. This should be considered by Nigeria's National Malaria Elimination Program when deploying control tools/interventions into this area.\n", - "\n", - "header: WHO Insecticides Susceptibility Tests\n", - "\n", - "The bioassays were performed following the protocol of WHO [35], with various insecticides from four major public health classes. These include (i) the type I pyrethroid: permethrin (0.75%); (ii) the type II pyrethroid: deltamethrin (0.05%); (iii) the organochloride: DDT (4%); (iv) the carbamate: benodiocarb (0.1%); and (v) the organophosphate: fenitrothion (1%). All insecticide impregnated papers (reference: WHO/VBC/81.806) were sourced from the WHO/Vector Control Research Unit (VCRU) of University of Sains Malaysia (Penang, Malaysia). Four replicates of 24-26 F1 females (3-4 d old) per tube were used for each insecticide. The mosquitoes were transferred to tubes lined with insecticide papers and exposed for 1 h, after which they were transferred back to the holding tubes, supplied with 10% sugar, and mortality recorded at 24 h. For each bioassay, one replicate of 20-25 females unexposed to any insecticides were used as a control. The fully susceptible _An. funestus_ (FANG colony) [36] was tested, alongside the field populations, for the pyrethroid papers to ascertain the potency of the papers. The mosquitoes were deemed susceptible to an insecticide where mortality was >98%, suspected to be moderately resistant where mortality is between 90-98%, and resistant where mortality was <90% [35]. Figures were prepared using GraphPad Prism 7.02 (GraphPad Inc., La Jolla, CA, USA).\n", - "\n", - "header: Evidence of Multiple Resistance in the Gajerar Giwa An. funestus\n", - "\n", - "The multiple insecticide resistance seen in the _An. funestus_ in this study is in line with reported data from several studies across Africa [20,46-48], though with the intensity of the resistance higher in southern Africa. However, the level of pyrethroid resistance observed in this study was higher than reported in the same species from southern Nigeria by Djouaka et al. [18], especially for deltamethrin,\n", - "where mortalities in the population from southern Nigeria was on average three times lower compared to the Gajerar Giwa population. In contrast, the extremely high DDT resistance reported in southern Nigeria [18] was not seen in the Gajerar Giwa population, though the DDT resistance is higher compared to the values reported for the same species in Sahel of northern Senegal [48]. The high bendiocarb resistance seen in the Gajerar Giwa population (54% mortality) is lower than carbamate resistance in southern African populations (30-42% mortality) [37; 46], where carbamate resistance is established to be very high. However, the bendiocarb resistance in the Gajerar Giwa is higher than what was reported for the southern Nigerian population of _An. funestus_ (84% mortality) [18], or the population from Senegal (94% mortality) [48], and even in northern Cameroon (89% mortality) [49]. The Gajerar Giwa _An. funestus_ population exhibited a high LT50 for permethrin, reflecting high resistance intensity, though on average less than half of what was documented for the southern African populations [37; 46].\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `Observation` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: 3.2.1 Indoor Resting Density, Human Blood Index and Biting Rate: 3.2.2 Estimation of Sporozoite Infection Rate\n", - "\n", - "A total of 36 out of 66 heads/thoraces were positive for _P. falciparum_ (F\\({}_{+}\\) = 36), corresponding to an unusually high sporozoite rate of 54.55% \\(\\pm\\) 13.63. Validation of the TaqMan results using nested PCR [34] confirmed the _P. falciparum_ infection in the 36 samples.\n", - "\n", - "header: Estimation of Entomological and Parasitological Parameters\n", - "\n", - "The indoor resting density (IRD) was calculated from the number of _An. funestus_ collected on the 4th d, relative to the number of houses assessed, as advised by the WHO [30; 31]. A total of 112 blood-fed females were dissected <48 h after collection, separating heads/thoraces from the abdomens. The abdomens were used for gDNA extraction as outlined in WHO guidelines [30] using the DNeasy Blood and Tissue Kit (QIAGEN, Hilden, Germany), according to manufacturer's protocol. Identification of the source of blood was conducted using the cocktail PCR of Kent et al. [32]. The human blood index was calculated from the number of females that have fed on humans, relative to the total number of females caught [30; 31]. The human biting rate was estimated from the number of the females that have fed on humans, relative to the total number of people in the houses sampled.\n", - "\n", - "header: Composition of the Mosquito Species Collected Indoor: Entomological and Parasitological Parameters of Transmission\n", - "\n", - "The indoor resting density of the _An. funestus_ was estimated as 14 from the 112 blood females collected in eight houses. Analysis of the blood source of these 112 females by PCR revealed that they all fed on human blood, leading to a human blood index of 100%. The human biting rate was estimated as ~5.3 bites per person per night (CI: 4.91-5.69).\n", - "\n", - "header: 2.3.1 Estimation of Indoor Resting Density, Human Blood Index and Biting Rate: 2.3.2 Estimation of Sporozoite Rate\n", - "\n", - "Sixty-six females (22 individuals randomly selected from each of the three days of indoor collection) which laid eggs successfully were dissected, and the heads/thoraces separated from the abdomens immediately, as explained above. The presence of sporozoite was investigated using a TaqMan genotyping protocol, established by Bass and colleagues [33]. Real-time PCR MX 3005 (Agilent, Santa Clara, CA, USA) was used for the amplification. A total of 1 uL of gDNA, extracted from each female head/thorax, was used for PCR, with an initial denaturation at 95 \\({}^{\\circ}\\)C for 10 min, followed by 40 cycles each of 15 s at 95 \\({}^{\\circ}\\)C and 1 min at 60 \\({}^{\\circ}\\)C. Primers described by Bass (PlasF_GCTTAGTTACGATTAATAGGAGTAGCTTG and PlasR_GAAAATCTAAGAATTTCAC CTCTGACA) were used, together with two probes labelled with fluorophores, FAM (Falcip+_TCTGAAT ACGAATGTC) to detect _Plasmodium falciparum_, and HEX (OVM+_CTGAATACAAATGCC) to detect the combination of _P. ovale_, _P. vivax_ and _P. malariae_. Positive controls (known FAM+ and OVM+) were used, in addition to a negative control, in which 1 uL of ddH2O was added. To validate findings of the TaqMan assay, a nested PCR of Snounou et al. [34] was carried out, using all the samples that tested positive with TaqMan. The sporozoite rate was calculated as the percentage of females positive, relative to the total number of the females examined [30].\n", - "\n", - "header: Investigating the Role of Metabolic Resistance Using Synergist Bioassays\n", - "\n", - "Pre-exposure to PBO and DEM recovered some susceptibility to both permethrin and DDT, respectively (Figure 2c). A significant increase in mortality was observed when comparing results of a repeat conventional bioassay with permethrin [mortality = 43.9% (95% CI: 40.93-46.90)] to the results from the PBO-synergised bioassay [mortality = 78.73% (95% CI: 69.53-87.94), kh2 = 22.33, df = 1, \\(P\\) < 0.0001]. Pre-exposure to DEM recovered DDT susceptibility as well, with repeat exposure to DDT producing mortality of 49.82% (95% CI: 45.54-54.9), compared to a synergised experiment with a mortality of 81.44% (95% CI: 74.36-88.52, kh2 = 19.12, df = 1, \\(P\\) < 0.0001). In both cases, the doubling of mortalities from synergist pre-exposure suggests the possible role of cytochrome P450s and GSTs, respectively, in the observed permethrin and DDT resistance. No mortality was obtained from the control individuals.\n", - "\n", - "header: Synergist Bioassay with Piperonyl Butoxide (PBO) and Diethyl Malate\n", - "\n", - "To investigate the potential role of P450 monooxygenases in pyrethroid resistance, a synergist bioassay was carried out using 4% PBO [an inhibitor of CYP450s [38]] against permethrin. The role of glutathione S-transferases (GSTs) in DDT resistance was also investigated by pre-exposure to 8% diethyl maleate (DEM). The insecticides and the synergists PBO were sourced from the WHO/Vector Control Research Unit (VCRU) of the University of Sains Malaysia (Penang, Malaysia). Four replicates of 22-26 F1 females (3-4 d old) were pre-exposed to PBO or DEM for 1 h, and then transferred to tubes containing permethrin [35] or DDT, respectively. Mosquitoes were treated as in the WHO bioassays described above, and mortalities scored after 24 h. Two replicates of 25 females each were exposed to PBO only, as a control.\n", - "\n", - "Genotyping of L119F Glutathione S-Transferase (GSTe2) Mutation Associated with DDT/Permethrin Resistance\n", - "\n", - "To detect the L119F _GSTe2_ mutation previously linked to DDT/pyrethroid metabolic resistance [20], TaqMan genotyping was conducted using 44 F0 females collected from the field. This was carried out using a real-time PCR thermocycler (Agilent Mx3005) following an established protocol [20]. The primers L119F_GSTe2F (5'-AACAATTTTTCATTTCTTATTCTCATTAC-3') and L119F_GSTe2R (5'- CGACTCGATCTTCGGGAATGTC-3') were utilised with the following probes: reporter L119 (VIC_AGGACGGTATTCTTTTTCTA) to detect the susceptibility allele, and reporter 119F (FAM_AGGAGCGTATTTTTTTCTA) for the resistance allele. The assay was performed in a 10 mL final volume comprise of 5 mL of 1x Sensimix (Bioline, London, UK), 800 nM each of primer, 200 nM of each probe, and 1 mL of gDNA. Thermocycling conditions were initial denaturation of 10 min at 95 \\({}^{\\circ}\\)C, followed by 40 cycles each of 92 \\({}^{\\circ}\\)C for 10 s, and 60 \\({}^{\\circ}\\)C for 45 s. Genotypes were scored from scatter plots of results produced by the Mx3005 v4.10 software (Agilent, Santa Clara, CA, USA). Three positive samples of known genotypes [20]--(i) homozygote resistant 1014F/1014F; (ii) heterozygote L1014/1014F; and (iii) susceptible L1014/L1014--were used as positive controls. For the negative control, 1 mL of ddH2O was incorporated into the control well. To assess the correlation between the presence of the 119F mutation and the resistance phenotype, 12 each of DDT-alive and -dead females were genotyped using the above protocol. In addition, these 12 alive and 12 dead females were also screened, using the recently established allele-specific PCR [39].\n", - "\n", - "header: Insecticide Resistance Profile of An. funestus Population\n", - "\n", - "The _An. funestus_ population demonstrated high knockdown resistance, with ~5% of them knocked down at 1 h exposure with deltamethrin and DDT (Figure S1), and ~10% knocked down after 1 h exposure with permethrin. High resistance was observed towards the pyrethroids, with a higher mortality of 48.30% (95% CI: 41-55) for permethrin, compared with 29.44% (95% CI: 24-34) for deltamethrin (Figure 2a). A 100% mortality rate was obtained in the FANG susceptible colony. Significant resistance was also observed towards DDT and bendiocarb, with mortalities of 56.34% (95% CI: 51-62) and 54.05% (95% CI: 49-59), respectively. Moderate resistance was observed from exposure to fenitrothion with mortality of 94.22% (95% CI: 88-101).\n", - "\n", - "header: Results\n", - "\n", - "_Anopheles funestus_ is the only mosquito species caught, a total of 721 in 4 d. Out of these, 590 were caught in the first 3 d (52 \\(\\circ\\), 538 \\(\\circ\\) [487 blood fed and 51 unfed]). A total of 312 \\(\\mathrm{\\SIUnitSymbolOhm}\\)ial eggs and 288 egg batches hatched successfully. A total of 131 mosquitoes were caught on the 4th day: 12 \\(\\circ\\) and 119 \\(\\circ\\) (112 of them blood fed and 7 unfed).\n", - "\n", - "header: Polymorphism Analysis of Voltage-Gated Sodium Channel Gene Spanning the 1014 kdr Locus\n", - "\n", - "A fragment of voltage-gated sodium channel spanning intron 19 and the exon 20 containing the 1014F/S mutations associated with knockdown resistance (_kdr_) in _An. gambiae_[21,22] was amplified and sequenced. This was done with DNA extracted from 30 F0 females that laid eggs successfully. PCR was carried using primers: AfunkdrExon19-20F: GTTCAATGAAAGCCCCTCAAA and Afunkdr Exon19-20R: CCGAAATTTGACAAAGCAAA, as described in previous works [43]. The PCR products were purified using the Qiaquick Purification Kit (QIAGEN, Hilden, Germany), sequenced and aligned using BioEdit. Polymorphisms analysis and maximum likelihood phylogenetic tree construction were as described above. All DNA sequences from the alive and dead females are provided in File S1.\n", - "\n", - "header: Bed Net Efficacy Using Cone Bioassay\n", - "\n", - "A low efficacy was observed with the pyrethroid-based Olyset(r)Net (mortality = 22.22, 95% CI: 14.37-30.07) and the Perma(r)Net2.0 (mortality = 38.05%, CI: 19.12-56.98) (Figure 2b). The side panels of PermaNet(r)3.0 induced higher mortality of 67.41% (CI: 44.87-89.95). This is more than the mortality\n", - "observed with the PBO-containing Olyset(r)Plus (mortality = 52.31%, CI: 41.85-62.78). A 100% mortality rate was seen from exposure to the roof of PermaNet(r)3.0 (containing PBO). No mortality was obtained from the control populations, which were exposed to untreated nets.\n", - "\n", - "header: Supplementary Materials:\n", - "\n", - "The following are available online at [http://www.mdpi.com/2073-4425/11/4/454/s1](http://www.mdpi.com/2073-4425/11/4/454/s1), Figure S1: Knockdown profiles of _An. funestus females_ exposed to pyrethroids and DDT. Each bar is a percentage knockdown of values from four different replicates from bioassays at different time points, Figure S2: Analysis of the _acc-_I fragment encompassing the 119 codon. (**a**). pattern of genetic variability of sequences from 12 bendiocarb-alive and -12 dead females; (**b**). a maximum likelihood phylogenetic tree of the sequences., Figure S3: Analysis of the _acc-_I fragment encompassing the 485 codon. (**a**). pattern of genetic variability of sequences from 12 bendiocarb-alive and -12 dead females; (**b**). a maximum likelihood phylogenetic tree of the sequences., Figure S4: Analysis of the _VGSC_ fragment encompassing the 1014 _kdr_ mutation codon. (**a**). pattern of genetic variability of 30 sequences from randomly selected F0 females; (**b**). a maximum likelihood phylogenetic tree of the sequences, Table S1: Summary statistics for polymorphism of a fragment of _acetylcholinesterase_-1 encompassing the 119 codon for alive and dead mosquitoes, Table S2: Summary statistics for polymorphism of a fragment of _acetylcholinesterase_-1 encompassing the 485 codon for alive and dead mosquitoes, Table S3: Summary statistics for polymorphism of a fragment of voltage-gated sodium channel encompassing the 1014 codon for the field F0 females, File S1: Analyzed sequences (gDNA partial fragments) from encompassing the G119S and N485I of _acetylcholinesterase_-1 gene and sequences from the partial fragment of the voltage-gated sodium channel spanning the 1014th codon.\n", - "\n", - "header: Data Analysis\n", - "\n", - "The results of bioassays were interpreted as continuous variables, with normal distributions and percentage mortalities +- standard error of mean (SEM) calculated, based on the WHO protocol [35]. Results of mortalities from synergism-pyrethroid exposure were compared with values obtained from exposure to pyrethroid alone using a two-tailed Chi-Square test of independence, with the level of significance pegged as \\(P\\) < 0.05, as implemented in GraphPad Prism 7.02 (GraphPad Inc., La Jolla, CA, USA). For genotyping of 119F _GSTe2_ mutation allele frequency was calculated using the formula f(R) = (2 x RR + RS)/2\\(N\\) for individuals carrying the mutations, and f(S) = 1 - f(R) for the susceptible individuals; where RR = total number of homozygote resistant; RS = total number heterozygote resistant; \\(N\\), total number of individuals investigated. Genotype frequency was calculated as relative frequencies of the homozygote resistant and heterozygote resistant individuals. The correlation between the genotypes and resistance phenotypes was estimated by estimating the odds ratio using the epiR package [R version 3.5.0 ([https://cran.r-project.org/bin/windows/base/](https://cran.r-project.org/bin/windows/base/))] with statistical significance established based on the Fisher's exact probability test (_P_ < 0.05). For the estimation of LT50, a probit analysis was carried out using glm with a MASS package of R [44].\n", - "\n", - "header: WHO Insecticides Susceptibility Tests\n", - "\n", - "The bioassays were performed following the protocol of WHO [35], with various insecticides from four major public health classes. These include (i) the type I pyrethroid: permethrin (0.75%); (ii) the type II pyrethroid: deltamethrin (0.05%); (iii) the organochloride: DDT (4%); (iv) the carbamate: benodiocarb (0.1%); and (v) the organophosphate: fenitrothion (1%). All insecticide impregnated papers (reference: WHO/VBC/81.806) were sourced from the WHO/Vector Control Research Unit (VCRU) of University of Sains Malaysia (Penang, Malaysia). Four replicates of 24-26 F1 females (3-4 d old) per tube were used for each insecticide. The mosquitoes were transferred to tubes lined with insecticide papers and exposed for 1 h, after which they were transferred back to the holding tubes, supplied with 10% sugar, and mortality recorded at 24 h. For each bioassay, one replicate of 20-25 females unexposed to any insecticides were used as a control. The fully susceptible _An. funestus_ (FANG colony) [36] was tested, alongside the field populations, for the pyrethroid papers to ascertain the potency of the papers. The mosquitoes were deemed susceptible to an insecticide where mortality was >98%, suspected to be moderately resistant where mortality is between 90-98%, and resistant where mortality was <90% [35]. Figures were prepared using GraphPad Prism 7.02 (GraphPad Inc., La Jolla, CA, USA).\n", - "\n", - "header: Investigating the Role of L119F-GSTe2 Mutation in DDT Resistance\n", - "\n", - "Initial genotyping of 43 F0 females revealed a high frequency of the L119F-GSTe2 mutation with 30.2% (13 individuals) heterozygotes (RS, L119/F119), 32.6% (14 individuals) homozygote resistant (RR, 119F/119F), and 16.3% (7 individuals) homozygote susceptible (SS, L119/L119) (Figure 3a).\n", - "\n", - "Figure 2: Resistance profiles of F1 _An. funestus_ females. (**a**). Results of WHO susceptibility bioassays with various insecticides. Results are the average of percentage mortalities from four replicates each ± standard error of mean (SEM); (**b**). Results of the cone bioassays with PermaNet®3.0 (side and roof), PermaNet®2.0, Olyset®Plus and Olyset®Net. Results are the average of percentage mortalities ± SEM of five replicates; (**c**). Effect of pre-exposure of synergist piperonylbutoxide (PBO) against permethrin and diethyl maleate (DEM) against DDT (dichlorodiphenyltrichloroethane). Results are the average of percentage mortalities from four replicates each ± SEM. **** = statistically significant at \\(P\\) < 0.0001, in a two-tailed Chi-square test between results from synergised bioassay and conventional bioassays; (**d**). Time-course bioassay for LTs0 estimation/test for strength of permethrin resistance.\n", - "\n", - "\n", - "The 119F allele frequency f(R) was calculated as ~0.84. 12 each of DDT-alive and -dead F1 females were used for allele-specific PCR to detect the L119F GSTe2 mutation. 8 of the DDT-alive (8/12, 66.66%) were homozygote resistant (RR) for the mutation (Figure 3b,c), and 4 females (4/12, 33.33%) were heterozygote resistant. From the dead females, one sample failed (Figure 3c), only one female was homozygote resistant (1/11, 9.09%), 8 were heterozygotes (8/11, 72.72%), and 2 were susceptible (2/11, 18.18%). A difference was observed in the distribution of the 119F mutation [Odds Ratio of 16.00 (95% CI: 6.67-38.3, \\(\\chi^{2}\\) = 3.70, \\(p\\) = 0.05)] when comparing the frequency of the homozygote resistant allele (RR) with susceptible allele (SS) in the alive and dead females. A comparison of all resistant (RR + RS) with susceptible (SS) individuals from alive and dead females revealed no genotype-phenotype association [OR = 0.49 (CI: 0.19-3.15, \\(\\chi^{2}\\) = 1.2, \\(p\\) = 0.27)]. No association was observed when comparing the heterozygote individuals (RS) from both alive and dead to the susceptible (SS) [OR = 2.44 (CI: 0.9-13.53, \\(\\chi^{2}\\) = 0.49, \\(p\\) = 0.48)].\n", - "\n", - "header: Estimation of Resistance Intensity with Time-Course Bioassay\n", - "\n", - "To establish the strength of pyrethroid resistance with time, additional bioassays were performed, with 0.75% permethrin, at varying times of exposure. Four replicates of 20-25 F1 females were exposed in time-course spanning 60, 120, 180, 240 and 300 min, to establish the time required to kill 50%\n", - "of them (LT50). Protocol was as described above in conventional bioassays, except for variation in time. Resistance intensity was established by comparing the LT50 from the Gajerar Giwa _An. fintestus_ populations to the LT50 previously established for the fully susceptible _Anopheles coluzzi_ lab colony [5]. This type of inter-species comparison of using _An. gambiae_ (Kisumu colony) LT50s had been done before in the absence of LT50 data from FANG colony [37].\n", - "\n", - "header: Pyetthroid Resistance Intensity\n", - "\n", - "The LT50 for permethrin was estimated as 64.76 min [95% CI: 59.17-70.35, Fiducial] (Figure 2d) after assessing mortality from 30 to 300 min exposure. To calculate the resistance intensity, the LT50 from Gajerar Giwa _An. funestus_ was compared to LT50 (3.320 min), previously established for the fully susceptible _An. coluzzii_ Ngoussou lab colony [5]. The resistance ratio was estimated as 19.51.\n", - "\n", - "header: Study Site and Mosquito Sampling: Molecular Identification of Mosquito Species\n", - "\n", - "Genomic DNA (gDNA) was extracted from the females which laid eggs, using the Livak protocol [29], and the mosquitoes identified to species using the cocktail PCR of Koekemoer, et al. [28]. These include all the females from the first 3 days of collections, as well as all the females collected on day 4, which were used for the estimation of indoor resting density and identification of blood meal source.\n", - "\n", - "Figure 1: A map showing the sampling locality (Gajerar Giwa) in the Sahel of northern Nigeria.\n", - "\n", - "header: Determination of LLIN Efficacy with Cone Bioassays\n", - "\n", - "To investigate the efficacy of commonly distributed long-lasting insecticidal nets (LLINs), cone bioassays were conducted following the WHO protocol [36], using 3-4 d old F1 females. Five replicates of 9-12 mosquitoes were placed in a plastic cone attached to a fresh insecticide-containing bed net and tested. The LLINs include: the Olyset(r)Net (containing 2% permethrin), Olyset(r)Plus (containing 2% permethrin combined with 1% of the synergist, piperonyl butoxide, PBO), PermaNet(r)2.0 (containing 1.4-1.8 g/kg +-25% deltamethrin), PermaNet(r)3.0 side panel (containing 2.1-2.8 g/kg +-25% deltamethrin), and PermaNet(r)3.0 roof (containing 4.0 g/kg +-25% deltamethrin, combined with 25 g/kg +-25% of PBO). For each experiment, five different pieces cut from an LLIN brand were used for the five technical replicates. Mosquitoes were exposed for 3 min and immediately transferred to paper cups. They were supplied with 10% sucrose and mortalities recorded after 24 h. For the control, five replicates of ten mosquitoes were exposed to untreated net.\n", - "\n", - "header: A Low-Efficacy of Long-Lasting Insecticidal Nets Is a Serious Challenge to Malaria Control\n", - "\n", - "The high pyrethroid resistance was also evident in the low efficacy of insecticide-treated bed nets, most especially the Olyset(r)Net and the PermaNet(r)3.0 (the side panel). Except for PermaNet(r)3.0, profoundly lower efficacies were seen with all the nets, in line with observations in same species from southern Africa [46], and a recent report from northern Cameroon [50]. The recovery of susceptibilities from exposure to the roof of PermaNet(r)3.0 and the PBO-synergist bioassays suggest the preeminent role of CYP450s in the pyrethroid resistance in this population. This agrees with several studies carried out across Africa [46; 51; 52]. Low efficacy seen with Olyset(r)Plus net have been described in several studies with both _An. funestus_ and _An. coluzzii_[50; 51; 52; 53].\n", - "\n", - "Insecticide Resistance Mechanism Is Driven by Metabolic Resistance Mechanisms in Gajerar Giwa An. funestus Population\n", - "\n", - "The recovery of susceptibilities from pre-exposure to PBO and DEM suggests the preeminent role of CYP450s and GSTs in pyrethroid and DDT resistance, respectively. Indeed, several studies have used these synergists to establish the potential role of the above metabolic enzymes in resistance in _An. funestus_[51; 52; 54]. The role of metabolic resistance is strengthened by (i) the finding of high frequency of the 119F-_GSTe2_ mutation in the Gajerar Giwa population and its possible link to DDT resistance, as documented in several studies [20; 47; 51; 54]; (ii) the absence of the G119S and N485I mutations in the acetylcholinesterase gene; and (iii) the absence of the 1014F/_S kdr_ mutation in the voltage-gated sodium channel from the Gajerar Giwa population, in line with the observations across Africa [37; 52; 55]. The high diversity seen in the fragment spanning the exon 20 of the VGSC suggests lack of reduced diversity due to absence of selection.\n", - "\n", - "The high bendiocarb resistance prompted sequencing of the _ace-1_ fragment for the G119S and N485I mutations previously associated with carbamate/organophosphate resistance. The absence of these mutations in the highly bendiocarb-resistant Gajerar Giwa populations, and the observed relative fenitrothion susceptibility, suggests no cross resistance, and points to metabolic mechanism responsible for the bendiocarb resistance. Several studies have reported absence of the G119S mutation in various populations of _An. funestus_ across Africa [24; 43; 52]. The high diversity seen in the _ace-1_ fragment suggests a lack of selection in the gene. However, with only 12 females (low sample size) each of alive and dead used, the presence of this mutation at a low frequency cannot be ruled out.\n", - "\n", - "The absence of the N485I mutation in Gajerar Giwa populations confirmed previous observations of the mutation present only in southern African populations [24; 46]. However, with 12 females each of the alive and dead used, the presence of these mutations or others at a low frequency cannot be ruled out.\n", - "\n", - "header: Ethical Approval\n", - "\n", - "Clearance for indoor collection previously obtained on 12/01/2017 from Operational Research Advisory Committee, Ministry of Health (with reference number MOH/off/797/TI/402), Kano state was used. A meeting was held with the village head and household members at Gajerar Giwa; the scope of the study and its benefits to malaria control was explained. A written and signed informed consent was obtained from individuals who agreed to indoor collection in their houses. All communication was carried out in the local language (Hausa).\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ClinicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `ClinicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `ClinicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Bioassay, cone test\",\"Country\":\"Nigeria\",\"Site\":\"Gajerar Giwa\"}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Concentration_initial\": {\"title\": \"Insecticide concentration (initial)\", \"description\": \"Enter the initial concentration of the insecticide(s) for net type at the time of distribution.\"}, \"Synergist\": {\"title\": \"Synergist\", \"description\": \"Enter the synergist or synergists combination (delimited by comma).\"}, \"pHI_category\": {\"title\": \"Phi Category\", \"description\": \"Classification of the nets holed surface area, as one of \\\"Good\\\", \\\"Damaged\\\", \\\"Torn\\\", \\\"Serviceable\\\", or \\\"All\\\", as proposed by WHO\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"Olyset(r)Net\",\"Insecticide\":\"permethrin\",\"Concentration_initial\":\"2%\",\"pHI_category\":\"Good\",\"Synergist\":null},\"N02\":{\"Net_type\":\"Olyset(r)Plus\",\"Insecticide\":\"permethrin\",\"Concentration_initial\":\"2%,1%\",\"pHI_category\":\"Good\",\"Synergist\":\"piperonyl butoxide\"},\"N03\":{\"Net_type\":\"PermaNet(r)2.0\",\"Insecticide\":\"deltamethrin\",\"Concentration_initial\":\"1.4-1.8 g\\/kg +-25%\",\"pHI_category\":\"Good\",\"Synergist\":null},\"N04\":{\"Net_type\":\"PermaNet(r)3.0 side panel\",\"Insecticide\":\"deltamethrin\",\"Concentration_initial\":\"2.1-2.8 g\\/kg +-25%\",\"pHI_category\":\"Good\",\"Synergist\":null},\"N05\":{\"Net_type\":\"PermaNet(r)3.0 roof\",\"Insecticide\":\"deltamethrin\",\"Concentration_initial\":\"4.0 g\\/kg +-25%,25 g\\/kg +-25%\",\"pHI_category\":\"Good\",\"Synergist\":\"piperonyl butoxide\"}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: 3.2.1 Indoor Resting Density, Human Blood Index and Biting Rate: 3.2.2 Estimation of Sporozoite Infection Rate\n", - "\n", - "A total of 36 out of 66 heads/thoraces were positive for _P. falciparum_ (F\\({}_{+}\\) = 36), corresponding to an unusually high sporozoite rate of 54.55% \\(\\pm\\) 13.63. Validation of the TaqMan results using nested PCR [34] confirmed the _P. falciparum_ infection in the 36 samples.\n", - "\n", - "header: Composition of the Mosquito Species Collected Indoor: Entomological and Parasitological Parameters of Transmission\n", - "\n", - "The indoor resting density of the _An. funestus_ was estimated as 14 from the 112 blood females collected in eight houses. Analysis of the blood source of these 112 females by PCR revealed that they all fed on human blood, leading to a human blood index of 100%. The human biting rate was estimated as ~5.3 bites per person per night (CI: 4.91-5.69).\n", - "\n", - "header: Estimation of Entomological and Parasitological Parameters\n", - "\n", - "The indoor resting density (IRD) was calculated from the number of _An. funestus_ collected on the 4th d, relative to the number of houses assessed, as advised by the WHO [30; 31]. A total of 112 blood-fed females were dissected <48 h after collection, separating heads/thoraces from the abdomens. The abdomens were used for gDNA extraction as outlined in WHO guidelines [30] using the DNeasy Blood and Tissue Kit (QIAGEN, Hilden, Germany), according to manufacturer's protocol. Identification of the source of blood was conducted using the cocktail PCR of Kent et al. [32]. The human blood index was calculated from the number of females that have fed on humans, relative to the total number of females caught [30; 31]. The human biting rate was estimated from the number of the females that have fed on humans, relative to the total number of people in the houses sampled.\n", - "\n", - "header: 2.3.1 Estimation of Indoor Resting Density, Human Blood Index and Biting Rate: 2.3.2 Estimation of Sporozoite Rate\n", - "\n", - "Sixty-six females (22 individuals randomly selected from each of the three days of indoor collection) which laid eggs successfully were dissected, and the heads/thoraces separated from the abdomens immediately, as explained above. The presence of sporozoite was investigated using a TaqMan genotyping protocol, established by Bass and colleagues [33]. Real-time PCR MX 3005 (Agilent, Santa Clara, CA, USA) was used for the amplification. A total of 1 uL of gDNA, extracted from each female head/thorax, was used for PCR, with an initial denaturation at 95 \\({}^{\\circ}\\)C for 10 min, followed by 40 cycles each of 15 s at 95 \\({}^{\\circ}\\)C and 1 min at 60 \\({}^{\\circ}\\)C. Primers described by Bass (PlasF_GCTTAGTTACGATTAATAGGAGTAGCTTG and PlasR_GAAAATCTAAGAATTTCAC CTCTGACA) were used, together with two probes labelled with fluorophores, FAM (Falcip+_TCTGAAT ACGAATGTC) to detect _Plasmodium falciparum_, and HEX (OVM+_CTGAATACAAATGCC) to detect the combination of _P. ovale_, _P. vivax_ and _P. malariae_. Positive controls (known FAM+ and OVM+) were used, in addition to a negative control, in which 1 uL of ddH2O was added. To validate findings of the TaqMan assay, a nested PCR of Snounou et al. [34] was carried out, using all the samples that tested positive with TaqMan. The sporozoite rate was calculated as the percentage of females positive, relative to the total number of the females examined [30].\n", - "\n", - "header: Investigating the Role of Metabolic Resistance Using Synergist Bioassays\n", - "\n", - "Pre-exposure to PBO and DEM recovered some susceptibility to both permethrin and DDT, respectively (Figure 2c). A significant increase in mortality was observed when comparing results of a repeat conventional bioassay with permethrin [mortality = 43.9% (95% CI: 40.93-46.90)] to the results from the PBO-synergised bioassay [mortality = 78.73% (95% CI: 69.53-87.94), kh2 = 22.33, df = 1, \\(P\\) < 0.0001]. Pre-exposure to DEM recovered DDT susceptibility as well, with repeat exposure to DDT producing mortality of 49.82% (95% CI: 45.54-54.9), compared to a synergised experiment with a mortality of 81.44% (95% CI: 74.36-88.52, kh2 = 19.12, df = 1, \\(P\\) < 0.0001). In both cases, the doubling of mortalities from synergist pre-exposure suggests the possible role of cytochrome P450s and GSTs, respectively, in the observed permethrin and DDT resistance. No mortality was obtained from the control individuals.\n", - "\n", - "header: Insecticide Resistance Profile of An. funestus Population\n", - "\n", - "The _An. funestus_ population demonstrated high knockdown resistance, with ~5% of them knocked down at 1 h exposure with deltamethrin and DDT (Figure S1), and ~10% knocked down after 1 h exposure with permethrin. High resistance was observed towards the pyrethroids, with a higher mortality of 48.30% (95% CI: 41-55) for permethrin, compared with 29.44% (95% CI: 24-34) for deltamethrin (Figure 2a). A 100% mortality rate was obtained in the FANG susceptible colony. Significant resistance was also observed towards DDT and bendiocarb, with mortalities of 56.34% (95% CI: 51-62) and 54.05% (95% CI: 49-59), respectively. Moderate resistance was observed from exposure to fenitrothion with mortality of 94.22% (95% CI: 88-101).\n", - "\n", - "header: Polymorphism Analysis of Voltage-Gated Sodium Channel Gene Spanning the 1014 kdr Locus\n", - "\n", - "A fragment of voltage-gated sodium channel spanning intron 19 and the exon 20 containing the 1014F/S mutations associated with knockdown resistance (_kdr_) in _An. gambiae_[21,22] was amplified and sequenced. This was done with DNA extracted from 30 F0 females that laid eggs successfully. PCR was carried using primers: AfunkdrExon19-20F: GTTCAATGAAAGCCCCTCAAA and Afunkdr Exon19-20R: CCGAAATTTGACAAAGCAAA, as described in previous works [43]. The PCR products were purified using the Qiaquick Purification Kit (QIAGEN, Hilden, Germany), sequenced and aligned using BioEdit. Polymorphisms analysis and maximum likelihood phylogenetic tree construction were as described above. All DNA sequences from the alive and dead females are provided in File S1.\n", - "\n", - "header: Results\n", - "\n", - "_Anopheles funestus_ is the only mosquito species caught, a total of 721 in 4 d. Out of these, 590 were caught in the first 3 d (52 \\(\\circ\\), 538 \\(\\circ\\) [487 blood fed and 51 unfed]). A total of 312 \\(\\mathrm{\\SIUnitSymbolOhm}\\)ial eggs and 288 egg batches hatched successfully. A total of 131 mosquitoes were caught on the 4th day: 12 \\(\\circ\\) and 119 \\(\\circ\\) (112 of them blood fed and 7 unfed).\n", - "\n", - "header: Synergist Bioassay with Piperonyl Butoxide (PBO) and Diethyl Malate\n", - "\n", - "To investigate the potential role of P450 monooxygenases in pyrethroid resistance, a synergist bioassay was carried out using 4% PBO [an inhibitor of CYP450s [38]] against permethrin. The role of glutathione S-transferases (GSTs) in DDT resistance was also investigated by pre-exposure to 8% diethyl maleate (DEM). The insecticides and the synergists PBO were sourced from the WHO/Vector Control Research Unit (VCRU) of the University of Sains Malaysia (Penang, Malaysia). Four replicates of 22-26 F1 females (3-4 d old) were pre-exposed to PBO or DEM for 1 h, and then transferred to tubes containing permethrin [35] or DDT, respectively. Mosquitoes were treated as in the WHO bioassays described above, and mortalities scored after 24 h. Two replicates of 25 females each were exposed to PBO only, as a control.\n", - "\n", - "Genotyping of L119F Glutathione S-Transferase (GSTe2) Mutation Associated with DDT/Permethrin Resistance\n", - "\n", - "To detect the L119F _GSTe2_ mutation previously linked to DDT/pyrethroid metabolic resistance [20], TaqMan genotyping was conducted using 44 F0 females collected from the field. This was carried out using a real-time PCR thermocycler (Agilent Mx3005) following an established protocol [20]. The primers L119F_GSTe2F (5'-AACAATTTTTCATTTCTTATTCTCATTAC-3') and L119F_GSTe2R (5'- CGACTCGATCTTCGGGAATGTC-3') were utilised with the following probes: reporter L119 (VIC_AGGACGGTATTCTTTTTCTA) to detect the susceptibility allele, and reporter 119F (FAM_AGGAGCGTATTTTTTTCTA) for the resistance allele. The assay was performed in a 10 mL final volume comprise of 5 mL of 1x Sensimix (Bioline, London, UK), 800 nM each of primer, 200 nM of each probe, and 1 mL of gDNA. Thermocycling conditions were initial denaturation of 10 min at 95 \\({}^{\\circ}\\)C, followed by 40 cycles each of 92 \\({}^{\\circ}\\)C for 10 s, and 60 \\({}^{\\circ}\\)C for 45 s. Genotypes were scored from scatter plots of results produced by the Mx3005 v4.10 software (Agilent, Santa Clara, CA, USA). Three positive samples of known genotypes [20]--(i) homozygote resistant 1014F/1014F; (ii) heterozygote L1014/1014F; and (iii) susceptible L1014/L1014--were used as positive controls. For the negative control, 1 mL of ddH2O was incorporated into the control well. To assess the correlation between the presence of the 119F mutation and the resistance phenotype, 12 each of DDT-alive and -dead females were genotyped using the above protocol. In addition, these 12 alive and 12 dead females were also screened, using the recently established allele-specific PCR [39].\n", - "\n", - "header: Bed Net Efficacy Using Cone Bioassay\n", - "\n", - "A low efficacy was observed with the pyrethroid-based Olyset(r)Net (mortality = 22.22, 95% CI: 14.37-30.07) and the Perma(r)Net2.0 (mortality = 38.05%, CI: 19.12-56.98) (Figure 2b). The side panels of PermaNet(r)3.0 induced higher mortality of 67.41% (CI: 44.87-89.95). This is more than the mortality\n", - "observed with the PBO-containing Olyset(r)Plus (mortality = 52.31%, CI: 41.85-62.78). A 100% mortality rate was seen from exposure to the roof of PermaNet(r)3.0 (containing PBO). No mortality was obtained from the control populations, which were exposed to untreated nets.\n", - "\n", - "header: Investigating the Role of L119F-GSTe2 Mutation in DDT Resistance\n", - "\n", - "Initial genotyping of 43 F0 females revealed a high frequency of the L119F-GSTe2 mutation with 30.2% (13 individuals) heterozygotes (RS, L119/F119), 32.6% (14 individuals) homozygote resistant (RR, 119F/119F), and 16.3% (7 individuals) homozygote susceptible (SS, L119/L119) (Figure 3a).\n", - "\n", - "Figure 2: Resistance profiles of F1 _An. funestus_ females. (**a**). Results of WHO susceptibility bioassays with various insecticides. Results are the average of percentage mortalities from four replicates each ± standard error of mean (SEM); (**b**). Results of the cone bioassays with PermaNet®3.0 (side and roof), PermaNet®2.0, Olyset®Plus and Olyset®Net. Results are the average of percentage mortalities ± SEM of five replicates; (**c**). Effect of pre-exposure of synergist piperonylbutoxide (PBO) against permethrin and diethyl maleate (DEM) against DDT (dichlorodiphenyltrichloroethane). Results are the average of percentage mortalities from four replicates each ± SEM. **** = statistically significant at \\(P\\) < 0.0001, in a two-tailed Chi-square test between results from synergised bioassay and conventional bioassays; (**d**). Time-course bioassay for LTs0 estimation/test for strength of permethrin resistance.\n", - "\n", - "\n", - "The 119F allele frequency f(R) was calculated as ~0.84. 12 each of DDT-alive and -dead F1 females were used for allele-specific PCR to detect the L119F GSTe2 mutation. 8 of the DDT-alive (8/12, 66.66%) were homozygote resistant (RR) for the mutation (Figure 3b,c), and 4 females (4/12, 33.33%) were heterozygote resistant. From the dead females, one sample failed (Figure 3c), only one female was homozygote resistant (1/11, 9.09%), 8 were heterozygotes (8/11, 72.72%), and 2 were susceptible (2/11, 18.18%). A difference was observed in the distribution of the 119F mutation [Odds Ratio of 16.00 (95% CI: 6.67-38.3, \\(\\chi^{2}\\) = 3.70, \\(p\\) = 0.05)] when comparing the frequency of the homozygote resistant allele (RR) with susceptible allele (SS) in the alive and dead females. A comparison of all resistant (RR + RS) with susceptible (SS) individuals from alive and dead females revealed no genotype-phenotype association [OR = 0.49 (CI: 0.19-3.15, \\(\\chi^{2}\\) = 1.2, \\(p\\) = 0.27)]. No association was observed when comparing the heterozygote individuals (RS) from both alive and dead to the susceptible (SS) [OR = 2.44 (CI: 0.9-13.53, \\(\\chi^{2}\\) = 0.49, \\(p\\) = 0.48)].\n", - "\n", - "header: Data Analysis\n", - "\n", - "The results of bioassays were interpreted as continuous variables, with normal distributions and percentage mortalities +- standard error of mean (SEM) calculated, based on the WHO protocol [35]. Results of mortalities from synergism-pyrethroid exposure were compared with values obtained from exposure to pyrethroid alone using a two-tailed Chi-Square test of independence, with the level of significance pegged as \\(P\\) < 0.05, as implemented in GraphPad Prism 7.02 (GraphPad Inc., La Jolla, CA, USA). For genotyping of 119F _GSTe2_ mutation allele frequency was calculated using the formula f(R) = (2 x RR + RS)/2\\(N\\) for individuals carrying the mutations, and f(S) = 1 - f(R) for the susceptible individuals; where RR = total number of homozygote resistant; RS = total number heterozygote resistant; \\(N\\), total number of individuals investigated. Genotype frequency was calculated as relative frequencies of the homozygote resistant and heterozygote resistant individuals. The correlation between the genotypes and resistance phenotypes was estimated by estimating the odds ratio using the epiR package [R version 3.5.0 ([https://cran.r-project.org/bin/windows/base/](https://cran.r-project.org/bin/windows/base/))] with statistical significance established based on the Fisher's exact probability test (_P_ < 0.05). For the estimation of LT50, a probit analysis was carried out using glm with a MASS package of R [44].\n", - "\n", - "header: Supplementary Materials:\n", - "\n", - "The following are available online at [http://www.mdpi.com/2073-4425/11/4/454/s1](http://www.mdpi.com/2073-4425/11/4/454/s1), Figure S1: Knockdown profiles of _An. funestus females_ exposed to pyrethroids and DDT. Each bar is a percentage knockdown of values from four different replicates from bioassays at different time points, Figure S2: Analysis of the _acc-_I fragment encompassing the 119 codon. (**a**). pattern of genetic variability of sequences from 12 bendiocarb-alive and -12 dead females; (**b**). a maximum likelihood phylogenetic tree of the sequences., Figure S3: Analysis of the _acc-_I fragment encompassing the 485 codon. (**a**). pattern of genetic variability of sequences from 12 bendiocarb-alive and -12 dead females; (**b**). a maximum likelihood phylogenetic tree of the sequences., Figure S4: Analysis of the _VGSC_ fragment encompassing the 1014 _kdr_ mutation codon. (**a**). pattern of genetic variability of 30 sequences from randomly selected F0 females; (**b**). a maximum likelihood phylogenetic tree of the sequences, Table S1: Summary statistics for polymorphism of a fragment of _acetylcholinesterase_-1 encompassing the 119 codon for alive and dead mosquitoes, Table S2: Summary statistics for polymorphism of a fragment of _acetylcholinesterase_-1 encompassing the 485 codon for alive and dead mosquitoes, Table S3: Summary statistics for polymorphism of a fragment of voltage-gated sodium channel encompassing the 1014 codon for the field F0 females, File S1: Analyzed sequences (gDNA partial fragments) from encompassing the G119S and N485I of _acetylcholinesterase_-1 gene and sequences from the partial fragment of the voltage-gated sodium channel spanning the 1014th codon.\n", - "\n", - "header: WHO Insecticides Susceptibility Tests\n", - "\n", - "The bioassays were performed following the protocol of WHO [35], with various insecticides from four major public health classes. These include (i) the type I pyrethroid: permethrin (0.75%); (ii) the type II pyrethroid: deltamethrin (0.05%); (iii) the organochloride: DDT (4%); (iv) the carbamate: benodiocarb (0.1%); and (v) the organophosphate: fenitrothion (1%). All insecticide impregnated papers (reference: WHO/VBC/81.806) were sourced from the WHO/Vector Control Research Unit (VCRU) of University of Sains Malaysia (Penang, Malaysia). Four replicates of 24-26 F1 females (3-4 d old) per tube were used for each insecticide. The mosquitoes were transferred to tubes lined with insecticide papers and exposed for 1 h, after which they were transferred back to the holding tubes, supplied with 10% sugar, and mortality recorded at 24 h. For each bioassay, one replicate of 20-25 females unexposed to any insecticides were used as a control. The fully susceptible _An. funestus_ (FANG colony) [36] was tested, alongside the field populations, for the pyrethroid papers to ascertain the potency of the papers. The mosquitoes were deemed susceptible to an insecticide where mortality was >98%, suspected to be moderately resistant where mortality is between 90-98%, and resistant where mortality was <90% [35]. Figures were prepared using GraphPad Prism 7.02 (GraphPad Inc., La Jolla, CA, USA).\n", - "\n", - "header: Estimation of Resistance Intensity with Time-Course Bioassay\n", - "\n", - "To establish the strength of pyrethroid resistance with time, additional bioassays were performed, with 0.75% permethrin, at varying times of exposure. Four replicates of 20-25 F1 females were exposed in time-course spanning 60, 120, 180, 240 and 300 min, to establish the time required to kill 50%\n", - "of them (LT50). Protocol was as described above in conventional bioassays, except for variation in time. Resistance intensity was established by comparing the LT50 from the Gajerar Giwa _An. fintestus_ populations to the LT50 previously established for the fully susceptible _Anopheles coluzzi_ lab colony [5]. This type of inter-species comparison of using _An. gambiae_ (Kisumu colony) LT50s had been done before in the absence of LT50 data from FANG colony [37].\n", - "\n", - "header: Determination of LLIN Efficacy with Cone Bioassays\n", - "\n", - "To investigate the efficacy of commonly distributed long-lasting insecticidal nets (LLINs), cone bioassays were conducted following the WHO protocol [36], using 3-4 d old F1 females. Five replicates of 9-12 mosquitoes were placed in a plastic cone attached to a fresh insecticide-containing bed net and tested. The LLINs include: the Olyset(r)Net (containing 2% permethrin), Olyset(r)Plus (containing 2% permethrin combined with 1% of the synergist, piperonyl butoxide, PBO), PermaNet(r)2.0 (containing 1.4-1.8 g/kg +-25% deltamethrin), PermaNet(r)3.0 side panel (containing 2.1-2.8 g/kg +-25% deltamethrin), and PermaNet(r)3.0 roof (containing 4.0 g/kg +-25% deltamethrin, combined with 25 g/kg +-25% of PBO). For each experiment, five different pieces cut from an LLIN brand were used for the five technical replicates. Mosquitoes were exposed for 3 min and immediately transferred to paper cups. They were supplied with 10% sucrose and mortalities recorded after 24 h. For the control, five replicates of ten mosquitoes were exposed to untreated net.\n", - "\n", - "header: Study Site and Mosquito Sampling: Molecular Identification of Mosquito Species\n", - "\n", - "Genomic DNA (gDNA) was extracted from the females which laid eggs, using the Livak protocol [29], and the mosquitoes identified to species using the cocktail PCR of Koekemoer, et al. [28]. These include all the females from the first 3 days of collections, as well as all the females collected on day 4, which were used for the estimation of indoor resting density and identification of blood meal source.\n", - "\n", - "Figure 1: A map showing the sampling locality (Gajerar Giwa) in the Sahel of northern Nigeria.\n", - "\n", - "header: Pyetthroid Resistance Intensity\n", - "\n", - "The LT50 for permethrin was estimated as 64.76 min [95% CI: 59.17-70.35, Fiducial] (Figure 2d) after assessing mortality from 30 to 300 min exposure. To calculate the resistance intensity, the LT50 from Gajerar Giwa _An. funestus_ was compared to LT50 (3.320 min), previously established for the fully susceptible _An. coluzzii_ Ngoussou lab colony [5]. The resistance ratio was estimated as 19.51.\n", - "\n", - "header: A Low-Efficacy of Long-Lasting Insecticidal Nets Is a Serious Challenge to Malaria Control\n", - "\n", - "The high pyrethroid resistance was also evident in the low efficacy of insecticide-treated bed nets, most especially the Olyset(r)Net and the PermaNet(r)3.0 (the side panel). Except for PermaNet(r)3.0, profoundly lower efficacies were seen with all the nets, in line with observations in same species from southern Africa [46], and a recent report from northern Cameroon [50]. The recovery of susceptibilities from exposure to the roof of PermaNet(r)3.0 and the PBO-synergist bioassays suggest the preeminent role of CYP450s in the pyrethroid resistance in this population. This agrees with several studies carried out across Africa [46; 51; 52]. Low efficacy seen with Olyset(r)Plus net have been described in several studies with both _An. funestus_ and _An. coluzzii_[50; 51; 52; 53].\n", - "\n", - "Insecticide Resistance Mechanism Is Driven by Metabolic Resistance Mechanisms in Gajerar Giwa An. funestus Population\n", - "\n", - "The recovery of susceptibilities from pre-exposure to PBO and DEM suggests the preeminent role of CYP450s and GSTs in pyrethroid and DDT resistance, respectively. Indeed, several studies have used these synergists to establish the potential role of the above metabolic enzymes in resistance in _An. funestus_[51; 52; 54]. The role of metabolic resistance is strengthened by (i) the finding of high frequency of the 119F-_GSTe2_ mutation in the Gajerar Giwa population and its possible link to DDT resistance, as documented in several studies [20; 47; 51; 54]; (ii) the absence of the G119S and N485I mutations in the acetylcholinesterase gene; and (iii) the absence of the 1014F/_S kdr_ mutation in the voltage-gated sodium channel from the Gajerar Giwa population, in line with the observations across Africa [37; 52; 55]. The high diversity seen in the fragment spanning the exon 20 of the VGSC suggests lack of reduced diversity due to absence of selection.\n", - "\n", - "The high bendiocarb resistance prompted sequencing of the _ace-1_ fragment for the G119S and N485I mutations previously associated with carbamate/organophosphate resistance. The absence of these mutations in the highly bendiocarb-resistant Gajerar Giwa populations, and the observed relative fenitrothion susceptibility, suggests no cross resistance, and points to metabolic mechanism responsible for the bendiocarb resistance. Several studies have reported absence of the G119S mutation in various populations of _An. funestus_ across Africa [24; 43; 52]. The high diversity seen in the _ace-1_ fragment suggests a lack of selection in the gene. However, with only 12 females (low sample size) each of alive and dead used, the presence of this mutation at a low frequency cannot be ruled out.\n", - "\n", - "The absence of the N485I mutation in Gajerar Giwa populations confirmed previous observations of the mutation present only in southern African populations [24; 46]. However, with 12 females each of the alive and dead used, the presence of these mutations or others at a low frequency cannot be ruled out.\n", - "\n", - "header: Ethical Approval\n", - "\n", - "Clearance for indoor collection previously obtained on 12/01/2017 from Operational Research Advisory Committee, Ministry of Health (with reference number MOH/off/797/TI/402), Kano state was used. A meeting was held with the village head and household members at Gajerar Giwa; the scope of the study and its benefits to malaria control was explained. A written and signed informed consent was obtained from individuals who agreed to indoor collection in their houses. All communication was carried out in the local language (Hausa).\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `EntomologicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `EntomologicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `EntomologicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Bioassay, cone test\",\"Country\":\"Nigeria\",\"Site\":\"Gajerar Giwa\"}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Concentration_initial\": {\"title\": \"Insecticide concentration (initial)\", \"description\": \"Enter the initial concentration of the insecticide(s) for net type at the time of distribution.\"}, \"Synergist\": {\"title\": \"Synergist\", \"description\": \"Enter the synergist or synergists combination (delimited by comma).\"}, \"pHI_category\": {\"title\": \"Phi Category\", \"description\": \"Classification of the nets holed surface area, as one of \\\"Good\\\", \\\"Damaged\\\", \\\"Torn\\\", \\\"Serviceable\\\", or \\\"All\\\", as proposed by WHO\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"Olyset(r)Net\",\"Insecticide\":\"permethrin\",\"Concentration_initial\":\"2%\",\"pHI_category\":\"Good\",\"Synergist\":null},\"N02\":{\"Net_type\":\"Olyset(r)Plus\",\"Insecticide\":\"permethrin\",\"Concentration_initial\":\"2%,1%\",\"pHI_category\":\"Good\",\"Synergist\":\"piperonyl butoxide\"},\"N03\":{\"Net_type\":\"PermaNet(r)2.0\",\"Insecticide\":\"deltamethrin\",\"Concentration_initial\":\"1.4-1.8 g\\/kg +-25%\",\"pHI_category\":\"Good\",\"Synergist\":null},\"N04\":{\"Net_type\":\"PermaNet(r)3.0 side panel\",\"Insecticide\":\"deltamethrin\",\"Concentration_initial\":\"2.1-2.8 g\\/kg +-25%\",\"pHI_category\":\"Good\",\"Synergist\":null},\"N05\":{\"Net_type\":\"PermaNet(r)3.0 roof\",\"Insecticide\":\"deltamethrin\",\"Concentration_initial\":\"4.0 g\\/kg +-25%,25 g\\/kg +-25%\",\"pHI_category\":\"Good\",\"Synergist\":\"piperonyl butoxide\"}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: WHO tunnel test\n", - "\n", - "The tunnel tests were carried out from August to November 2020 according to standard WHO procedures [9]. Five 25 cm x 25 cm net pieces per ITN/control were cut adjacent to the swatches cut for cone assays from three nets per treatment arm to make a total of 15 pieces per study arm and to account for possible intra-net variability of insecticide loadings. Five tunnels were run with one sample from each treatment arm with one mosquito strain on a single night. Over 60 nights, all 15 pieces of ITNs per study arm were tested with four mosquito strains.\n", - "\n", - "Non-blood-fed nulliparous females, 5-8 days old, sugar starved for 6-8 h were released in a 60-cm-long glass tunnel. At each end of the tunnel, a 25-cm square mosquito cage covered with polyester netting was fitted. At one third of the length, the netting sample was affixed. The surface of netting \"available\" to mosquitoes is 400 cm2 (20 cm x 20 cm), with 9 x 1-cm-diameter holes: one hole is located at the centre of the square; the other eight were equidistant and located 5 cm from the border. In the shorter section of the tunnel, a small rabbit, its back shaved and restrained in a mesh tunnel, was placed as bait (Fig. 1). In the cage at the end of the longer section of the tunnel, 100 female mosquitoes (one strain \n", - "per replicate) were introduced at 21:00. The following morning at 09:00, the mosquitoes were removed using a mouth aspirator and counted separately from each section of the tunnel, and mortality and blood-feeding rates were recorded. The mosquitoes were placed in paper cups and provided with cotton wool moistened with 10% sugar solution. Mortality was recoded at 24, 48 and 72 h. Mosquitoes challenged to untreated nets were used as controls to monitor the quality of the bioassay. The bioassays and holding period were carried out at 27 degC+-2 degC and 60%-100% relative humidity. Overall mortality was measured by pooling the mortalities of mosquitoes from the two sections of the tunnel. Acceptable feeding success and mortality in controls were 50% and 10%, respectively. Any tests not meeting the specified control cut-off were repeated.\n", - "\n", - "header: Mosquito blood-feeding in WHO tunnel, I-ACT and experimental hut\n", - "\n", - "For all bioassays and strains, blood-feeding inhibition was very high (Fig. 3, Table 3). Both Interceptor(r) G2 and Interceptor(r) gave high levels of blood-feeding inhibition in all \"free-flying\" bioassays.\n", - "\n", - "header: Background\n", - "\n", - "As funding for malaria control falls and mosquito resistance to current public health insecticides increases, new and durable vector control tools that utilise new insecticide classes are needed [1]. For insecticide resistance management, a new Insecticide Treated Net (ITN) Interceptor(r) G2 has been developed, coated with a mixture of the pyrethroid alpha-cypermethrin and the pro-insecticide chlorfenapyr [2]. Chlorfenapyr is an Insecticide Resistance Action Committee (IRAC) Group 13 insecticide, having a pyrrole chemistry that uncouples oxidative phosphorylation via disruption of the proton gradient (as a protonophore) to short circuit mitochondrial respiration through inner mitochondrial membranes of insect cells so that ATP cannot be synthesized, subsequently robbing insects of energy, resulting in death [3, 4]. Metabolic resistance is one of the main mechanisms of resistance observed in malaria vectors [5] where one or several detoxification gene families--cytochrome P450s (P450s), esterases and glutathione S-transferases (GSTs)--are overproduced to detoxify insecticides [6]. While this metabolism is a detoxification process, it can increase the potency of a pro-insecticide and may therefore be exploited as a means to control metabolically resistant insect populations [3]. The unique mode of action of chlorfenapyr on an insect's metabolism is particularly relevant for the control of vectors harboring insecticide resistance mechanisms, as increased metabolic activity increases the conversion of the pro-insecticide into its potent n-dealkylated form and will consequently increase mosquito mortality [7].\n", - "\n", - "For any new ITN to be used in public health, a thorough evaluation of its safety, efficacy and effectiveness is conducted based on World Health Organisation (WHO) standards and criteria [8]. The methods and scope of the laboratory tests and field trials required to attain WHO Prequalification (PQ) listing for ITNs are outlined in a set of WHO guidelines, last updated in 2013 [9]. As part of these guidelines, WHO recommends a set of standardised laboratory tests to ascertain the bioefficacy of pyrethroid ITNs, i.e., the ability of ITN products to kill, incapacitate (knock down) and prevent mosquitoes from blood-feeding. Laboratory bioefficacy tests are also a critical component of ITN durability evaluation used to confirm continued ITN bioefficacy after long-term use in the community [10]. The simplest and most commonly applied ITN bioefficacy test is the WHO cone bioassay where mosquitoes are held close to ITN in plastic cones and the number of mosquitoes knocked down (incapacitated) or killed is counted [9]. For ITNs with feeding inhibition mode of action, the WHO tunnel test is used, where a swatch of ITN with small holes (9 x 1-cm diameter) is made and is placed between mosquitoes and small animal bait overnight [11]. The WHO tunnel test has been shown to agree with experimental but data, using laboratory-reared mosquitoes released into the huts [12]. Thresholds for the mosquito knockdown rate (95%) and mosquito mortality rate (80%) and blood-feeding inhibition (90%) using pyrethroid-susceptible _Anopheles_ mosquitoes serve as performance benchmarks; candidate products are required to fulfill minimum performance standards, which have been established by WHO for qualification to be listed/recommended for their public health values to sustain and protect users from disease transmissions. This includes their physical durability and chemical contents recovered from nets replaced in the field over 3 years or as predicted from wash-resistance testing. For a net to be classified as a long-lasting ITN, i.e., LLIN, > 80% of nets tested should pass WHO cone/tunnel performance benchmarks after 3 years of use [13].\n", - "\n", - "Cone tests are relatively easy to perform, high throughput and sensitive to detecting changes in bioavailable pyrethroids that act through rapid contact neurotoxicity. However, chlorfenapyr requires the mosquito to be metabolically and/or physiologically active (as it would be when encountering the ITN under user conditions) to bioactivate into the potent n-dealkylated form which elicits increased mosquito mortality. As mosquitoes are more metabolically active at night when flying and host-seeking during their typical circadian rhythms, the tunnel test may be more appropriate [14].\n", - "\n", - "The President's Malaria Initiative (PMI) currently uses WHO Tunnel tests for the durability monitoring of chlorfenapyr nets with 4 samples per net evaluated and 48 nets per sampling point [15]. This requires large numbers of mosquitoes and access to small animals for testing, so it cannot be done at all facilities in malaria-endemic areas. To accommodate high-throughput evaluation of whole ITNs for durability evaluation, the Ifakara ambient chamber test (I-ACT) was developed [16]. The Ifakara ambient chamber test (I-ACT) is not currently a recognized method \n", - "approved by the WHO. However, it is currently seeking confirmation by direct comparison to approved methods. This is of particular importance where novel slow-acting chemistries cannot achieve the benchmark standards established for conventional pyrethroid ITN exposures yet may prove to be highly efficacious when tested according to their discrete modes of action. Like the experimental hut, I-ACT makes use of whole nets and human hosts to evaluate bioefficacy of field-used ITNs, but the assay is done under controlled conditions with laboratory-reared mosquitoes. Mosquitoes are released into net chambers within which the test net is hung with a volunteer sleeping beneath, and all mosquitoes are recaptured in the morning. The use of laboratory mosquitoes (rather than conducting experimental hut trials with wild mosquitoes) is done to improve the precision of estimates by releasing mosquito cohorts of a defined number of mosquitoes with high recapture rate (99%) at the conclusion of exposure intervals.\n", - "\n", - "I-ACT bioassay has been used for evaluation of pyrethroid ITNs, was able to discriminate between products [17] and agreed with results of combined WHO cone and tunnel tests [16]. The I-ACT may show suitability for use in evaluation of pro-insecticides because: (i) the assay is run overnight, favouring malarial mosquitoes' circadian rhythms, (ii) the mosquitoes have a large arena to fly in, allowing them to be metabolically active, (iii) the mosquitoes have the opportunity to feed ad libitum and (iv) the I-ACT test eliminates infected mosquitoes that may represent a malaria transmission potential that cannot be completely excluded in WHO experimental huts--a significant safety benefit to volunteers. Therefore, the I-ACT method was evaluated alongside standard methods (i.e., experimental huts, WHO cone and tunnel tests) to provide direct evidence of its comparability. Interceptor(r) (alpha-cypermethrin only) and Interceptor(r) G2 (alpha-cypermethrin and chlorfenapyr) were evaluated to compare the performance of each assay for durability monitoring of pro-insecticidal ITNs.\n", - "\n", - "header: Test nets\n", - "\n", - "ITNs were supplied by BASF in November 2019 and stored at optimal conditions (25 to 32 degC) before testing and during the experimental phase. Interceptor(r) G2 nets were from two different production batches (two batches were used for experimental hut only and one batch for other biossays) and Interceptor(r) from one production batch. Interceptor(r) G2 is made from 100-denier polyester coated with a mixture of wash-resistant formulation containing 200 mg/m2 chlorfenapyr and 100 mg/m2alpha-cypermethrin. Interceptor(r) LN is made from 100-denier polyester coated with 200 mg/m2 alpha-cypermethrin. SafiNet is an untreated polyester net manufactured by A to Z. Textiles Mills, Ltd., Tanzania, and was used as a control. The nets were washed 20 times according to a protocol adapted from the standard WHO washing procedure [9] using 20 g/l palm soap (Jamaa) and dried flat in a shaded area. The interval of time used between two washes (i.e. regeneration time) was 1 day for both Interceptor(r) G2 and Interceptor(r) TTNs.\n", - "\n", - "header: Selection of the correct strain for bioassay\n", - "\n", - "The current study demonstrated that using the correct mosquito strain when evaluating ITNs is a critical consideration. The benefit of chlorfenapyr was only seen against the resistant strains, and against the susceptible strains Interceptor(r) was more efficacious because it contains a higher dose of alphacypermethrin. Comparing between the products using both a susceptible and a resistant strain revealed the different modes of action of Interceptor(r) and Interceptor(r) G2.\n", - "\n", - "header: Sample size and power\n", - "\n", - "A sample size calculation for generalized linear mixed effects models (GLMMs) through simulation [23] in R statistical software 3.02 [https://www.r-project.org/](https://www.r-project.org/) was performed for the I-ACT and experimental huts. For the I-ACT, to detect a 10% effect difference between the nets, simulations were performed using an estimated mosquito mortality of 80% for unwashed Interceptor(r) G2, 70% for unwashed Interceptor(r) and 10% for SafiNet(r) (deliberately holed). The design was for five arms replicated in two groups, with each volunteer testing each treatment one time over 20 replicates within its group (i.e. 40 replicates per arm), with an inter-observational variance of 0.42 for the night of observation based on the variance of the random effects observed in a previous study. The evaluation was powered at 81% for 15 mosquitoes of each strain released per chamber using 1000 simulations.\n", - "\n", - "For experimental huts, simulation was performed using a Latin square design with volunteers rotating nightly and accounted for as a fixed effect for 25 nights of data collection in 10 huts. The study had 84% power to detect the difference between Interceptor(r) G2 LN and Interceptor(r) LN on mosquito mortality endpoints, with two huts per treatment arm (i.e. 50 replicates per arm). The study power was calculated based on a previous study of pyrethroid nets conducted in the same area, with the estimation of 20 _An. arabiensis_ mosquitoes per night per hut, 21% mortality in unwashed Interceptor(r) G2, 7% in 20x washed Interceptor(r) G2 and 10% in unwashed Interceptor(r) vs. 4% in 20 times washed and 1% in negative control, and overdispersion parameter for daily variation was set at intermediate 0.44.\n", - "\n", - "To test whether I-ACT measures similarly to the WHO tunnels (H0\\(m\\)2=_m_1) a power calculation using Satterthwaites _t_-test was conducted in STATA 16 software (StataCorp LLC, College Station TX, USA) for two unpaired sample means assuming unequal variance. The power estimated was > 90% based on estimates from previous studies conducted in the same setting: mean mortality of 81.5% for WHO tunnel test with an assumed daily variation of 0.5 and 15 replicates per arm and mean\n", - "mortality estimates of 86.5% and an assumed daily variation of 0.42 with 40 replicates per arm were considered for I-ACT.\n", - "\n", - "header: Considerations for each bioassay\n", - "\n", - "Both I-ACT and experimental huts use the whole bednet and human host, which represent user conditions; however, there is no risk of disease for human participants in I-ACT because the mosquitoes used are laboratory reared. The WHO tunnel test is a well-established bioassay that has been shown to agree with experimental hut tests in this evaluation as well as others [12, 14]. However, it tests only a sample of net and is therefore only able to accurately measure the chemical durability of an ITN and not the chemical _and_ physical durability. In addition, it requires a high number of mosquitoes (100 per replicate) and more testing days compared to I-ACT. In I-ACT there is possibility of testing more than one species or strain per chamber compared to tunnel test, which makes results more comparable. The I-ACT is a new assay that consistently predicts the results of experimental hut tests, measures with a similar magnitude of difference as a tunnel test and provides high-throughput and precise estimates of whole ITN protective efficacy in this study with chlorfenapyr as well as in previous studies with pyrethroid nets [17] at lower cost than tunnel tests. However, this method is yet to become a WHO/PQ-accepted testing modality despite the observed higher precision vs. current WHO-recommended modalities. The detailed descriptions of cost implications for each bioassay and how to build an I-ACT with the cost of \n", - "establishment are described in Additional file 1: Table S4 and Additional file 2 respectively.\n", - "\n", - "Laboratory and/or semi-field bioassays are not replacements for field evaluation, but they are useful if they can predict the results of field tests because they are substantially cheaper and more standardised. Experimental hut tests remain the gold standard test because they represent field conditions and can be related to public health impact [48]. However, variation in mosquito entrance in huts per night is highly heterogeneous and requires a high level of replication to achieve precision [23]. In addition, variation in hut designs affects outcome measurement [34] and should be considered when interpreting results. However, comparing between products, the same trends were consistently seen: Interceptor(r) G2 was superior to Interceptor(r) against resistant mosquitoes when they were tested in a \"free-flying\" scenario and Interceptor(r) was superior to Interceptor(r) G2 against susceptible strains, while the cone test was suitable for evaluating pyrethroids but not pro-insecticides such as chlorfenapyr.\n", - "\n", - "header: Cone test results: Use of I-ACT for durability monitoring\n", - "\n", - "I-ACT is designed to be a bridging bioassay that reproduces a more natural interaction between the mosquito and human hosts beneath a bednet [16]. Blood-feeding inhibition and 72-h mortality measured by WHO tunnel and I-ACT were similar, meaning that the use of I-ACT for durability monitoring using WHO thresholds of 80% mortality and 90% feeding inhibition is appropriate. We suggest that I-ACT can be a useful alternative to tunnel tests for bioefficacy monitoring and upstream product evaluation as both the bioassays measure a similar odds ratio and I-ACT gives a precise estimation of bioefficacy because it uses laboratory-reared mosquitoes. This is particularly important when considering the longitudinal evaluation of product performance as occurs in durability bioefficacy evaluation for two reasons. Currently, experimental huts tests are being used to evaluate the insecticidal durability of Interceptor(r) G2 [33]. It was been observed at all experimental hut testing sites that mosquito resistance to insecticides has intensified through time [34]. This needs to be factored into considerations about durability testing. ITN protection may wane more quickly against more resistant mosquito populations as nets age [35], and if older ITNs are tested 3 years after baseline efficacy has been calculated, it is possible that they will be tested against a more resistant mosquito population than that at baseline. Therefore, use of carefully maintained laboratory strains may be helpful to minimise differences in insecticide resistance levels. Second, a previous longitudinal durability trial of ITNs [17] using standard WHO cone and tunnel tests as well as I-ACT shows that ITNs are highly heterogeneous, with up to 100% variance after use (John Bradley personal communication), because of variable use practices (washing, drying, care, sleeping space) [36, 37] that result in differential levels of damage and insecticide content [38]. This fact, coupled with WHO/PQ accepted intra-net insecticidal manufacturing heterogeneities [39], shows the need to expedite testing modalities that improve comprehension of net performances by donor organisations, national malaria control programmes (NMCPs) and manufacturers alike.\n", - "\n", - "header: Table 4: Number and proportion of net pieces passing using each laboratory bioassay based on WHO criteria of 80% control corrected mortality, 95% knockdown in WHO cone test, 90% blood-feeding inhibition or 80% control corrected mortality in tunnel test\n", - "footer: The WHO criteria for tunnel were adopted for I-ACT. Whole nets were used for I-ACT\n", - "columns: ['ITNs type - Unnamed: 0_level_1', 'Number of net pieces passing - Cone (N = 60)', 'Number of net pieces passing - Tunnel (N = 15)', 'Number of net pieces passing - I-ACT (N = 40)']\n", - "\n", - "{\"0\":{\"ITNs type - Unnamed: 0_level_1\":\"Anopheles arabiensis (Kingani strain, resistant)\",\"Number of net pieces passing - Cone (N = 60)\":\"Anopheles arabiensis (Kingani strain, resistant)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"Anopheles arabiensis (Kingani strain, resistant)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"Anopheles arabiensis (Kingani strain, resistant)\"},\"1\":{\"ITNs type - Unnamed: 0_level_1\":\"Unwashed\",\"Number of net pieces passing - Cone (N = 60)\":\"n (%)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"n (%)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"n (%)\"},\"2\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Number of net pieces passing - Cone (N = 60)\":\"59 (98)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"11 (73)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"38 (95)\"},\"3\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae G2\",\"Number of net pieces passing - Cone (N = 60)\":\"22 (37)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"13 (87)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"38 (95)\"},\"4\":{\"ITNs type - Unnamed: 0_level_1\":\"Washed, 20\\u00d7\",\"Number of net pieces passing - Cone (N = 60)\":null,\"Number of net pieces passing - Tunnel (N = 15)\":null,\"Number of net pieces passing - I-ACT (N = 40)\":null},\"5\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Number of net pieces passing - Cone (N = 60)\":\"59 (98)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"12 (80)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"36 (90)\"},\"6\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae G2\",\"Number of net pieces passing - Cone (N = 60)\":\"21 (35)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"10 (67)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"38 (95)\"},\"7\":{\"ITNs type - Unnamed: 0_level_1\":\"An. gambiae ss. (Kisumu strain, susceptible)\",\"Number of net pieces passing - Cone (N = 60)\":\"An. gambiae ss. (Kisumu strain, susceptible)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"An. gambiae ss. (Kisumu strain, susceptible)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"An. gambiae ss. (Kisumu strain, susceptible)\"},\"8\":{\"ITNs type - Unnamed: 0_level_1\":\"Unwashed\",\"Number of net pieces passing - Cone (N = 60)\":null,\"Number of net pieces passing - Tunnel (N = 15)\":null,\"Number of net pieces passing - I-ACT (N = 40)\":null},\"9\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Number of net pieces passing - Cone (N = 60)\":\"50 (83)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"15 (100)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"40 (100)\"},\"10\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae G2\",\"Number of net pieces passing - Cone (N = 60)\":\"2 (3)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"14 (100)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"40 (100)\"},\"11\":{\"ITNs type - Unnamed: 0_level_1\":\"Washed, 20\\u00d7\",\"Number of net pieces passing - Cone (N = 60)\":null,\"Number of net pieces passing - Tunnel (N = 15)\":null,\"Number of net pieces passing - I-ACT (N = 40)\":null},\"12\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Number of net pieces passing - Cone (N = 60)\":\"38 (63)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"15 (100)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"40 (100)\"},\"13\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae G2\",\"Number of net pieces passing - Cone (N = 60)\":\"10 (17)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"15 (100)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"40 (100)\"}}\n", - "\n", - "header: Publisher's Note\n", - "\n", - "Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.\n", - "\n", - "header: Table 2 Logistic regression analysis to compare mosquito mortality in Interceptor® and Interceptor® G2 ITNs after exposure in WHO cone and tunnel tests, Ifakara ambient chamber test and experimental hut, Tanzania\n", - "footer: Odds ratio adjusted for net type, volunteer, hut position/number and day of the experiment\n", - "Laboratory-reared mosquitoes were used for WHO cone, WHO tunnel and I-ACT\n", - "For the experimental hut trial, the ITNs were tested against free-flying wild pyrethroid-resistant Anopheles arabiensis and Culex quinquefasciatus in Lupiro, Ifakara\n", - "*p-value>0.05\n", - "columns: ['Unnamed: 0_level_0 - Unnamed: 0_level_1', 'WHO cone - OR (95% CI)', 'Tunnel - OR (95% CI)', 'I-ACT - OR (95% CI)', 'Hut - OR (95% CI)', 'Huts with netting window - OR (95% CI)']\n", - "\n", - "{\"0\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Anopheles anabiensis (resistant)\",\"WHO cone - OR (95% CI)\":\"Anopheles anabiensis (resistant)\",\"Tunnel - OR (95% CI)\":\"Anopheles anabiensis (resistant)\",\"I-ACT - OR (95% CI)\":\"Anopheles anabiensis (resistant)\",\"Hut - OR (95% CI)\":\"Anopheles anabiensis (resistant)\",\"Huts with netting window - OR (95% CI)\":\"Anopheles anabiensis (resistant)\"},\"1\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Overall\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"2\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"3\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"0.04 (0.03, 0.07)\",\"Tunnel - OR (95% CI)\":\"1.33 (1.17, 1.51)\",\"I-ACT - OR (95% CI)\":\"1.55 (1.16, 2.07)\",\"Hut - OR (95% CI)\":\"2.38 (2.09, 2.72)\",\"Huts with netting window - OR (95% CI)\":\"2.43 (1.88, 3.14)\"},\"4\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Unwashed\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"5\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"6\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"0.05 (0.20, 0.09)\",\"Tunnel - OR (95% CI)\":\"1.42 (1.19, 1.70)\",\"I-ACT - OR (95% CI)\":\"1.61 (1.05, 2.49)\",\"Hut - OR (95% CI)\":\"2.53 (1.96, 3.26)\",\"Huts with netting window - OR (95% CI)\":\"2.55 (1.76, 3.68)\"},\"7\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Washed, 20\\u00d7\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"8\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"9\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"0.04 (0.2, 0.09)\",\"Tunnel - OR (95% CI)\":\"1.23 (1.03, 1.48)\",\"I-ACT - OR (95% CI)\":\"1.50 (1.02, 2.23)\",\"Hut - OR (95% CI)\":\"2.36 (2.02, 2.77)\",\"Huts with netting window - OR (95% CI)\":\"2.32 (1.63, 3.31)\"},\"10\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Culex quinquefasciatus (resistant)\",\"WHO cone - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\",\"Tunnel - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\",\"I-ACT - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\",\"Hut - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\",\"Huts with netting window - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\"},\"11\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Overall\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"12\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"13\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"1.05 (0.57, 1.93)*\",\"Tunnel - OR (95% CI)\":\"2.55 (2.26, 2.55)\",\"I-ACT - OR (95% CI)\":\"13.40 (10.75, 16.67)\",\"Hut - OR (95% CI)\":\"1.50 (1.31, 1.73)\",\"Huts with netting window - OR (95% CI)\":\"1.40 (1.19, 1.63)\"},\"14\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Unwashed\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"15\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"16\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"0.74 (0.31, 1.79)*\",\"Tunnel - OR (95% CI)\":\"2.52 (2.13, 3.00)\",\"I-ACT - OR (95% CI)\":\"12.71 (9.43, 17.14)\",\"Hut - OR (95% CI)\":\"1.52 (1.23, 1.88)\",\"Huts with netting window - OR (95% CI)\":\"1.25 (1.00, 1.57)\"},\"17\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Washed, 20\\u00d7\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"18\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"19\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"1.46 (0.62, 3.50)*\",\"Tunnel - OR (95% CI)\":\"2.58 (2.17, 3.06)\",\"I-ACT - OR (95% CI)\":\"14.11 (10.42, 19.11)\",\"Hut - OR (95% CI)\":\"1.50 (1.25, 1.80)\",\"Huts with netting window - OR (95% CI)\":\"1.55 (1.24, 1.94)\"},\"20\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"An gambiae s.s. (susceptible)\",\"WHO cone - OR (95% CI)\":\"An gambiae s.s. (susceptible)\",\"Tunnel - OR (95% CI)\":\"An gambiae s.s. (susceptible)\",\"I-ACT - OR (95% CI)\":\"An gambiae s.s. (susceptible)\",\"Hut - OR (95% CI)\":\"An gambiae s.s. (susceptible)\",\"Huts with netting window - OR (95% CI)\":\"An gambiae s.s.\n", - "\n", - "header: Mosquito test systems\n", - "\n", - "IHI laboratory maintains local mosquito strains with resistant mechanisms present in the local population to\n", - "avoid accidental release of new resistance alleles into the wild population. Four types of laboratory-reared mosquitoes with different resistance levels (confirmed at the time of testing) were used in the WHO cone, WHO tunnel and I-ACT tests: _Anopheles arabiensis_ (Kingani strain, upregulation of cytochrome p450s, 14% mortality upon exposure to WHO discriminating doses of alpha-cypermethrin, which is reversed by piperonyl butoxide (PBO) pre-exposure, which acts to block enzymatic detoxification mechanisms by inhibiting their metabolism), _Anopheles gambiae_ s.s. (Kisumu strain, fully susceptible to all insecticide classes at WHO discriminating doses), _Aedes aegypti_ (Bagamoyo strain, fully susceptible to all insecticide classes at WHO discriminating doses) and _Culex quinquefasciatus_ (Bagamoyo strain, 6% mortality upon exposure to WHO discriminating doses of alpha-cypermethrin, which is partially reversed (only moderate susceptibility is restored from inhibition of detoxifying mechanism) by PBO pre-exposure). In I-ACT and tunnel tests, sugar-starved (8 to 9 h) nulliparous female mosquitoes, 5-8 days old, were used. For cone bioassay, 2-5-day-old nulliparous sugar-fed female mosquitoes were challenged. Laboratory colonies were maintained by feeding larvae Tetramin(r) tropical fish food and adults on blood between 3 and 6 days after emergence and 10% sugar solution ad libitum. Temperature and humidity within the insectary are maintained between 27 degC+-5 degC and 40%-100% RH, relatively following MR4 guidelines [18]. For the experimental hut assays, only wild populations of _An. arabiensis_ and _Culex quinquefasciatus_ were collected in sufficient numbers for evaluation.\n", - "\n", - "header: WHO cone bioassays\n", - "\n", - "WHO cone tests were performed between October 2020 and February 2021 according to standard WHO procedures [9], with two modifications: the test board was set at 60deg tilt [19] and holes were cut in the boards (Fig. 1) to maximise mosquito contact with the test nets during exposures. From each treatment arm, three nets were randomly sampled, and five net swatches of 25 cm x 25 cm size were cut from positions 1 to 5. On each netting sample, four standard WHO cones were positioned over net swatches and secured in place using tape. Five laboratory-bred mosquitoes were introduced into each cone and exposed for 3 min, and four replicates were conducted per net piece (20 mosquitoes were exposed per net piece).\n", - "\n", - "After each exposure, the mosquitoes were removed gently from the cones (by mouth aspiration), placed in paper cups and provided with cotton wool moistened with 10% sugar solution. Knockdown (KD60) was recorded after 60 min and mortality at 24, 48 and 72 h. Mosquitoes challenged to untreated nets were used as controls to monitor the quality of the bioassay. The bioassays and holding period were carried out at 27 degC+-2 degC and 60%-100% relative humidity. Acceptable control mortality was <= 10% after 72 h holding time. Any tests exceeding the specified control cut off were repeated.\n", - "\n", - "header: Conclusion\n", - "\n", - "Interceptor(r) G2 clearly demonstrated superior bio-efficacy against resistant mosquitoes compared to Interceptor(r) when mosquitoes were challenged in free-flying bioassays. The I-ACT measured similar odds ratios as the WHO tunnel, currently used for testing of ITNs with chlorfenapyr. Both free-flying laboratory bioassays (WHO tunnel and I-ACT) predicted the results of the experimental hut test. Experimental hut design has an influence on mosquito mortality; however, using the odds ratio, all free-flying tests gave consistent findings. In this setting, I-ACT was a reliable bioassay for bioefficacy testing of Interceptor(r) G2 and may be a useful additional bioassay for durability monitoring of ITNs treated with pro-insecticides.\n", - "\n", - "header: Resistant mosquitoes\n", - "\n", - "For pyrethroid-resistant _An. arabiensis_, blood-feeding inhibition was lower with Interceptor(r) G2 than Interceptor(r) in WHO tunnel: 87.8% (95% CI: 82.9- 92.7) vs. 92.9% (95% CI: 89.8-96.0) OR blood-fed = 1.92 [95% CI:14.8-2.48], \\(p\\) < 0.001 and I-ACT: 89.8% (95% CI: 85.8-93.7) vs. 93.9% (95% CI: 91.5-96.3) (OR blood-fed = 1.67 [95% CI: 1.07-2.62], \\(p\\) = 0.024). There was no difference between the two products measured in experimental huts: 95.9% (95% CI: 93.7-98.2) vs. 96.3% (95% CI: 93.0-99.7) (OR blood-fed = 1.06 [95% CI: 0.54-2.10], \\(p\\) = 0.857). A similar trend was observed for the 20x washed nets.\n", - "\n", - "Blood-feeding inhibition was similar for Interceptor(r) G2 compared to Interceptor(r) with _Cx. Quinquefasciatus_ in WHO tunnel: 97.8% (95CI: 96.1-99.5) vs. 97.1% (95% CI: 95.9-98.3) (OR blood fed = 1.36 [95% CI: 0.85-2.17], \\(p\\) = 0.196) and experimental huts: 97.2% (95% CI: 95.9-98.4) vs. 97.2% (95% CI: 95.8-98.7) (OR = 1.04 [95% CI: 0.76-1.42], \\(p\\) = 0.827), whilst in I-ACT the difference was significantly different: 99.0% (95% CI: 98.1-99.9) vs. 91.3% (95% CI: 88.6-93.9) (OR blood fed = 0.11 [95% CI: 0.05-0.26], \\(p\\) < 0.001). A similar trend was observed for the 20x washed nets (Fig. 3a, b, Table 3). The percentage blood-feeding inhibition and mean difference between bioassays for all mosquito species are presented in Additional file 1: Table S2.\n", - "\n", - "header: Study area: Study design\n", - "\n", - "The study was a five-arm comparative efficacy study to determine the performances of Interceptor(r) G2 ITNs and Interceptor(r) against pyrethroid-susceptible and -resistant mosquitoes measured by WHO cone bioassay, WHO tunnel test, Ifakara ambient chamber test (I-ACT) and experimental huts. Study arms were: (i) Interceptor(r) G2, unwashed; (ii) Interceptor(r) G2, washed 20 times; (iii) Interceptor(r), unwashed; (iv) Interceptor(r), washed 20 times; (v) SafNet(r) (negative control). The primary performance metric upon which the study was powered is 72-h mortality (M72), which is measured in all four bioassays. A secondary outcome was blood-feeding, which was measured in the three free-flying bioassays. Additionally, knockdown at 60 min (KD60) was measured in cone tests (Table 1).\n", - "\n", - "header: Mosquito retention\n", - "\n", - "Immediately after the main experimental hut trial, a retention test was conducted by releasing wild _An. ara-biensis_ mosquitoes that were collected from the area by human landing catch (HLC). Fifteen mosquitoes marked with non-toxic fluorescent powder were released in each of the ten huts with the same treatment arms as the main experiment hut design. Five huts were completely closed while the other five were left with open eaves (with 10-cm baffles to reduce egress) and two window exit traps as per main experimental hut study. This experiment was conducted for 5 nights. Each morning mosquitoes were sorted, scored and held for 72 h to observe delayed mortality for each treatment arm.\n", - "\n", - "header: Susceptible mosquitoes\n", - "\n", - "For unwashed Interceptor(r), blood-feeding inhibition was measured in tunnel and I-ACT and a similar trend was observed in susceptible mosquitoes as was seen in the resistant laboratory strains (Fig. 3c, d, Table 3). For susceptible _An. gambiae_, blood-feeding inhibition was lower with Interceptor(r) G2 than for Interceptor(r) WHO tunnel: 89.7% (95% CI: 83.3-96.1) vs. 94.5% (95% CI: 91.9-97.2), (OR blood fed = 1.95 [95% CI: 1.46, 2.61], \\(p\\) < 0.001) and similar in I-ACT: 97.4% (95% CI: 95.7-99.1) vs. 98.2% (95% CI: 96.8-99.5), (OR blood fed = 1.41 [95% CI: 0.63-3.17], \\(p\\) = 0.407. For susceptible _Ae. Aggyti_ in WHO tunnel, results showed: 93.8% (95% CI:90.6-97.1) vs. 96.3% (95% CI: 94.0-98.7) (OR blood fed = 2.03 [95% CI: 1.40-2.93], \\(p\\) < 0.001) and in I-ACT: 96.8% (95% CI: 94.8-98.9) vs. 98.3% (95% CI: 97.1-99.5) (OR blood fed = 1.92 [95% CI: 0.87-4.24],\n", - "\\(p=0.107\\)). As before, for both species a similar pattern was seen for the 20\\(\\times\\) washed nets.\n", - "\n", - "header: Methods\n", - "\n", - "The laboratory bioassays (I-ACT, WHO cone and WHO tunnel tests) were performed at the Vector Control Product Testing Unit (VCPTU) testing facility located at the Bagamoyo branch of Ifakara Health Institute (IHI), Tanzania (6.446deg S and 38.901deg E). The district experiences average annual rainfall of 800 mm-1000 mm, average temperatures between 24 degC and 29 degC and average annual humidity of 73%. The experimental hut study was conducted in Lupiro village (8.385deg S and 36.673deg E) in Ulanga District, southeastern Tanzania. The village is bordered by irrigated rice fields with average annual rainfall of 1200-1800 mm, average temperatures between 20 and 34 degC and average annual humidity of 69%. The main malaria vector is _Anopheles arabiensis_, constituting > 99.9% of the _An. gambiae_ complex species in the last test conducted in November 2020, and resistance to alphabcypermethrin was recorded (57% mortality at 1 x WHO discriminating concentration) at the time of testing.\n", - "\n", - "header: Table 3 Logistic regression analysis to compare mosquito blood-feeding success in Interceptor and Interceptor G2 ITNs after exposure in WHO tunnel test, Ifakara ambient chamber test and experimental hut, Tanzania\n", - "footer: Odds ratio adjusted for net type, volunteer, hut position/number and day of the experiment\n", - "Laboratory-reared mosquitoes were used for tunnel and I-ACT\n", - "For the experimental hut trial, the ITNs were tested against free-\u001e\n", - "flying wild pyrethroid-resistant Anopheles arabiensis and Culex quinquefasciatus in Lupiro, Ifakara\n", - "*p-value<0.05\n", - "columns: ['Unnamed: 0_level_0 - Unnamed: 0_level_1', 'Tunnel - OR (95% CI)', 'I-ACT - OR (95% CI)', 'Hutt - OR (95% CI)', 'Huts with netting window - OR (95% CI)']\n", - "\n", - "{\"0\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Anopheles anabiensis (resistant)\",\"Tunnel - OR (95% CI)\":\"Anopheles anabiensis (resistant)\",\"I-ACT - OR (95% CI)\":\"Anopheles anabiensis (resistant)\",\"Hutt - OR (95% CI)\":\"Anopheles anabiensis (resistant)\",\"Huts with netting window - OR (95% CI)\":\"Anopheles anabiensis (resistant)\"},\"1\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Overall\",\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hutt - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"2\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hutt - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"3\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"Tunnel - OR (95% CI)\":\"1.75 (1.46, 2.09)*\",\"I-ACT - OR (95% CI)\":\"1.53 (1.10, 2.13)*\",\"Hutt - OR (95% CI)\":\"1.04 (0.74, 1.47)\",\"Huts with netting window - OR (95% CI)\":\"1.42 (0.80, 2.53)\"},\"4\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Unwashed\",\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hutt - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":\"1\"},\"5\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hutt - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":\"1\"},\"6\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"Tunnel - OR (95% CI)\":\"1.92 (1.48, 2.48)*\",\"I-ACT - OR (95% CI)\":\"1.67 (1.07, 2.62)*\",\"Hutt - OR (95% CI)\":\"1.06 (0.54, 2.10)\",\"Huts with netting window - OR (95% CI)\":\"1.81 (0.79, 4.14)\"},\"7\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Washed, 20x\",\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hutt - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"8\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hutt - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"9\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"Tunnel - OR (95% CI)\":\"1.60 (1.24, 2.05)*\",\"I-ACT - OR (95% CI)\":\"1.37 (0.83, 2.25)\",\"Hutt - OR (95% CI)\":\"1.09 (0.72, 1.63)\",\"Huts with netting window - OR (95% CI)\":\"1.15 (0.53, 2.50)\"},\"10\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Culex quinquefasciatus (resistant)\",\"Tunnel - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\",\"I-ACT - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\",\"Hutt - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\",\"Huts with netting window - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\"},\"11\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Overall\",\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hutt - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"12\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hutt - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"13\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"Tunnel - OR (95% CI)\":\"0.73 (0.53, 1.00)\",\"I-ACT - OR (95% CI)\":\"0.13 (0.07, 0.23)*\",\"Hutt - OR (95% CI)\":\"1.34 (0.88, 2.04)\",\"Huts with netting window - OR (95% CI)\":\"0.63 (0.49, 0.81)*\"},\"14\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Unwashed\",\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hutt - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":\"1\"},\"15\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hutt - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":\"1\"},\"16\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"Tunnel - OR (95% CI)\":\"1.36 (0.85, 2.17)\",\"I-ACT - OR (95% CI)\":\"0.11 (0.05, 0.26)*\",\"Hutt - OR (95% CI)\":\"1.04 (0.76, 1.42)\",\"Huts with netting window - OR (95% CI)\":\"0.67 (0.45, 1.02)\"},\"17\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Washed, 20x\",\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hutt - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"18\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hutt - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"19\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"Tunnel - OR (95% CI)\":\"0.41 (0.26, 0.65)*\",\"I-ACT - OR (95% CI)\":\"0.14 (0.06, 0.33)*\",\"Hutt - OR (95% CI)\":\"1.11 (0.86, 1.42)\",\"Huts with netting window - OR (95% CI)\":\"1.59 (0.43, 0.82)*\"},\"20\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"An gambiae s.s. (susceptible)\",\"Tunnel - OR (95% CI)\":\"An gambiae s.s. (susceptible)\",\"I-ACT - OR (95% CI)\":\"An gambiae s.s. (susceptible)\",\"Hutt - OR (95% CI)\":\"An gambiae s.s. (susceptible)\",\"Huts with netting window - OR (95% CI)\":\"An gambiae s.s. (susceptible)\"},\"21\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Overall\",\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hutt - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"22\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hutt - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"23\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"Tunnel - OR (95% CI)\":\"1.28 (1.03, 1.59)*\",\"I-ACT - OR (95% CI)\":\"1.55 (0.86, 2.80)\",\"Hutt - OR (95% CI)\":\"\\u2013\",\"Huts with netting window - OR (95% CI)\":\"\\u2013\"},\"24\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Unwashed\",\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hutt - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"25\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"Tunnel - OR (95% CI)\":\"1.95 (1.46, 2.61)*\",\"I-ACT - OR (95% CI)\":\"1.41 (0.63, 3.17)\",\"Hutt - OR (95% CI)\":\"\\u2013\",\"Huts with netting window - OR (95% CI)\":\"\\u2013\"},\"26\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Washed, 20x\",\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hutt - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"27\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hutt - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"28\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"Tunnel - OR (95% CI)\":\"1.81 (1.35, 2.41)*\",\"I-ACT - OR (95% CI)\":\"1.75 (0.69, 4.41)\",\"Hutt - OR (95% CI)\":\"\\u2013\",\"Huts with netting window - OR (95% CI)\":\"\\u2013\"},\"29\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Aedes aegypti (susceptible)\",\"Tunnel - OR (95% CI)\":\"Aedes aegypti (susceptible)\",\"I-ACT - OR (95% CI)\":\"Aedes aegypti (susceptible)\",\"Hutt - OR (95% CI)\":\"Aedes aegypti (susceptible)\",\"Huts with netting window - OR (95% CI)\":\"Aedes aegypti (susceptible)\"},\"30\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Overall\",\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hutt - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"31\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hutt - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"32\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"Tunnel - OR (95% CI)\":\"1.46 (1.14, 1.87)*\",\"I-ACT - OR (95% CI)\":\"1.63 (0.87, 3.04)\",\"Hutt - OR (95% CI)\":\"\\u2013\",\"Huts with netting window - OR (95% CI)\":\"\\u2013\"},\"33\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Unwashed\",\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hutt - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"34\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hutt - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"35\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"Tunnel - OR (95% CI)\":\"2.03 (1.40, 2.93)*\",\"I-ACT - OR (95% CI)\":\"1.92 (0.87, 4.24)\",\"Hutt - OR (95% CI)\":\"\\u2013\",\"Huts with netting window - OR (95% CI)\":\"\\u2013\"},\"36\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Washed, 20x\",\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hutt - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"37\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hutt - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"38\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"Tunnel - OR (95% CI)\":\"1.10 (0.79, 1.54)\",\"I-ACT - OR (95% CI)\":\"1.20 (0.43, 3.36)\",\"Hutt - OR (95% CI)\":\"\\u2013\",\"Huts with netting window - OR (95% CI)\":\"\\u2013\"}}\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ITNCondition` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: WHO tunnel test\n", - "\n", - "The tunnel tests were carried out from August to November 2020 according to standard WHO procedures [9]. Five 25 cm x 25 cm net pieces per ITN/control were cut adjacent to the swatches cut for cone assays from three nets per treatment arm to make a total of 15 pieces per study arm and to account for possible intra-net variability of insecticide loadings. Five tunnels were run with one sample from each treatment arm with one mosquito strain on a single night. Over 60 nights, all 15 pieces of ITNs per study arm were tested with four mosquito strains.\n", - "\n", - "Non-blood-fed nulliparous females, 5-8 days old, sugar starved for 6-8 h were released in a 60-cm-long glass tunnel. At each end of the tunnel, a 25-cm square mosquito cage covered with polyester netting was fitted. At one third of the length, the netting sample was affixed. The surface of netting \"available\" to mosquitoes is 400 cm2 (20 cm x 20 cm), with 9 x 1-cm-diameter holes: one hole is located at the centre of the square; the other eight were equidistant and located 5 cm from the border. In the shorter section of the tunnel, a small rabbit, its back shaved and restrained in a mesh tunnel, was placed as bait (Fig. 1). In the cage at the end of the longer section of the tunnel, 100 female mosquitoes (one strain \n", - "per replicate) were introduced at 21:00. The following morning at 09:00, the mosquitoes were removed using a mouth aspirator and counted separately from each section of the tunnel, and mortality and blood-feeding rates were recorded. The mosquitoes were placed in paper cups and provided with cotton wool moistened with 10% sugar solution. Mortality was recoded at 24, 48 and 72 h. Mosquitoes challenged to untreated nets were used as controls to monitor the quality of the bioassay. The bioassays and holding period were carried out at 27 degC+-2 degC and 60%-100% relative humidity. Overall mortality was measured by pooling the mortalities of mosquitoes from the two sections of the tunnel. Acceptable feeding success and mortality in controls were 50% and 10%, respectively. Any tests not meeting the specified control cut-off were repeated.\n", - "\n", - "header: Mosquito blood-feeding in WHO tunnel, I-ACT and experimental hut\n", - "\n", - "For all bioassays and strains, blood-feeding inhibition was very high (Fig. 3, Table 3). Both Interceptor(r) G2 and Interceptor(r) gave high levels of blood-feeding inhibition in all \"free-flying\" bioassays.\n", - "\n", - "header: Selection of the correct strain for bioassay\n", - "\n", - "The current study demonstrated that using the correct mosquito strain when evaluating ITNs is a critical consideration. The benefit of chlorfenapyr was only seen against the resistant strains, and against the susceptible strains Interceptor(r) was more efficacious because it contains a higher dose of alphacypermethrin. Comparing between the products using both a susceptible and a resistant strain revealed the different modes of action of Interceptor(r) and Interceptor(r) G2.\n", - "\n", - "header: Background\n", - "\n", - "As funding for malaria control falls and mosquito resistance to current public health insecticides increases, new and durable vector control tools that utilise new insecticide classes are needed [1]. For insecticide resistance management, a new Insecticide Treated Net (ITN) Interceptor(r) G2 has been developed, coated with a mixture of the pyrethroid alpha-cypermethrin and the pro-insecticide chlorfenapyr [2]. Chlorfenapyr is an Insecticide Resistance Action Committee (IRAC) Group 13 insecticide, having a pyrrole chemistry that uncouples oxidative phosphorylation via disruption of the proton gradient (as a protonophore) to short circuit mitochondrial respiration through inner mitochondrial membranes of insect cells so that ATP cannot be synthesized, subsequently robbing insects of energy, resulting in death [3, 4]. Metabolic resistance is one of the main mechanisms of resistance observed in malaria vectors [5] where one or several detoxification gene families--cytochrome P450s (P450s), esterases and glutathione S-transferases (GSTs)--are overproduced to detoxify insecticides [6]. While this metabolism is a detoxification process, it can increase the potency of a pro-insecticide and may therefore be exploited as a means to control metabolically resistant insect populations [3]. The unique mode of action of chlorfenapyr on an insect's metabolism is particularly relevant for the control of vectors harboring insecticide resistance mechanisms, as increased metabolic activity increases the conversion of the pro-insecticide into its potent n-dealkylated form and will consequently increase mosquito mortality [7].\n", - "\n", - "For any new ITN to be used in public health, a thorough evaluation of its safety, efficacy and effectiveness is conducted based on World Health Organisation (WHO) standards and criteria [8]. The methods and scope of the laboratory tests and field trials required to attain WHO Prequalification (PQ) listing for ITNs are outlined in a set of WHO guidelines, last updated in 2013 [9]. As part of these guidelines, WHO recommends a set of standardised laboratory tests to ascertain the bioefficacy of pyrethroid ITNs, i.e., the ability of ITN products to kill, incapacitate (knock down) and prevent mosquitoes from blood-feeding. Laboratory bioefficacy tests are also a critical component of ITN durability evaluation used to confirm continued ITN bioefficacy after long-term use in the community [10]. The simplest and most commonly applied ITN bioefficacy test is the WHO cone bioassay where mosquitoes are held close to ITN in plastic cones and the number of mosquitoes knocked down (incapacitated) or killed is counted [9]. For ITNs with feeding inhibition mode of action, the WHO tunnel test is used, where a swatch of ITN with small holes (9 x 1-cm diameter) is made and is placed between mosquitoes and small animal bait overnight [11]. The WHO tunnel test has been shown to agree with experimental but data, using laboratory-reared mosquitoes released into the huts [12]. Thresholds for the mosquito knockdown rate (95%) and mosquito mortality rate (80%) and blood-feeding inhibition (90%) using pyrethroid-susceptible _Anopheles_ mosquitoes serve as performance benchmarks; candidate products are required to fulfill minimum performance standards, which have been established by WHO for qualification to be listed/recommended for their public health values to sustain and protect users from disease transmissions. This includes their physical durability and chemical contents recovered from nets replaced in the field over 3 years or as predicted from wash-resistance testing. For a net to be classified as a long-lasting ITN, i.e., LLIN, > 80% of nets tested should pass WHO cone/tunnel performance benchmarks after 3 years of use [13].\n", - "\n", - "Cone tests are relatively easy to perform, high throughput and sensitive to detecting changes in bioavailable pyrethroids that act through rapid contact neurotoxicity. However, chlorfenapyr requires the mosquito to be metabolically and/or physiologically active (as it would be when encountering the ITN under user conditions) to bioactivate into the potent n-dealkylated form which elicits increased mosquito mortality. As mosquitoes are more metabolically active at night when flying and host-seeking during their typical circadian rhythms, the tunnel test may be more appropriate [14].\n", - "\n", - "The President's Malaria Initiative (PMI) currently uses WHO Tunnel tests for the durability monitoring of chlorfenapyr nets with 4 samples per net evaluated and 48 nets per sampling point [15]. This requires large numbers of mosquitoes and access to small animals for testing, so it cannot be done at all facilities in malaria-endemic areas. To accommodate high-throughput evaluation of whole ITNs for durability evaluation, the Ifakara ambient chamber test (I-ACT) was developed [16]. The Ifakara ambient chamber test (I-ACT) is not currently a recognized method \n", - "approved by the WHO. However, it is currently seeking confirmation by direct comparison to approved methods. This is of particular importance where novel slow-acting chemistries cannot achieve the benchmark standards established for conventional pyrethroid ITN exposures yet may prove to be highly efficacious when tested according to their discrete modes of action. Like the experimental hut, I-ACT makes use of whole nets and human hosts to evaluate bioefficacy of field-used ITNs, but the assay is done under controlled conditions with laboratory-reared mosquitoes. Mosquitoes are released into net chambers within which the test net is hung with a volunteer sleeping beneath, and all mosquitoes are recaptured in the morning. The use of laboratory mosquitoes (rather than conducting experimental hut trials with wild mosquitoes) is done to improve the precision of estimates by releasing mosquito cohorts of a defined number of mosquitoes with high recapture rate (99%) at the conclusion of exposure intervals.\n", - "\n", - "I-ACT bioassay has been used for evaluation of pyrethroid ITNs, was able to discriminate between products [17] and agreed with results of combined WHO cone and tunnel tests [16]. The I-ACT may show suitability for use in evaluation of pro-insecticides because: (i) the assay is run overnight, favouring malarial mosquitoes' circadian rhythms, (ii) the mosquitoes have a large arena to fly in, allowing them to be metabolically active, (iii) the mosquitoes have the opportunity to feed ad libitum and (iv) the I-ACT test eliminates infected mosquitoes that may represent a malaria transmission potential that cannot be completely excluded in WHO experimental huts--a significant safety benefit to volunteers. Therefore, the I-ACT method was evaluated alongside standard methods (i.e., experimental huts, WHO cone and tunnel tests) to provide direct evidence of its comparability. Interceptor(r) (alpha-cypermethrin only) and Interceptor(r) G2 (alpha-cypermethrin and chlorfenapyr) were evaluated to compare the performance of each assay for durability monitoring of pro-insecticidal ITNs.\n", - "\n", - "header: Considerations for each bioassay\n", - "\n", - "Both I-ACT and experimental huts use the whole bednet and human host, which represent user conditions; however, there is no risk of disease for human participants in I-ACT because the mosquitoes used are laboratory reared. The WHO tunnel test is a well-established bioassay that has been shown to agree with experimental hut tests in this evaluation as well as others [12, 14]. However, it tests only a sample of net and is therefore only able to accurately measure the chemical durability of an ITN and not the chemical _and_ physical durability. In addition, it requires a high number of mosquitoes (100 per replicate) and more testing days compared to I-ACT. In I-ACT there is possibility of testing more than one species or strain per chamber compared to tunnel test, which makes results more comparable. The I-ACT is a new assay that consistently predicts the results of experimental hut tests, measures with a similar magnitude of difference as a tunnel test and provides high-throughput and precise estimates of whole ITN protective efficacy in this study with chlorfenapyr as well as in previous studies with pyrethroid nets [17] at lower cost than tunnel tests. However, this method is yet to become a WHO/PQ-accepted testing modality despite the observed higher precision vs. current WHO-recommended modalities. The detailed descriptions of cost implications for each bioassay and how to build an I-ACT with the cost of \n", - "establishment are described in Additional file 1: Table S4 and Additional file 2 respectively.\n", - "\n", - "Laboratory and/or semi-field bioassays are not replacements for field evaluation, but they are useful if they can predict the results of field tests because they are substantially cheaper and more standardised. Experimental hut tests remain the gold standard test because they represent field conditions and can be related to public health impact [48]. However, variation in mosquito entrance in huts per night is highly heterogeneous and requires a high level of replication to achieve precision [23]. In addition, variation in hut designs affects outcome measurement [34] and should be considered when interpreting results. However, comparing between products, the same trends were consistently seen: Interceptor(r) G2 was superior to Interceptor(r) against resistant mosquitoes when they were tested in a \"free-flying\" scenario and Interceptor(r) was superior to Interceptor(r) G2 against susceptible strains, while the cone test was suitable for evaluating pyrethroids but not pro-insecticides such as chlorfenapyr.\n", - "\n", - "header: Discussion\n", - "\n", - "The superiority of Interceptor(r) G2 over Interceptor(r) for 72-h mortality endpoints, which challenged metabolically resistant _An. arabiensis_ and _Cx. quinquefasciatus_, was clearly seen in all \"free-flying\" bioassays but not in the WHO cone test where mosquitoes are unable to fly around and be metabolically active. This observation has been seen by several other authors [14, 25-27] leading to a consensus that the overnight tunnel test using a 72-h mortality endpoint is a superior laboratory bioassay for evaluation of chlorfenapyr [2, 28] relative to the cone test, which was designed to test contact insecticides that do not require metabolic conversion into a secondary metabolite (most ITN insecticides are classified as IRAC Group 3 sodium channel modulators). It has been routinely observed in experimental hut bioassays that Interceptor(r) G2 gives greater mortality that Interceptor(r) among pyrethroid-resistant mosquitoes [14, 25-27], while mosquitoes are foraging at night when their metabolic rate is high. Both the tunnel test and the I-ACT consistently predicted the superiority of Interceptor(r) G2 over Interceptor(r) observed in experimental hut tests.\n", - "\n", - "The results of this study's mortality elicited on _Cx. quinqufaciatus_ from chlorfenapyr is consistent with other studies over the past decade [29, 30]. Preliminary investigations for chlorfenapyr intoxication in metabolically resistant _Cx. quinquefasciatus_ in experimental huts by [31] demonstrated relatively high levels of control in both ITNs and for IRS in Benin. Later, [27] observed 3 x mortality with chlorfenapyr + alpha-cypermethrin-treated nets compared to pyrethroid-only nets demonstrating the effect of chlorfenapyr on free-flying exposures that optimize conversion rates of the pro-insecticide. However, it is also known that once ITNs develop holes, a pyrethroid treatment offers little or no protection against pyrethroid-resistant _Cu. quinquefaciatus_[32]. The relatively high level of control sustained in _Cx. quinqufaciatus_ in this study and relatively good mortality are important resistance management attributes that make inclusion of chlorfenapyr into vector control interventions a significant advancement for active ingredient options.\n", - "\n", - "header: Cone test results: Use of I-ACT for durability monitoring\n", - "\n", - "I-ACT is designed to be a bridging bioassay that reproduces a more natural interaction between the mosquito and human hosts beneath a bednet [16]. Blood-feeding inhibition and 72-h mortality measured by WHO tunnel and I-ACT were similar, meaning that the use of I-ACT for durability monitoring using WHO thresholds of 80% mortality and 90% feeding inhibition is appropriate. We suggest that I-ACT can be a useful alternative to tunnel tests for bioefficacy monitoring and upstream product evaluation as both the bioassays measure a similar odds ratio and I-ACT gives a precise estimation of bioefficacy because it uses laboratory-reared mosquitoes. This is particularly important when considering the longitudinal evaluation of product performance as occurs in durability bioefficacy evaluation for two reasons. Currently, experimental huts tests are being used to evaluate the insecticidal durability of Interceptor(r) G2 [33]. It was been observed at all experimental hut testing sites that mosquito resistance to insecticides has intensified through time [34]. This needs to be factored into considerations about durability testing. ITN protection may wane more quickly against more resistant mosquito populations as nets age [35], and if older ITNs are tested 3 years after baseline efficacy has been calculated, it is possible that they will be tested against a more resistant mosquito population than that at baseline. Therefore, use of carefully maintained laboratory strains may be helpful to minimise differences in insecticide resistance levels. Second, a previous longitudinal durability trial of ITNs [17] using standard WHO cone and tunnel tests as well as I-ACT shows that ITNs are highly heterogeneous, with up to 100% variance after use (John Bradley personal communication), because of variable use practices (washing, drying, care, sleeping space) [36, 37] that result in differential levels of damage and insecticide content [38]. This fact, coupled with WHO/PQ accepted intra-net insecticidal manufacturing heterogeneities [39], shows the need to expedite testing modalities that improve comprehension of net performances by donor organisations, national malaria control programmes (NMCPs) and manufacturers alike.\n", - "\n", - "header: WHO cone bioassays\n", - "\n", - "WHO cone tests were performed between October 2020 and February 2021 according to standard WHO procedures [9], with two modifications: the test board was set at 60deg tilt [19] and holes were cut in the boards (Fig. 1) to maximise mosquito contact with the test nets during exposures. From each treatment arm, three nets were randomly sampled, and five net swatches of 25 cm x 25 cm size were cut from positions 1 to 5. On each netting sample, four standard WHO cones were positioned over net swatches and secured in place using tape. Five laboratory-bred mosquitoes were introduced into each cone and exposed for 3 min, and four replicates were conducted per net piece (20 mosquitoes were exposed per net piece).\n", - "\n", - "After each exposure, the mosquitoes were removed gently from the cones (by mouth aspiration), placed in paper cups and provided with cotton wool moistened with 10% sugar solution. Knockdown (KD60) was recorded after 60 min and mortality at 24, 48 and 72 h. Mosquitoes challenged to untreated nets were used as controls to monitor the quality of the bioassay. The bioassays and holding period were carried out at 27 degC+-2 degC and 60%-100% relative humidity. Acceptable control mortality was <= 10% after 72 h holding time. Any tests exceeding the specified control cut off were repeated.\n", - "\n", - "header: Sample size and power\n", - "\n", - "A sample size calculation for generalized linear mixed effects models (GLMMs) through simulation [23] in R statistical software 3.02 [https://www.r-project.org/](https://www.r-project.org/) was performed for the I-ACT and experimental huts. For the I-ACT, to detect a 10% effect difference between the nets, simulations were performed using an estimated mosquito mortality of 80% for unwashed Interceptor(r) G2, 70% for unwashed Interceptor(r) and 10% for SafiNet(r) (deliberately holed). The design was for five arms replicated in two groups, with each volunteer testing each treatment one time over 20 replicates within its group (i.e. 40 replicates per arm), with an inter-observational variance of 0.42 for the night of observation based on the variance of the random effects observed in a previous study. The evaluation was powered at 81% for 15 mosquitoes of each strain released per chamber using 1000 simulations.\n", - "\n", - "For experimental huts, simulation was performed using a Latin square design with volunteers rotating nightly and accounted for as a fixed effect for 25 nights of data collection in 10 huts. The study had 84% power to detect the difference between Interceptor(r) G2 LN and Interceptor(r) LN on mosquito mortality endpoints, with two huts per treatment arm (i.e. 50 replicates per arm). The study power was calculated based on a previous study of pyrethroid nets conducted in the same area, with the estimation of 20 _An. arabiensis_ mosquitoes per night per hut, 21% mortality in unwashed Interceptor(r) G2, 7% in 20x washed Interceptor(r) G2 and 10% in unwashed Interceptor(r) vs. 4% in 20 times washed and 1% in negative control, and overdispersion parameter for daily variation was set at intermediate 0.44.\n", - "\n", - "To test whether I-ACT measures similarly to the WHO tunnels (H0\\(m\\)2=_m_1) a power calculation using Satterthwaites _t_-test was conducted in STATA 16 software (StataCorp LLC, College Station TX, USA) for two unpaired sample means assuming unequal variance. The power estimated was > 90% based on estimates from previous studies conducted in the same setting: mean mortality of 81.5% for WHO tunnel test with an assumed daily variation of 0.5 and 15 replicates per arm and mean\n", - "mortality estimates of 86.5% and an assumed daily variation of 0.42 with 40 replicates per arm were considered for I-ACT.\n", - "\n", - "header: Methods\n", - "\n", - "The laboratory bioassays (I-ACT, WHO cone and WHO tunnel tests) were performed at the Vector Control Product Testing Unit (VCPTU) testing facility located at the Bagamoyo branch of Ifakara Health Institute (IHI), Tanzania (6.446deg S and 38.901deg E). The district experiences average annual rainfall of 800 mm-1000 mm, average temperatures between 24 degC and 29 degC and average annual humidity of 73%. The experimental hut study was conducted in Lupiro village (8.385deg S and 36.673deg E) in Ulanga District, southeastern Tanzania. The village is bordered by irrigated rice fields with average annual rainfall of 1200-1800 mm, average temperatures between 20 and 34 degC and average annual humidity of 69%. The main malaria vector is _Anopheles arabiensis_, constituting > 99.9% of the _An. gambiae_ complex species in the last test conducted in November 2020, and resistance to alphabcypermethrin was recorded (57% mortality at 1 x WHO discriminating concentration) at the time of testing.\n", - "\n", - "header: Conclusion\n", - "\n", - "Interceptor(r) G2 clearly demonstrated superior bio-efficacy against resistant mosquitoes compared to Interceptor(r) when mosquitoes were challenged in free-flying bioassays. The I-ACT measured similar odds ratios as the WHO tunnel, currently used for testing of ITNs with chlorfenapyr. Both free-flying laboratory bioassays (WHO tunnel and I-ACT) predicted the results of the experimental hut test. Experimental hut design has an influence on mosquito mortality; however, using the odds ratio, all free-flying tests gave consistent findings. In this setting, I-ACT was a reliable bioassay for bioefficacy testing of Interceptor(r) G2 and may be a useful additional bioassay for durability monitoring of ITNs treated with pro-insecticides.\n", - "\n", - "header: Publisher's Note\n", - "\n", - "Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.\n", - "\n", - "header: Test nets\n", - "\n", - "ITNs were supplied by BASF in November 2019 and stored at optimal conditions (25 to 32 degC) before testing and during the experimental phase. Interceptor(r) G2 nets were from two different production batches (two batches were used for experimental hut only and one batch for other biossays) and Interceptor(r) from one production batch. Interceptor(r) G2 is made from 100-denier polyester coated with a mixture of wash-resistant formulation containing 200 mg/m2 chlorfenapyr and 100 mg/m2alpha-cypermethrin. Interceptor(r) LN is made from 100-denier polyester coated with 200 mg/m2 alpha-cypermethrin. SafiNet is an untreated polyester net manufactured by A to Z. Textiles Mills, Ltd., Tanzania, and was used as a control. The nets were washed 20 times according to a protocol adapted from the standard WHO washing procedure [9] using 20 g/l palm soap (Jamaa) and dried flat in a shaded area. The interval of time used between two washes (i.e. regeneration time) was 1 day for both Interceptor(r) G2 and Interceptor(r) TTNs.\n", - "\n", - "header: Mosquito test systems\n", - "\n", - "IHI laboratory maintains local mosquito strains with resistant mechanisms present in the local population to\n", - "avoid accidental release of new resistance alleles into the wild population. Four types of laboratory-reared mosquitoes with different resistance levels (confirmed at the time of testing) were used in the WHO cone, WHO tunnel and I-ACT tests: _Anopheles arabiensis_ (Kingani strain, upregulation of cytochrome p450s, 14% mortality upon exposure to WHO discriminating doses of alpha-cypermethrin, which is reversed by piperonyl butoxide (PBO) pre-exposure, which acts to block enzymatic detoxification mechanisms by inhibiting their metabolism), _Anopheles gambiae_ s.s. (Kisumu strain, fully susceptible to all insecticide classes at WHO discriminating doses), _Aedes aegypti_ (Bagamoyo strain, fully susceptible to all insecticide classes at WHO discriminating doses) and _Culex quinquefasciatus_ (Bagamoyo strain, 6% mortality upon exposure to WHO discriminating doses of alpha-cypermethrin, which is partially reversed (only moderate susceptibility is restored from inhibition of detoxifying mechanism) by PBO pre-exposure). In I-ACT and tunnel tests, sugar-starved (8 to 9 h) nulliparous female mosquitoes, 5-8 days old, were used. For cone bioassay, 2-5-day-old nulliparous sugar-fed female mosquitoes were challenged. Laboratory colonies were maintained by feeding larvae Tetramin(r) tropical fish food and adults on blood between 3 and 6 days after emergence and 10% sugar solution ad libitum. Temperature and humidity within the insectary are maintained between 27 degC+-5 degC and 40%-100% RH, relatively following MR4 guidelines [18]. For the experimental hut assays, only wild populations of _An. arabiensis_ and _Culex quinquefasciatus_ were collected in sufficient numbers for evaluation.\n", - "\n", - "header: Table 4: Number and proportion of net pieces passing using each laboratory bioassay based on WHO criteria of 80% control corrected mortality, 95% knockdown in WHO cone test, 90% blood-feeding inhibition or 80% control corrected mortality in tunnel test\n", - "footer: The WHO criteria for tunnel were adopted for I-ACT. Whole nets were used for I-ACT\n", - "columns: ['ITNs type - Unnamed: 0_level_1', 'Number of net pieces passing - Cone (N = 60)', 'Number of net pieces passing - Tunnel (N = 15)', 'Number of net pieces passing - I-ACT (N = 40)']\n", - "\n", - "{\"0\":{\"ITNs type - Unnamed: 0_level_1\":\"Anopheles arabiensis (Kingani strain, resistant)\",\"Number of net pieces passing - Cone (N = 60)\":\"Anopheles arabiensis (Kingani strain, resistant)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"Anopheles arabiensis (Kingani strain, resistant)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"Anopheles arabiensis (Kingani strain, resistant)\"},\"1\":{\"ITNs type - Unnamed: 0_level_1\":\"Unwashed\",\"Number of net pieces passing - Cone (N = 60)\":\"n (%)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"n (%)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"n (%)\"},\"2\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Number of net pieces passing - Cone (N = 60)\":\"59 (98)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"11 (73)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"38 (95)\"},\"3\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae G2\",\"Number of net pieces passing - Cone (N = 60)\":\"22 (37)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"13 (87)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"38 (95)\"},\"4\":{\"ITNs type - Unnamed: 0_level_1\":\"Washed, 20\\u00d7\",\"Number of net pieces passing - Cone (N = 60)\":null,\"Number of net pieces passing - Tunnel (N = 15)\":null,\"Number of net pieces passing - I-ACT (N = 40)\":null},\"5\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Number of net pieces passing - Cone (N = 60)\":\"59 (98)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"12 (80)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"36 (90)\"},\"6\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae G2\",\"Number of net pieces passing - Cone (N = 60)\":\"21 (35)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"10 (67)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"38 (95)\"},\"7\":{\"ITNs type - Unnamed: 0_level_1\":\"An. gambiae ss. (Kisumu strain, susceptible)\",\"Number of net pieces passing - Cone (N = 60)\":\"An. gambiae ss. (Kisumu strain, susceptible)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"An. gambiae ss. (Kisumu strain, susceptible)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"An. gambiae ss. (Kisumu strain, susceptible)\"},\"8\":{\"ITNs type - Unnamed: 0_level_1\":\"Unwashed\",\"Number of net pieces passing - Cone (N = 60)\":null,\"Number of net pieces passing - Tunnel (N = 15)\":null,\"Number of net pieces passing - I-ACT (N = 40)\":null},\"9\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Number of net pieces passing - Cone (N = 60)\":\"50 (83)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"15 (100)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"40 (100)\"},\"10\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae G2\",\"Number of net pieces passing - Cone (N = 60)\":\"2 (3)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"14 (100)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"40 (100)\"},\"11\":{\"ITNs type - Unnamed: 0_level_1\":\"Washed, 20\\u00d7\",\"Number of net pieces passing - Cone (N = 60)\":null,\"Number of net pieces passing - Tunnel (N = 15)\":null,\"Number of net pieces passing - I-ACT (N = 40)\":null},\"12\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Number of net pieces passing - Cone (N = 60)\":\"38 (63)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"15 (100)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"40 (100)\"},\"13\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae G2\",\"Number of net pieces passing - Cone (N = 60)\":\"10 (17)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"15 (100)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"40 (100)\"}}\n", - "\n", - "header: Resistant mosquitoes\n", - "\n", - "For pyrethroid-resistant _An. arabiensis_, blood-feeding inhibition was lower with Interceptor(r) G2 than Interceptor(r) in WHO tunnel: 87.8% (95% CI: 82.9- 92.7) vs. 92.9% (95% CI: 89.8-96.0) OR blood-fed = 1.92 [95% CI:14.8-2.48], \\(p\\) < 0.001 and I-ACT: 89.8% (95% CI: 85.8-93.7) vs. 93.9% (95% CI: 91.5-96.3) (OR blood-fed = 1.67 [95% CI: 1.07-2.62], \\(p\\) = 0.024). There was no difference between the two products measured in experimental huts: 95.9% (95% CI: 93.7-98.2) vs. 96.3% (95% CI: 93.0-99.7) (OR blood-fed = 1.06 [95% CI: 0.54-2.10], \\(p\\) = 0.857). A similar trend was observed for the 20x washed nets.\n", - "\n", - "Blood-feeding inhibition was similar for Interceptor(r) G2 compared to Interceptor(r) with _Cx. Quinquefasciatus_ in WHO tunnel: 97.8% (95CI: 96.1-99.5) vs. 97.1% (95% CI: 95.9-98.3) (OR blood fed = 1.36 [95% CI: 0.85-2.17], \\(p\\) = 0.196) and experimental huts: 97.2% (95% CI: 95.9-98.4) vs. 97.2% (95% CI: 95.8-98.7) (OR = 1.04 [95% CI: 0.76-1.42], \\(p\\) = 0.827), whilst in I-ACT the difference was significantly different: 99.0% (95% CI: 98.1-99.9) vs. 91.3% (95% CI: 88.6-93.9) (OR blood fed = 0.11 [95% CI: 0.05-0.26], \\(p\\) < 0.001). A similar trend was observed for the 20x washed nets (Fig. 3a, b, Table 3). The percentage blood-feeding inhibition and mean difference between bioassays for all mosquito species are presented in Additional file 1: Table S2.\n", - "\n", - "header: Table 2 Logistic regression analysis to compare mosquito mortality in Interceptor® and Interceptor® G2 ITNs after exposure in WHO cone and tunnel tests, Ifakara ambient chamber test and experimental hut, Tanzania\n", - "footer: Odds ratio adjusted for net type, volunteer, hut position/number and day of the experiment\n", - "Laboratory-reared mosquitoes were used for WHO cone, WHO tunnel and I-ACT\n", - "For the experimental hut trial, the ITNs were tested against free-flying wild pyrethroid-resistant Anopheles arabiensis and Culex quinquefasciatus in Lupiro, Ifakara\n", - "*p-value>0.05\n", - "columns: ['Unnamed: 0_level_0 - Unnamed: 0_level_1', 'WHO cone - OR (95% CI)', 'Tunnel - OR (95% CI)', 'I-ACT - OR (95% CI)', 'Hut - OR (95% CI)', 'Huts with netting window - OR (95% CI)']\n", - "\n", - "{\"0\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Anopheles anabiensis (resistant)\",\"WHO cone - OR (95% CI)\":\"Anopheles anabiensis (resistant)\",\"Tunnel - OR (95% CI)\":\"Anopheles anabiensis (resistant)\",\"I-ACT - OR (95% CI)\":\"Anopheles anabiensis (resistant)\",\"Hut - OR (95% CI)\":\"Anopheles anabiensis (resistant)\",\"Huts with netting window - OR (95% CI)\":\"Anopheles anabiensis (resistant)\"},\"1\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Overall\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"2\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"3\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"0.04 (0.03, 0.07)\",\"Tunnel - OR (95% CI)\":\"1.33 (1.17, 1.51)\",\"I-ACT - OR (95% CI)\":\"1.55 (1.16, 2.07)\",\"Hut - OR (95% CI)\":\"2.38 (2.09, 2.72)\",\"Huts with netting window - OR (95% CI)\":\"2.43 (1.88, 3.14)\"},\"4\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Unwashed\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"5\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"6\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"0.05 (0.20, 0.09)\",\"Tunnel - OR (95% CI)\":\"1.42 (1.19, 1.70)\",\"I-ACT - OR (95% CI)\":\"1.61 (1.05, 2.49)\",\"Hut - OR (95% CI)\":\"2.53 (1.96, 3.26)\",\"Huts with netting window - OR (95% CI)\":\"2.55 (1.76, 3.68)\"},\"7\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Washed, 20\\u00d7\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"8\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"9\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"0.04 (0.2, 0.09)\",\"Tunnel - OR (95% CI)\":\"1.23 (1.03, 1.48)\",\"I-ACT - OR (95% CI)\":\"1.50 (1.02, 2.23)\",\"Hut - OR (95% CI)\":\"2.36 (2.02, 2.77)\",\"Huts with netting window - OR (95% CI)\":\"2.32 (1.63, 3.31)\"},\"10\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Culex quinquefasciatus (resistant)\",\"WHO cone - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\",\"Tunnel - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\",\"I-ACT - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\",\"Hut - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\",\"Huts with netting window - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\"},\"11\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Overall\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"12\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"13\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"1.05 (0.57, 1.93)*\",\"Tunnel - OR (95% CI)\":\"2.55 (2.26, 2.55)\",\"I-ACT - OR (95% CI)\":\"13.40 (10.75, 16.67)\",\"Hut - OR (95% CI)\":\"1.50 (1.31, 1.73)\",\"Huts with netting window - OR (95% CI)\":\"1.40 (1.19, 1.63)\"},\"14\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Unwashed\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"15\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"16\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"0.74 (0.31, 1.79)*\",\"Tunnel - OR (95% CI)\":\"2.52 (2.13, 3.00)\",\"I-ACT - OR (95% CI)\":\"12.71 (9.43, 17.14)\",\"Hut - OR (95% CI)\":\"1.52 (1.23, 1.88)\",\"Huts with netting window - OR (95% CI)\":\"1.25 (1.00, 1.57)\"},\"17\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Washed, 20\\u00d7\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"18\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"19\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"1.46 (0.62, 3.50)*\",\"Tunnel - OR (95% CI)\":\"2.58 (2.17, 3.06)\",\"I-ACT - OR (95% CI)\":\"14.11 (10.42, 19.11)\",\"Hut - OR (95% CI)\":\"1.50 (1.25, 1.80)\",\"Huts with netting window - OR (95% CI)\":\"1.55 (1.24, 1.94)\"},\"20\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"An gambiae s.s. (susceptible)\",\"WHO cone - OR (95% CI)\":\"An gambiae s.s. (susceptible)\",\"Tunnel - OR (95% CI)\":\"An gambiae s.s. (susceptible)\",\"I-ACT - OR (95% CI)\":\"An gambiae s.s. (susceptible)\",\"Hut - OR (95% CI)\":\"An gambiae s.s. (susceptible)\",\"Huts with netting window - OR (95% CI)\":\"An gambiae s.s.\n", - "\n", - "header: Statistical analysis\n", - "\n", - "Data were entered and validated in Excel using double entry system and exported into STATA 16 software (StataCorp LLC, College Station TX, USA) for further cleaning and analysis. Descriptive statistics were used for data summarization, where arithmetic mean percentage of mosquito control corrected mortality at 72 h and arithmetic mean percentage blood-feeding inhibition for each test and species was presented. Control corrected mortality was calculated by using Abbott's formula: (treatment mortality - control mortality/(1 - control mortality)*100% and blood-feeding inhibition was calculated by taking the total number of unfed mosquitoes divided by total mosquito recapture per hut night [24].\n", - "\n", - "Multivariable mixed-effect logistic regression with binomial error and log link was used to compare the performance of Interceptor(r) G2 to Interceptor(r) on the mortality and blood-feeding endpoints for each species in WHO cone (mortality only), tunnel, I-ACT and experimental huts. Fixed effects were treatment, volunteer, hut number/position (for experimental hut) and night of the experiment. The same regression was used for the comparison of hut design, whereby an interaction term between hut design and ITN type was also included in the model.\n", - "\n", - "header: Table 1: Outcomes measured in WHO cone bioassays, tunnel, I-ACT and experimental hut tests\n", - "footer: a Not reported\n", - "columns: ['Variable', 'Cone bioassay', 'WHO tunnel test', 'I-ACT', 'Experimental hut']\n", - "\n", - "{\"0\":{\"Variable\":\"Primary outcome\",\"Cone bioassay\":\"72-h mortality\",\"WHO tunnel test\":\"72-h mortality\",\"I-ACT\":\"72-h mortality\",\"Experimental hut\":\"72-h mortality\"},\"1\":{\"Variable\":\"Secondary outcome\",\"Cone bioassay\":null,\"WHO tunnel test\":\"Blood-feeding\",\"I-ACT\":\"Blood-feeding\",\"Experimental hut\":\"Blood-feeding\"},\"2\":{\"Variable\":\"Other outcomes\",\"Cone bioassay\":\"Knockdown at 60 min (KD60)\",\"WHO tunnel test\":null,\"I-ACT\":null,\"Experimental hut\":\"Deterrence a and induced exophily a\"}}\n", - "\n", - "header: Impact of hut design on mosquito mortality estimates\n", - "\n", - "To explore the effect of experimental hut design on the measured efficacy of the ITNs, two experiments were conducted between July and August 2021 using ten huts with the same five treatment arms as per the main experimental huts experiment. For the first experiment, conducted over 5 nights, windows were completely covered with white cloth to block light, ventilation and exit. For the remaining 25 nights, 5 huts had windows blocked with netting to allow light and ventilation but to block exit and five huts had exit traps as per main trial. Like the main experimental hut trial, the design was a fully balanced 5 x 5 Latin square with five huts per condition (window exit traps vs. netting windows). Each morning mosquitoes were sorted, scored and held for 72 h to observe delayed mortality for each treatment arm.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `Observation` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: WHO tunnel test\n", - "\n", - "The tunnel tests were carried out from August to November 2020 according to standard WHO procedures [9]. Five 25 cm x 25 cm net pieces per ITN/control were cut adjacent to the swatches cut for cone assays from three nets per treatment arm to make a total of 15 pieces per study arm and to account for possible intra-net variability of insecticide loadings. Five tunnels were run with one sample from each treatment arm with one mosquito strain on a single night. Over 60 nights, all 15 pieces of ITNs per study arm were tested with four mosquito strains.\n", - "\n", - "Non-blood-fed nulliparous females, 5-8 days old, sugar starved for 6-8 h were released in a 60-cm-long glass tunnel. At each end of the tunnel, a 25-cm square mosquito cage covered with polyester netting was fitted. At one third of the length, the netting sample was affixed. The surface of netting \"available\" to mosquitoes is 400 cm2 (20 cm x 20 cm), with 9 x 1-cm-diameter holes: one hole is located at the centre of the square; the other eight were equidistant and located 5 cm from the border. In the shorter section of the tunnel, a small rabbit, its back shaved and restrained in a mesh tunnel, was placed as bait (Fig. 1). In the cage at the end of the longer section of the tunnel, 100 female mosquitoes (one strain \n", - "per replicate) were introduced at 21:00. The following morning at 09:00, the mosquitoes were removed using a mouth aspirator and counted separately from each section of the tunnel, and mortality and blood-feeding rates were recorded. The mosquitoes were placed in paper cups and provided with cotton wool moistened with 10% sugar solution. Mortality was recoded at 24, 48 and 72 h. Mosquitoes challenged to untreated nets were used as controls to monitor the quality of the bioassay. The bioassays and holding period were carried out at 27 degC+-2 degC and 60%-100% relative humidity. Overall mortality was measured by pooling the mortalities of mosquitoes from the two sections of the tunnel. Acceptable feeding success and mortality in controls were 50% and 10%, respectively. Any tests not meeting the specified control cut-off were repeated.\n", - "\n", - "header: Mosquito blood-feeding in WHO tunnel, I-ACT and experimental hut\n", - "\n", - "For all bioassays and strains, blood-feeding inhibition was very high (Fig. 3, Table 3). Both Interceptor(r) G2 and Interceptor(r) gave high levels of blood-feeding inhibition in all \"free-flying\" bioassays.\n", - "\n", - "header: Background\n", - "\n", - "As funding for malaria control falls and mosquito resistance to current public health insecticides increases, new and durable vector control tools that utilise new insecticide classes are needed [1]. For insecticide resistance management, a new Insecticide Treated Net (ITN) Interceptor(r) G2 has been developed, coated with a mixture of the pyrethroid alpha-cypermethrin and the pro-insecticide chlorfenapyr [2]. Chlorfenapyr is an Insecticide Resistance Action Committee (IRAC) Group 13 insecticide, having a pyrrole chemistry that uncouples oxidative phosphorylation via disruption of the proton gradient (as a protonophore) to short circuit mitochondrial respiration through inner mitochondrial membranes of insect cells so that ATP cannot be synthesized, subsequently robbing insects of energy, resulting in death [3, 4]. Metabolic resistance is one of the main mechanisms of resistance observed in malaria vectors [5] where one or several detoxification gene families--cytochrome P450s (P450s), esterases and glutathione S-transferases (GSTs)--are overproduced to detoxify insecticides [6]. While this metabolism is a detoxification process, it can increase the potency of a pro-insecticide and may therefore be exploited as a means to control metabolically resistant insect populations [3]. The unique mode of action of chlorfenapyr on an insect's metabolism is particularly relevant for the control of vectors harboring insecticide resistance mechanisms, as increased metabolic activity increases the conversion of the pro-insecticide into its potent n-dealkylated form and will consequently increase mosquito mortality [7].\n", - "\n", - "For any new ITN to be used in public health, a thorough evaluation of its safety, efficacy and effectiveness is conducted based on World Health Organisation (WHO) standards and criteria [8]. The methods and scope of the laboratory tests and field trials required to attain WHO Prequalification (PQ) listing for ITNs are outlined in a set of WHO guidelines, last updated in 2013 [9]. As part of these guidelines, WHO recommends a set of standardised laboratory tests to ascertain the bioefficacy of pyrethroid ITNs, i.e., the ability of ITN products to kill, incapacitate (knock down) and prevent mosquitoes from blood-feeding. Laboratory bioefficacy tests are also a critical component of ITN durability evaluation used to confirm continued ITN bioefficacy after long-term use in the community [10]. The simplest and most commonly applied ITN bioefficacy test is the WHO cone bioassay where mosquitoes are held close to ITN in plastic cones and the number of mosquitoes knocked down (incapacitated) or killed is counted [9]. For ITNs with feeding inhibition mode of action, the WHO tunnel test is used, where a swatch of ITN with small holes (9 x 1-cm diameter) is made and is placed between mosquitoes and small animal bait overnight [11]. The WHO tunnel test has been shown to agree with experimental but data, using laboratory-reared mosquitoes released into the huts [12]. Thresholds for the mosquito knockdown rate (95%) and mosquito mortality rate (80%) and blood-feeding inhibition (90%) using pyrethroid-susceptible _Anopheles_ mosquitoes serve as performance benchmarks; candidate products are required to fulfill minimum performance standards, which have been established by WHO for qualification to be listed/recommended for their public health values to sustain and protect users from disease transmissions. This includes their physical durability and chemical contents recovered from nets replaced in the field over 3 years or as predicted from wash-resistance testing. For a net to be classified as a long-lasting ITN, i.e., LLIN, > 80% of nets tested should pass WHO cone/tunnel performance benchmarks after 3 years of use [13].\n", - "\n", - "Cone tests are relatively easy to perform, high throughput and sensitive to detecting changes in bioavailable pyrethroids that act through rapid contact neurotoxicity. However, chlorfenapyr requires the mosquito to be metabolically and/or physiologically active (as it would be when encountering the ITN under user conditions) to bioactivate into the potent n-dealkylated form which elicits increased mosquito mortality. As mosquitoes are more metabolically active at night when flying and host-seeking during their typical circadian rhythms, the tunnel test may be more appropriate [14].\n", - "\n", - "The President's Malaria Initiative (PMI) currently uses WHO Tunnel tests for the durability monitoring of chlorfenapyr nets with 4 samples per net evaluated and 48 nets per sampling point [15]. This requires large numbers of mosquitoes and access to small animals for testing, so it cannot be done at all facilities in malaria-endemic areas. To accommodate high-throughput evaluation of whole ITNs for durability evaluation, the Ifakara ambient chamber test (I-ACT) was developed [16]. The Ifakara ambient chamber test (I-ACT) is not currently a recognized method \n", - "approved by the WHO. However, it is currently seeking confirmation by direct comparison to approved methods. This is of particular importance where novel slow-acting chemistries cannot achieve the benchmark standards established for conventional pyrethroid ITN exposures yet may prove to be highly efficacious when tested according to their discrete modes of action. Like the experimental hut, I-ACT makes use of whole nets and human hosts to evaluate bioefficacy of field-used ITNs, but the assay is done under controlled conditions with laboratory-reared mosquitoes. Mosquitoes are released into net chambers within which the test net is hung with a volunteer sleeping beneath, and all mosquitoes are recaptured in the morning. The use of laboratory mosquitoes (rather than conducting experimental hut trials with wild mosquitoes) is done to improve the precision of estimates by releasing mosquito cohorts of a defined number of mosquitoes with high recapture rate (99%) at the conclusion of exposure intervals.\n", - "\n", - "I-ACT bioassay has been used for evaluation of pyrethroid ITNs, was able to discriminate between products [17] and agreed with results of combined WHO cone and tunnel tests [16]. The I-ACT may show suitability for use in evaluation of pro-insecticides because: (i) the assay is run overnight, favouring malarial mosquitoes' circadian rhythms, (ii) the mosquitoes have a large arena to fly in, allowing them to be metabolically active, (iii) the mosquitoes have the opportunity to feed ad libitum and (iv) the I-ACT test eliminates infected mosquitoes that may represent a malaria transmission potential that cannot be completely excluded in WHO experimental huts--a significant safety benefit to volunteers. Therefore, the I-ACT method was evaluated alongside standard methods (i.e., experimental huts, WHO cone and tunnel tests) to provide direct evidence of its comparability. Interceptor(r) (alpha-cypermethrin only) and Interceptor(r) G2 (alpha-cypermethrin and chlorfenapyr) were evaluated to compare the performance of each assay for durability monitoring of pro-insecticidal ITNs.\n", - "\n", - "header: Selection of the correct strain for bioassay\n", - "\n", - "The current study demonstrated that using the correct mosquito strain when evaluating ITNs is a critical consideration. The benefit of chlorfenapyr was only seen against the resistant strains, and against the susceptible strains Interceptor(r) was more efficacious because it contains a higher dose of alphacypermethrin. Comparing between the products using both a susceptible and a resistant strain revealed the different modes of action of Interceptor(r) and Interceptor(r) G2.\n", - "\n", - "header: Considerations for each bioassay\n", - "\n", - "Both I-ACT and experimental huts use the whole bednet and human host, which represent user conditions; however, there is no risk of disease for human participants in I-ACT because the mosquitoes used are laboratory reared. The WHO tunnel test is a well-established bioassay that has been shown to agree with experimental hut tests in this evaluation as well as others [12, 14]. However, it tests only a sample of net and is therefore only able to accurately measure the chemical durability of an ITN and not the chemical _and_ physical durability. In addition, it requires a high number of mosquitoes (100 per replicate) and more testing days compared to I-ACT. In I-ACT there is possibility of testing more than one species or strain per chamber compared to tunnel test, which makes results more comparable. The I-ACT is a new assay that consistently predicts the results of experimental hut tests, measures with a similar magnitude of difference as a tunnel test and provides high-throughput and precise estimates of whole ITN protective efficacy in this study with chlorfenapyr as well as in previous studies with pyrethroid nets [17] at lower cost than tunnel tests. However, this method is yet to become a WHO/PQ-accepted testing modality despite the observed higher precision vs. current WHO-recommended modalities. The detailed descriptions of cost implications for each bioassay and how to build an I-ACT with the cost of \n", - "establishment are described in Additional file 1: Table S4 and Additional file 2 respectively.\n", - "\n", - "Laboratory and/or semi-field bioassays are not replacements for field evaluation, but they are useful if they can predict the results of field tests because they are substantially cheaper and more standardised. Experimental hut tests remain the gold standard test because they represent field conditions and can be related to public health impact [48]. However, variation in mosquito entrance in huts per night is highly heterogeneous and requires a high level of replication to achieve precision [23]. In addition, variation in hut designs affects outcome measurement [34] and should be considered when interpreting results. However, comparing between products, the same trends were consistently seen: Interceptor(r) G2 was superior to Interceptor(r) against resistant mosquitoes when they were tested in a \"free-flying\" scenario and Interceptor(r) was superior to Interceptor(r) G2 against susceptible strains, while the cone test was suitable for evaluating pyrethroids but not pro-insecticides such as chlorfenapyr.\n", - "\n", - "header: Sample size and power\n", - "\n", - "A sample size calculation for generalized linear mixed effects models (GLMMs) through simulation [23] in R statistical software 3.02 [https://www.r-project.org/](https://www.r-project.org/) was performed for the I-ACT and experimental huts. For the I-ACT, to detect a 10% effect difference between the nets, simulations were performed using an estimated mosquito mortality of 80% for unwashed Interceptor(r) G2, 70% for unwashed Interceptor(r) and 10% for SafiNet(r) (deliberately holed). The design was for five arms replicated in two groups, with each volunteer testing each treatment one time over 20 replicates within its group (i.e. 40 replicates per arm), with an inter-observational variance of 0.42 for the night of observation based on the variance of the random effects observed in a previous study. The evaluation was powered at 81% for 15 mosquitoes of each strain released per chamber using 1000 simulations.\n", - "\n", - "For experimental huts, simulation was performed using a Latin square design with volunteers rotating nightly and accounted for as a fixed effect for 25 nights of data collection in 10 huts. The study had 84% power to detect the difference between Interceptor(r) G2 LN and Interceptor(r) LN on mosquito mortality endpoints, with two huts per treatment arm (i.e. 50 replicates per arm). The study power was calculated based on a previous study of pyrethroid nets conducted in the same area, with the estimation of 20 _An. arabiensis_ mosquitoes per night per hut, 21% mortality in unwashed Interceptor(r) G2, 7% in 20x washed Interceptor(r) G2 and 10% in unwashed Interceptor(r) vs. 4% in 20 times washed and 1% in negative control, and overdispersion parameter for daily variation was set at intermediate 0.44.\n", - "\n", - "To test whether I-ACT measures similarly to the WHO tunnels (H0\\(m\\)2=_m_1) a power calculation using Satterthwaites _t_-test was conducted in STATA 16 software (StataCorp LLC, College Station TX, USA) for two unpaired sample means assuming unequal variance. The power estimated was > 90% based on estimates from previous studies conducted in the same setting: mean mortality of 81.5% for WHO tunnel test with an assumed daily variation of 0.5 and 15 replicates per arm and mean\n", - "mortality estimates of 86.5% and an assumed daily variation of 0.42 with 40 replicates per arm were considered for I-ACT.\n", - "\n", - "header: WHO cone bioassays\n", - "\n", - "WHO cone tests were performed between October 2020 and February 2021 according to standard WHO procedures [9], with two modifications: the test board was set at 60deg tilt [19] and holes were cut in the boards (Fig. 1) to maximise mosquito contact with the test nets during exposures. From each treatment arm, three nets were randomly sampled, and five net swatches of 25 cm x 25 cm size were cut from positions 1 to 5. On each netting sample, four standard WHO cones were positioned over net swatches and secured in place using tape. Five laboratory-bred mosquitoes were introduced into each cone and exposed for 3 min, and four replicates were conducted per net piece (20 mosquitoes were exposed per net piece).\n", - "\n", - "After each exposure, the mosquitoes were removed gently from the cones (by mouth aspiration), placed in paper cups and provided with cotton wool moistened with 10% sugar solution. Knockdown (KD60) was recorded after 60 min and mortality at 24, 48 and 72 h. Mosquitoes challenged to untreated nets were used as controls to monitor the quality of the bioassay. The bioassays and holding period were carried out at 27 degC+-2 degC and 60%-100% relative humidity. Acceptable control mortality was <= 10% after 72 h holding time. Any tests exceeding the specified control cut off were repeated.\n", - "\n", - "header: Test nets\n", - "\n", - "ITNs were supplied by BASF in November 2019 and stored at optimal conditions (25 to 32 degC) before testing and during the experimental phase. Interceptor(r) G2 nets were from two different production batches (two batches were used for experimental hut only and one batch for other biossays) and Interceptor(r) from one production batch. Interceptor(r) G2 is made from 100-denier polyester coated with a mixture of wash-resistant formulation containing 200 mg/m2 chlorfenapyr and 100 mg/m2alpha-cypermethrin. Interceptor(r) LN is made from 100-denier polyester coated with 200 mg/m2 alpha-cypermethrin. SafiNet is an untreated polyester net manufactured by A to Z. Textiles Mills, Ltd., Tanzania, and was used as a control. The nets were washed 20 times according to a protocol adapted from the standard WHO washing procedure [9] using 20 g/l palm soap (Jamaa) and dried flat in a shaded area. The interval of time used between two washes (i.e. regeneration time) was 1 day for both Interceptor(r) G2 and Interceptor(r) TTNs.\n", - "\n", - "header: Cone test results: Use of I-ACT for durability monitoring\n", - "\n", - "I-ACT is designed to be a bridging bioassay that reproduces a more natural interaction between the mosquito and human hosts beneath a bednet [16]. Blood-feeding inhibition and 72-h mortality measured by WHO tunnel and I-ACT were similar, meaning that the use of I-ACT for durability monitoring using WHO thresholds of 80% mortality and 90% feeding inhibition is appropriate. We suggest that I-ACT can be a useful alternative to tunnel tests for bioefficacy monitoring and upstream product evaluation as both the bioassays measure a similar odds ratio and I-ACT gives a precise estimation of bioefficacy because it uses laboratory-reared mosquitoes. This is particularly important when considering the longitudinal evaluation of product performance as occurs in durability bioefficacy evaluation for two reasons. Currently, experimental huts tests are being used to evaluate the insecticidal durability of Interceptor(r) G2 [33]. It was been observed at all experimental hut testing sites that mosquito resistance to insecticides has intensified through time [34]. This needs to be factored into considerations about durability testing. ITN protection may wane more quickly against more resistant mosquito populations as nets age [35], and if older ITNs are tested 3 years after baseline efficacy has been calculated, it is possible that they will be tested against a more resistant mosquito population than that at baseline. Therefore, use of carefully maintained laboratory strains may be helpful to minimise differences in insecticide resistance levels. Second, a previous longitudinal durability trial of ITNs [17] using standard WHO cone and tunnel tests as well as I-ACT shows that ITNs are highly heterogeneous, with up to 100% variance after use (John Bradley personal communication), because of variable use practices (washing, drying, care, sleeping space) [36, 37] that result in differential levels of damage and insecticide content [38]. This fact, coupled with WHO/PQ accepted intra-net insecticidal manufacturing heterogeneities [39], shows the need to expedite testing modalities that improve comprehension of net performances by donor organisations, national malaria control programmes (NMCPs) and manufacturers alike.\n", - "\n", - "header: Table 4: Number and proportion of net pieces passing using each laboratory bioassay based on WHO criteria of 80% control corrected mortality, 95% knockdown in WHO cone test, 90% blood-feeding inhibition or 80% control corrected mortality in tunnel test\n", - "footer: The WHO criteria for tunnel were adopted for I-ACT. Whole nets were used for I-ACT\n", - "columns: ['ITNs type - Unnamed: 0_level_1', 'Number of net pieces passing - Cone (N = 60)', 'Number of net pieces passing - Tunnel (N = 15)', 'Number of net pieces passing - I-ACT (N = 40)']\n", - "\n", - "{\"0\":{\"ITNs type - Unnamed: 0_level_1\":\"Anopheles arabiensis (Kingani strain, resistant)\",\"Number of net pieces passing - Cone (N = 60)\":\"Anopheles arabiensis (Kingani strain, resistant)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"Anopheles arabiensis (Kingani strain, resistant)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"Anopheles arabiensis (Kingani strain, resistant)\"},\"1\":{\"ITNs type - Unnamed: 0_level_1\":\"Unwashed\",\"Number of net pieces passing - Cone (N = 60)\":\"n (%)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"n (%)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"n (%)\"},\"2\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Number of net pieces passing - Cone (N = 60)\":\"59 (98)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"11 (73)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"38 (95)\"},\"3\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae G2\",\"Number of net pieces passing - Cone (N = 60)\":\"22 (37)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"13 (87)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"38 (95)\"},\"4\":{\"ITNs type - Unnamed: 0_level_1\":\"Washed, 20\\u00d7\",\"Number of net pieces passing - Cone (N = 60)\":null,\"Number of net pieces passing - Tunnel (N = 15)\":null,\"Number of net pieces passing - I-ACT (N = 40)\":null},\"5\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Number of net pieces passing - Cone (N = 60)\":\"59 (98)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"12 (80)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"36 (90)\"},\"6\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae G2\",\"Number of net pieces passing - Cone (N = 60)\":\"21 (35)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"10 (67)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"38 (95)\"},\"7\":{\"ITNs type - Unnamed: 0_level_1\":\"An. gambiae ss. (Kisumu strain, susceptible)\",\"Number of net pieces passing - Cone (N = 60)\":\"An. gambiae ss. (Kisumu strain, susceptible)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"An. gambiae ss. (Kisumu strain, susceptible)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"An. gambiae ss. (Kisumu strain, susceptible)\"},\"8\":{\"ITNs type - Unnamed: 0_level_1\":\"Unwashed\",\"Number of net pieces passing - Cone (N = 60)\":null,\"Number of net pieces passing - Tunnel (N = 15)\":null,\"Number of net pieces passing - I-ACT (N = 40)\":null},\"9\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Number of net pieces passing - Cone (N = 60)\":\"50 (83)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"15 (100)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"40 (100)\"},\"10\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae G2\",\"Number of net pieces passing - Cone (N = 60)\":\"2 (3)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"14 (100)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"40 (100)\"},\"11\":{\"ITNs type - Unnamed: 0_level_1\":\"Washed, 20\\u00d7\",\"Number of net pieces passing - Cone (N = 60)\":null,\"Number of net pieces passing - Tunnel (N = 15)\":null,\"Number of net pieces passing - I-ACT (N = 40)\":null},\"12\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Number of net pieces passing - Cone (N = 60)\":\"38 (63)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"15 (100)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"40 (100)\"},\"13\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae G2\",\"Number of net pieces passing - Cone (N = 60)\":\"10 (17)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"15 (100)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"40 (100)\"}}\n", - "\n", - "header: Resistant mosquitoes\n", - "\n", - "For pyrethroid-resistant _An. arabiensis_, blood-feeding inhibition was lower with Interceptor(r) G2 than Interceptor(r) in WHO tunnel: 87.8% (95% CI: 82.9- 92.7) vs. 92.9% (95% CI: 89.8-96.0) OR blood-fed = 1.92 [95% CI:14.8-2.48], \\(p\\) < 0.001 and I-ACT: 89.8% (95% CI: 85.8-93.7) vs. 93.9% (95% CI: 91.5-96.3) (OR blood-fed = 1.67 [95% CI: 1.07-2.62], \\(p\\) = 0.024). There was no difference between the two products measured in experimental huts: 95.9% (95% CI: 93.7-98.2) vs. 96.3% (95% CI: 93.0-99.7) (OR blood-fed = 1.06 [95% CI: 0.54-2.10], \\(p\\) = 0.857). A similar trend was observed for the 20x washed nets.\n", - "\n", - "Blood-feeding inhibition was similar for Interceptor(r) G2 compared to Interceptor(r) with _Cx. Quinquefasciatus_ in WHO tunnel: 97.8% (95CI: 96.1-99.5) vs. 97.1% (95% CI: 95.9-98.3) (OR blood fed = 1.36 [95% CI: 0.85-2.17], \\(p\\) = 0.196) and experimental huts: 97.2% (95% CI: 95.9-98.4) vs. 97.2% (95% CI: 95.8-98.7) (OR = 1.04 [95% CI: 0.76-1.42], \\(p\\) = 0.827), whilst in I-ACT the difference was significantly different: 99.0% (95% CI: 98.1-99.9) vs. 91.3% (95% CI: 88.6-93.9) (OR blood fed = 0.11 [95% CI: 0.05-0.26], \\(p\\) < 0.001). A similar trend was observed for the 20x washed nets (Fig. 3a, b, Table 3). The percentage blood-feeding inhibition and mean difference between bioassays for all mosquito species are presented in Additional file 1: Table S2.\n", - "\n", - "header: Discussion\n", - "\n", - "The superiority of Interceptor(r) G2 over Interceptor(r) for 72-h mortality endpoints, which challenged metabolically resistant _An. arabiensis_ and _Cx. quinquefasciatus_, was clearly seen in all \"free-flying\" bioassays but not in the WHO cone test where mosquitoes are unable to fly around and be metabolically active. This observation has been seen by several other authors [14, 25-27] leading to a consensus that the overnight tunnel test using a 72-h mortality endpoint is a superior laboratory bioassay for evaluation of chlorfenapyr [2, 28] relative to the cone test, which was designed to test contact insecticides that do not require metabolic conversion into a secondary metabolite (most ITN insecticides are classified as IRAC Group 3 sodium channel modulators). It has been routinely observed in experimental hut bioassays that Interceptor(r) G2 gives greater mortality that Interceptor(r) among pyrethroid-resistant mosquitoes [14, 25-27], while mosquitoes are foraging at night when their metabolic rate is high. Both the tunnel test and the I-ACT consistently predicted the superiority of Interceptor(r) G2 over Interceptor(r) observed in experimental hut tests.\n", - "\n", - "The results of this study's mortality elicited on _Cx. quinqufaciatus_ from chlorfenapyr is consistent with other studies over the past decade [29, 30]. Preliminary investigations for chlorfenapyr intoxication in metabolically resistant _Cx. quinquefasciatus_ in experimental huts by [31] demonstrated relatively high levels of control in both ITNs and for IRS in Benin. Later, [27] observed 3 x mortality with chlorfenapyr + alpha-cypermethrin-treated nets compared to pyrethroid-only nets demonstrating the effect of chlorfenapyr on free-flying exposures that optimize conversion rates of the pro-insecticide. However, it is also known that once ITNs develop holes, a pyrethroid treatment offers little or no protection against pyrethroid-resistant _Cu. quinquefaciatus_[32]. The relatively high level of control sustained in _Cx. quinqufaciatus_ in this study and relatively good mortality are important resistance management attributes that make inclusion of chlorfenapyr into vector control interventions a significant advancement for active ingredient options.\n", - "\n", - "header: Table 1: Outcomes measured in WHO cone bioassays, tunnel, I-ACT and experimental hut tests\n", - "footer: a Not reported\n", - "columns: ['Variable', 'Cone bioassay', 'WHO tunnel test', 'I-ACT', 'Experimental hut']\n", - "\n", - "{\"0\":{\"Variable\":\"Primary outcome\",\"Cone bioassay\":\"72-h mortality\",\"WHO tunnel test\":\"72-h mortality\",\"I-ACT\":\"72-h mortality\",\"Experimental hut\":\"72-h mortality\"},\"1\":{\"Variable\":\"Secondary outcome\",\"Cone bioassay\":null,\"WHO tunnel test\":\"Blood-feeding\",\"I-ACT\":\"Blood-feeding\",\"Experimental hut\":\"Blood-feeding\"},\"2\":{\"Variable\":\"Other outcomes\",\"Cone bioassay\":\"Knockdown at 60 min (KD60)\",\"WHO tunnel test\":null,\"I-ACT\":null,\"Experimental hut\":\"Deterrence a and induced exophily a\"}}\n", - "\n", - "header: Table 2 Logistic regression analysis to compare mosquito mortality in Interceptor® and Interceptor® G2 ITNs after exposure in WHO cone and tunnel tests, Ifakara ambient chamber test and experimental hut, Tanzania\n", - "footer: Odds ratio adjusted for net type, volunteer, hut position/number and day of the experiment\n", - "Laboratory-reared mosquitoes were used for WHO cone, WHO tunnel and I-ACT\n", - "For the experimental hut trial, the ITNs were tested against free-flying wild pyrethroid-resistant Anopheles arabiensis and Culex quinquefasciatus in Lupiro, Ifakara\n", - "*p-value>0.05\n", - "columns: ['Unnamed: 0_level_0 - Unnamed: 0_level_1', 'WHO cone - OR (95% CI)', 'Tunnel - OR (95% CI)', 'I-ACT - OR (95% CI)', 'Hut - OR (95% CI)', 'Huts with netting window - OR (95% CI)']\n", - "\n", - "{\"0\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Anopheles anabiensis (resistant)\",\"WHO cone - OR (95% CI)\":\"Anopheles anabiensis (resistant)\",\"Tunnel - OR (95% CI)\":\"Anopheles anabiensis (resistant)\",\"I-ACT - OR (95% CI)\":\"Anopheles anabiensis (resistant)\",\"Hut - OR (95% CI)\":\"Anopheles anabiensis (resistant)\",\"Huts with netting window - OR (95% CI)\":\"Anopheles anabiensis (resistant)\"},\"1\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Overall\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"2\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"3\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"0.04 (0.03, 0.07)\",\"Tunnel - OR (95% CI)\":\"1.33 (1.17, 1.51)\",\"I-ACT - OR (95% CI)\":\"1.55 (1.16, 2.07)\",\"Hut - OR (95% CI)\":\"2.38 (2.09, 2.72)\",\"Huts with netting window - OR (95% CI)\":\"2.43 (1.88, 3.14)\"},\"4\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Unwashed\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"5\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"6\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"0.05 (0.20, 0.09)\",\"Tunnel - OR (95% CI)\":\"1.42 (1.19, 1.70)\",\"I-ACT - OR (95% CI)\":\"1.61 (1.05, 2.49)\",\"Hut - OR (95% CI)\":\"2.53 (1.96, 3.26)\",\"Huts with netting window - OR (95% CI)\":\"2.55 (1.76, 3.68)\"},\"7\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Washed, 20\\u00d7\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"8\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"9\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"0.04 (0.2, 0.09)\",\"Tunnel - OR (95% CI)\":\"1.23 (1.03, 1.48)\",\"I-ACT - OR (95% CI)\":\"1.50 (1.02, 2.23)\",\"Hut - OR (95% CI)\":\"2.36 (2.02, 2.77)\",\"Huts with netting window - OR (95% CI)\":\"2.32 (1.63, 3.31)\"},\"10\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Culex quinquefasciatus (resistant)\",\"WHO cone - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\",\"Tunnel - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\",\"I-ACT - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\",\"Hut - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\",\"Huts with netting window - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\"},\"11\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Overall\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"12\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"13\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"1.05 (0.57, 1.93)*\",\"Tunnel - OR (95% CI)\":\"2.55 (2.26, 2.55)\",\"I-ACT - OR (95% CI)\":\"13.40 (10.75, 16.67)\",\"Hut - OR (95% CI)\":\"1.50 (1.31, 1.73)\",\"Huts with netting window - OR (95% CI)\":\"1.40 (1.19, 1.63)\"},\"14\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Unwashed\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"15\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"16\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"0.74 (0.31, 1.79)*\",\"Tunnel - OR (95% CI)\":\"2.52 (2.13, 3.00)\",\"I-ACT - OR (95% CI)\":\"12.71 (9.43, 17.14)\",\"Hut - OR (95% CI)\":\"1.52 (1.23, 1.88)\",\"Huts with netting window - OR (95% CI)\":\"1.25 (1.00, 1.57)\"},\"17\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Washed, 20\\u00d7\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"18\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"19\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"1.46 (0.62, 3.50)*\",\"Tunnel - OR (95% CI)\":\"2.58 (2.17, 3.06)\",\"I-ACT - OR (95% CI)\":\"14.11 (10.42, 19.11)\",\"Hut - OR (95% CI)\":\"1.50 (1.25, 1.80)\",\"Huts with netting window - OR (95% CI)\":\"1.55 (1.24, 1.94)\"},\"20\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"An gambiae s.s. (susceptible)\",\"WHO cone - OR (95% CI)\":\"An gambiae s.s. (susceptible)\",\"Tunnel - OR (95% CI)\":\"An gambiae s.s. (susceptible)\",\"I-ACT - OR (95% CI)\":\"An gambiae s.s. (susceptible)\",\"Hut - OR (95% CI)\":\"An gambiae s.s. (susceptible)\",\"Huts with netting window - OR (95% CI)\":\"An gambiae s.s.\n", - "\n", - "header: Thresholds are not a good idea in field trials\n", - "\n", - "Mortality measured in the experimental hut is lower than in the WHO tunnel tests or I-ACT meaning that tests\n", - "comparing products are appropriate rather than setting a threshold of efficacy. These study data support the WHO Pesticide Evaluation Scheme (WHOPES) efficacy criteria for phase II studies [9]. This is particularly important for field evaluation of public health tools because insecticide resistance involves highly complex mechanisms, genes and gene interactions [6] that are heterogeneous in time and space [40]. Insecticide resistance is modified by selection pressures from constantly changing environmental parameters, such as insecticide/pesticide usage in agriculture and biotic interactions with other organisms that affect both the overall mosquito responses to insecticides and the selection of resistance mechanisms [41]. However, in all comparisons tested in \"free-flying\" bioassays with resistant mosquito strains, it was possible to predict the superiority of Interceptor(r) G2 over Interceptor(r). Therefore, the use of a standard comparator net to provide performance benchmarks when evaluating the performance of new products is critical. The added value of a new product relative to pyrethroid-only nets has proven extremely useful when synthesising evidence for PBO nets [42].\n", - "\n", - "header: Mosquito test systems\n", - "\n", - "IHI laboratory maintains local mosquito strains with resistant mechanisms present in the local population to\n", - "avoid accidental release of new resistance alleles into the wild population. Four types of laboratory-reared mosquitoes with different resistance levels (confirmed at the time of testing) were used in the WHO cone, WHO tunnel and I-ACT tests: _Anopheles arabiensis_ (Kingani strain, upregulation of cytochrome p450s, 14% mortality upon exposure to WHO discriminating doses of alpha-cypermethrin, which is reversed by piperonyl butoxide (PBO) pre-exposure, which acts to block enzymatic detoxification mechanisms by inhibiting their metabolism), _Anopheles gambiae_ s.s. (Kisumu strain, fully susceptible to all insecticide classes at WHO discriminating doses), _Aedes aegypti_ (Bagamoyo strain, fully susceptible to all insecticide classes at WHO discriminating doses) and _Culex quinquefasciatus_ (Bagamoyo strain, 6% mortality upon exposure to WHO discriminating doses of alpha-cypermethrin, which is partially reversed (only moderate susceptibility is restored from inhibition of detoxifying mechanism) by PBO pre-exposure). In I-ACT and tunnel tests, sugar-starved (8 to 9 h) nulliparous female mosquitoes, 5-8 days old, were used. For cone bioassay, 2-5-day-old nulliparous sugar-fed female mosquitoes were challenged. Laboratory colonies were maintained by feeding larvae Tetramin(r) tropical fish food and adults on blood between 3 and 6 days after emergence and 10% sugar solution ad libitum. Temperature and humidity within the insectary are maintained between 27 degC+-5 degC and 40%-100% RH, relatively following MR4 guidelines [18]. For the experimental hut assays, only wild populations of _An. arabiensis_ and _Culex quinquefasciatus_ were collected in sufficient numbers for evaluation.\n", - "\n", - "header: Conclusion\n", - "\n", - "Interceptor(r) G2 clearly demonstrated superior bio-efficacy against resistant mosquitoes compared to Interceptor(r) when mosquitoes were challenged in free-flying bioassays. The I-ACT measured similar odds ratios as the WHO tunnel, currently used for testing of ITNs with chlorfenapyr. Both free-flying laboratory bioassays (WHO tunnel and I-ACT) predicted the results of the experimental hut test. Experimental hut design has an influence on mosquito mortality; however, using the odds ratio, all free-flying tests gave consistent findings. In this setting, I-ACT was a reliable bioassay for bioefficacy testing of Interceptor(r) G2 and may be a useful additional bioassay for durability monitoring of ITNs treated with pro-insecticides.\n", - "\n", - "header: Study area: Study design\n", - "\n", - "The study was a five-arm comparative efficacy study to determine the performances of Interceptor(r) G2 ITNs and Interceptor(r) against pyrethroid-susceptible and -resistant mosquitoes measured by WHO cone bioassay, WHO tunnel test, Ifakara ambient chamber test (I-ACT) and experimental huts. Study arms were: (i) Interceptor(r) G2, unwashed; (ii) Interceptor(r) G2, washed 20 times; (iii) Interceptor(r), unwashed; (iv) Interceptor(r), washed 20 times; (v) SafNet(r) (negative control). The primary performance metric upon which the study was powered is 72-h mortality (M72), which is measured in all four bioassays. A secondary outcome was blood-feeding, which was measured in the three free-flying bioassays. Additionally, knockdown at 60 min (KD60) was measured in cone tests (Table 1).\n", - "\n", - "header: Susceptible mosquitoes\n", - "\n", - "For unwashed Interceptor(r), blood-feeding inhibition was measured in tunnel and I-ACT and a similar trend was observed in susceptible mosquitoes as was seen in the resistant laboratory strains (Fig. 3c, d, Table 3). For susceptible _An. gambiae_, blood-feeding inhibition was lower with Interceptor(r) G2 than for Interceptor(r) WHO tunnel: 89.7% (95% CI: 83.3-96.1) vs. 94.5% (95% CI: 91.9-97.2), (OR blood fed = 1.95 [95% CI: 1.46, 2.61], \\(p\\) < 0.001) and similar in I-ACT: 97.4% (95% CI: 95.7-99.1) vs. 98.2% (95% CI: 96.8-99.5), (OR blood fed = 1.41 [95% CI: 0.63-3.17], \\(p\\) = 0.407. For susceptible _Ae. Aggyti_ in WHO tunnel, results showed: 93.8% (95% CI:90.6-97.1) vs. 96.3% (95% CI: 94.0-98.7) (OR blood fed = 2.03 [95% CI: 1.40-2.93], \\(p\\) < 0.001) and in I-ACT: 96.8% (95% CI: 94.8-98.9) vs. 98.3% (95% CI: 97.1-99.5) (OR blood fed = 1.92 [95% CI: 0.87-4.24],\n", - "\\(p=0.107\\)). As before, for both species a similar pattern was seen for the 20\\(\\times\\) washed nets.\n", - "\n", - "header: Statistical analysis\n", - "\n", - "Data were entered and validated in Excel using double entry system and exported into STATA 16 software (StataCorp LLC, College Station TX, USA) for further cleaning and analysis. Descriptive statistics were used for data summarization, where arithmetic mean percentage of mosquito control corrected mortality at 72 h and arithmetic mean percentage blood-feeding inhibition for each test and species was presented. Control corrected mortality was calculated by using Abbott's formula: (treatment mortality - control mortality/(1 - control mortality)*100% and blood-feeding inhibition was calculated by taking the total number of unfed mosquitoes divided by total mosquito recapture per hut night [24].\n", - "\n", - "Multivariable mixed-effect logistic regression with binomial error and log link was used to compare the performance of Interceptor(r) G2 to Interceptor(r) on the mortality and blood-feeding endpoints for each species in WHO cone (mortality only), tunnel, I-ACT and experimental huts. Fixed effects were treatment, volunteer, hut number/position (for experimental hut) and night of the experiment. The same regression was used for the comparison of hut design, whereby an interaction term between hut design and ITN type was also included in the model.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ClinicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `ClinicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `ClinicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Start_month\": {\"title\": \"Start Month\", \"description\": \"Numerical start month of the reporting period (some studies may report multiple time periods)\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"WHO tunnel test\",\"Start_month\":8,\"Start_year\":2020,\"End_month\":11,\"End_year\":2020}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Concentration_initial\": {\"title\": \"Insecticide concentration (initial)\", \"description\": \"Enter the initial concentration of the insecticide(s) for net type at the time of distribution.\"}, \"Net_washed\": {\"title\": \"Net Washed\", \"description\": \"Numerical count of number of net washes - 0 if none and NA if not reported.\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"Interceptor G2\",\"Insecticide\":\"alpha-cypermethrin, chlorfenapyr\",\"Concentration_initial\":\"100 mg\\/m2, 200 mg\\/m2\",\"Net_washed\":20.0},\"N02\":{\"Net_type\":\"Interceptor\",\"Insecticide\":\"alpha-cypermethrin\",\"Concentration_initial\":\"200 mg\\/m2\",\"Net_washed\":20.0},\"N03\":{\"Net_type\":\"SafiNet\",\"Insecticide\":null,\"Concentration_initial\":null,\"Net_washed\":20.0}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: WHO tunnel test\n", - "\n", - "The tunnel tests were carried out from August to November 2020 according to standard WHO procedures [9]. Five 25 cm x 25 cm net pieces per ITN/control were cut adjacent to the swatches cut for cone assays from three nets per treatment arm to make a total of 15 pieces per study arm and to account for possible intra-net variability of insecticide loadings. Five tunnels were run with one sample from each treatment arm with one mosquito strain on a single night. Over 60 nights, all 15 pieces of ITNs per study arm were tested with four mosquito strains.\n", - "\n", - "Non-blood-fed nulliparous females, 5-8 days old, sugar starved for 6-8 h were released in a 60-cm-long glass tunnel. At each end of the tunnel, a 25-cm square mosquito cage covered with polyester netting was fitted. At one third of the length, the netting sample was affixed. The surface of netting \"available\" to mosquitoes is 400 cm2 (20 cm x 20 cm), with 9 x 1-cm-diameter holes: one hole is located at the centre of the square; the other eight were equidistant and located 5 cm from the border. In the shorter section of the tunnel, a small rabbit, its back shaved and restrained in a mesh tunnel, was placed as bait (Fig. 1). In the cage at the end of the longer section of the tunnel, 100 female mosquitoes (one strain \n", - "per replicate) were introduced at 21:00. The following morning at 09:00, the mosquitoes were removed using a mouth aspirator and counted separately from each section of the tunnel, and mortality and blood-feeding rates were recorded. The mosquitoes were placed in paper cups and provided with cotton wool moistened with 10% sugar solution. Mortality was recoded at 24, 48 and 72 h. Mosquitoes challenged to untreated nets were used as controls to monitor the quality of the bioassay. The bioassays and holding period were carried out at 27 degC+-2 degC and 60%-100% relative humidity. Overall mortality was measured by pooling the mortalities of mosquitoes from the two sections of the tunnel. Acceptable feeding success and mortality in controls were 50% and 10%, respectively. Any tests not meeting the specified control cut-off were repeated.\n", - "\n", - "header: Mosquito blood-feeding in WHO tunnel, I-ACT and experimental hut\n", - "\n", - "For all bioassays and strains, blood-feeding inhibition was very high (Fig. 3, Table 3). Both Interceptor(r) G2 and Interceptor(r) gave high levels of blood-feeding inhibition in all \"free-flying\" bioassays.\n", - "\n", - "header: Selection of the correct strain for bioassay\n", - "\n", - "The current study demonstrated that using the correct mosquito strain when evaluating ITNs is a critical consideration. The benefit of chlorfenapyr was only seen against the resistant strains, and against the susceptible strains Interceptor(r) was more efficacious because it contains a higher dose of alphacypermethrin. Comparing between the products using both a susceptible and a resistant strain revealed the different modes of action of Interceptor(r) and Interceptor(r) G2.\n", - "\n", - "header: Background\n", - "\n", - "As funding for malaria control falls and mosquito resistance to current public health insecticides increases, new and durable vector control tools that utilise new insecticide classes are needed [1]. For insecticide resistance management, a new Insecticide Treated Net (ITN) Interceptor(r) G2 has been developed, coated with a mixture of the pyrethroid alpha-cypermethrin and the pro-insecticide chlorfenapyr [2]. Chlorfenapyr is an Insecticide Resistance Action Committee (IRAC) Group 13 insecticide, having a pyrrole chemistry that uncouples oxidative phosphorylation via disruption of the proton gradient (as a protonophore) to short circuit mitochondrial respiration through inner mitochondrial membranes of insect cells so that ATP cannot be synthesized, subsequently robbing insects of energy, resulting in death [3, 4]. Metabolic resistance is one of the main mechanisms of resistance observed in malaria vectors [5] where one or several detoxification gene families--cytochrome P450s (P450s), esterases and glutathione S-transferases (GSTs)--are overproduced to detoxify insecticides [6]. While this metabolism is a detoxification process, it can increase the potency of a pro-insecticide and may therefore be exploited as a means to control metabolically resistant insect populations [3]. The unique mode of action of chlorfenapyr on an insect's metabolism is particularly relevant for the control of vectors harboring insecticide resistance mechanisms, as increased metabolic activity increases the conversion of the pro-insecticide into its potent n-dealkylated form and will consequently increase mosquito mortality [7].\n", - "\n", - "For any new ITN to be used in public health, a thorough evaluation of its safety, efficacy and effectiveness is conducted based on World Health Organisation (WHO) standards and criteria [8]. The methods and scope of the laboratory tests and field trials required to attain WHO Prequalification (PQ) listing for ITNs are outlined in a set of WHO guidelines, last updated in 2013 [9]. As part of these guidelines, WHO recommends a set of standardised laboratory tests to ascertain the bioefficacy of pyrethroid ITNs, i.e., the ability of ITN products to kill, incapacitate (knock down) and prevent mosquitoes from blood-feeding. Laboratory bioefficacy tests are also a critical component of ITN durability evaluation used to confirm continued ITN bioefficacy after long-term use in the community [10]. The simplest and most commonly applied ITN bioefficacy test is the WHO cone bioassay where mosquitoes are held close to ITN in plastic cones and the number of mosquitoes knocked down (incapacitated) or killed is counted [9]. For ITNs with feeding inhibition mode of action, the WHO tunnel test is used, where a swatch of ITN with small holes (9 x 1-cm diameter) is made and is placed between mosquitoes and small animal bait overnight [11]. The WHO tunnel test has been shown to agree with experimental but data, using laboratory-reared mosquitoes released into the huts [12]. Thresholds for the mosquito knockdown rate (95%) and mosquito mortality rate (80%) and blood-feeding inhibition (90%) using pyrethroid-susceptible _Anopheles_ mosquitoes serve as performance benchmarks; candidate products are required to fulfill minimum performance standards, which have been established by WHO for qualification to be listed/recommended for their public health values to sustain and protect users from disease transmissions. This includes their physical durability and chemical contents recovered from nets replaced in the field over 3 years or as predicted from wash-resistance testing. For a net to be classified as a long-lasting ITN, i.e., LLIN, > 80% of nets tested should pass WHO cone/tunnel performance benchmarks after 3 years of use [13].\n", - "\n", - "Cone tests are relatively easy to perform, high throughput and sensitive to detecting changes in bioavailable pyrethroids that act through rapid contact neurotoxicity. However, chlorfenapyr requires the mosquito to be metabolically and/or physiologically active (as it would be when encountering the ITN under user conditions) to bioactivate into the potent n-dealkylated form which elicits increased mosquito mortality. As mosquitoes are more metabolically active at night when flying and host-seeking during their typical circadian rhythms, the tunnel test may be more appropriate [14].\n", - "\n", - "The President's Malaria Initiative (PMI) currently uses WHO Tunnel tests for the durability monitoring of chlorfenapyr nets with 4 samples per net evaluated and 48 nets per sampling point [15]. This requires large numbers of mosquitoes and access to small animals for testing, so it cannot be done at all facilities in malaria-endemic areas. To accommodate high-throughput evaluation of whole ITNs for durability evaluation, the Ifakara ambient chamber test (I-ACT) was developed [16]. The Ifakara ambient chamber test (I-ACT) is not currently a recognized method \n", - "approved by the WHO. However, it is currently seeking confirmation by direct comparison to approved methods. This is of particular importance where novel slow-acting chemistries cannot achieve the benchmark standards established for conventional pyrethroid ITN exposures yet may prove to be highly efficacious when tested according to their discrete modes of action. Like the experimental hut, I-ACT makes use of whole nets and human hosts to evaluate bioefficacy of field-used ITNs, but the assay is done under controlled conditions with laboratory-reared mosquitoes. Mosquitoes are released into net chambers within which the test net is hung with a volunteer sleeping beneath, and all mosquitoes are recaptured in the morning. The use of laboratory mosquitoes (rather than conducting experimental hut trials with wild mosquitoes) is done to improve the precision of estimates by releasing mosquito cohorts of a defined number of mosquitoes with high recapture rate (99%) at the conclusion of exposure intervals.\n", - "\n", - "I-ACT bioassay has been used for evaluation of pyrethroid ITNs, was able to discriminate between products [17] and agreed with results of combined WHO cone and tunnel tests [16]. The I-ACT may show suitability for use in evaluation of pro-insecticides because: (i) the assay is run overnight, favouring malarial mosquitoes' circadian rhythms, (ii) the mosquitoes have a large arena to fly in, allowing them to be metabolically active, (iii) the mosquitoes have the opportunity to feed ad libitum and (iv) the I-ACT test eliminates infected mosquitoes that may represent a malaria transmission potential that cannot be completely excluded in WHO experimental huts--a significant safety benefit to volunteers. Therefore, the I-ACT method was evaluated alongside standard methods (i.e., experimental huts, WHO cone and tunnel tests) to provide direct evidence of its comparability. Interceptor(r) (alpha-cypermethrin only) and Interceptor(r) G2 (alpha-cypermethrin and chlorfenapyr) were evaluated to compare the performance of each assay for durability monitoring of pro-insecticidal ITNs.\n", - "\n", - "header: WHO cone bioassays\n", - "\n", - "WHO cone tests were performed between October 2020 and February 2021 according to standard WHO procedures [9], with two modifications: the test board was set at 60deg tilt [19] and holes were cut in the boards (Fig. 1) to maximise mosquito contact with the test nets during exposures. From each treatment arm, three nets were randomly sampled, and five net swatches of 25 cm x 25 cm size were cut from positions 1 to 5. On each netting sample, four standard WHO cones were positioned over net swatches and secured in place using tape. Five laboratory-bred mosquitoes were introduced into each cone and exposed for 3 min, and four replicates were conducted per net piece (20 mosquitoes were exposed per net piece).\n", - "\n", - "After each exposure, the mosquitoes were removed gently from the cones (by mouth aspiration), placed in paper cups and provided with cotton wool moistened with 10% sugar solution. Knockdown (KD60) was recorded after 60 min and mortality at 24, 48 and 72 h. Mosquitoes challenged to untreated nets were used as controls to monitor the quality of the bioassay. The bioassays and holding period were carried out at 27 degC+-2 degC and 60%-100% relative humidity. Acceptable control mortality was <= 10% after 72 h holding time. Any tests exceeding the specified control cut off were repeated.\n", - "\n", - "header: Considerations for each bioassay\n", - "\n", - "Both I-ACT and experimental huts use the whole bednet and human host, which represent user conditions; however, there is no risk of disease for human participants in I-ACT because the mosquitoes used are laboratory reared. The WHO tunnel test is a well-established bioassay that has been shown to agree with experimental hut tests in this evaluation as well as others [12, 14]. However, it tests only a sample of net and is therefore only able to accurately measure the chemical durability of an ITN and not the chemical _and_ physical durability. In addition, it requires a high number of mosquitoes (100 per replicate) and more testing days compared to I-ACT. In I-ACT there is possibility of testing more than one species or strain per chamber compared to tunnel test, which makes results more comparable. The I-ACT is a new assay that consistently predicts the results of experimental hut tests, measures with a similar magnitude of difference as a tunnel test and provides high-throughput and precise estimates of whole ITN protective efficacy in this study with chlorfenapyr as well as in previous studies with pyrethroid nets [17] at lower cost than tunnel tests. However, this method is yet to become a WHO/PQ-accepted testing modality despite the observed higher precision vs. current WHO-recommended modalities. The detailed descriptions of cost implications for each bioassay and how to build an I-ACT with the cost of \n", - "establishment are described in Additional file 1: Table S4 and Additional file 2 respectively.\n", - "\n", - "Laboratory and/or semi-field bioassays are not replacements for field evaluation, but they are useful if they can predict the results of field tests because they are substantially cheaper and more standardised. Experimental hut tests remain the gold standard test because they represent field conditions and can be related to public health impact [48]. However, variation in mosquito entrance in huts per night is highly heterogeneous and requires a high level of replication to achieve precision [23]. In addition, variation in hut designs affects outcome measurement [34] and should be considered when interpreting results. However, comparing between products, the same trends were consistently seen: Interceptor(r) G2 was superior to Interceptor(r) against resistant mosquitoes when they were tested in a \"free-flying\" scenario and Interceptor(r) was superior to Interceptor(r) G2 against susceptible strains, while the cone test was suitable for evaluating pyrethroids but not pro-insecticides such as chlorfenapyr.\n", - "\n", - "header: Sample size and power\n", - "\n", - "A sample size calculation for generalized linear mixed effects models (GLMMs) through simulation [23] in R statistical software 3.02 [https://www.r-project.org/](https://www.r-project.org/) was performed for the I-ACT and experimental huts. For the I-ACT, to detect a 10% effect difference between the nets, simulations were performed using an estimated mosquito mortality of 80% for unwashed Interceptor(r) G2, 70% for unwashed Interceptor(r) and 10% for SafiNet(r) (deliberately holed). The design was for five arms replicated in two groups, with each volunteer testing each treatment one time over 20 replicates within its group (i.e. 40 replicates per arm), with an inter-observational variance of 0.42 for the night of observation based on the variance of the random effects observed in a previous study. The evaluation was powered at 81% for 15 mosquitoes of each strain released per chamber using 1000 simulations.\n", - "\n", - "For experimental huts, simulation was performed using a Latin square design with volunteers rotating nightly and accounted for as a fixed effect for 25 nights of data collection in 10 huts. The study had 84% power to detect the difference between Interceptor(r) G2 LN and Interceptor(r) LN on mosquito mortality endpoints, with two huts per treatment arm (i.e. 50 replicates per arm). The study power was calculated based on a previous study of pyrethroid nets conducted in the same area, with the estimation of 20 _An. arabiensis_ mosquitoes per night per hut, 21% mortality in unwashed Interceptor(r) G2, 7% in 20x washed Interceptor(r) G2 and 10% in unwashed Interceptor(r) vs. 4% in 20 times washed and 1% in negative control, and overdispersion parameter for daily variation was set at intermediate 0.44.\n", - "\n", - "To test whether I-ACT measures similarly to the WHO tunnels (H0\\(m\\)2=_m_1) a power calculation using Satterthwaites _t_-test was conducted in STATA 16 software (StataCorp LLC, College Station TX, USA) for two unpaired sample means assuming unequal variance. The power estimated was > 90% based on estimates from previous studies conducted in the same setting: mean mortality of 81.5% for WHO tunnel test with an assumed daily variation of 0.5 and 15 replicates per arm and mean\n", - "mortality estimates of 86.5% and an assumed daily variation of 0.42 with 40 replicates per arm were considered for I-ACT.\n", - "\n", - "header: Test nets\n", - "\n", - "ITNs were supplied by BASF in November 2019 and stored at optimal conditions (25 to 32 degC) before testing and during the experimental phase. Interceptor(r) G2 nets were from two different production batches (two batches were used for experimental hut only and one batch for other biossays) and Interceptor(r) from one production batch. Interceptor(r) G2 is made from 100-denier polyester coated with a mixture of wash-resistant formulation containing 200 mg/m2 chlorfenapyr and 100 mg/m2alpha-cypermethrin. Interceptor(r) LN is made from 100-denier polyester coated with 200 mg/m2 alpha-cypermethrin. SafiNet is an untreated polyester net manufactured by A to Z. Textiles Mills, Ltd., Tanzania, and was used as a control. The nets were washed 20 times according to a protocol adapted from the standard WHO washing procedure [9] using 20 g/l palm soap (Jamaa) and dried flat in a shaded area. The interval of time used between two washes (i.e. regeneration time) was 1 day for both Interceptor(r) G2 and Interceptor(r) TTNs.\n", - "\n", - "header: Cone test results: Use of I-ACT for durability monitoring\n", - "\n", - "I-ACT is designed to be a bridging bioassay that reproduces a more natural interaction between the mosquito and human hosts beneath a bednet [16]. Blood-feeding inhibition and 72-h mortality measured by WHO tunnel and I-ACT were similar, meaning that the use of I-ACT for durability monitoring using WHO thresholds of 80% mortality and 90% feeding inhibition is appropriate. We suggest that I-ACT can be a useful alternative to tunnel tests for bioefficacy monitoring and upstream product evaluation as both the bioassays measure a similar odds ratio and I-ACT gives a precise estimation of bioefficacy because it uses laboratory-reared mosquitoes. This is particularly important when considering the longitudinal evaluation of product performance as occurs in durability bioefficacy evaluation for two reasons. Currently, experimental huts tests are being used to evaluate the insecticidal durability of Interceptor(r) G2 [33]. It was been observed at all experimental hut testing sites that mosquito resistance to insecticides has intensified through time [34]. This needs to be factored into considerations about durability testing. ITN protection may wane more quickly against more resistant mosquito populations as nets age [35], and if older ITNs are tested 3 years after baseline efficacy has been calculated, it is possible that they will be tested against a more resistant mosquito population than that at baseline. Therefore, use of carefully maintained laboratory strains may be helpful to minimise differences in insecticide resistance levels. Second, a previous longitudinal durability trial of ITNs [17] using standard WHO cone and tunnel tests as well as I-ACT shows that ITNs are highly heterogeneous, with up to 100% variance after use (John Bradley personal communication), because of variable use practices (washing, drying, care, sleeping space) [36, 37] that result in differential levels of damage and insecticide content [38]. This fact, coupled with WHO/PQ accepted intra-net insecticidal manufacturing heterogeneities [39], shows the need to expedite testing modalities that improve comprehension of net performances by donor organisations, national malaria control programmes (NMCPs) and manufacturers alike.\n", - "\n", - "header: Mosquito test systems\n", - "\n", - "IHI laboratory maintains local mosquito strains with resistant mechanisms present in the local population to\n", - "avoid accidental release of new resistance alleles into the wild population. Four types of laboratory-reared mosquitoes with different resistance levels (confirmed at the time of testing) were used in the WHO cone, WHO tunnel and I-ACT tests: _Anopheles arabiensis_ (Kingani strain, upregulation of cytochrome p450s, 14% mortality upon exposure to WHO discriminating doses of alpha-cypermethrin, which is reversed by piperonyl butoxide (PBO) pre-exposure, which acts to block enzymatic detoxification mechanisms by inhibiting their metabolism), _Anopheles gambiae_ s.s. (Kisumu strain, fully susceptible to all insecticide classes at WHO discriminating doses), _Aedes aegypti_ (Bagamoyo strain, fully susceptible to all insecticide classes at WHO discriminating doses) and _Culex quinquefasciatus_ (Bagamoyo strain, 6% mortality upon exposure to WHO discriminating doses of alpha-cypermethrin, which is partially reversed (only moderate susceptibility is restored from inhibition of detoxifying mechanism) by PBO pre-exposure). In I-ACT and tunnel tests, sugar-starved (8 to 9 h) nulliparous female mosquitoes, 5-8 days old, were used. For cone bioassay, 2-5-day-old nulliparous sugar-fed female mosquitoes were challenged. Laboratory colonies were maintained by feeding larvae Tetramin(r) tropical fish food and adults on blood between 3 and 6 days after emergence and 10% sugar solution ad libitum. Temperature and humidity within the insectary are maintained between 27 degC+-5 degC and 40%-100% RH, relatively following MR4 guidelines [18]. For the experimental hut assays, only wild populations of _An. arabiensis_ and _Culex quinquefasciatus_ were collected in sufficient numbers for evaluation.\n", - "\n", - "header: Discussion\n", - "\n", - "The superiority of Interceptor(r) G2 over Interceptor(r) for 72-h mortality endpoints, which challenged metabolically resistant _An. arabiensis_ and _Cx. quinquefasciatus_, was clearly seen in all \"free-flying\" bioassays but not in the WHO cone test where mosquitoes are unable to fly around and be metabolically active. This observation has been seen by several other authors [14, 25-27] leading to a consensus that the overnight tunnel test using a 72-h mortality endpoint is a superior laboratory bioassay for evaluation of chlorfenapyr [2, 28] relative to the cone test, which was designed to test contact insecticides that do not require metabolic conversion into a secondary metabolite (most ITN insecticides are classified as IRAC Group 3 sodium channel modulators). It has been routinely observed in experimental hut bioassays that Interceptor(r) G2 gives greater mortality that Interceptor(r) among pyrethroid-resistant mosquitoes [14, 25-27], while mosquitoes are foraging at night when their metabolic rate is high. Both the tunnel test and the I-ACT consistently predicted the superiority of Interceptor(r) G2 over Interceptor(r) observed in experimental hut tests.\n", - "\n", - "The results of this study's mortality elicited on _Cx. quinqufaciatus_ from chlorfenapyr is consistent with other studies over the past decade [29, 30]. Preliminary investigations for chlorfenapyr intoxication in metabolically resistant _Cx. quinquefasciatus_ in experimental huts by [31] demonstrated relatively high levels of control in both ITNs and for IRS in Benin. Later, [27] observed 3 x mortality with chlorfenapyr + alpha-cypermethrin-treated nets compared to pyrethroid-only nets demonstrating the effect of chlorfenapyr on free-flying exposures that optimize conversion rates of the pro-insecticide. However, it is also known that once ITNs develop holes, a pyrethroid treatment offers little or no protection against pyrethroid-resistant _Cu. quinquefaciatus_[32]. The relatively high level of control sustained in _Cx. quinqufaciatus_ in this study and relatively good mortality are important resistance management attributes that make inclusion of chlorfenapyr into vector control interventions a significant advancement for active ingredient options.\n", - "\n", - "header: Publisher's Note\n", - "\n", - "Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.\n", - "\n", - "header: Resistant mosquitoes\n", - "\n", - "For pyrethroid-resistant _An. arabiensis_, blood-feeding inhibition was lower with Interceptor(r) G2 than Interceptor(r) in WHO tunnel: 87.8% (95% CI: 82.9- 92.7) vs. 92.9% (95% CI: 89.8-96.0) OR blood-fed = 1.92 [95% CI:14.8-2.48], \\(p\\) < 0.001 and I-ACT: 89.8% (95% CI: 85.8-93.7) vs. 93.9% (95% CI: 91.5-96.3) (OR blood-fed = 1.67 [95% CI: 1.07-2.62], \\(p\\) = 0.024). There was no difference between the two products measured in experimental huts: 95.9% (95% CI: 93.7-98.2) vs. 96.3% (95% CI: 93.0-99.7) (OR blood-fed = 1.06 [95% CI: 0.54-2.10], \\(p\\) = 0.857). A similar trend was observed for the 20x washed nets.\n", - "\n", - "Blood-feeding inhibition was similar for Interceptor(r) G2 compared to Interceptor(r) with _Cx. Quinquefasciatus_ in WHO tunnel: 97.8% (95CI: 96.1-99.5) vs. 97.1% (95% CI: 95.9-98.3) (OR blood fed = 1.36 [95% CI: 0.85-2.17], \\(p\\) = 0.196) and experimental huts: 97.2% (95% CI: 95.9-98.4) vs. 97.2% (95% CI: 95.8-98.7) (OR = 1.04 [95% CI: 0.76-1.42], \\(p\\) = 0.827), whilst in I-ACT the difference was significantly different: 99.0% (95% CI: 98.1-99.9) vs. 91.3% (95% CI: 88.6-93.9) (OR blood fed = 0.11 [95% CI: 0.05-0.26], \\(p\\) < 0.001). A similar trend was observed for the 20x washed nets (Fig. 3a, b, Table 3). The percentage blood-feeding inhibition and mean difference between bioassays for all mosquito species are presented in Additional file 1: Table S2.\n", - "\n", - "header: Table 4: Number and proportion of net pieces passing using each laboratory bioassay based on WHO criteria of 80% control corrected mortality, 95% knockdown in WHO cone test, 90% blood-feeding inhibition or 80% control corrected mortality in tunnel test\n", - "footer: The WHO criteria for tunnel were adopted for I-ACT. Whole nets were used for I-ACT\n", - "columns: ['ITNs type - Unnamed: 0_level_1', 'Number of net pieces passing - Cone (N = 60)', 'Number of net pieces passing - Tunnel (N = 15)', 'Number of net pieces passing - I-ACT (N = 40)']\n", - "\n", - "{\"0\":{\"ITNs type - Unnamed: 0_level_1\":\"Anopheles arabiensis (Kingani strain, resistant)\",\"Number of net pieces passing - Cone (N = 60)\":\"Anopheles arabiensis (Kingani strain, resistant)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"Anopheles arabiensis (Kingani strain, resistant)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"Anopheles arabiensis (Kingani strain, resistant)\"},\"1\":{\"ITNs type - Unnamed: 0_level_1\":\"Unwashed\",\"Number of net pieces passing - Cone (N = 60)\":\"n (%)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"n (%)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"n (%)\"},\"2\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Number of net pieces passing - Cone (N = 60)\":\"59 (98)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"11 (73)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"38 (95)\"},\"3\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae G2\",\"Number of net pieces passing - Cone (N = 60)\":\"22 (37)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"13 (87)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"38 (95)\"},\"4\":{\"ITNs type - Unnamed: 0_level_1\":\"Washed, 20\\u00d7\",\"Number of net pieces passing - Cone (N = 60)\":null,\"Number of net pieces passing - Tunnel (N = 15)\":null,\"Number of net pieces passing - I-ACT (N = 40)\":null},\"5\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Number of net pieces passing - Cone (N = 60)\":\"59 (98)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"12 (80)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"36 (90)\"},\"6\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae G2\",\"Number of net pieces passing - Cone (N = 60)\":\"21 (35)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"10 (67)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"38 (95)\"},\"7\":{\"ITNs type - Unnamed: 0_level_1\":\"An. gambiae ss. (Kisumu strain, susceptible)\",\"Number of net pieces passing - Cone (N = 60)\":\"An. gambiae ss. (Kisumu strain, susceptible)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"An. gambiae ss. (Kisumu strain, susceptible)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"An. gambiae ss. (Kisumu strain, susceptible)\"},\"8\":{\"ITNs type - Unnamed: 0_level_1\":\"Unwashed\",\"Number of net pieces passing - Cone (N = 60)\":null,\"Number of net pieces passing - Tunnel (N = 15)\":null,\"Number of net pieces passing - I-ACT (N = 40)\":null},\"9\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Number of net pieces passing - Cone (N = 60)\":\"50 (83)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"15 (100)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"40 (100)\"},\"10\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae G2\",\"Number of net pieces passing - Cone (N = 60)\":\"2 (3)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"14 (100)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"40 (100)\"},\"11\":{\"ITNs type - Unnamed: 0_level_1\":\"Washed, 20\\u00d7\",\"Number of net pieces passing - Cone (N = 60)\":null,\"Number of net pieces passing - Tunnel (N = 15)\":null,\"Number of net pieces passing - I-ACT (N = 40)\":null},\"12\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"Number of net pieces passing - Cone (N = 60)\":\"38 (63)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"15 (100)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"40 (100)\"},\"13\":{\"ITNs type - Unnamed: 0_level_1\":\"Interceptor\\u00ae G2\",\"Number of net pieces passing - Cone (N = 60)\":\"10 (17)\",\"Number of net pieces passing - Tunnel (N = 15)\":\"15 (100)\",\"Number of net pieces passing - I-ACT (N = 40)\":\"40 (100)\"}}\n", - "\n", - "header: Thresholds are not a good idea in field trials\n", - "\n", - "Mortality measured in the experimental hut is lower than in the WHO tunnel tests or I-ACT meaning that tests\n", - "comparing products are appropriate rather than setting a threshold of efficacy. These study data support the WHO Pesticide Evaluation Scheme (WHOPES) efficacy criteria for phase II studies [9]. This is particularly important for field evaluation of public health tools because insecticide resistance involves highly complex mechanisms, genes and gene interactions [6] that are heterogeneous in time and space [40]. Insecticide resistance is modified by selection pressures from constantly changing environmental parameters, such as insecticide/pesticide usage in agriculture and biotic interactions with other organisms that affect both the overall mosquito responses to insecticides and the selection of resistance mechanisms [41]. However, in all comparisons tested in \"free-flying\" bioassays with resistant mosquito strains, it was possible to predict the superiority of Interceptor(r) G2 over Interceptor(r). Therefore, the use of a standard comparator net to provide performance benchmarks when evaluating the performance of new products is critical. The added value of a new product relative to pyrethroid-only nets has proven extremely useful when synthesising evidence for PBO nets [42].\n", - "\n", - "header: Mosquito retention\n", - "\n", - "Immediately after the main experimental hut trial, a retention test was conducted by releasing wild _An. ara-biensis_ mosquitoes that were collected from the area by human landing catch (HLC). Fifteen mosquitoes marked with non-toxic fluorescent powder were released in each of the ten huts with the same treatment arms as the main experiment hut design. Five huts were completely closed while the other five were left with open eaves (with 10-cm baffles to reduce egress) and two window exit traps as per main experimental hut study. This experiment was conducted for 5 nights. Each morning mosquitoes were sorted, scored and held for 72 h to observe delayed mortality for each treatment arm.\n", - "\n", - "header: Susceptible mosquitoes\n", - "\n", - "For unwashed Interceptor(r), blood-feeding inhibition was measured in tunnel and I-ACT and a similar trend was observed in susceptible mosquitoes as was seen in the resistant laboratory strains (Fig. 3c, d, Table 3). For susceptible _An. gambiae_, blood-feeding inhibition was lower with Interceptor(r) G2 than for Interceptor(r) WHO tunnel: 89.7% (95% CI: 83.3-96.1) vs. 94.5% (95% CI: 91.9-97.2), (OR blood fed = 1.95 [95% CI: 1.46, 2.61], \\(p\\) < 0.001) and similar in I-ACT: 97.4% (95% CI: 95.7-99.1) vs. 98.2% (95% CI: 96.8-99.5), (OR blood fed = 1.41 [95% CI: 0.63-3.17], \\(p\\) = 0.407. For susceptible _Ae. Aggyti_ in WHO tunnel, results showed: 93.8% (95% CI:90.6-97.1) vs. 96.3% (95% CI: 94.0-98.7) (OR blood fed = 2.03 [95% CI: 1.40-2.93], \\(p\\) < 0.001) and in I-ACT: 96.8% (95% CI: 94.8-98.9) vs. 98.3% (95% CI: 97.1-99.5) (OR blood fed = 1.92 [95% CI: 0.87-4.24],\n", - "\\(p=0.107\\)). As before, for both species a similar pattern was seen for the 20\\(\\times\\) washed nets.\n", - "\n", - "header: Methods\n", - "\n", - "The laboratory bioassays (I-ACT, WHO cone and WHO tunnel tests) were performed at the Vector Control Product Testing Unit (VCPTU) testing facility located at the Bagamoyo branch of Ifakara Health Institute (IHI), Tanzania (6.446deg S and 38.901deg E). The district experiences average annual rainfall of 800 mm-1000 mm, average temperatures between 24 degC and 29 degC and average annual humidity of 73%. The experimental hut study was conducted in Lupiro village (8.385deg S and 36.673deg E) in Ulanga District, southeastern Tanzania. The village is bordered by irrigated rice fields with average annual rainfall of 1200-1800 mm, average temperatures between 20 and 34 degC and average annual humidity of 69%. The main malaria vector is _Anopheles arabiensis_, constituting > 99.9% of the _An. gambiae_ complex species in the last test conducted in November 2020, and resistance to alphabcypermethrin was recorded (57% mortality at 1 x WHO discriminating concentration) at the time of testing.\n", - "\n", - "header: Table 2 Logistic regression analysis to compare mosquito mortality in Interceptor® and Interceptor® G2 ITNs after exposure in WHO cone and tunnel tests, Ifakara ambient chamber test and experimental hut, Tanzania\n", - "footer: Odds ratio adjusted for net type, volunteer, hut position/number and day of the experiment\n", - "Laboratory-reared mosquitoes were used for WHO cone, WHO tunnel and I-ACT\n", - "For the experimental hut trial, the ITNs were tested against free-flying wild pyrethroid-resistant Anopheles arabiensis and Culex quinquefasciatus in Lupiro, Ifakara\n", - "*p-value>0.05\n", - "columns: ['Unnamed: 0_level_0 - Unnamed: 0_level_1', 'WHO cone - OR (95% CI)', 'Tunnel - OR (95% CI)', 'I-ACT - OR (95% CI)', 'Hut - OR (95% CI)', 'Huts with netting window - OR (95% CI)']\n", - "\n", - "{\"0\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Anopheles anabiensis (resistant)\",\"WHO cone - OR (95% CI)\":\"Anopheles anabiensis (resistant)\",\"Tunnel - OR (95% CI)\":\"Anopheles anabiensis (resistant)\",\"I-ACT - OR (95% CI)\":\"Anopheles anabiensis (resistant)\",\"Hut - OR (95% CI)\":\"Anopheles anabiensis (resistant)\",\"Huts with netting window - OR (95% CI)\":\"Anopheles anabiensis (resistant)\"},\"1\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Overall\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"2\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"3\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"0.04 (0.03, 0.07)\",\"Tunnel - OR (95% CI)\":\"1.33 (1.17, 1.51)\",\"I-ACT - OR (95% CI)\":\"1.55 (1.16, 2.07)\",\"Hut - OR (95% CI)\":\"2.38 (2.09, 2.72)\",\"Huts with netting window - OR (95% CI)\":\"2.43 (1.88, 3.14)\"},\"4\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Unwashed\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"5\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"6\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"0.05 (0.20, 0.09)\",\"Tunnel - OR (95% CI)\":\"1.42 (1.19, 1.70)\",\"I-ACT - OR (95% CI)\":\"1.61 (1.05, 2.49)\",\"Hut - OR (95% CI)\":\"2.53 (1.96, 3.26)\",\"Huts with netting window - OR (95% CI)\":\"2.55 (1.76, 3.68)\"},\"7\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Washed, 20\\u00d7\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"8\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"9\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"0.04 (0.2, 0.09)\",\"Tunnel - OR (95% CI)\":\"1.23 (1.03, 1.48)\",\"I-ACT - OR (95% CI)\":\"1.50 (1.02, 2.23)\",\"Hut - OR (95% CI)\":\"2.36 (2.02, 2.77)\",\"Huts with netting window - OR (95% CI)\":\"2.32 (1.63, 3.31)\"},\"10\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Culex quinquefasciatus (resistant)\",\"WHO cone - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\",\"Tunnel - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\",\"I-ACT - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\",\"Hut - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\",\"Huts with netting window - OR (95% CI)\":\"Culex quinquefasciatus (resistant)\"},\"11\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Overall\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"12\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"13\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"1.05 (0.57, 1.93)*\",\"Tunnel - OR (95% CI)\":\"2.55 (2.26, 2.55)\",\"I-ACT - OR (95% CI)\":\"13.40 (10.75, 16.67)\",\"Hut - OR (95% CI)\":\"1.50 (1.31, 1.73)\",\"Huts with netting window - OR (95% CI)\":\"1.40 (1.19, 1.63)\"},\"14\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Unwashed\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"15\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"16\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"0.74 (0.31, 1.79)*\",\"Tunnel - OR (95% CI)\":\"2.52 (2.13, 3.00)\",\"I-ACT - OR (95% CI)\":\"12.71 (9.43, 17.14)\",\"Hut - OR (95% CI)\":\"1.52 (1.23, 1.88)\",\"Huts with netting window - OR (95% CI)\":\"1.25 (1.00, 1.57)\"},\"17\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Washed, 20\\u00d7\",\"WHO cone - OR (95% CI)\":null,\"Tunnel - OR (95% CI)\":null,\"I-ACT - OR (95% CI)\":null,\"Hut - OR (95% CI)\":null,\"Huts with netting window - OR (95% CI)\":null},\"18\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00ae\",\"WHO cone - OR (95% CI)\":\"1\",\"Tunnel - OR (95% CI)\":\"1\",\"I-ACT - OR (95% CI)\":\"1\",\"Hut - OR (95% CI)\":\"1\",\"Huts with netting window - OR (95% CI)\":\"1\"},\"19\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"Interceptor\\u00aeG2\",\"WHO cone - OR (95% CI)\":\"1.46 (0.62, 3.50)*\",\"Tunnel - OR (95% CI)\":\"2.58 (2.17, 3.06)\",\"I-ACT - OR (95% CI)\":\"14.11 (10.42, 19.11)\",\"Hut - OR (95% CI)\":\"1.50 (1.25, 1.80)\",\"Huts with netting window - OR (95% CI)\":\"1.55 (1.24, 1.94)\"},\"20\":{\"Unnamed: 0_level_0 - Unnamed: 0_level_1\":\"An gambiae s.s. (susceptible)\",\"WHO cone - OR (95% CI)\":\"An gambiae s.s. (susceptible)\",\"Tunnel - OR (95% CI)\":\"An gambiae s.s. (susceptible)\",\"I-ACT - OR (95% CI)\":\"An gambiae s.s. (susceptible)\",\"Hut - OR (95% CI)\":\"An gambiae s.s. (susceptible)\",\"Huts with netting window - OR (95% CI)\":\"An gambiae s.s.\n", - "\n", - "header: Table 1: Outcomes measured in WHO cone bioassays, tunnel, I-ACT and experimental hut tests\n", - "footer: a Not reported\n", - "columns: ['Variable', 'Cone bioassay', 'WHO tunnel test', 'I-ACT', 'Experimental hut']\n", - "\n", - "{\"0\":{\"Variable\":\"Primary outcome\",\"Cone bioassay\":\"72-h mortality\",\"WHO tunnel test\":\"72-h mortality\",\"I-ACT\":\"72-h mortality\",\"Experimental hut\":\"72-h mortality\"},\"1\":{\"Variable\":\"Secondary outcome\",\"Cone bioassay\":null,\"WHO tunnel test\":\"Blood-feeding\",\"I-ACT\":\"Blood-feeding\",\"Experimental hut\":\"Blood-feeding\"},\"2\":{\"Variable\":\"Other outcomes\",\"Cone bioassay\":\"Knockdown at 60 min (KD60)\",\"WHO tunnel test\":null,\"I-ACT\":null,\"Experimental hut\":\"Deterrence a and induced exophily a\"}}\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `EntomologicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `EntomologicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `EntomologicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Start_month\": {\"title\": \"Start Month\", \"description\": \"Numerical start month of the reporting period (some studies may report multiple time periods)\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"WHO tunnel test\",\"Start_month\":8,\"Start_year\":2020,\"End_month\":11,\"End_year\":2020}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Concentration_initial\": {\"title\": \"Insecticide concentration (initial)\", \"description\": \"Enter the initial concentration of the insecticide(s) for net type at the time of distribution.\"}, \"Net_washed\": {\"title\": \"Net Washed\", \"description\": \"Numerical count of number of net washes - 0 if none and NA if not reported.\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"Interceptor G2\",\"Insecticide\":\"alpha-cypermethrin, chlorfenapyr\",\"Concentration_initial\":\"100 mg\\/m2, 200 mg\\/m2\",\"Net_washed\":20.0},\"N02\":{\"Net_type\":\"Interceptor\",\"Insecticide\":\"alpha-cypermethrin\",\"Concentration_initial\":\"200 mg\\/m2\",\"Net_washed\":20.0},\"N03\":{\"Net_type\":\"SafiNet\",\"Insecticide\":null,\"Concentration_initial\":null,\"Net_washed\":20.0}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Notes\n", - "\n", - "_Acknowledgments._ The authors express their sincere thanks to M. Didier Dobri, Centre Suisse de Recherches Scientifiques en Cote d'Ivoire (CSRS) laboratory technician, and Fidele Assamoa for their support in mosquito collection and rearing, the chief and population of the village of Aboude (Agboville), and the entomology fieldworkers of CSRS. They also thank Vestergaard for supplying the long-lasting insecticidal nets tested in this study.\n", - "\n", - "_Author contributions._ A. M., E. C., M. K., T. W., and L. A. M. designed the study. A. M., E. C., C. E., and B. P. led the entomology field activities and participated in data collection. A. M., E. C., C. L. J., T. W., and L. A. M. performed the molecular assays. A. M., E. C., M. K., C. E., C. L. J., B. P., S. R. I, T. W., and L. A. M. were responsible for data analysis and interpretation. L. A. M. drafted the manuscript, which was revised by all coauthors. All authors read and approved the final manuscript.\n", - "\n", - "_Disclaimer._ The findings and conclusions in this report are those of the authors and do not necessarily represent the official position of the Centers for Disease Control and Prevention.\n", - "\n", - "_Financial support._ This work was supported by the Sir Halley Stewart Trust (L.A.M.), the Wellcome Trust/Royal Society ([http://www.wellcome.ac.uk](http://www.wellcome.ac.uk) and [https://royalsociety.org](https://royalsociety.org); (101285/Z/13/Z to T.W.) and the US President's Malaria Initiative/Centers for Disease Control and Prevention (S.R.I.).\n", - "\n", - "_Potential conflicts of interest._ All authors: No reported conflicts. All authors have submitted the ICMJE Form for Disclosure of Potential Conflicts of Interest. Conflicts that the editors consider relevant to the content of the manuscript have been disclosed.\n", - "\n", - "header: Conclusions\n", - "\n", - "Study findings raise concerns regarding the operational failure of standard LLINs and support the urgent deployment of vector control interventions incorporating piperonyl butoxide, chlorfenapyr, or clothianidin in areas of high resistance intensity in Cote d'Ivoire.\n", - "\n", - "header: Table 1. Cox Proportional Hazard Model to Determine Impact of Long-Lasting Insecticidal Net/Insecticidal Exposure on Survival of Field-Caught Anopheles gambiae Sensu Lato 72 Hours After Exposure\n", - "footer: Abbreviations: CI, confidence interval; HRR, hazard rate ratio (ratio of hazard rate for control/reference group to hazard rate for treatment group; PBO, piperonyl butoxide.\n", - "a Immediate mortality rates after long-lasting insecticidal net (60 minutes and 24 hours) or insecticidal exposure (30 or 60 minutes, depending on insecticide) were excluded. \n", - "b Significance cutoff level defined as α = .05.\n", - "\n", - "\n", - "columns: ['Insecticide Exposure', 'No. (No. of Events)', 'HRR (95% CI)', 'P Valueb']\n", - "\n", - "{\"0\":{\"Insecticide Exposure\":\"Untreated netting\",\"No. (No. of Events)\":null,\"HRR (95% CI)\":\"Reference\",\"P Valueb\":null},\"1\":{\"Insecticide Exposure\":\"PermaNet 2.0 (deltamethrin only)\",\"No. (No. of Events)\":\"1135 (1047)\",\"HRR (95% CI)\":\"1.095 (.968\\u20131.239)\",\"P Valueb\":\".15\"},\"2\":{\"Insecticide Exposure\":\"PermaNet 3.0 side panels (deltamethrin only)\",\"No. (No. of Events)\":\"1157 (1088)\",\"HRR (95% CI)\":\"0.9664 (.9092\\u20131.027)\",\"P Valueb\":\".27\"},\"3\":{\"Insecticide Exposure\":\"PermaNet 3.0 roof panels (PBO + deltamethrin)\",\"No. (No. of Events)\":\"563 (533)\",\"HRR (95% CI)\":\"1.007 (.939\\u20131.079)\",\"P Valueb\":\".85\"},\"4\":{\"Insecticide Exposure\":\"Acetone control\",\"No. (No. of Events)\":null,\"HRR (95% CI)\":\"Reference\",\"P Valueb\":null},\"5\":{\"Insecticide Exposure\":\"Alpha-cypermethrin 1\\u00d7\",\"No. (No. of Events)\":\"676 (641)\",\"HRR (95% CI)\":\"1.006 (.9696\\u20131.043)\",\"P Valueb\":\".77\"},\"6\":{\"Insecticide Exposure\":\"Deltamethrin 1\\u00d7\",\"No. (No. of Events)\":\"683 (645)\",\"HRR (95% CI)\":\"0.9942 (.9539\\u20131.036)\",\"P Valueb\":\".78\"},\"7\":{\"Insecticide Exposure\":\"Permethrin 1\\u00d7\",\"No. (No. of Events)\":\"693 (661)\",\"HRR (95% CI)\":\"1.015 (.9698\\u20131.062)\",\"P Valueb\":\".52\"},\"8\":{\"Insecticide Exposure\":\"Clothianidin 1\\u00d7\",\"No. (No. of Events)\":\"698 (581)\",\"HRR (95% CI)\":\"1.208 (.9227\\u20131.581)\",\"P Valueb\":\".17\"},\"9\":{\"Insecticide Exposure\":\"Chlorfenapyr 1\\u00d7\",\"No. (No. of Events)\":\"708 (580)\",\"HRR (95% CI)\":\"1.692 (1.086\\u20132.637)\",\"P Valueb\":\".02\"},\"10\":{\"Insecticide Exposure\":\"PBO + deltamethrin 1\\u00d7\",\"No. (No. of Events)\":\"630 (577)\",\"HRR (95% CI)\":\"0.9662 (.2411\\u20133.873)\",\"P Valueb\":\".96\"},\"11\":{\"Insecticide Exposure\":\"Alpha-cypermethrin 5\\u00d7\",\"No. (No. of Events)\":\"633 (601)\",\"HRR (95% CI)\":\"0.9951 (.9407\\u20131.053)\",\"P Valueb\":\".86\"},\"12\":{\"Insecticide Exposure\":\"Deltamethrin 5\\u00d7\",\"No. (No. of Events)\":\"652 (610)\",\"HRR (95% CI)\":\"0.9942 (.9393\\u20131.052)\",\"P Valueb\":\".84\"},\"13\":{\"Insecticide Exposure\":\"Permethrin 5\\u00d7\",\"No. (No. of Events)\":\"636 (583)\",\"HRR (95% CI)\":\"0.9931 (.8638\\u20131.142)\",\"P Valueb\":\".92\"},\"14\":{\"Insecticide Exposure\":\"Alpha-cypermethrin 10\\u00d7\",\"No. (No. of Events)\":\"624 (587)\",\"HRR (95% CI)\":\"0.9951 (.917\\u20131.08)\",\"P Valueb\":\".91\"},\"15\":{\"Insecticide Exposure\":\"Deltamethrin 10\\u00d7\",\"No. (No. of Events)\":\"623 (588)\",\"HRR (95% CI)\":\"0.9943 (.9072\\u20131.09)\",\"P Valueb\":\".90\"},\"16\":{\"Insecticide Exposure\":\"Permethrin 10\\u00d7\",\"No. (No. of Events)\":\"656 (603)\",\"HRR (95% CI)\":\"1.026 (.9509\\u20131.107)\",\"P Valueb\":\".51\"},\"17\":{\"Insecticide Exposure\":\"1\\u00d7 Insecticide dose\",\"No. (No. of Events)\":null,\"HRR (95% CI)\":\"Reference\",\"P Valueb\":null},\"18\":{\"Insecticide Exposure\":\"Alpha-cypermethrin 5\\u00d7\",\"No. (No. of Events)\":\"117 (92)\",\"HRR (95% CI)\":\"1.016 (.9069\\u20131.138)\",\"P Valueb\":\".78\"},\"19\":{\"Insecticide Exposure\":\"Alpha-cypermethrin 10\\u00d7\",\"No. (No. of Events)\":\"108 (78)\",\"HRR (95% CI)\":\"1.007 (.9403\\u20131.078)\",\"P Valueb\":\".84\"},\"20\":{\"Insecticide Exposure\":\"Deltamethrin 5\\u00d7\",\"No. (No. of Events)\":\"143 (105)\",\"HRR (95% CI)\":\"1.0 (.9035\\u20131.107)\",\"P Valueb\":\">.99\"},\"21\":{\"Insecticide Exposure\":\"Deltamethrin 10\\u00d7\",\"No. (No. of Events)\":\"114 (83)\",\"HRR (95% CI)\":\"1.0 (.9363\\u20131.068)\",\"P Valueb\":\">.99\"},\"22\":{\"Insecticide Exposure\":\"Permethrin 5\\u00d7\",\"No. (No. of Events)\":\"137 (94)\",\"HRR (95% CI)\":\"1.022 (.8528\\u20131.225)\",\"P Valueb\":\".81\"},\"23\":{\"Insecticide Exposure\":\"Permethrin 10\\u00d7\",\"No. (No. of Events)\":\"157 (114)\",\"HRR (95% CI)\":\"0.9952 (.9491\\u20131.044)\",\"P Valueb\":\".84\"}}\n", - "\n", - "header: Malaria Prevalence\n", - "\n", - "Of the 912 _A. gambiae_ s.l. mosquitoes assayed, 31 tested positive for _P. falciparum_ (3.4%). For PCR-confirmed _A. coluzzii_, _P. falciparum_ prevalence was 3.50% (28 of 805); the remaining 3 infections were in _A. gambiae_ s.s. (4%; 3 of 75). By resistance phenotype, susceptible _A. coluzzii_ (ie, those that died after pyrethroid exposure) were more likely to be infected with malaria, compared with resistant mosquitoes (kh2 = 4.6987; \\(P\\) =.03); infection rates were 5.94% (13 of 219) and 2.49% (10 of 401), respectively.\n", - "\n", - "header: Results\n", - "\n", - "Phenotypic resistance was intense: >25% of mosquitoes survived exposure to 10 times the doses of pyrethroids required to kill susceptible populations. Similarly, the 24-hour mortality rate with deltamethrin-only LLINs was very low and not significantly different from that with an untreated net. Sublethal pyrethroid exposure did not induce significant delayed vector mortality effects 72 hours later. In contrast, LLINs containing the synergist piperonyl butoxide, or new insecticides dothianidin and chlorfenapyr, were highly toxic to _A. coluzzii_. Pyrethroid-susceptible _A. coluzzii_ were significantly more likely to be infected with malaria, compared with those that survived insecticidal exposure. Pyrethroid resistance was associated with significant overexpression of _CYP6P4_, _CYP6P3_, and _CYP6Z1_.\n", - "\n", - "header: Resistance Intensity and Synergist Bioassay Testing\n", - "\n", - "Centers for Disease Control and Prevention (CDC) resistance intensity bioassays were performed for 6 public health insecticides (pyrethroids: alpha-cypermethrin, deltamethrin, and permethrin; carbamate: bendiocarb; neonicotinoid: clothianidin; and pyrrole: chlorfenapyr) [22, 23]. The diagnostic doses of all insecticides were evaluated (including clothianidin [90 mg per bottle] [23] and chlorfenapyr [100 mg per bottle]) and 2, 5, and 10 times the diagnostic dose of pyrethroid insecticides were also used. Per test, knockdown was recorded at 15-minute intervals for 30 minutes (pyrethroids and bendiocarb) or 60 minutes (dothianidin and chlorfenapyr) of insecticide exposure. One-hour PBO preexposures were performed using WHO tube assays [24], before deltamethrin CDC bottle bioassay testing [22].\n", - "\n", - "WHO cone and CDC resistance intensity bioassay data were interpreted according to the WHO criteria [21, 22]. Mosquitoes that died after exposure to a LLIN or 1x insecticide dose were stored at -20degC in RNAlater (Thermo Fisher Scientific) and were considered \"susceptible\" for genotypic analysis. Surviving mosquitoes were held and scored for mortality rate after 24, 48 and 72 hours to observe delayed mortality effects. Kaplan-Meier curves were used to visualize survival data, and Cox regression was used to compare postexposure survival. Immediate mortality rates after LLIN (60 minutes and 24 hours) or insecticidal exposure (30 or 60 minutes, depending on insecticide) were excluded. Surviving mosquitoes at 72 hours were stored at -20degC in RNAlater and were considered \"resistant\" for genotypic analysis.\n", - "\n", - "header: RESULTS\n", - "\n", - "A total of 4917 female _A. gambiae_ s.l. mosquitoes were collected in Agboville, Cote d'Ivoire. Of those, 912, which were previously tested in either LLIN bioefficacy (n = 384) or resistance intensity (n = 528) bioassays, were selected for molecular species identification. Of the 912 selected, 805 (88.3%) were determined to be _A. coluzzii_, 75 (8.2%) were _A. gambiae_ s.s., and 22 (2.4%) were _A. gambiae_-_A. coluzzii_ hybrids; 10 individuals did not amplify.\n", - "\n", - "header: Characterization of Insecticide Resistance Mechanisms: Target-Site Mutations\n", - "\n", - "The same cohort of field mosquitoes (n = 912) was tested for the presence of L1014F _kdr_[27] and N1575Y mutations [28]. A subsample of mosquitoes (n = 49) that were exposed to bendiocarb, clothianidin or chlorfenapyr was tested for the presence of the G119S _Ace-1_ mutation [29]. Pearson kh2 and Fisher exact tests (when sample sizes were small) were used to investigate the statistical association between resistance status, allele frequencies, and deviations from Hardy-Weinberg equilibrium.\n", - "\n", - "header: Insecticide Resistance Intensity\n", - "\n", - "A total of 2251 field-caught _A. gambiae_ s.l. were tested in resistance bioassays. Intense pyrethroid resistance was evident with more than 25% of mosquitoes surviving exposure to 10 times the dose of insecticide required to kill a susceptible population (Figure 2A). At the diagnostic dose, mosquito mortality rates did not exceed 25% for any pyrethroid tested, which was consistent with the high survival rates observed during cone bioassays using conventional LLINs (Figure 1). In general, levels of resistance to alpha-cypermethrin, deltamethrin, and permethrin were not significantly different at each insecticide concentration tested (Figure 2A).\n", - "\n", - "By comparison, carbamate tolerance was low, with a mean knockdown of 94.53% (95% CI, 92.11%-96.95%; n = 101) after 30 minutes of exposure to the diagnostic dose of bendiocarb. Similarly, high levels of susceptibility to new insecticides clothianidin and chlorfenapyr were observed, with mean mortality rates of 94.11% (95% CI, 93.43%-94.80%; n = 102) and 95.54% (94.71%-96.36%; n = 112), respectively, 72 hours after exposure to the tentative diagnostic doses. Preexposure to PBO increased the average _A. gambiae_ s.l. mortality rate significantly, from 14.56% (95% CI, 6.24%-22.88%) to 72.73% (64.81%-79.43%) and from 44.66% (34.86%-54.46%) to 94.17% (91.12%-97.22%) after exposure to 1 or 2 times the diagnostic dose of deltamethrin (Figure 2B).\n", - "\n", - "header: Target-Site Resistance Mutations\n", - "\n", - "L1014_F_kdr_ screening revealed that 92.2% (796/863) of _A. gambiae_ s.l. mosquitoes harbored the mutation; 71.5% (617 of 863) were homozygous, 20.7% (179 of 863) were heterozygous, 5.1% (44 of 863) were wild type, and 2.7% (23 of 863) did not amplify. For PCR-confirmed _A. coluzzii_, L1014F_kdr_ prevalence was 87.8% (707 of 805); 66.6% (536 of 805) were homozygous for the mutation, 21.2% (171 of 805) were heterozygous, 5.3% (43 of 805) were wild type, and 2.2% (18 of 805) did not amplify. For _A. coluzzii_, population-level L1014F_kdr_ allele frequency was 0.83, with evidence for significant deviations from Hardy-Weinberg equilibrium (kh2 = 29.124; \\(P\\) <.001). There was no significant association between L1014F_kdr_ frequency and the ability of _A. coluzzii_, to survive pyrethroid exposure, in either LLIN or resistance bioassays (kh2 = 2.0001 [_P_ =.16] and kh2 = 3.6998 [_P_ =.054], respectively). Similarly, there was no significant association between L1014F_kdr_ and the ability of _A. coluzzii_ to survive PBO preexposure and pyrethroid treatment, in either LLIN or resistance bioassays (kh2 = 0.0086; \\(P\\) =.93; Fisher exact test, \\(P\\) =.429, respectively).\n", - "\n", - "For PCR-confirmed _A. gambiae_ s.s., L1014F_kdr_ prevalence was 95.3% (61 of 64); 89.1% (57 of 64) were homozygous for the mutation, 6.3% (4 of 64) were heterozygous, none were wild type, and 4.7% (3 of 64) did not amplify. There was no significant association between L1014F_kdr_ frequency and ability of _A. gambiae_ s.s. to survive pyrethroid or PBO preexposure and pyrethroid treatment (in either LLIN or resistance bioassays), because all tested individuals harbored this mutation (n = 61). For _A. gambiae_ s.s., the population-level L1014F_kdr_ allele frequency was 0.97, with no significant deviations from Hardy-Weinberg equilibrium (kh2 = 0.070; \\(P\\) =.79).\n", - "\n", - "N1575Y screening revealed that 2.3% of _A. gambiae_ s.l. mosquitoes (21 of 912) harbored the mutation; all were\n", - "heterozygotes. N1575Y prevalence was 1.1% (9 of 805) and 16% (12 of 75) for PCR-confirmed _A. coluzzi_ and _A. gambiae_ s.s., respectively; 0.99% (9 of 912) did not amplify. There was no evidence for ongoing N1575Y selection in either species (kh2 = 0.026 [_P_ =.87] and kh2 = 0.62 [_P_ =.43] for _A. coluzzi_ and _A. gambiae_ s.s., respectively). For _A. coluzzi_, there was no significant association between N1575Y frequency and ability of mosquitoes to survive pyrethroid exposure, in LLIN or resistance bioassays (kh2 = 0.0001 [_P_ =.99] and kh2 = 0.3244 [_P_ =.57], respectively).\n", - "\n", - "G119S _Ace-1_ screening revealed that 55.1% of _A. gambiae_ s.l. mosquitoes (27 of 49) harbored the mutation; all were heterozygotes. G119S _Ace-1_ prevalence was 64.9% (24 of 37) and 27.3% (3 of 11) for PCR-confirmed _A. coluzzi_ and _A. gambiae_ s.s., respectively; 1 remaining _A. gambiae-A. coluzzi_ hybrid was wild type. For _A. coluzzi_, population-level G119S _Ace-1_ allele frequency was 0.32, with evidence of significant deviations from Hardy-Weinberg equilibrium (kh2 = 8.525; \\(P\\) =.004). For _A. gambiae_ s.s., population-level G119S _Ace-1_ allele frequency was 0.14, with no significant deviations from Hardy-Weinberg equilibrium (kh2 = 0.274; \\(P\\) =.60). For _A. coluzzi_, there was a significant association between G119S _Ace-1_ frequency and surviving bendiocarb exposure (Fisher exact test, \\(P\\) =.005).\n", - "\n", - "header: Study Area and Mosquito Collections: WHO Cone Bioassay Testing\n", - "\n", - "Two types of LLIN were evaluated in this study. PermaNet 2.0 is a conventional LLIN treated with deltamethrin only (1.4 g/kg +- 25%) and PermaNet 3.0 is a piperonyl butoxide (PBO) synergism LILIN, consisting of a roof containing PBO (25g/kg) and deltamethrin (4 g/kg +- 25%) and side panels containing deltamethrin only (2.8 g/kg +- 25%). WHO cone bioassays were used to test the susceptibility of _A. gambiae_ s.l. exposed to unwashed PermaNet 2.0, PermaNet 3.0 roof panels, and PermaNet 3.0 side panels [21]. To control for potential variation in insecticide/synergist content, each of 5 LLINs per type was cut into 19 pieces, measuring 30 x 30 cm, with each piece tested a maximum of 3 times.\n", - "\n", - "header: Abstract\n", - "\n", - "Association of Reduced Long-Lasting Insecticidal Net Efficacy and Pyrethroid Insecticide Resistance With Overexpression of _CYP6P4_, _CYP6P3_, and _CYP6Z1_ in Populations of _Anopheles coluzzii_ From Southeast Cote d'Ivoire\n", - "\n", - "Anne Meiwald,\\({}^{1,2}\\) Emma Clark,\\({}^{1,2}\\) Mejica Kristan,\\({}^{1}\\) Constant Edi,\\({}^{2}\\) Claire L Jeffries,\\({}^{1}\\) Bethanie Pelloquin,\\({}^{1}\\) Seth R. Irish,\\({}^{2}\\) Thomas Walker,\\({}^{1}\\) and Louisa A. Messenger\\({}^{1,0}\\)\n", - "\n", - "\n", - "Resistance to major public health insecticides in Cote d'Ivoire has intensified and now threatens the long-term effectiveness of malaria vector control interventions.\n", - "\n", - "header: Mosquito Survival After Insecticidal Exposure\n", - "\n", - "All _A. gambiae_ s.l. tested in LLIN bioefficacy or resistance intensity bioassays, were held for 72 hours, to assess any impact of insecticide or net exposure on delayed mortality rate. For LLIN bioassays, there was little evidence for any reduction in survival during this holding period (Cox regression \\(P\\) =.15,.27, and.85, respectively, for comparisons between untreated control and PermaNet 2.0, PermaNet 3.0 side panels, and PermaNet 3.0 roof panels) (Table 1 and Figure 3A). Exposure to the diagnostic doses of all insecticides in CDC bottle bioassays did not induce significant delayed mortality effects over 72 hours (Cox regression \\(P\\) >.05 for all insecticides compared with control, with the exception of chlorfenapyr [_P_ =.02]) (Table 1 and Figure 3B). This phenomenon was also observed at increasing pyrethroid doses\n", - "\n", - "Figure 2: _A._ Resistance intensity of field-caught _Anaopheles gambiae_ sensu late (s.l.) after exposure to 1, 2, 5, or 10 times the diagnostic dose of pyrethroid insecticides. Mean knockdown/acute toxicity rates after 30-minute exposure are shown with 95% confidence intervals (Cls). Knockdown or mortality rates at the same dose per insecticide sharing a letter do not differ significantly (_P_ >.05). Mortality rates <00% (_lower and line_) represent confirmed resistance at the diagnostic dose (1a), and rates <00% (_upper and line_) indicate moderate to high-intensity resistance and high-intensity resistance at 5° and 10x, respectively, as defined by the World Health Organization [24]. _B._ Restoration of deltamethrin susceptibility of field-caught _A. gambiae_ s.l. after presopause to piperonyl butoxide (PBO). Mean knockdown/acute toxicity after 30-minute exposure to 1 or 2 times the diagnostic dose of deltamethrin with 95% Cls. Knockdown/mortality rates do not differ significantly between pyrethroid only and synergist plus pyrethroid sharing a letter (_P_ >.05). Red line at 90% mortality rate represents metabolic resistance mechanisms partially involved [24].\n", - "\n", - "\n", - "(Cox regression \\(P\\) >.05 for alpha-cypermethrin, deltamethrin, and permethrin 5x and 10x vs either the control or diagnostic dose) (Table 1; Figure 3C and 3D).\n", - "\n", - "header: Metabolic Resistance Mechanisms\n", - "\n", - "Comparison of metabolic gene expression levels in field populations of _A. coluzzi_ and _A. gambiae s.s._ demonstrated significant up-regulation of _CYP6P4_ (fold change, 5.88 [95% CI, 5.19-44.06] for _A. coluzzi_ and 6.08 [5.43-50.64] for _A. gambiae_ s.s.), _CYP6Z1_ (4.04 [3.69-41.54] and 3.56 [3.24-36.25], respectively),\n", - "\n", - "Figure 3.: The longevity of field-caught _A. gambiae_ sensus into after exposure to long-lasting insecticidal nets (LLINs) in World Health Organization cone assays (_A_) and \\(x\\) (B, 5x [_O_], and 10× [_D_) the diagnostic dose of pyrethroid insecticides in Centres for Disease Control and Prevention resistance intensity assays. Kaplan-Meier survival curves indicate the proportion alive each day after exposure. Immediate mortality rates after LLIN (60 minutes and 24 hours) or insecticidal exposure (30 or 60 minutes, depending on insecticide) were excluded.\n", - "\n", - "\n", - "and _CYP6P3_ (12.56 [11.40-12-3.83] and 13.85 [12.53-132.03]), relative to a susceptible laboratory colony, respectively (Figure 4). More modest overexpression of _CYP6P1_ and _GSTE2_ was observed (_CYP6P1_ fold changes, 1.18 [95% CI, 1.08-12.31] and 1.28 [1.17-14.40]; GSTE2, 0.56 [.48-3.32], and 0.67 [.58-4.29], for _A. coluzzi_ and _A. gambiae_ s.s., respectively) (Figure 4). The fold change levels did not differ significantly between the 2 species for any gene nor by malaria infection status in wild _A. coluzzi_. Comparison of metabolic gene expression in phenotyped field populations of _A. coluzzi_ revealed lower fold changes overall, but notably, increased overexpression of _CYP6P3_ in survivors of bendiocarb, deltamethrin, PBO plus deltamethrin, and permethrin (fold change, 3.91 [95% CI, 3.33-22.16], 2.21 [1.88-12.53], 2.64 [2.21-13.69], and 2.21 [1.99-20.03], respectively) (Figure 5).\n", - "\n", - "header: Keywords\n", - "\n", - "_Anopheles coluzzii_; insecticide resistance; _Plasmodium falciparum_; long-lasting insecticidal nets; Cote d'Ivoire; PBO; chlorfenapyr; clothianidin; _CYP6P4_; _CYP6P3_; _CYP6Z1_\n", - "\n", - "In Cote d'Ivoire, malaria is a serious public health problem with the entire population of about 26.2 million people at risk, and disease prevalence reaching as high as 63% in the southwest region [1]. Control of _Anopheles gambiae_ sensu lato (s.l.), the major malaria vector species group, has been through the efforts of the National Malaria Control Programme, which has distributed insecticide-treated nets as the primary vector control intervention. Indoor residual spraying and larviciding in high transmission areas have been recommended as complementary strategies; implementation of the former commenced in late 2020 [2]. Estimates of net coverage across the country remain low, with the proportion of households with at least >=1 insecticide-treated net per 2 persons rising from 31% in 2012 to 47% in 2016, and insecticide-treated net use stagnating at 40% of households reporting sleeping under a net the previous night in both survey years [2]. The most recent universal net campaigns in Cote d'Ivoire in 2017-2018 issued conventional, pyrethroid (deltamethrin) long-lasting insecticidal nets (LLINs), aiming to achieve 90% coverage and 80% use [2]. However, country-wide, multiclass insecticide resistance among populations of _A. gambiae_ s.l. is a growing cause for concern because of potential operational failure of current vector control strategies, both locally and across the sub-Saharan region [2, 3].\n", - "\n", - "Resistance to pyrethroid and carbamate insecticides in _Anopheles_ mosquitoes was first reported from the central \n", - "region of Cote d'Ivoire in the early 1990s [4, 5, 6, 7]. Local resistance to the major insecticide classes recommended by the World Health Organization (WHO) for adult mosquito control--pyrethroids, carbamates, organophosphates, and organochlorines--evolved rapidly [8, 9, 10] and has been increasing in intensity, driven largely by selective pressures imposed by contemporaneous scale-up of public health vector control interventions (including those targeting malaria, trypanosomiasis, and onchocerciasis vectors) and use of agricultural pesticides [11, 12, 13, 14, 7]. This escalation in resistance has now begun to compromise the insecticidal efficacy and community-wide impact of conventional, pyrethroid LLINs in Cote d'Ivoire [14, 15], although some levels of personal protection may still remain [15, 16, 17].\n", - "\n", - "Among vector populations across Cote d'Ivoire, the L1014F _kdr_ mutation is pervasive and has been implicated in some longitudinal trends in decreasing DDT and pyrethroid susceptibility [7, 11]; L1014S _kdr_ and N1575Y resistance mutations have also been detected but at much lower frequencies [18]. Extreme carbamate (bendiocarb) resistance and pyrethroid cross-resistance in some _A. gambiae_ sensu stricto (s.s.) populations are mediated by overexpression of _CYP6P3_ and _CYP6M2_ and duplication of the G119S _Ace-1_ mutation [19]. To support and safeguard future malaria control efforts in Cote d'Ivoire, the current study evaluated the efficacy of conventional and next-generation LLINs for prospective distribution, determined current insecticide resistance profiles of _A. gambiae_ s.l. (principally _Anopheles coluzzi_), and characterized underlying molecular and metabolic resistance mechanisms.\n", - "\n", - "header: Characterization of Insecticide Resistance Mechanisms: Metabolic Gene Expression\n", - "\n", - "Relative expression of 5 metabolic genes (_CYP6P3_, _CYP6P4_, _CYP6Z1_, _CYP6P1_, and _GSTE2_) was measured in all field collected mosquitoes (n = 912), using multiplex quantitative real-time polymerase chain reaction (PCR) assays, relative to the housekeeping gene ribosomal protein S7 (_RPS7_) [30]. In addition, gene expression levels were measured in susceptible _A. coluzzii_ Nguosso colony mosquitoes (n = 48). All samples were run in technical triplicate. Expression level and fold change of each target gene between resistant and susceptible field samples, relative to the susceptible laboratory strain, were calculated using the 2-\\({}^{\\text{-}\\Delta\\text{ACT}}\\) method incorporating PCR efficiency, normalized relative to the endogenous control gene (_RPS7_).\n", - "\n", - "header: Discussion\n", - "\n", - "Cote d'Ivoire has hot spots with some of the highest levels of resistance of _Anopheles_ mosquitoes to public health insecticides worldwide, with potentially severe implications for sustaining gains in malaria control [31]. To safeguard malaria vector control efforts and inform the design of effective resistance management strategies, involving tactical deployment of differing indoor residual spraying and LLIN modalities, there needs to be a clear understanding of contemporary phenotypic and genotypic insecticide resistance.\n", - "\n", - "Our study detected intense pyrethroid resistance in southeast Cote d'Ivoire, as evidenced by high proportions of survivors, after exposure to 10 times the diagnostic doses of pyrethroids, as well as very low knockdown and 24-hour mortality rates for deltamethrin-only LLINs, equivalent to rates for an untreated net. These findings are largely in agreement with historical resistance profiles from this region [7, 10, 11] and indicate that conventional LLINs may no longer be operationally viable in areas of high pyrethroid resistance intensity. Previous phase II studies of pyrethroid-only LLINs in the central region of Cote d'Ivoire have demonstrated similarly poor efficacy with highly resistant _A. gambiae_ s.l. populations but argued for the retention of some degree of personal protection [15-17].\n", - "\n", - "Other observational cohorts have reported higher incidences of malaria among non-net users compared with users in areas of moderate to high pyrethroid resistance [17]. The extent of protective efficacy afforded by pyrethroid LLINs will likely reflect the strength of local vector resistance and levels of both net physical integrity and individual compliance [32, 33]; in Cote d'Ivoire, reported LLIN usage has been low, requiring additional behavioral interventions [2, 34]. Our findings of high mosquito mortality rates after exposure to clothianidin and chlorfenapyr and improved vector susceptibility with PBO treatment (on both LLINs and in resistance bioassays), are consistent with data from other sentinel sites across Cote d'Ivoire [16, 35, 36], and strongly support the deployment of vector control interventions incorporating these new active ingredients.\n", - "\n", - "Study results indicate that _A. coluzzi_ was the predominant local vector species during the rainy season, as observed previously [7], circulating sympatrically with smaller proportions of _A. gambiae_ s.s. These 2 vector species commonly cohabit but can be genetically distinct in terms of resistance mechanisms [37, 38] and can also differ in larval ecology, behavior, migration, and activation [39-41]. In general, resistance mechanisms in _A. coluzzi_ are less well characterized, compared with _A. gambiae_ s.s., in part because these vectors are morphologically\n", - "\n", - "Figure 4: Metabolic gene expression in field _Anopheles coluzzi_ and _Anopheles gambiae_ sensu stricto (s.s.) populations relative to a susceptible colony population. Error bars represent 95% confidence intervals. Statistically significant differences in expression levels relative to the susceptible colony are indicated as follows: *_P_ <.05; **_P_ <.01; ***_P_ <.001.\n", - "\n", - "\n", - "indistinguishable and few studies present data disaggregated by PCR-confirmed species.\n", - "\n", - "We observed several distinct features in our study, including, principally, evidence for ongoing selection of L1014F _kdr_ and G119S _Ace-1 in A. coluzzii_, which was absent in _A. gambiae_ s.s. and higher proportions of N1575Y in _A. gambiae_ s.s.; expression levels of metabolic genes were comparable between species. The lack of association between L1014F _kdr_ genotype and mosquito phenotype, coupled with the identification of 3 CYP450 enzymes (_CYP6P4, CYP6P3,_ and _CYP6Z1_) that were significantly overexpressed in field populations (some of which are known to metabolize pyrrethroids and next-generation LLIN insecticides [42, 43]), indicate a key role for metabolic resistance in this _A. coluzzii_ population. One notable difference in our data set, compared with previous findings in Agboville [7], was the finding of benodiocarb susceptibility. This may be attributable to small-scale spatial and longitudinal heterogeneity in resistance, which can be highly dynamic [37, 44], and/or phenotypic differences between vector species, complicating intervention choice for resistance management.\n", - "\n", - "With the exception of chlorfenapyr, which is known to be a slow-acting insecticide, no delayed mortality effects were detected after insecticidal exposure; the format and dose used for clothianidin testing (another slow-acting insecticide [45]) were instead intended to measure acute toxicity within a 60-minute exposure period. Previous mathematical models using resistant mosquito colonies have suggested that sublethal insecticide treatment may still reduce vector lifespan and inhibit blood-feeding and host-seeking behaviors, thereby interrupting malaria transmission [46, 47]. Our observations are more compatible with reports from Burkina Faso, where different exposure regimens of wild, resistant _A. gambiae_ s.l. populations to deltamethrin LLINs did not induce any delayed mortality effects [47]. Further assessment of sublethal effects are warranted across additional field populations with differing resistance mechanisms, to clarify the impact of insecticidal exposure on the vectorial capacity of resistant mosquitoes.\n", - "\n", - "To date there is a paucity of data regarding the interactions between insecticide resistance and _Plasmodium_ development [48]. In the current study, _A. coluzzii_ that died after pyrethroid exposure were significantly more likely to be infected with malaria. This might be explained by elevated metabolic enzymes and/or prior pyrethroid exposure detrimentally affecting parasite development [49], although it is important to note that we did not detect any significant differences between gene overexpression in malaria-infected versus noninfected _A. coluzzii_. Alternatively, our sampled population may have been physiologically older, as phenotypic resistance is known to decline with age [50]. It is impossible to distinguish between these hypotheses using field-collected vector populations; the experimental design used in this study had other biological and technical limitations, which have been described in detail elsewhere [23, 37]\n", - "\n", - "In conclusion, as new combination and bitreated vector control interventions become available for deployment, contemporary resistance information is crucial for the rationale design of management strategies and to mitigate further selection for particular resistance mechanisms. The results from the current study contribute to growing insecticide resistance data for Cote d'Ivoire, demonstrating a loss of bioefficacy of pyrethroid LLINs and supporting the use of new active ingredients (clothianidin, chlorfenapyr, and PBO). Study findings also highlight the need for expanded insecticide resistance surveillance, including monitoring of metabolic resistance mechanisms, in conjunction with studies to better characterize the impact of sublethal insecticide exposure on vectorial capacity and the interaction between insecticide resistance and _Plasmodium_ parasite development.\n", - "\n", - "Figure 5: Metabolic gene expression in resistant versus susceptible field _Anopheles coluzzi_, which either died or survived after insecticidal exposure. Error bars represent 95% confidence intervals.\n", - "\n", - "header: Mosquito Collections and Species Identification: LIII Efficacy\n", - "\n", - "A total of 2666 field-caught _A. gambiae_ s.l were used to assess the bioefficacy of conventional pyrethroid-treated LLINs (PermaNet 2.0 and PermaNet 3.0 side panels) and next-generation synergisti LLINs (PermaNet 3.0 roof panels), compared with an untreated control (Figure 1). Overall, _A. gambiae_ s.l. knockdown and mortality rates with deltamethrin LLINs were very low and largely equivalent to those for the untreated control net (Figure 1). At 60 minutes, average mosquito knockdown rates with the untreated control, PermaNet 2.0, and PermaNet 3.0 side panels were 1.56% (95% confidence interval [CI], 1.13%-1.99%), 0.54% (.42%-6.5%), and 1.75% (1.49%-2.0%), respectively. By contrast, average mosquito knockdown rates for PBO-containing PermaNet 3.0 roof panels were significantly higher (79.8% [95% CI, 79.07%-80.48%]; kh2 = 705.51, 968.65, and 937.33 [_P_ <.001] vs untreated control, PermaNet 2.0, and PermaNet 3.0 side panels, respectively) (Figure 1).\n", - "\n", - "At 24 hours, mortality rates with the untreated control, PermaNet 2.0, and PermaNet 3.0 side panels remained low (6.11% [95% CI, 4.71%-7.51%], 5.44% [4.58%-6.29%], and 3.66% [3.12%-4.19%], respectively), while those with PermaNet 3.0 roof panels increased only marginally but still remained significantly higher (83.81% [95% CI, 83.15%-84.47%];\n", - "\n", - "Figure 1.: Bioefficacy of different unwashed long-lasting insecticidal nets (LLINs) against field-caught _Angabies gambiae_ sensu tatto. Mean knockdown and mortality rates are shown with 95% confidence intervals, at 60 minutes and 24 hours, respectively, after 3-minute exposure to PermaNet 2.0 (deltamethrin only), side panels of PermaNet 3.0 (deltamethrin only, roof panels of PermaNet 3.0 (pieronym) butoxide plus deltamethrin), and an untreated control net. Knockdown or mortality rates in the same time period for each treatment sharing a letter do not differ significantly (_P_ >.05). Green lines at 275% and 295% knockdown represent minimal and optimal effectiveness, respectively, at 60 minutes. Red lines at 250% and >80% mortality represent minimal and optimal LLIN effectiveness at 24 hours, respectively, as defined by the World Health Organization [21].\n", - "\n", - "\n", - "\\(\\chi^{2}\\) = 727.96, 914.61, and 963.09 [\\(P\\) <.001 for all] vs untreated control, PermaNet 2.0, and PermaNet 3.0 side panels, respectively) (Figure 1). PermaNet 3.0 roof panels reached minimal effectiveness (knockdown, >=75%) 60 minutes after exposure and optimal effectiveness (mortality rate, >=80%) at 24 hours. Neither of the deltamethrin-only LLINS reached either effectiveness threshold at any time point.\n", - "\n", - "header: Mosquito Processing, Identification of _A. gambiae_ s.l. Species Complex\n", - "\n", - "Members, and _Plasmodium falciparum_ Detection\n", - "\n", - "A subsample of field-caught mosquitoes tested in bioassays was selected for molecular analysis (n = 912). Approximately equal numbers of specimens were chosen to represent phenotypically \"susceptible\" or \"resistant\" mosquitoes for each LLIN type or insecticide dose, selected across different replicates and testing days to capture as much population-level variation as possible. RNA was extracted from individual whole-body mosquitoes according to standard protocols [23]. Field _A. gambiae_ s.l. were identified to species level [25] and were screened for the presence of _Plasmodium falciparum_[26].\n", - "\n", - "header: Methods\n", - "\n", - "The study protocol was approved by the Comite National d'Ethique des Sciences de la Vie et de la Sante (no. 069-19/MSHP/CNESVS-kp) and the London School of Hygiene and Tropical Medicine (nos. 16782 and 16899). Study activities were conducted in the village of Aboude, rural Agboville, Agneby-Tiassa region, southeast Cote d'Ivoire (5'55'N, 4'13'W), selected because of its high mosquito densities and malaria prevalence [1]. Adult mosquitoes were collected using human landing catches, inside and outside households from 6 pm to 6 am, for a total of 190 person/trap/nights between 5 and 26 July 2019. Unfed mosquitoes, morphologically identified as _A. gambiae_ s.l. [20], were tested in bioassays that same day, after a brief recovery period; blood-fed mosquitoes were first held for 2-3 days to allow for blood-meal digestion.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ITNCondition` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Conclusions\n", - "\n", - "Study findings raise concerns regarding the operational failure of standard LLINs and support the urgent deployment of vector control interventions incorporating piperonyl butoxide, chlorfenapyr, or clothianidin in areas of high resistance intensity in Cote d'Ivoire.\n", - "\n", - "header: Insecticide Resistance Intensity\n", - "\n", - "A total of 2251 field-caught _A. gambiae_ s.l. were tested in resistance bioassays. Intense pyrethroid resistance was evident with more than 25% of mosquitoes surviving exposure to 10 times the dose of insecticide required to kill a susceptible population (Figure 2A). At the diagnostic dose, mosquito mortality rates did not exceed 25% for any pyrethroid tested, which was consistent with the high survival rates observed during cone bioassays using conventional LLINs (Figure 1). In general, levels of resistance to alpha-cypermethrin, deltamethrin, and permethrin were not significantly different at each insecticide concentration tested (Figure 2A).\n", - "\n", - "By comparison, carbamate tolerance was low, with a mean knockdown of 94.53% (95% CI, 92.11%-96.95%; n = 101) after 30 minutes of exposure to the diagnostic dose of bendiocarb. Similarly, high levels of susceptibility to new insecticides clothianidin and chlorfenapyr were observed, with mean mortality rates of 94.11% (95% CI, 93.43%-94.80%; n = 102) and 95.54% (94.71%-96.36%; n = 112), respectively, 72 hours after exposure to the tentative diagnostic doses. Preexposure to PBO increased the average _A. gambiae_ s.l. mortality rate significantly, from 14.56% (95% CI, 6.24%-22.88%) to 72.73% (64.81%-79.43%) and from 44.66% (34.86%-54.46%) to 94.17% (91.12%-97.22%) after exposure to 1 or 2 times the diagnostic dose of deltamethrin (Figure 2B).\n", - "\n", - "header: Malaria Prevalence\n", - "\n", - "Of the 912 _A. gambiae_ s.l. mosquitoes assayed, 31 tested positive for _P. falciparum_ (3.4%). For PCR-confirmed _A. coluzzii_, _P. falciparum_ prevalence was 3.50% (28 of 805); the remaining 3 infections were in _A. gambiae_ s.s. (4%; 3 of 75). By resistance phenotype, susceptible _A. coluzzii_ (ie, those that died after pyrethroid exposure) were more likely to be infected with malaria, compared with resistant mosquitoes (kh2 = 4.6987; \\(P\\) =.03); infection rates were 5.94% (13 of 219) and 2.49% (10 of 401), respectively.\n", - "\n", - "header: Table 1. Cox Proportional Hazard Model to Determine Impact of Long-Lasting Insecticidal Net/Insecticidal Exposure on Survival of Field-Caught Anopheles gambiae Sensu Lato 72 Hours After Exposure\n", - "footer: Abbreviations: CI, confidence interval; HRR, hazard rate ratio (ratio of hazard rate for control/reference group to hazard rate for treatment group; PBO, piperonyl butoxide.\n", - "a Immediate mortality rates after long-lasting insecticidal net (60 minutes and 24 hours) or insecticidal exposure (30 or 60 minutes, depending on insecticide) were excluded. \n", - "b Significance cutoff level defined as α = .05.\n", - "\n", - "\n", - "columns: ['Insecticide Exposure', 'No. (No. of Events)', 'HRR (95% CI)', 'P Valueb']\n", - "\n", - "{\"0\":{\"Insecticide Exposure\":\"Untreated netting\",\"No. (No. of Events)\":null,\"HRR (95% CI)\":\"Reference\",\"P Valueb\":null},\"1\":{\"Insecticide Exposure\":\"PermaNet 2.0 (deltamethrin only)\",\"No. (No. of Events)\":\"1135 (1047)\",\"HRR (95% CI)\":\"1.095 (.968\\u20131.239)\",\"P Valueb\":\".15\"},\"2\":{\"Insecticide Exposure\":\"PermaNet 3.0 side panels (deltamethrin only)\",\"No. (No. of Events)\":\"1157 (1088)\",\"HRR (95% CI)\":\"0.9664 (.9092\\u20131.027)\",\"P Valueb\":\".27\"},\"3\":{\"Insecticide Exposure\":\"PermaNet 3.0 roof panels (PBO + deltamethrin)\",\"No. (No. of Events)\":\"563 (533)\",\"HRR (95% CI)\":\"1.007 (.939\\u20131.079)\",\"P Valueb\":\".85\"},\"4\":{\"Insecticide Exposure\":\"Acetone control\",\"No. (No. of Events)\":null,\"HRR (95% CI)\":\"Reference\",\"P Valueb\":null},\"5\":{\"Insecticide Exposure\":\"Alpha-cypermethrin 1\\u00d7\",\"No. (No. of Events)\":\"676 (641)\",\"HRR (95% CI)\":\"1.006 (.9696\\u20131.043)\",\"P Valueb\":\".77\"},\"6\":{\"Insecticide Exposure\":\"Deltamethrin 1\\u00d7\",\"No. (No. of Events)\":\"683 (645)\",\"HRR (95% CI)\":\"0.9942 (.9539\\u20131.036)\",\"P Valueb\":\".78\"},\"7\":{\"Insecticide Exposure\":\"Permethrin 1\\u00d7\",\"No. (No. of Events)\":\"693 (661)\",\"HRR (95% CI)\":\"1.015 (.9698\\u20131.062)\",\"P Valueb\":\".52\"},\"8\":{\"Insecticide Exposure\":\"Clothianidin 1\\u00d7\",\"No. (No. of Events)\":\"698 (581)\",\"HRR (95% CI)\":\"1.208 (.9227\\u20131.581)\",\"P Valueb\":\".17\"},\"9\":{\"Insecticide Exposure\":\"Chlorfenapyr 1\\u00d7\",\"No. (No. of Events)\":\"708 (580)\",\"HRR (95% CI)\":\"1.692 (1.086\\u20132.637)\",\"P Valueb\":\".02\"},\"10\":{\"Insecticide Exposure\":\"PBO + deltamethrin 1\\u00d7\",\"No. (No. of Events)\":\"630 (577)\",\"HRR (95% CI)\":\"0.9662 (.2411\\u20133.873)\",\"P Valueb\":\".96\"},\"11\":{\"Insecticide Exposure\":\"Alpha-cypermethrin 5\\u00d7\",\"No. (No. of Events)\":\"633 (601)\",\"HRR (95% CI)\":\"0.9951 (.9407\\u20131.053)\",\"P Valueb\":\".86\"},\"12\":{\"Insecticide Exposure\":\"Deltamethrin 5\\u00d7\",\"No. (No. of Events)\":\"652 (610)\",\"HRR (95% CI)\":\"0.9942 (.9393\\u20131.052)\",\"P Valueb\":\".84\"},\"13\":{\"Insecticide Exposure\":\"Permethrin 5\\u00d7\",\"No. (No. of Events)\":\"636 (583)\",\"HRR (95% CI)\":\"0.9931 (.8638\\u20131.142)\",\"P Valueb\":\".92\"},\"14\":{\"Insecticide Exposure\":\"Alpha-cypermethrin 10\\u00d7\",\"No. (No. of Events)\":\"624 (587)\",\"HRR (95% CI)\":\"0.9951 (.917\\u20131.08)\",\"P Valueb\":\".91\"},\"15\":{\"Insecticide Exposure\":\"Deltamethrin 10\\u00d7\",\"No. (No. of Events)\":\"623 (588)\",\"HRR (95% CI)\":\"0.9943 (.9072\\u20131.09)\",\"P Valueb\":\".90\"},\"16\":{\"Insecticide Exposure\":\"Permethrin 10\\u00d7\",\"No. (No. of Events)\":\"656 (603)\",\"HRR (95% CI)\":\"1.026 (.9509\\u20131.107)\",\"P Valueb\":\".51\"},\"17\":{\"Insecticide Exposure\":\"1\\u00d7 Insecticide dose\",\"No. (No. of Events)\":null,\"HRR (95% CI)\":\"Reference\",\"P Valueb\":null},\"18\":{\"Insecticide Exposure\":\"Alpha-cypermethrin 5\\u00d7\",\"No. (No. of Events)\":\"117 (92)\",\"HRR (95% CI)\":\"1.016 (.9069\\u20131.138)\",\"P Valueb\":\".78\"},\"19\":{\"Insecticide Exposure\":\"Alpha-cypermethrin 10\\u00d7\",\"No. (No. of Events)\":\"108 (78)\",\"HRR (95% CI)\":\"1.007 (.9403\\u20131.078)\",\"P Valueb\":\".84\"},\"20\":{\"Insecticide Exposure\":\"Deltamethrin 5\\u00d7\",\"No. (No. of Events)\":\"143 (105)\",\"HRR (95% CI)\":\"1.0 (.9035\\u20131.107)\",\"P Valueb\":\">.99\"},\"21\":{\"Insecticide Exposure\":\"Deltamethrin 10\\u00d7\",\"No. (No. of Events)\":\"114 (83)\",\"HRR (95% CI)\":\"1.0 (.9363\\u20131.068)\",\"P Valueb\":\">.99\"},\"22\":{\"Insecticide Exposure\":\"Permethrin 5\\u00d7\",\"No. (No. of Events)\":\"137 (94)\",\"HRR (95% CI)\":\"1.022 (.8528\\u20131.225)\",\"P Valueb\":\".81\"},\"23\":{\"Insecticide Exposure\":\"Permethrin 10\\u00d7\",\"No. (No. of Events)\":\"157 (114)\",\"HRR (95% CI)\":\"0.9952 (.9491\\u20131.044)\",\"P Valueb\":\".84\"}}\n", - "\n", - "header: Notes\n", - "\n", - "_Acknowledgments._ The authors express their sincere thanks to M. Didier Dobri, Centre Suisse de Recherches Scientifiques en Cote d'Ivoire (CSRS) laboratory technician, and Fidele Assamoa for their support in mosquito collection and rearing, the chief and population of the village of Aboude (Agboville), and the entomology fieldworkers of CSRS. They also thank Vestergaard for supplying the long-lasting insecticidal nets tested in this study.\n", - "\n", - "_Author contributions._ A. M., E. C., M. K., T. W., and L. A. M. designed the study. A. M., E. C., C. E., and B. P. led the entomology field activities and participated in data collection. A. M., E. C., C. L. J., T. W., and L. A. M. performed the molecular assays. A. M., E. C., M. K., C. E., C. L. J., B. P., S. R. I, T. W., and L. A. M. were responsible for data analysis and interpretation. L. A. M. drafted the manuscript, which was revised by all coauthors. All authors read and approved the final manuscript.\n", - "\n", - "_Disclaimer._ The findings and conclusions in this report are those of the authors and do not necessarily represent the official position of the Centers for Disease Control and Prevention.\n", - "\n", - "_Financial support._ This work was supported by the Sir Halley Stewart Trust (L.A.M.), the Wellcome Trust/Royal Society ([http://www.wellcome.ac.uk](http://www.wellcome.ac.uk) and [https://royalsociety.org](https://royalsociety.org); (101285/Z/13/Z to T.W.) and the US President's Malaria Initiative/Centers for Disease Control and Prevention (S.R.I.).\n", - "\n", - "_Potential conflicts of interest._ All authors: No reported conflicts. All authors have submitted the ICMJE Form for Disclosure of Potential Conflicts of Interest. Conflicts that the editors consider relevant to the content of the manuscript have been disclosed.\n", - "\n", - "header: Resistance Intensity and Synergist Bioassay Testing\n", - "\n", - "Centers for Disease Control and Prevention (CDC) resistance intensity bioassays were performed for 6 public health insecticides (pyrethroids: alpha-cypermethrin, deltamethrin, and permethrin; carbamate: bendiocarb; neonicotinoid: clothianidin; and pyrrole: chlorfenapyr) [22, 23]. The diagnostic doses of all insecticides were evaluated (including clothianidin [90 mg per bottle] [23] and chlorfenapyr [100 mg per bottle]) and 2, 5, and 10 times the diagnostic dose of pyrethroid insecticides were also used. Per test, knockdown was recorded at 15-minute intervals for 30 minutes (pyrethroids and bendiocarb) or 60 minutes (dothianidin and chlorfenapyr) of insecticide exposure. One-hour PBO preexposures were performed using WHO tube assays [24], before deltamethrin CDC bottle bioassay testing [22].\n", - "\n", - "WHO cone and CDC resistance intensity bioassay data were interpreted according to the WHO criteria [21, 22]. Mosquitoes that died after exposure to a LLIN or 1x insecticide dose were stored at -20degC in RNAlater (Thermo Fisher Scientific) and were considered \"susceptible\" for genotypic analysis. Surviving mosquitoes were held and scored for mortality rate after 24, 48 and 72 hours to observe delayed mortality effects. Kaplan-Meier curves were used to visualize survival data, and Cox regression was used to compare postexposure survival. Immediate mortality rates after LLIN (60 minutes and 24 hours) or insecticidal exposure (30 or 60 minutes, depending on insecticide) were excluded. Surviving mosquitoes at 72 hours were stored at -20degC in RNAlater and were considered \"resistant\" for genotypic analysis.\n", - "\n", - "header: Mosquito Survival After Insecticidal Exposure\n", - "\n", - "All _A. gambiae_ s.l. tested in LLIN bioefficacy or resistance intensity bioassays, were held for 72 hours, to assess any impact of insecticide or net exposure on delayed mortality rate. For LLIN bioassays, there was little evidence for any reduction in survival during this holding period (Cox regression \\(P\\) =.15,.27, and.85, respectively, for comparisons between untreated control and PermaNet 2.0, PermaNet 3.0 side panels, and PermaNet 3.0 roof panels) (Table 1 and Figure 3A). Exposure to the diagnostic doses of all insecticides in CDC bottle bioassays did not induce significant delayed mortality effects over 72 hours (Cox regression \\(P\\) >.05 for all insecticides compared with control, with the exception of chlorfenapyr [_P_ =.02]) (Table 1 and Figure 3B). This phenomenon was also observed at increasing pyrethroid doses\n", - "\n", - "Figure 2: _A._ Resistance intensity of field-caught _Anaopheles gambiae_ sensu late (s.l.) after exposure to 1, 2, 5, or 10 times the diagnostic dose of pyrethroid insecticides. Mean knockdown/acute toxicity rates after 30-minute exposure are shown with 95% confidence intervals (Cls). Knockdown or mortality rates at the same dose per insecticide sharing a letter do not differ significantly (_P_ >.05). Mortality rates <00% (_lower and line_) represent confirmed resistance at the diagnostic dose (1a), and rates <00% (_upper and line_) indicate moderate to high-intensity resistance and high-intensity resistance at 5° and 10x, respectively, as defined by the World Health Organization [24]. _B._ Restoration of deltamethrin susceptibility of field-caught _A. gambiae_ s.l. after presopause to piperonyl butoxide (PBO). Mean knockdown/acute toxicity after 30-minute exposure to 1 or 2 times the diagnostic dose of deltamethrin with 95% Cls. Knockdown/mortality rates do not differ significantly between pyrethroid only and synergist plus pyrethroid sharing a letter (_P_ >.05). Red line at 90% mortality rate represents metabolic resistance mechanisms partially involved [24].\n", - "\n", - "\n", - "(Cox regression \\(P\\) >.05 for alpha-cypermethrin, deltamethrin, and permethrin 5x and 10x vs either the control or diagnostic dose) (Table 1; Figure 3C and 3D).\n", - "\n", - "header: RESULTS\n", - "\n", - "A total of 4917 female _A. gambiae_ s.l. mosquitoes were collected in Agboville, Cote d'Ivoire. Of those, 912, which were previously tested in either LLIN bioefficacy (n = 384) or resistance intensity (n = 528) bioassays, were selected for molecular species identification. Of the 912 selected, 805 (88.3%) were determined to be _A. coluzzii_, 75 (8.2%) were _A. gambiae_ s.s., and 22 (2.4%) were _A. gambiae_-_A. coluzzii_ hybrids; 10 individuals did not amplify.\n", - "\n", - "header: Results\n", - "\n", - "Phenotypic resistance was intense: >25% of mosquitoes survived exposure to 10 times the doses of pyrethroids required to kill susceptible populations. Similarly, the 24-hour mortality rate with deltamethrin-only LLINs was very low and not significantly different from that with an untreated net. Sublethal pyrethroid exposure did not induce significant delayed vector mortality effects 72 hours later. In contrast, LLINs containing the synergist piperonyl butoxide, or new insecticides dothianidin and chlorfenapyr, were highly toxic to _A. coluzzii_. Pyrethroid-susceptible _A. coluzzii_ were significantly more likely to be infected with malaria, compared with those that survived insecticidal exposure. Pyrethroid resistance was associated with significant overexpression of _CYP6P4_, _CYP6P3_, and _CYP6Z1_.\n", - "\n", - "header: Characterization of Insecticide Resistance Mechanisms: Target-Site Mutations\n", - "\n", - "The same cohort of field mosquitoes (n = 912) was tested for the presence of L1014F _kdr_[27] and N1575Y mutations [28]. A subsample of mosquitoes (n = 49) that were exposed to bendiocarb, clothianidin or chlorfenapyr was tested for the presence of the G119S _Ace-1_ mutation [29]. Pearson kh2 and Fisher exact tests (when sample sizes were small) were used to investigate the statistical association between resistance status, allele frequencies, and deviations from Hardy-Weinberg equilibrium.\n", - "\n", - "header: Study Area and Mosquito Collections: WHO Cone Bioassay Testing\n", - "\n", - "Two types of LLIN were evaluated in this study. PermaNet 2.0 is a conventional LLIN treated with deltamethrin only (1.4 g/kg +- 25%) and PermaNet 3.0 is a piperonyl butoxide (PBO) synergism LILIN, consisting of a roof containing PBO (25g/kg) and deltamethrin (4 g/kg +- 25%) and side panels containing deltamethrin only (2.8 g/kg +- 25%). WHO cone bioassays were used to test the susceptibility of _A. gambiae_ s.l. exposed to unwashed PermaNet 2.0, PermaNet 3.0 roof panels, and PermaNet 3.0 side panels [21]. To control for potential variation in insecticide/synergist content, each of 5 LLINs per type was cut into 19 pieces, measuring 30 x 30 cm, with each piece tested a maximum of 3 times.\n", - "\n", - "header: Abstract\n", - "\n", - "Association of Reduced Long-Lasting Insecticidal Net Efficacy and Pyrethroid Insecticide Resistance With Overexpression of _CYP6P4_, _CYP6P3_, and _CYP6Z1_ in Populations of _Anopheles coluzzii_ From Southeast Cote d'Ivoire\n", - "\n", - "Anne Meiwald,\\({}^{1,2}\\) Emma Clark,\\({}^{1,2}\\) Mejica Kristan,\\({}^{1}\\) Constant Edi,\\({}^{2}\\) Claire L Jeffries,\\({}^{1}\\) Bethanie Pelloquin,\\({}^{1}\\) Seth R. Irish,\\({}^{2}\\) Thomas Walker,\\({}^{1}\\) and Louisa A. Messenger\\({}^{1,0}\\)\n", - "\n", - "\n", - "Resistance to major public health insecticides in Cote d'Ivoire has intensified and now threatens the long-term effectiveness of malaria vector control interventions.\n", - "\n", - "header: Keywords\n", - "\n", - "_Anopheles coluzzii_; insecticide resistance; _Plasmodium falciparum_; long-lasting insecticidal nets; Cote d'Ivoire; PBO; chlorfenapyr; clothianidin; _CYP6P4_; _CYP6P3_; _CYP6Z1_\n", - "\n", - "In Cote d'Ivoire, malaria is a serious public health problem with the entire population of about 26.2 million people at risk, and disease prevalence reaching as high as 63% in the southwest region [1]. Control of _Anopheles gambiae_ sensu lato (s.l.), the major malaria vector species group, has been through the efforts of the National Malaria Control Programme, which has distributed insecticide-treated nets as the primary vector control intervention. Indoor residual spraying and larviciding in high transmission areas have been recommended as complementary strategies; implementation of the former commenced in late 2020 [2]. Estimates of net coverage across the country remain low, with the proportion of households with at least >=1 insecticide-treated net per 2 persons rising from 31% in 2012 to 47% in 2016, and insecticide-treated net use stagnating at 40% of households reporting sleeping under a net the previous night in both survey years [2]. The most recent universal net campaigns in Cote d'Ivoire in 2017-2018 issued conventional, pyrethroid (deltamethrin) long-lasting insecticidal nets (LLINs), aiming to achieve 90% coverage and 80% use [2]. However, country-wide, multiclass insecticide resistance among populations of _A. gambiae_ s.l. is a growing cause for concern because of potential operational failure of current vector control strategies, both locally and across the sub-Saharan region [2, 3].\n", - "\n", - "Resistance to pyrethroid and carbamate insecticides in _Anopheles_ mosquitoes was first reported from the central \n", - "region of Cote d'Ivoire in the early 1990s [4, 5, 6, 7]. Local resistance to the major insecticide classes recommended by the World Health Organization (WHO) for adult mosquito control--pyrethroids, carbamates, organophosphates, and organochlorines--evolved rapidly [8, 9, 10] and has been increasing in intensity, driven largely by selective pressures imposed by contemporaneous scale-up of public health vector control interventions (including those targeting malaria, trypanosomiasis, and onchocerciasis vectors) and use of agricultural pesticides [11, 12, 13, 14, 7]. This escalation in resistance has now begun to compromise the insecticidal efficacy and community-wide impact of conventional, pyrethroid LLINs in Cote d'Ivoire [14, 15], although some levels of personal protection may still remain [15, 16, 17].\n", - "\n", - "Among vector populations across Cote d'Ivoire, the L1014F _kdr_ mutation is pervasive and has been implicated in some longitudinal trends in decreasing DDT and pyrethroid susceptibility [7, 11]; L1014S _kdr_ and N1575Y resistance mutations have also been detected but at much lower frequencies [18]. Extreme carbamate (bendiocarb) resistance and pyrethroid cross-resistance in some _A. gambiae_ sensu stricto (s.s.) populations are mediated by overexpression of _CYP6P3_ and _CYP6M2_ and duplication of the G119S _Ace-1_ mutation [19]. To support and safeguard future malaria control efforts in Cote d'Ivoire, the current study evaluated the efficacy of conventional and next-generation LLINs for prospective distribution, determined current insecticide resistance profiles of _A. gambiae_ s.l. (principally _Anopheles coluzzi_), and characterized underlying molecular and metabolic resistance mechanisms.\n", - "\n", - "header: Metabolic Resistance Mechanisms\n", - "\n", - "Comparison of metabolic gene expression levels in field populations of _A. coluzzi_ and _A. gambiae s.s._ demonstrated significant up-regulation of _CYP6P4_ (fold change, 5.88 [95% CI, 5.19-44.06] for _A. coluzzi_ and 6.08 [5.43-50.64] for _A. gambiae_ s.s.), _CYP6Z1_ (4.04 [3.69-41.54] and 3.56 [3.24-36.25], respectively),\n", - "\n", - "Figure 3.: The longevity of field-caught _A. gambiae_ sensus into after exposure to long-lasting insecticidal nets (LLINs) in World Health Organization cone assays (_A_) and \\(x\\) (B, 5x [_O_], and 10× [_D_) the diagnostic dose of pyrethroid insecticides in Centres for Disease Control and Prevention resistance intensity assays. Kaplan-Meier survival curves indicate the proportion alive each day after exposure. Immediate mortality rates after LLIN (60 minutes and 24 hours) or insecticidal exposure (30 or 60 minutes, depending on insecticide) were excluded.\n", - "\n", - "\n", - "and _CYP6P3_ (12.56 [11.40-12-3.83] and 13.85 [12.53-132.03]), relative to a susceptible laboratory colony, respectively (Figure 4). More modest overexpression of _CYP6P1_ and _GSTE2_ was observed (_CYP6P1_ fold changes, 1.18 [95% CI, 1.08-12.31] and 1.28 [1.17-14.40]; GSTE2, 0.56 [.48-3.32], and 0.67 [.58-4.29], for _A. coluzzi_ and _A. gambiae_ s.s., respectively) (Figure 4). The fold change levels did not differ significantly between the 2 species for any gene nor by malaria infection status in wild _A. coluzzi_. Comparison of metabolic gene expression in phenotyped field populations of _A. coluzzi_ revealed lower fold changes overall, but notably, increased overexpression of _CYP6P3_ in survivors of bendiocarb, deltamethrin, PBO plus deltamethrin, and permethrin (fold change, 3.91 [95% CI, 3.33-22.16], 2.21 [1.88-12.53], 2.64 [2.21-13.69], and 2.21 [1.99-20.03], respectively) (Figure 5).\n", - "\n", - "header: Target-Site Resistance Mutations\n", - "\n", - "L1014_F_kdr_ screening revealed that 92.2% (796/863) of _A. gambiae_ s.l. mosquitoes harbored the mutation; 71.5% (617 of 863) were homozygous, 20.7% (179 of 863) were heterozygous, 5.1% (44 of 863) were wild type, and 2.7% (23 of 863) did not amplify. For PCR-confirmed _A. coluzzii_, L1014F_kdr_ prevalence was 87.8% (707 of 805); 66.6% (536 of 805) were homozygous for the mutation, 21.2% (171 of 805) were heterozygous, 5.3% (43 of 805) were wild type, and 2.2% (18 of 805) did not amplify. For _A. coluzzii_, population-level L1014F_kdr_ allele frequency was 0.83, with evidence for significant deviations from Hardy-Weinberg equilibrium (kh2 = 29.124; \\(P\\) <.001). There was no significant association between L1014F_kdr_ frequency and the ability of _A. coluzzii_, to survive pyrethroid exposure, in either LLIN or resistance bioassays (kh2 = 2.0001 [_P_ =.16] and kh2 = 3.6998 [_P_ =.054], respectively). Similarly, there was no significant association between L1014F_kdr_ and the ability of _A. coluzzii_ to survive PBO preexposure and pyrethroid treatment, in either LLIN or resistance bioassays (kh2 = 0.0086; \\(P\\) =.93; Fisher exact test, \\(P\\) =.429, respectively).\n", - "\n", - "For PCR-confirmed _A. gambiae_ s.s., L1014F_kdr_ prevalence was 95.3% (61 of 64); 89.1% (57 of 64) were homozygous for the mutation, 6.3% (4 of 64) were heterozygous, none were wild type, and 4.7% (3 of 64) did not amplify. There was no significant association between L1014F_kdr_ frequency and ability of _A. gambiae_ s.s. to survive pyrethroid or PBO preexposure and pyrethroid treatment (in either LLIN or resistance bioassays), because all tested individuals harbored this mutation (n = 61). For _A. gambiae_ s.s., the population-level L1014F_kdr_ allele frequency was 0.97, with no significant deviations from Hardy-Weinberg equilibrium (kh2 = 0.070; \\(P\\) =.79).\n", - "\n", - "N1575Y screening revealed that 2.3% of _A. gambiae_ s.l. mosquitoes (21 of 912) harbored the mutation; all were\n", - "heterozygotes. N1575Y prevalence was 1.1% (9 of 805) and 16% (12 of 75) for PCR-confirmed _A. coluzzi_ and _A. gambiae_ s.s., respectively; 0.99% (9 of 912) did not amplify. There was no evidence for ongoing N1575Y selection in either species (kh2 = 0.026 [_P_ =.87] and kh2 = 0.62 [_P_ =.43] for _A. coluzzi_ and _A. gambiae_ s.s., respectively). For _A. coluzzi_, there was no significant association between N1575Y frequency and ability of mosquitoes to survive pyrethroid exposure, in LLIN or resistance bioassays (kh2 = 0.0001 [_P_ =.99] and kh2 = 0.3244 [_P_ =.57], respectively).\n", - "\n", - "G119S _Ace-1_ screening revealed that 55.1% of _A. gambiae_ s.l. mosquitoes (27 of 49) harbored the mutation; all were heterozygotes. G119S _Ace-1_ prevalence was 64.9% (24 of 37) and 27.3% (3 of 11) for PCR-confirmed _A. coluzzi_ and _A. gambiae_ s.s., respectively; 1 remaining _A. gambiae-A. coluzzi_ hybrid was wild type. For _A. coluzzi_, population-level G119S _Ace-1_ allele frequency was 0.32, with evidence of significant deviations from Hardy-Weinberg equilibrium (kh2 = 8.525; \\(P\\) =.004). For _A. gambiae_ s.s., population-level G119S _Ace-1_ allele frequency was 0.14, with no significant deviations from Hardy-Weinberg equilibrium (kh2 = 0.274; \\(P\\) =.60). For _A. coluzzi_, there was a significant association between G119S _Ace-1_ frequency and surviving bendiocarb exposure (Fisher exact test, \\(P\\) =.005).\n", - "\n", - "header: Discussion\n", - "\n", - "Cote d'Ivoire has hot spots with some of the highest levels of resistance of _Anopheles_ mosquitoes to public health insecticides worldwide, with potentially severe implications for sustaining gains in malaria control [31]. To safeguard malaria vector control efforts and inform the design of effective resistance management strategies, involving tactical deployment of differing indoor residual spraying and LLIN modalities, there needs to be a clear understanding of contemporary phenotypic and genotypic insecticide resistance.\n", - "\n", - "Our study detected intense pyrethroid resistance in southeast Cote d'Ivoire, as evidenced by high proportions of survivors, after exposure to 10 times the diagnostic doses of pyrethroids, as well as very low knockdown and 24-hour mortality rates for deltamethrin-only LLINs, equivalent to rates for an untreated net. These findings are largely in agreement with historical resistance profiles from this region [7, 10, 11] and indicate that conventional LLINs may no longer be operationally viable in areas of high pyrethroid resistance intensity. Previous phase II studies of pyrethroid-only LLINs in the central region of Cote d'Ivoire have demonstrated similarly poor efficacy with highly resistant _A. gambiae_ s.l. populations but argued for the retention of some degree of personal protection [15-17].\n", - "\n", - "Other observational cohorts have reported higher incidences of malaria among non-net users compared with users in areas of moderate to high pyrethroid resistance [17]. The extent of protective efficacy afforded by pyrethroid LLINs will likely reflect the strength of local vector resistance and levels of both net physical integrity and individual compliance [32, 33]; in Cote d'Ivoire, reported LLIN usage has been low, requiring additional behavioral interventions [2, 34]. Our findings of high mosquito mortality rates after exposure to clothianidin and chlorfenapyr and improved vector susceptibility with PBO treatment (on both LLINs and in resistance bioassays), are consistent with data from other sentinel sites across Cote d'Ivoire [16, 35, 36], and strongly support the deployment of vector control interventions incorporating these new active ingredients.\n", - "\n", - "Study results indicate that _A. coluzzi_ was the predominant local vector species during the rainy season, as observed previously [7], circulating sympatrically with smaller proportions of _A. gambiae_ s.s. These 2 vector species commonly cohabit but can be genetically distinct in terms of resistance mechanisms [37, 38] and can also differ in larval ecology, behavior, migration, and activation [39-41]. In general, resistance mechanisms in _A. coluzzi_ are less well characterized, compared with _A. gambiae_ s.s., in part because these vectors are morphologically\n", - "\n", - "Figure 4: Metabolic gene expression in field _Anopheles coluzzi_ and _Anopheles gambiae_ sensu stricto (s.s.) populations relative to a susceptible colony population. Error bars represent 95% confidence intervals. Statistically significant differences in expression levels relative to the susceptible colony are indicated as follows: *_P_ <.05; **_P_ <.01; ***_P_ <.001.\n", - "\n", - "\n", - "indistinguishable and few studies present data disaggregated by PCR-confirmed species.\n", - "\n", - "We observed several distinct features in our study, including, principally, evidence for ongoing selection of L1014F _kdr_ and G119S _Ace-1 in A. coluzzii_, which was absent in _A. gambiae_ s.s. and higher proportions of N1575Y in _A. gambiae_ s.s.; expression levels of metabolic genes were comparable between species. The lack of association between L1014F _kdr_ genotype and mosquito phenotype, coupled with the identification of 3 CYP450 enzymes (_CYP6P4, CYP6P3,_ and _CYP6Z1_) that were significantly overexpressed in field populations (some of which are known to metabolize pyrrethroids and next-generation LLIN insecticides [42, 43]), indicate a key role for metabolic resistance in this _A. coluzzii_ population. One notable difference in our data set, compared with previous findings in Agboville [7], was the finding of benodiocarb susceptibility. This may be attributable to small-scale spatial and longitudinal heterogeneity in resistance, which can be highly dynamic [37, 44], and/or phenotypic differences between vector species, complicating intervention choice for resistance management.\n", - "\n", - "With the exception of chlorfenapyr, which is known to be a slow-acting insecticide, no delayed mortality effects were detected after insecticidal exposure; the format and dose used for clothianidin testing (another slow-acting insecticide [45]) were instead intended to measure acute toxicity within a 60-minute exposure period. Previous mathematical models using resistant mosquito colonies have suggested that sublethal insecticide treatment may still reduce vector lifespan and inhibit blood-feeding and host-seeking behaviors, thereby interrupting malaria transmission [46, 47]. Our observations are more compatible with reports from Burkina Faso, where different exposure regimens of wild, resistant _A. gambiae_ s.l. populations to deltamethrin LLINs did not induce any delayed mortality effects [47]. Further assessment of sublethal effects are warranted across additional field populations with differing resistance mechanisms, to clarify the impact of insecticidal exposure on the vectorial capacity of resistant mosquitoes.\n", - "\n", - "To date there is a paucity of data regarding the interactions between insecticide resistance and _Plasmodium_ development [48]. In the current study, _A. coluzzii_ that died after pyrethroid exposure were significantly more likely to be infected with malaria. This might be explained by elevated metabolic enzymes and/or prior pyrethroid exposure detrimentally affecting parasite development [49], although it is important to note that we did not detect any significant differences between gene overexpression in malaria-infected versus noninfected _A. coluzzii_. Alternatively, our sampled population may have been physiologically older, as phenotypic resistance is known to decline with age [50]. It is impossible to distinguish between these hypotheses using field-collected vector populations; the experimental design used in this study had other biological and technical limitations, which have been described in detail elsewhere [23, 37]\n", - "\n", - "In conclusion, as new combination and bitreated vector control interventions become available for deployment, contemporary resistance information is crucial for the rationale design of management strategies and to mitigate further selection for particular resistance mechanisms. The results from the current study contribute to growing insecticide resistance data for Cote d'Ivoire, demonstrating a loss of bioefficacy of pyrethroid LLINs and supporting the use of new active ingredients (clothianidin, chlorfenapyr, and PBO). Study findings also highlight the need for expanded insecticide resistance surveillance, including monitoring of metabolic resistance mechanisms, in conjunction with studies to better characterize the impact of sublethal insecticide exposure on vectorial capacity and the interaction between insecticide resistance and _Plasmodium_ parasite development.\n", - "\n", - "Figure 5: Metabolic gene expression in resistant versus susceptible field _Anopheles coluzzi_, which either died or survived after insecticidal exposure. Error bars represent 95% confidence intervals.\n", - "\n", - "header: Characterization of Insecticide Resistance Mechanisms: Metabolic Gene Expression\n", - "\n", - "Relative expression of 5 metabolic genes (_CYP6P3_, _CYP6P4_, _CYP6Z1_, _CYP6P1_, and _GSTE2_) was measured in all field collected mosquitoes (n = 912), using multiplex quantitative real-time polymerase chain reaction (PCR) assays, relative to the housekeeping gene ribosomal protein S7 (_RPS7_) [30]. In addition, gene expression levels were measured in susceptible _A. coluzzii_ Nguosso colony mosquitoes (n = 48). All samples were run in technical triplicate. Expression level and fold change of each target gene between resistant and susceptible field samples, relative to the susceptible laboratory strain, were calculated using the 2-\\({}^{\\text{-}\\Delta\\text{ACT}}\\) method incorporating PCR efficiency, normalized relative to the endogenous control gene (_RPS7_).\n", - "\n", - "header: Mosquito Processing, Identification of _A. gambiae_ s.l. Species Complex\n", - "\n", - "Members, and _Plasmodium falciparum_ Detection\n", - "\n", - "A subsample of field-caught mosquitoes tested in bioassays was selected for molecular analysis (n = 912). Approximately equal numbers of specimens were chosen to represent phenotypically \"susceptible\" or \"resistant\" mosquitoes for each LLIN type or insecticide dose, selected across different replicates and testing days to capture as much population-level variation as possible. RNA was extracted from individual whole-body mosquitoes according to standard protocols [23]. Field _A. gambiae_ s.l. were identified to species level [25] and were screened for the presence of _Plasmodium falciparum_[26].\n", - "\n", - "header: Mosquito Collections and Species Identification: LIII Efficacy\n", - "\n", - "A total of 2666 field-caught _A. gambiae_ s.l were used to assess the bioefficacy of conventional pyrethroid-treated LLINs (PermaNet 2.0 and PermaNet 3.0 side panels) and next-generation synergisti LLINs (PermaNet 3.0 roof panels), compared with an untreated control (Figure 1). Overall, _A. gambiae_ s.l. knockdown and mortality rates with deltamethrin LLINs were very low and largely equivalent to those for the untreated control net (Figure 1). At 60 minutes, average mosquito knockdown rates with the untreated control, PermaNet 2.0, and PermaNet 3.0 side panels were 1.56% (95% confidence interval [CI], 1.13%-1.99%), 0.54% (.42%-6.5%), and 1.75% (1.49%-2.0%), respectively. By contrast, average mosquito knockdown rates for PBO-containing PermaNet 3.0 roof panels were significantly higher (79.8% [95% CI, 79.07%-80.48%]; kh2 = 705.51, 968.65, and 937.33 [_P_ <.001] vs untreated control, PermaNet 2.0, and PermaNet 3.0 side panels, respectively) (Figure 1).\n", - "\n", - "At 24 hours, mortality rates with the untreated control, PermaNet 2.0, and PermaNet 3.0 side panels remained low (6.11% [95% CI, 4.71%-7.51%], 5.44% [4.58%-6.29%], and 3.66% [3.12%-4.19%], respectively), while those with PermaNet 3.0 roof panels increased only marginally but still remained significantly higher (83.81% [95% CI, 83.15%-84.47%];\n", - "\n", - "Figure 1.: Bioefficacy of different unwashed long-lasting insecticidal nets (LLINs) against field-caught _Angabies gambiae_ sensu tatto. Mean knockdown and mortality rates are shown with 95% confidence intervals, at 60 minutes and 24 hours, respectively, after 3-minute exposure to PermaNet 2.0 (deltamethrin only), side panels of PermaNet 3.0 (deltamethrin only, roof panels of PermaNet 3.0 (pieronym) butoxide plus deltamethrin), and an untreated control net. Knockdown or mortality rates in the same time period for each treatment sharing a letter do not differ significantly (_P_ >.05). Green lines at 275% and 295% knockdown represent minimal and optimal effectiveness, respectively, at 60 minutes. Red lines at 250% and >80% mortality represent minimal and optimal LLIN effectiveness at 24 hours, respectively, as defined by the World Health Organization [21].\n", - "\n", - "\n", - "\\(\\chi^{2}\\) = 727.96, 914.61, and 963.09 [\\(P\\) <.001 for all] vs untreated control, PermaNet 2.0, and PermaNet 3.0 side panels, respectively) (Figure 1). PermaNet 3.0 roof panels reached minimal effectiveness (knockdown, >=75%) 60 minutes after exposure and optimal effectiveness (mortality rate, >=80%) at 24 hours. Neither of the deltamethrin-only LLINS reached either effectiveness threshold at any time point.\n", - "\n", - "header: Methods\n", - "\n", - "The study protocol was approved by the Comite National d'Ethique des Sciences de la Vie et de la Sante (no. 069-19/MSHP/CNESVS-kp) and the London School of Hygiene and Tropical Medicine (nos. 16782 and 16899). Study activities were conducted in the village of Aboude, rural Agboville, Agneby-Tiassa region, southeast Cote d'Ivoire (5'55'N, 4'13'W), selected because of its high mosquito densities and malaria prevalence [1]. Adult mosquitoes were collected using human landing catches, inside and outside households from 6 pm to 6 am, for a total of 190 person/trap/nights between 5 and 26 July 2019. Unfed mosquitoes, morphologically identified as _A. gambiae_ s.l. [20], were tested in bioassays that same day, after a brief recovery period; blood-fed mosquitoes were first held for 2-3 days to allow for blood-meal digestion.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `Observation` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Notes\n", - "\n", - "_Acknowledgments._ The authors express their sincere thanks to M. Didier Dobri, Centre Suisse de Recherches Scientifiques en Cote d'Ivoire (CSRS) laboratory technician, and Fidele Assamoa for their support in mosquito collection and rearing, the chief and population of the village of Aboude (Agboville), and the entomology fieldworkers of CSRS. They also thank Vestergaard for supplying the long-lasting insecticidal nets tested in this study.\n", - "\n", - "_Author contributions._ A. M., E. C., M. K., T. W., and L. A. M. designed the study. A. M., E. C., C. E., and B. P. led the entomology field activities and participated in data collection. A. M., E. C., C. L. J., T. W., and L. A. M. performed the molecular assays. A. M., E. C., M. K., C. E., C. L. J., B. P., S. R. I, T. W., and L. A. M. were responsible for data analysis and interpretation. L. A. M. drafted the manuscript, which was revised by all coauthors. All authors read and approved the final manuscript.\n", - "\n", - "_Disclaimer._ The findings and conclusions in this report are those of the authors and do not necessarily represent the official position of the Centers for Disease Control and Prevention.\n", - "\n", - "_Financial support._ This work was supported by the Sir Halley Stewart Trust (L.A.M.), the Wellcome Trust/Royal Society ([http://www.wellcome.ac.uk](http://www.wellcome.ac.uk) and [https://royalsociety.org](https://royalsociety.org); (101285/Z/13/Z to T.W.) and the US President's Malaria Initiative/Centers for Disease Control and Prevention (S.R.I.).\n", - "\n", - "_Potential conflicts of interest._ All authors: No reported conflicts. All authors have submitted the ICMJE Form for Disclosure of Potential Conflicts of Interest. Conflicts that the editors consider relevant to the content of the manuscript have been disclosed.\n", - "\n", - "header: Resistance Intensity and Synergist Bioassay Testing\n", - "\n", - "Centers for Disease Control and Prevention (CDC) resistance intensity bioassays were performed for 6 public health insecticides (pyrethroids: alpha-cypermethrin, deltamethrin, and permethrin; carbamate: bendiocarb; neonicotinoid: clothianidin; and pyrrole: chlorfenapyr) [22, 23]. The diagnostic doses of all insecticides were evaluated (including clothianidin [90 mg per bottle] [23] and chlorfenapyr [100 mg per bottle]) and 2, 5, and 10 times the diagnostic dose of pyrethroid insecticides were also used. Per test, knockdown was recorded at 15-minute intervals for 30 minutes (pyrethroids and bendiocarb) or 60 minutes (dothianidin and chlorfenapyr) of insecticide exposure. One-hour PBO preexposures were performed using WHO tube assays [24], before deltamethrin CDC bottle bioassay testing [22].\n", - "\n", - "WHO cone and CDC resistance intensity bioassay data were interpreted according to the WHO criteria [21, 22]. Mosquitoes that died after exposure to a LLIN or 1x insecticide dose were stored at -20degC in RNAlater (Thermo Fisher Scientific) and were considered \"susceptible\" for genotypic analysis. Surviving mosquitoes were held and scored for mortality rate after 24, 48 and 72 hours to observe delayed mortality effects. Kaplan-Meier curves were used to visualize survival data, and Cox regression was used to compare postexposure survival. Immediate mortality rates after LLIN (60 minutes and 24 hours) or insecticidal exposure (30 or 60 minutes, depending on insecticide) were excluded. Surviving mosquitoes at 72 hours were stored at -20degC in RNAlater and were considered \"resistant\" for genotypic analysis.\n", - "\n", - "header: Conclusions\n", - "\n", - "Study findings raise concerns regarding the operational failure of standard LLINs and support the urgent deployment of vector control interventions incorporating piperonyl butoxide, chlorfenapyr, or clothianidin in areas of high resistance intensity in Cote d'Ivoire.\n", - "\n", - "header: Table 1. Cox Proportional Hazard Model to Determine Impact of Long-Lasting Insecticidal Net/Insecticidal Exposure on Survival of Field-Caught Anopheles gambiae Sensu Lato 72 Hours After Exposure\n", - "footer: Abbreviations: CI, confidence interval; HRR, hazard rate ratio (ratio of hazard rate for control/reference group to hazard rate for treatment group; PBO, piperonyl butoxide.\n", - "a Immediate mortality rates after long-lasting insecticidal net (60 minutes and 24 hours) or insecticidal exposure (30 or 60 minutes, depending on insecticide) were excluded. \n", - "b Significance cutoff level defined as α = .05.\n", - "\n", - "\n", - "columns: ['Insecticide Exposure', 'No. (No. of Events)', 'HRR (95% CI)', 'P Valueb']\n", - "\n", - "{\"0\":{\"Insecticide Exposure\":\"Untreated netting\",\"No. (No. of Events)\":null,\"HRR (95% CI)\":\"Reference\",\"P Valueb\":null},\"1\":{\"Insecticide Exposure\":\"PermaNet 2.0 (deltamethrin only)\",\"No. (No. of Events)\":\"1135 (1047)\",\"HRR (95% CI)\":\"1.095 (.968\\u20131.239)\",\"P Valueb\":\".15\"},\"2\":{\"Insecticide Exposure\":\"PermaNet 3.0 side panels (deltamethrin only)\",\"No. (No. of Events)\":\"1157 (1088)\",\"HRR (95% CI)\":\"0.9664 (.9092\\u20131.027)\",\"P Valueb\":\".27\"},\"3\":{\"Insecticide Exposure\":\"PermaNet 3.0 roof panels (PBO + deltamethrin)\",\"No. (No. of Events)\":\"563 (533)\",\"HRR (95% CI)\":\"1.007 (.939\\u20131.079)\",\"P Valueb\":\".85\"},\"4\":{\"Insecticide Exposure\":\"Acetone control\",\"No. (No. of Events)\":null,\"HRR (95% CI)\":\"Reference\",\"P Valueb\":null},\"5\":{\"Insecticide Exposure\":\"Alpha-cypermethrin 1\\u00d7\",\"No. (No. of Events)\":\"676 (641)\",\"HRR (95% CI)\":\"1.006 (.9696\\u20131.043)\",\"P Valueb\":\".77\"},\"6\":{\"Insecticide Exposure\":\"Deltamethrin 1\\u00d7\",\"No. (No. of Events)\":\"683 (645)\",\"HRR (95% CI)\":\"0.9942 (.9539\\u20131.036)\",\"P Valueb\":\".78\"},\"7\":{\"Insecticide Exposure\":\"Permethrin 1\\u00d7\",\"No. (No. of Events)\":\"693 (661)\",\"HRR (95% CI)\":\"1.015 (.9698\\u20131.062)\",\"P Valueb\":\".52\"},\"8\":{\"Insecticide Exposure\":\"Clothianidin 1\\u00d7\",\"No. (No. of Events)\":\"698 (581)\",\"HRR (95% CI)\":\"1.208 (.9227\\u20131.581)\",\"P Valueb\":\".17\"},\"9\":{\"Insecticide Exposure\":\"Chlorfenapyr 1\\u00d7\",\"No. (No. of Events)\":\"708 (580)\",\"HRR (95% CI)\":\"1.692 (1.086\\u20132.637)\",\"P Valueb\":\".02\"},\"10\":{\"Insecticide Exposure\":\"PBO + deltamethrin 1\\u00d7\",\"No. (No. of Events)\":\"630 (577)\",\"HRR (95% CI)\":\"0.9662 (.2411\\u20133.873)\",\"P Valueb\":\".96\"},\"11\":{\"Insecticide Exposure\":\"Alpha-cypermethrin 5\\u00d7\",\"No. (No. of Events)\":\"633 (601)\",\"HRR (95% CI)\":\"0.9951 (.9407\\u20131.053)\",\"P Valueb\":\".86\"},\"12\":{\"Insecticide Exposure\":\"Deltamethrin 5\\u00d7\",\"No. (No. of Events)\":\"652 (610)\",\"HRR (95% CI)\":\"0.9942 (.9393\\u20131.052)\",\"P Valueb\":\".84\"},\"13\":{\"Insecticide Exposure\":\"Permethrin 5\\u00d7\",\"No. (No. of Events)\":\"636 (583)\",\"HRR (95% CI)\":\"0.9931 (.8638\\u20131.142)\",\"P Valueb\":\".92\"},\"14\":{\"Insecticide Exposure\":\"Alpha-cypermethrin 10\\u00d7\",\"No. (No. of Events)\":\"624 (587)\",\"HRR (95% CI)\":\"0.9951 (.917\\u20131.08)\",\"P Valueb\":\".91\"},\"15\":{\"Insecticide Exposure\":\"Deltamethrin 10\\u00d7\",\"No. (No. of Events)\":\"623 (588)\",\"HRR (95% CI)\":\"0.9943 (.9072\\u20131.09)\",\"P Valueb\":\".90\"},\"16\":{\"Insecticide Exposure\":\"Permethrin 10\\u00d7\",\"No. (No. of Events)\":\"656 (603)\",\"HRR (95% CI)\":\"1.026 (.9509\\u20131.107)\",\"P Valueb\":\".51\"},\"17\":{\"Insecticide Exposure\":\"1\\u00d7 Insecticide dose\",\"No. (No. of Events)\":null,\"HRR (95% CI)\":\"Reference\",\"P Valueb\":null},\"18\":{\"Insecticide Exposure\":\"Alpha-cypermethrin 5\\u00d7\",\"No. (No. of Events)\":\"117 (92)\",\"HRR (95% CI)\":\"1.016 (.9069\\u20131.138)\",\"P Valueb\":\".78\"},\"19\":{\"Insecticide Exposure\":\"Alpha-cypermethrin 10\\u00d7\",\"No. (No. of Events)\":\"108 (78)\",\"HRR (95% CI)\":\"1.007 (.9403\\u20131.078)\",\"P Valueb\":\".84\"},\"20\":{\"Insecticide Exposure\":\"Deltamethrin 5\\u00d7\",\"No. (No. of Events)\":\"143 (105)\",\"HRR (95% CI)\":\"1.0 (.9035\\u20131.107)\",\"P Valueb\":\">.99\"},\"21\":{\"Insecticide Exposure\":\"Deltamethrin 10\\u00d7\",\"No. (No. of Events)\":\"114 (83)\",\"HRR (95% CI)\":\"1.0 (.9363\\u20131.068)\",\"P Valueb\":\">.99\"},\"22\":{\"Insecticide Exposure\":\"Permethrin 5\\u00d7\",\"No. (No. of Events)\":\"137 (94)\",\"HRR (95% CI)\":\"1.022 (.8528\\u20131.225)\",\"P Valueb\":\".81\"},\"23\":{\"Insecticide Exposure\":\"Permethrin 10\\u00d7\",\"No. (No. of Events)\":\"157 (114)\",\"HRR (95% CI)\":\"0.9952 (.9491\\u20131.044)\",\"P Valueb\":\".84\"}}\n", - "\n", - "header: Insecticide Resistance Intensity\n", - "\n", - "A total of 2251 field-caught _A. gambiae_ s.l. were tested in resistance bioassays. Intense pyrethroid resistance was evident with more than 25% of mosquitoes surviving exposure to 10 times the dose of insecticide required to kill a susceptible population (Figure 2A). At the diagnostic dose, mosquito mortality rates did not exceed 25% for any pyrethroid tested, which was consistent with the high survival rates observed during cone bioassays using conventional LLINs (Figure 1). In general, levels of resistance to alpha-cypermethrin, deltamethrin, and permethrin were not significantly different at each insecticide concentration tested (Figure 2A).\n", - "\n", - "By comparison, carbamate tolerance was low, with a mean knockdown of 94.53% (95% CI, 92.11%-96.95%; n = 101) after 30 minutes of exposure to the diagnostic dose of bendiocarb. Similarly, high levels of susceptibility to new insecticides clothianidin and chlorfenapyr were observed, with mean mortality rates of 94.11% (95% CI, 93.43%-94.80%; n = 102) and 95.54% (94.71%-96.36%; n = 112), respectively, 72 hours after exposure to the tentative diagnostic doses. Preexposure to PBO increased the average _A. gambiae_ s.l. mortality rate significantly, from 14.56% (95% CI, 6.24%-22.88%) to 72.73% (64.81%-79.43%) and from 44.66% (34.86%-54.46%) to 94.17% (91.12%-97.22%) after exposure to 1 or 2 times the diagnostic dose of deltamethrin (Figure 2B).\n", - "\n", - "header: Malaria Prevalence\n", - "\n", - "Of the 912 _A. gambiae_ s.l. mosquitoes assayed, 31 tested positive for _P. falciparum_ (3.4%). For PCR-confirmed _A. coluzzii_, _P. falciparum_ prevalence was 3.50% (28 of 805); the remaining 3 infections were in _A. gambiae_ s.s. (4%; 3 of 75). By resistance phenotype, susceptible _A. coluzzii_ (ie, those that died after pyrethroid exposure) were more likely to be infected with malaria, compared with resistant mosquitoes (kh2 = 4.6987; \\(P\\) =.03); infection rates were 5.94% (13 of 219) and 2.49% (10 of 401), respectively.\n", - "\n", - "header: RESULTS\n", - "\n", - "A total of 4917 female _A. gambiae_ s.l. mosquitoes were collected in Agboville, Cote d'Ivoire. Of those, 912, which were previously tested in either LLIN bioefficacy (n = 384) or resistance intensity (n = 528) bioassays, were selected for molecular species identification. Of the 912 selected, 805 (88.3%) were determined to be _A. coluzzii_, 75 (8.2%) were _A. gambiae_ s.s., and 22 (2.4%) were _A. gambiae_-_A. coluzzii_ hybrids; 10 individuals did not amplify.\n", - "\n", - "header: Results\n", - "\n", - "Phenotypic resistance was intense: >25% of mosquitoes survived exposure to 10 times the doses of pyrethroids required to kill susceptible populations. Similarly, the 24-hour mortality rate with deltamethrin-only LLINs was very low and not significantly different from that with an untreated net. Sublethal pyrethroid exposure did not induce significant delayed vector mortality effects 72 hours later. In contrast, LLINs containing the synergist piperonyl butoxide, or new insecticides dothianidin and chlorfenapyr, were highly toxic to _A. coluzzii_. Pyrethroid-susceptible _A. coluzzii_ were significantly more likely to be infected with malaria, compared with those that survived insecticidal exposure. Pyrethroid resistance was associated with significant overexpression of _CYP6P4_, _CYP6P3_, and _CYP6Z1_.\n", - "\n", - "header: Abstract\n", - "\n", - "Association of Reduced Long-Lasting Insecticidal Net Efficacy and Pyrethroid Insecticide Resistance With Overexpression of _CYP6P4_, _CYP6P3_, and _CYP6Z1_ in Populations of _Anopheles coluzzii_ From Southeast Cote d'Ivoire\n", - "\n", - "Anne Meiwald,\\({}^{1,2}\\) Emma Clark,\\({}^{1,2}\\) Mejica Kristan,\\({}^{1}\\) Constant Edi,\\({}^{2}\\) Claire L Jeffries,\\({}^{1}\\) Bethanie Pelloquin,\\({}^{1}\\) Seth R. Irish,\\({}^{2}\\) Thomas Walker,\\({}^{1}\\) and Louisa A. Messenger\\({}^{1,0}\\)\n", - "\n", - "\n", - "Resistance to major public health insecticides in Cote d'Ivoire has intensified and now threatens the long-term effectiveness of malaria vector control interventions.\n", - "\n", - "header: Mosquito Survival After Insecticidal Exposure\n", - "\n", - "All _A. gambiae_ s.l. tested in LLIN bioefficacy or resistance intensity bioassays, were held for 72 hours, to assess any impact of insecticide or net exposure on delayed mortality rate. For LLIN bioassays, there was little evidence for any reduction in survival during this holding period (Cox regression \\(P\\) =.15,.27, and.85, respectively, for comparisons between untreated control and PermaNet 2.0, PermaNet 3.0 side panels, and PermaNet 3.0 roof panels) (Table 1 and Figure 3A). Exposure to the diagnostic doses of all insecticides in CDC bottle bioassays did not induce significant delayed mortality effects over 72 hours (Cox regression \\(P\\) >.05 for all insecticides compared with control, with the exception of chlorfenapyr [_P_ =.02]) (Table 1 and Figure 3B). This phenomenon was also observed at increasing pyrethroid doses\n", - "\n", - "Figure 2: _A._ Resistance intensity of field-caught _Anaopheles gambiae_ sensu late (s.l.) after exposure to 1, 2, 5, or 10 times the diagnostic dose of pyrethroid insecticides. Mean knockdown/acute toxicity rates after 30-minute exposure are shown with 95% confidence intervals (Cls). Knockdown or mortality rates at the same dose per insecticide sharing a letter do not differ significantly (_P_ >.05). Mortality rates <00% (_lower and line_) represent confirmed resistance at the diagnostic dose (1a), and rates <00% (_upper and line_) indicate moderate to high-intensity resistance and high-intensity resistance at 5° and 10x, respectively, as defined by the World Health Organization [24]. _B._ Restoration of deltamethrin susceptibility of field-caught _A. gambiae_ s.l. after presopause to piperonyl butoxide (PBO). Mean knockdown/acute toxicity after 30-minute exposure to 1 or 2 times the diagnostic dose of deltamethrin with 95% Cls. Knockdown/mortality rates do not differ significantly between pyrethroid only and synergist plus pyrethroid sharing a letter (_P_ >.05). Red line at 90% mortality rate represents metabolic resistance mechanisms partially involved [24].\n", - "\n", - "\n", - "(Cox regression \\(P\\) >.05 for alpha-cypermethrin, deltamethrin, and permethrin 5x and 10x vs either the control or diagnostic dose) (Table 1; Figure 3C and 3D).\n", - "\n", - "header: Characterization of Insecticide Resistance Mechanisms: Target-Site Mutations\n", - "\n", - "The same cohort of field mosquitoes (n = 912) was tested for the presence of L1014F _kdr_[27] and N1575Y mutations [28]. A subsample of mosquitoes (n = 49) that were exposed to bendiocarb, clothianidin or chlorfenapyr was tested for the presence of the G119S _Ace-1_ mutation [29]. Pearson kh2 and Fisher exact tests (when sample sizes were small) were used to investigate the statistical association between resistance status, allele frequencies, and deviations from Hardy-Weinberg equilibrium.\n", - "\n", - "header: Target-Site Resistance Mutations\n", - "\n", - "L1014_F_kdr_ screening revealed that 92.2% (796/863) of _A. gambiae_ s.l. mosquitoes harbored the mutation; 71.5% (617 of 863) were homozygous, 20.7% (179 of 863) were heterozygous, 5.1% (44 of 863) were wild type, and 2.7% (23 of 863) did not amplify. For PCR-confirmed _A. coluzzii_, L1014F_kdr_ prevalence was 87.8% (707 of 805); 66.6% (536 of 805) were homozygous for the mutation, 21.2% (171 of 805) were heterozygous, 5.3% (43 of 805) were wild type, and 2.2% (18 of 805) did not amplify. For _A. coluzzii_, population-level L1014F_kdr_ allele frequency was 0.83, with evidence for significant deviations from Hardy-Weinberg equilibrium (kh2 = 29.124; \\(P\\) <.001). There was no significant association between L1014F_kdr_ frequency and the ability of _A. coluzzii_, to survive pyrethroid exposure, in either LLIN or resistance bioassays (kh2 = 2.0001 [_P_ =.16] and kh2 = 3.6998 [_P_ =.054], respectively). Similarly, there was no significant association between L1014F_kdr_ and the ability of _A. coluzzii_ to survive PBO preexposure and pyrethroid treatment, in either LLIN or resistance bioassays (kh2 = 0.0086; \\(P\\) =.93; Fisher exact test, \\(P\\) =.429, respectively).\n", - "\n", - "For PCR-confirmed _A. gambiae_ s.s., L1014F_kdr_ prevalence was 95.3% (61 of 64); 89.1% (57 of 64) were homozygous for the mutation, 6.3% (4 of 64) were heterozygous, none were wild type, and 4.7% (3 of 64) did not amplify. There was no significant association between L1014F_kdr_ frequency and ability of _A. gambiae_ s.s. to survive pyrethroid or PBO preexposure and pyrethroid treatment (in either LLIN or resistance bioassays), because all tested individuals harbored this mutation (n = 61). For _A. gambiae_ s.s., the population-level L1014F_kdr_ allele frequency was 0.97, with no significant deviations from Hardy-Weinberg equilibrium (kh2 = 0.070; \\(P\\) =.79).\n", - "\n", - "N1575Y screening revealed that 2.3% of _A. gambiae_ s.l. mosquitoes (21 of 912) harbored the mutation; all were\n", - "heterozygotes. N1575Y prevalence was 1.1% (9 of 805) and 16% (12 of 75) for PCR-confirmed _A. coluzzi_ and _A. gambiae_ s.s., respectively; 0.99% (9 of 912) did not amplify. There was no evidence for ongoing N1575Y selection in either species (kh2 = 0.026 [_P_ =.87] and kh2 = 0.62 [_P_ =.43] for _A. coluzzi_ and _A. gambiae_ s.s., respectively). For _A. coluzzi_, there was no significant association between N1575Y frequency and ability of mosquitoes to survive pyrethroid exposure, in LLIN or resistance bioassays (kh2 = 0.0001 [_P_ =.99] and kh2 = 0.3244 [_P_ =.57], respectively).\n", - "\n", - "G119S _Ace-1_ screening revealed that 55.1% of _A. gambiae_ s.l. mosquitoes (27 of 49) harbored the mutation; all were heterozygotes. G119S _Ace-1_ prevalence was 64.9% (24 of 37) and 27.3% (3 of 11) for PCR-confirmed _A. coluzzi_ and _A. gambiae_ s.s., respectively; 1 remaining _A. gambiae-A. coluzzi_ hybrid was wild type. For _A. coluzzi_, population-level G119S _Ace-1_ allele frequency was 0.32, with evidence of significant deviations from Hardy-Weinberg equilibrium (kh2 = 8.525; \\(P\\) =.004). For _A. gambiae_ s.s., population-level G119S _Ace-1_ allele frequency was 0.14, with no significant deviations from Hardy-Weinberg equilibrium (kh2 = 0.274; \\(P\\) =.60). For _A. coluzzi_, there was a significant association between G119S _Ace-1_ frequency and surviving bendiocarb exposure (Fisher exact test, \\(P\\) =.005).\n", - "\n", - "header: Study Area and Mosquito Collections: WHO Cone Bioassay Testing\n", - "\n", - "Two types of LLIN were evaluated in this study. PermaNet 2.0 is a conventional LLIN treated with deltamethrin only (1.4 g/kg +- 25%) and PermaNet 3.0 is a piperonyl butoxide (PBO) synergism LILIN, consisting of a roof containing PBO (25g/kg) and deltamethrin (4 g/kg +- 25%) and side panels containing deltamethrin only (2.8 g/kg +- 25%). WHO cone bioassays were used to test the susceptibility of _A. gambiae_ s.l. exposed to unwashed PermaNet 2.0, PermaNet 3.0 roof panels, and PermaNet 3.0 side panels [21]. To control for potential variation in insecticide/synergist content, each of 5 LLINs per type was cut into 19 pieces, measuring 30 x 30 cm, with each piece tested a maximum of 3 times.\n", - "\n", - "header: Keywords\n", - "\n", - "_Anopheles coluzzii_; insecticide resistance; _Plasmodium falciparum_; long-lasting insecticidal nets; Cote d'Ivoire; PBO; chlorfenapyr; clothianidin; _CYP6P4_; _CYP6P3_; _CYP6Z1_\n", - "\n", - "In Cote d'Ivoire, malaria is a serious public health problem with the entire population of about 26.2 million people at risk, and disease prevalence reaching as high as 63% in the southwest region [1]. Control of _Anopheles gambiae_ sensu lato (s.l.), the major malaria vector species group, has been through the efforts of the National Malaria Control Programme, which has distributed insecticide-treated nets as the primary vector control intervention. Indoor residual spraying and larviciding in high transmission areas have been recommended as complementary strategies; implementation of the former commenced in late 2020 [2]. Estimates of net coverage across the country remain low, with the proportion of households with at least >=1 insecticide-treated net per 2 persons rising from 31% in 2012 to 47% in 2016, and insecticide-treated net use stagnating at 40% of households reporting sleeping under a net the previous night in both survey years [2]. The most recent universal net campaigns in Cote d'Ivoire in 2017-2018 issued conventional, pyrethroid (deltamethrin) long-lasting insecticidal nets (LLINs), aiming to achieve 90% coverage and 80% use [2]. However, country-wide, multiclass insecticide resistance among populations of _A. gambiae_ s.l. is a growing cause for concern because of potential operational failure of current vector control strategies, both locally and across the sub-Saharan region [2, 3].\n", - "\n", - "Resistance to pyrethroid and carbamate insecticides in _Anopheles_ mosquitoes was first reported from the central \n", - "region of Cote d'Ivoire in the early 1990s [4, 5, 6, 7]. Local resistance to the major insecticide classes recommended by the World Health Organization (WHO) for adult mosquito control--pyrethroids, carbamates, organophosphates, and organochlorines--evolved rapidly [8, 9, 10] and has been increasing in intensity, driven largely by selective pressures imposed by contemporaneous scale-up of public health vector control interventions (including those targeting malaria, trypanosomiasis, and onchocerciasis vectors) and use of agricultural pesticides [11, 12, 13, 14, 7]. This escalation in resistance has now begun to compromise the insecticidal efficacy and community-wide impact of conventional, pyrethroid LLINs in Cote d'Ivoire [14, 15], although some levels of personal protection may still remain [15, 16, 17].\n", - "\n", - "Among vector populations across Cote d'Ivoire, the L1014F _kdr_ mutation is pervasive and has been implicated in some longitudinal trends in decreasing DDT and pyrethroid susceptibility [7, 11]; L1014S _kdr_ and N1575Y resistance mutations have also been detected but at much lower frequencies [18]. Extreme carbamate (bendiocarb) resistance and pyrethroid cross-resistance in some _A. gambiae_ sensu stricto (s.s.) populations are mediated by overexpression of _CYP6P3_ and _CYP6M2_ and duplication of the G119S _Ace-1_ mutation [19]. To support and safeguard future malaria control efforts in Cote d'Ivoire, the current study evaluated the efficacy of conventional and next-generation LLINs for prospective distribution, determined current insecticide resistance profiles of _A. gambiae_ s.l. (principally _Anopheles coluzzi_), and characterized underlying molecular and metabolic resistance mechanisms.\n", - "\n", - "header: Metabolic Resistance Mechanisms\n", - "\n", - "Comparison of metabolic gene expression levels in field populations of _A. coluzzi_ and _A. gambiae s.s._ demonstrated significant up-regulation of _CYP6P4_ (fold change, 5.88 [95% CI, 5.19-44.06] for _A. coluzzi_ and 6.08 [5.43-50.64] for _A. gambiae_ s.s.), _CYP6Z1_ (4.04 [3.69-41.54] and 3.56 [3.24-36.25], respectively),\n", - "\n", - "Figure 3.: The longevity of field-caught _A. gambiae_ sensus into after exposure to long-lasting insecticidal nets (LLINs) in World Health Organization cone assays (_A_) and \\(x\\) (B, 5x [_O_], and 10× [_D_) the diagnostic dose of pyrethroid insecticides in Centres for Disease Control and Prevention resistance intensity assays. Kaplan-Meier survival curves indicate the proportion alive each day after exposure. Immediate mortality rates after LLIN (60 minutes and 24 hours) or insecticidal exposure (30 or 60 minutes, depending on insecticide) were excluded.\n", - "\n", - "\n", - "and _CYP6P3_ (12.56 [11.40-12-3.83] and 13.85 [12.53-132.03]), relative to a susceptible laboratory colony, respectively (Figure 4). More modest overexpression of _CYP6P1_ and _GSTE2_ was observed (_CYP6P1_ fold changes, 1.18 [95% CI, 1.08-12.31] and 1.28 [1.17-14.40]; GSTE2, 0.56 [.48-3.32], and 0.67 [.58-4.29], for _A. coluzzi_ and _A. gambiae_ s.s., respectively) (Figure 4). The fold change levels did not differ significantly between the 2 species for any gene nor by malaria infection status in wild _A. coluzzi_. Comparison of metabolic gene expression in phenotyped field populations of _A. coluzzi_ revealed lower fold changes overall, but notably, increased overexpression of _CYP6P3_ in survivors of bendiocarb, deltamethrin, PBO plus deltamethrin, and permethrin (fold change, 3.91 [95% CI, 3.33-22.16], 2.21 [1.88-12.53], 2.64 [2.21-13.69], and 2.21 [1.99-20.03], respectively) (Figure 5).\n", - "\n", - "header: Characterization of Insecticide Resistance Mechanisms: Metabolic Gene Expression\n", - "\n", - "Relative expression of 5 metabolic genes (_CYP6P3_, _CYP6P4_, _CYP6Z1_, _CYP6P1_, and _GSTE2_) was measured in all field collected mosquitoes (n = 912), using multiplex quantitative real-time polymerase chain reaction (PCR) assays, relative to the housekeeping gene ribosomal protein S7 (_RPS7_) [30]. In addition, gene expression levels were measured in susceptible _A. coluzzii_ Nguosso colony mosquitoes (n = 48). All samples were run in technical triplicate. Expression level and fold change of each target gene between resistant and susceptible field samples, relative to the susceptible laboratory strain, were calculated using the 2-\\({}^{\\text{-}\\Delta\\text{ACT}}\\) method incorporating PCR efficiency, normalized relative to the endogenous control gene (_RPS7_).\n", - "\n", - "header: Discussion\n", - "\n", - "Cote d'Ivoire has hot spots with some of the highest levels of resistance of _Anopheles_ mosquitoes to public health insecticides worldwide, with potentially severe implications for sustaining gains in malaria control [31]. To safeguard malaria vector control efforts and inform the design of effective resistance management strategies, involving tactical deployment of differing indoor residual spraying and LLIN modalities, there needs to be a clear understanding of contemporary phenotypic and genotypic insecticide resistance.\n", - "\n", - "Our study detected intense pyrethroid resistance in southeast Cote d'Ivoire, as evidenced by high proportions of survivors, after exposure to 10 times the diagnostic doses of pyrethroids, as well as very low knockdown and 24-hour mortality rates for deltamethrin-only LLINs, equivalent to rates for an untreated net. These findings are largely in agreement with historical resistance profiles from this region [7, 10, 11] and indicate that conventional LLINs may no longer be operationally viable in areas of high pyrethroid resistance intensity. Previous phase II studies of pyrethroid-only LLINs in the central region of Cote d'Ivoire have demonstrated similarly poor efficacy with highly resistant _A. gambiae_ s.l. populations but argued for the retention of some degree of personal protection [15-17].\n", - "\n", - "Other observational cohorts have reported higher incidences of malaria among non-net users compared with users in areas of moderate to high pyrethroid resistance [17]. The extent of protective efficacy afforded by pyrethroid LLINs will likely reflect the strength of local vector resistance and levels of both net physical integrity and individual compliance [32, 33]; in Cote d'Ivoire, reported LLIN usage has been low, requiring additional behavioral interventions [2, 34]. Our findings of high mosquito mortality rates after exposure to clothianidin and chlorfenapyr and improved vector susceptibility with PBO treatment (on both LLINs and in resistance bioassays), are consistent with data from other sentinel sites across Cote d'Ivoire [16, 35, 36], and strongly support the deployment of vector control interventions incorporating these new active ingredients.\n", - "\n", - "Study results indicate that _A. coluzzi_ was the predominant local vector species during the rainy season, as observed previously [7], circulating sympatrically with smaller proportions of _A. gambiae_ s.s. These 2 vector species commonly cohabit but can be genetically distinct in terms of resistance mechanisms [37, 38] and can also differ in larval ecology, behavior, migration, and activation [39-41]. In general, resistance mechanisms in _A. coluzzi_ are less well characterized, compared with _A. gambiae_ s.s., in part because these vectors are morphologically\n", - "\n", - "Figure 4: Metabolic gene expression in field _Anopheles coluzzi_ and _Anopheles gambiae_ sensu stricto (s.s.) populations relative to a susceptible colony population. Error bars represent 95% confidence intervals. Statistically significant differences in expression levels relative to the susceptible colony are indicated as follows: *_P_ <.05; **_P_ <.01; ***_P_ <.001.\n", - "\n", - "\n", - "indistinguishable and few studies present data disaggregated by PCR-confirmed species.\n", - "\n", - "We observed several distinct features in our study, including, principally, evidence for ongoing selection of L1014F _kdr_ and G119S _Ace-1 in A. coluzzii_, which was absent in _A. gambiae_ s.s. and higher proportions of N1575Y in _A. gambiae_ s.s.; expression levels of metabolic genes were comparable between species. The lack of association between L1014F _kdr_ genotype and mosquito phenotype, coupled with the identification of 3 CYP450 enzymes (_CYP6P4, CYP6P3,_ and _CYP6Z1_) that were significantly overexpressed in field populations (some of which are known to metabolize pyrrethroids and next-generation LLIN insecticides [42, 43]), indicate a key role for metabolic resistance in this _A. coluzzii_ population. One notable difference in our data set, compared with previous findings in Agboville [7], was the finding of benodiocarb susceptibility. This may be attributable to small-scale spatial and longitudinal heterogeneity in resistance, which can be highly dynamic [37, 44], and/or phenotypic differences between vector species, complicating intervention choice for resistance management.\n", - "\n", - "With the exception of chlorfenapyr, which is known to be a slow-acting insecticide, no delayed mortality effects were detected after insecticidal exposure; the format and dose used for clothianidin testing (another slow-acting insecticide [45]) were instead intended to measure acute toxicity within a 60-minute exposure period. Previous mathematical models using resistant mosquito colonies have suggested that sublethal insecticide treatment may still reduce vector lifespan and inhibit blood-feeding and host-seeking behaviors, thereby interrupting malaria transmission [46, 47]. Our observations are more compatible with reports from Burkina Faso, where different exposure regimens of wild, resistant _A. gambiae_ s.l. populations to deltamethrin LLINs did not induce any delayed mortality effects [47]. Further assessment of sublethal effects are warranted across additional field populations with differing resistance mechanisms, to clarify the impact of insecticidal exposure on the vectorial capacity of resistant mosquitoes.\n", - "\n", - "To date there is a paucity of data regarding the interactions between insecticide resistance and _Plasmodium_ development [48]. In the current study, _A. coluzzii_ that died after pyrethroid exposure were significantly more likely to be infected with malaria. This might be explained by elevated metabolic enzymes and/or prior pyrethroid exposure detrimentally affecting parasite development [49], although it is important to note that we did not detect any significant differences between gene overexpression in malaria-infected versus noninfected _A. coluzzii_. Alternatively, our sampled population may have been physiologically older, as phenotypic resistance is known to decline with age [50]. It is impossible to distinguish between these hypotheses using field-collected vector populations; the experimental design used in this study had other biological and technical limitations, which have been described in detail elsewhere [23, 37]\n", - "\n", - "In conclusion, as new combination and bitreated vector control interventions become available for deployment, contemporary resistance information is crucial for the rationale design of management strategies and to mitigate further selection for particular resistance mechanisms. The results from the current study contribute to growing insecticide resistance data for Cote d'Ivoire, demonstrating a loss of bioefficacy of pyrethroid LLINs and supporting the use of new active ingredients (clothianidin, chlorfenapyr, and PBO). Study findings also highlight the need for expanded insecticide resistance surveillance, including monitoring of metabolic resistance mechanisms, in conjunction with studies to better characterize the impact of sublethal insecticide exposure on vectorial capacity and the interaction between insecticide resistance and _Plasmodium_ parasite development.\n", - "\n", - "Figure 5: Metabolic gene expression in resistant versus susceptible field _Anopheles coluzzi_, which either died or survived after insecticidal exposure. Error bars represent 95% confidence intervals.\n", - "\n", - "header: Methods\n", - "\n", - "The study protocol was approved by the Comite National d'Ethique des Sciences de la Vie et de la Sante (no. 069-19/MSHP/CNESVS-kp) and the London School of Hygiene and Tropical Medicine (nos. 16782 and 16899). Study activities were conducted in the village of Aboude, rural Agboville, Agneby-Tiassa region, southeast Cote d'Ivoire (5'55'N, 4'13'W), selected because of its high mosquito densities and malaria prevalence [1]. Adult mosquitoes were collected using human landing catches, inside and outside households from 6 pm to 6 am, for a total of 190 person/trap/nights between 5 and 26 July 2019. Unfed mosquitoes, morphologically identified as _A. gambiae_ s.l. [20], were tested in bioassays that same day, after a brief recovery period; blood-fed mosquitoes were first held for 2-3 days to allow for blood-meal digestion.\n", - "\n", - "header: Mosquito Processing, Identification of _A. gambiae_ s.l. Species Complex\n", - "\n", - "Members, and _Plasmodium falciparum_ Detection\n", - "\n", - "A subsample of field-caught mosquitoes tested in bioassays was selected for molecular analysis (n = 912). Approximately equal numbers of specimens were chosen to represent phenotypically \"susceptible\" or \"resistant\" mosquitoes for each LLIN type or insecticide dose, selected across different replicates and testing days to capture as much population-level variation as possible. RNA was extracted from individual whole-body mosquitoes according to standard protocols [23]. Field _A. gambiae_ s.l. were identified to species level [25] and were screened for the presence of _Plasmodium falciparum_[26].\n", - "\n", - "header: Mosquito Collections and Species Identification: LIII Efficacy\n", - "\n", - "A total of 2666 field-caught _A. gambiae_ s.l were used to assess the bioefficacy of conventional pyrethroid-treated LLINs (PermaNet 2.0 and PermaNet 3.0 side panels) and next-generation synergisti LLINs (PermaNet 3.0 roof panels), compared with an untreated control (Figure 1). Overall, _A. gambiae_ s.l. knockdown and mortality rates with deltamethrin LLINs were very low and largely equivalent to those for the untreated control net (Figure 1). At 60 minutes, average mosquito knockdown rates with the untreated control, PermaNet 2.0, and PermaNet 3.0 side panels were 1.56% (95% confidence interval [CI], 1.13%-1.99%), 0.54% (.42%-6.5%), and 1.75% (1.49%-2.0%), respectively. By contrast, average mosquito knockdown rates for PBO-containing PermaNet 3.0 roof panels were significantly higher (79.8% [95% CI, 79.07%-80.48%]; kh2 = 705.51, 968.65, and 937.33 [_P_ <.001] vs untreated control, PermaNet 2.0, and PermaNet 3.0 side panels, respectively) (Figure 1).\n", - "\n", - "At 24 hours, mortality rates with the untreated control, PermaNet 2.0, and PermaNet 3.0 side panels remained low (6.11% [95% CI, 4.71%-7.51%], 5.44% [4.58%-6.29%], and 3.66% [3.12%-4.19%], respectively), while those with PermaNet 3.0 roof panels increased only marginally but still remained significantly higher (83.81% [95% CI, 83.15%-84.47%];\n", - "\n", - "Figure 1.: Bioefficacy of different unwashed long-lasting insecticidal nets (LLINs) against field-caught _Angabies gambiae_ sensu tatto. Mean knockdown and mortality rates are shown with 95% confidence intervals, at 60 minutes and 24 hours, respectively, after 3-minute exposure to PermaNet 2.0 (deltamethrin only), side panels of PermaNet 3.0 (deltamethrin only, roof panels of PermaNet 3.0 (pieronym) butoxide plus deltamethrin), and an untreated control net. Knockdown or mortality rates in the same time period for each treatment sharing a letter do not differ significantly (_P_ >.05). Green lines at 275% and 295% knockdown represent minimal and optimal effectiveness, respectively, at 60 minutes. Red lines at 250% and >80% mortality represent minimal and optimal LLIN effectiveness at 24 hours, respectively, as defined by the World Health Organization [21].\n", - "\n", - "\n", - "\\(\\chi^{2}\\) = 727.96, 914.61, and 963.09 [\\(P\\) <.001 for all] vs untreated control, PermaNet 2.0, and PermaNet 3.0 side panels, respectively) (Figure 1). PermaNet 3.0 roof panels reached minimal effectiveness (knockdown, >=75%) 60 minutes after exposure and optimal effectiveness (mortality rate, >=80%) at 24 hours. Neither of the deltamethrin-only LLINS reached either effectiveness threshold at any time point.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ClinicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `ClinicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `ClinicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}, \"Start_month\": {\"title\": \"Start Month\", \"description\": \"Numerical start month of the reporting period (some studies may report multiple time periods)\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Bioassay, cone test\",\"Country\":\"Cote d'Ivoire\",\"Site\":\"Aboude, Agboville\",\"Start_month\":7,\"Start_year\":2019,\"End_month\":7,\"End_year\":2019}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Concentration_initial\": {\"title\": \"Insecticide concentration (initial)\", \"description\": \"Enter the initial concentration of the insecticide(s) for net type at the time of distribution.\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"PermaNet 2.0\",\"Insecticide\":\"deltamethrin\",\"Concentration_initial\":\"1.4 g\\/kg\"},\"N02\":{\"Net_type\":\"PermaNet 3.0 roof panels\",\"Insecticide\":\"PBO, deltamethrin\",\"Concentration_initial\":\"25g\\/kg, 4 g\\/kg\"},\"N03\":{\"Net_type\":\"PermaNet 3.0 side panels\",\"Insecticide\":\"deltamethrin\",\"Concentration_initial\":\"2.8 g\\/kg\"}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Notes\n", - "\n", - "_Acknowledgments._ The authors express their sincere thanks to M. Didier Dobri, Centre Suisse de Recherches Scientifiques en Cote d'Ivoire (CSRS) laboratory technician, and Fidele Assamoa for their support in mosquito collection and rearing, the chief and population of the village of Aboude (Agboville), and the entomology fieldworkers of CSRS. They also thank Vestergaard for supplying the long-lasting insecticidal nets tested in this study.\n", - "\n", - "_Author contributions._ A. M., E. C., M. K., T. W., and L. A. M. designed the study. A. M., E. C., C. E., and B. P. led the entomology field activities and participated in data collection. A. M., E. C., C. L. J., T. W., and L. A. M. performed the molecular assays. A. M., E. C., M. K., C. E., C. L. J., B. P., S. R. I, T. W., and L. A. M. were responsible for data analysis and interpretation. L. A. M. drafted the manuscript, which was revised by all coauthors. All authors read and approved the final manuscript.\n", - "\n", - "_Disclaimer._ The findings and conclusions in this report are those of the authors and do not necessarily represent the official position of the Centers for Disease Control and Prevention.\n", - "\n", - "_Financial support._ This work was supported by the Sir Halley Stewart Trust (L.A.M.), the Wellcome Trust/Royal Society ([http://www.wellcome.ac.uk](http://www.wellcome.ac.uk) and [https://royalsociety.org](https://royalsociety.org); (101285/Z/13/Z to T.W.) and the US President's Malaria Initiative/Centers for Disease Control and Prevention (S.R.I.).\n", - "\n", - "_Potential conflicts of interest._ All authors: No reported conflicts. All authors have submitted the ICMJE Form for Disclosure of Potential Conflicts of Interest. Conflicts that the editors consider relevant to the content of the manuscript have been disclosed.\n", - "\n", - "header: Table 1. Cox Proportional Hazard Model to Determine Impact of Long-Lasting Insecticidal Net/Insecticidal Exposure on Survival of Field-Caught Anopheles gambiae Sensu Lato 72 Hours After Exposure\n", - "footer: Abbreviations: CI, confidence interval; HRR, hazard rate ratio (ratio of hazard rate for control/reference group to hazard rate for treatment group; PBO, piperonyl butoxide.\n", - "a Immediate mortality rates after long-lasting insecticidal net (60 minutes and 24 hours) or insecticidal exposure (30 or 60 minutes, depending on insecticide) were excluded. \n", - "b Significance cutoff level defined as α = .05.\n", - "\n", - "\n", - "columns: ['Insecticide Exposure', 'No. (No. of Events)', 'HRR (95% CI)', 'P Valueb']\n", - "\n", - "{\"0\":{\"Insecticide Exposure\":\"Untreated netting\",\"No. (No. of Events)\":null,\"HRR (95% CI)\":\"Reference\",\"P Valueb\":null},\"1\":{\"Insecticide Exposure\":\"PermaNet 2.0 (deltamethrin only)\",\"No. (No. of Events)\":\"1135 (1047)\",\"HRR (95% CI)\":\"1.095 (.968\\u20131.239)\",\"P Valueb\":\".15\"},\"2\":{\"Insecticide Exposure\":\"PermaNet 3.0 side panels (deltamethrin only)\",\"No. (No. of Events)\":\"1157 (1088)\",\"HRR (95% CI)\":\"0.9664 (.9092\\u20131.027)\",\"P Valueb\":\".27\"},\"3\":{\"Insecticide Exposure\":\"PermaNet 3.0 roof panels (PBO + deltamethrin)\",\"No. (No. of Events)\":\"563 (533)\",\"HRR (95% CI)\":\"1.007 (.939\\u20131.079)\",\"P Valueb\":\".85\"},\"4\":{\"Insecticide Exposure\":\"Acetone control\",\"No. (No. of Events)\":null,\"HRR (95% CI)\":\"Reference\",\"P Valueb\":null},\"5\":{\"Insecticide Exposure\":\"Alpha-cypermethrin 1\\u00d7\",\"No. (No. of Events)\":\"676 (641)\",\"HRR (95% CI)\":\"1.006 (.9696\\u20131.043)\",\"P Valueb\":\".77\"},\"6\":{\"Insecticide Exposure\":\"Deltamethrin 1\\u00d7\",\"No. (No. of Events)\":\"683 (645)\",\"HRR (95% CI)\":\"0.9942 (.9539\\u20131.036)\",\"P Valueb\":\".78\"},\"7\":{\"Insecticide Exposure\":\"Permethrin 1\\u00d7\",\"No. (No. of Events)\":\"693 (661)\",\"HRR (95% CI)\":\"1.015 (.9698\\u20131.062)\",\"P Valueb\":\".52\"},\"8\":{\"Insecticide Exposure\":\"Clothianidin 1\\u00d7\",\"No. (No. of Events)\":\"698 (581)\",\"HRR (95% CI)\":\"1.208 (.9227\\u20131.581)\",\"P Valueb\":\".17\"},\"9\":{\"Insecticide Exposure\":\"Chlorfenapyr 1\\u00d7\",\"No. (No. of Events)\":\"708 (580)\",\"HRR (95% CI)\":\"1.692 (1.086\\u20132.637)\",\"P Valueb\":\".02\"},\"10\":{\"Insecticide Exposure\":\"PBO + deltamethrin 1\\u00d7\",\"No. (No. of Events)\":\"630 (577)\",\"HRR (95% CI)\":\"0.9662 (.2411\\u20133.873)\",\"P Valueb\":\".96\"},\"11\":{\"Insecticide Exposure\":\"Alpha-cypermethrin 5\\u00d7\",\"No. (No. of Events)\":\"633 (601)\",\"HRR (95% CI)\":\"0.9951 (.9407\\u20131.053)\",\"P Valueb\":\".86\"},\"12\":{\"Insecticide Exposure\":\"Deltamethrin 5\\u00d7\",\"No. (No. of Events)\":\"652 (610)\",\"HRR (95% CI)\":\"0.9942 (.9393\\u20131.052)\",\"P Valueb\":\".84\"},\"13\":{\"Insecticide Exposure\":\"Permethrin 5\\u00d7\",\"No. (No. of Events)\":\"636 (583)\",\"HRR (95% CI)\":\"0.9931 (.8638\\u20131.142)\",\"P Valueb\":\".92\"},\"14\":{\"Insecticide Exposure\":\"Alpha-cypermethrin 10\\u00d7\",\"No. (No. of Events)\":\"624 (587)\",\"HRR (95% CI)\":\"0.9951 (.917\\u20131.08)\",\"P Valueb\":\".91\"},\"15\":{\"Insecticide Exposure\":\"Deltamethrin 10\\u00d7\",\"No. (No. of Events)\":\"623 (588)\",\"HRR (95% CI)\":\"0.9943 (.9072\\u20131.09)\",\"P Valueb\":\".90\"},\"16\":{\"Insecticide Exposure\":\"Permethrin 10\\u00d7\",\"No. (No. of Events)\":\"656 (603)\",\"HRR (95% CI)\":\"1.026 (.9509\\u20131.107)\",\"P Valueb\":\".51\"},\"17\":{\"Insecticide Exposure\":\"1\\u00d7 Insecticide dose\",\"No. (No. of Events)\":null,\"HRR (95% CI)\":\"Reference\",\"P Valueb\":null},\"18\":{\"Insecticide Exposure\":\"Alpha-cypermethrin 5\\u00d7\",\"No. (No. of Events)\":\"117 (92)\",\"HRR (95% CI)\":\"1.016 (.9069\\u20131.138)\",\"P Valueb\":\".78\"},\"19\":{\"Insecticide Exposure\":\"Alpha-cypermethrin 10\\u00d7\",\"No. (No. of Events)\":\"108 (78)\",\"HRR (95% CI)\":\"1.007 (.9403\\u20131.078)\",\"P Valueb\":\".84\"},\"20\":{\"Insecticide Exposure\":\"Deltamethrin 5\\u00d7\",\"No. (No. of Events)\":\"143 (105)\",\"HRR (95% CI)\":\"1.0 (.9035\\u20131.107)\",\"P Valueb\":\">.99\"},\"21\":{\"Insecticide Exposure\":\"Deltamethrin 10\\u00d7\",\"No. (No. of Events)\":\"114 (83)\",\"HRR (95% CI)\":\"1.0 (.9363\\u20131.068)\",\"P Valueb\":\">.99\"},\"22\":{\"Insecticide Exposure\":\"Permethrin 5\\u00d7\",\"No. (No. of Events)\":\"137 (94)\",\"HRR (95% CI)\":\"1.022 (.8528\\u20131.225)\",\"P Valueb\":\".81\"},\"23\":{\"Insecticide Exposure\":\"Permethrin 10\\u00d7\",\"No. (No. of Events)\":\"157 (114)\",\"HRR (95% CI)\":\"0.9952 (.9491\\u20131.044)\",\"P Valueb\":\".84\"}}\n", - "\n", - "header: Conclusions\n", - "\n", - "Study findings raise concerns regarding the operational failure of standard LLINs and support the urgent deployment of vector control interventions incorporating piperonyl butoxide, chlorfenapyr, or clothianidin in areas of high resistance intensity in Cote d'Ivoire.\n", - "\n", - "header: Resistance Intensity and Synergist Bioassay Testing\n", - "\n", - "Centers for Disease Control and Prevention (CDC) resistance intensity bioassays were performed for 6 public health insecticides (pyrethroids: alpha-cypermethrin, deltamethrin, and permethrin; carbamate: bendiocarb; neonicotinoid: clothianidin; and pyrrole: chlorfenapyr) [22, 23]. The diagnostic doses of all insecticides were evaluated (including clothianidin [90 mg per bottle] [23] and chlorfenapyr [100 mg per bottle]) and 2, 5, and 10 times the diagnostic dose of pyrethroid insecticides were also used. Per test, knockdown was recorded at 15-minute intervals for 30 minutes (pyrethroids and bendiocarb) or 60 minutes (dothianidin and chlorfenapyr) of insecticide exposure. One-hour PBO preexposures were performed using WHO tube assays [24], before deltamethrin CDC bottle bioassay testing [22].\n", - "\n", - "WHO cone and CDC resistance intensity bioassay data were interpreted according to the WHO criteria [21, 22]. Mosquitoes that died after exposure to a LLIN or 1x insecticide dose were stored at -20degC in RNAlater (Thermo Fisher Scientific) and were considered \"susceptible\" for genotypic analysis. Surviving mosquitoes were held and scored for mortality rate after 24, 48 and 72 hours to observe delayed mortality effects. Kaplan-Meier curves were used to visualize survival data, and Cox regression was used to compare postexposure survival. Immediate mortality rates after LLIN (60 minutes and 24 hours) or insecticidal exposure (30 or 60 minutes, depending on insecticide) were excluded. Surviving mosquitoes at 72 hours were stored at -20degC in RNAlater and were considered \"resistant\" for genotypic analysis.\n", - "\n", - "header: Insecticide Resistance Intensity\n", - "\n", - "A total of 2251 field-caught _A. gambiae_ s.l. were tested in resistance bioassays. Intense pyrethroid resistance was evident with more than 25% of mosquitoes surviving exposure to 10 times the dose of insecticide required to kill a susceptible population (Figure 2A). At the diagnostic dose, mosquito mortality rates did not exceed 25% for any pyrethroid tested, which was consistent with the high survival rates observed during cone bioassays using conventional LLINs (Figure 1). In general, levels of resistance to alpha-cypermethrin, deltamethrin, and permethrin were not significantly different at each insecticide concentration tested (Figure 2A).\n", - "\n", - "By comparison, carbamate tolerance was low, with a mean knockdown of 94.53% (95% CI, 92.11%-96.95%; n = 101) after 30 minutes of exposure to the diagnostic dose of bendiocarb. Similarly, high levels of susceptibility to new insecticides clothianidin and chlorfenapyr were observed, with mean mortality rates of 94.11% (95% CI, 93.43%-94.80%; n = 102) and 95.54% (94.71%-96.36%; n = 112), respectively, 72 hours after exposure to the tentative diagnostic doses. Preexposure to PBO increased the average _A. gambiae_ s.l. mortality rate significantly, from 14.56% (95% CI, 6.24%-22.88%) to 72.73% (64.81%-79.43%) and from 44.66% (34.86%-54.46%) to 94.17% (91.12%-97.22%) after exposure to 1 or 2 times the diagnostic dose of deltamethrin (Figure 2B).\n", - "\n", - "header: Results\n", - "\n", - "Phenotypic resistance was intense: >25% of mosquitoes survived exposure to 10 times the doses of pyrethroids required to kill susceptible populations. Similarly, the 24-hour mortality rate with deltamethrin-only LLINs was very low and not significantly different from that with an untreated net. Sublethal pyrethroid exposure did not induce significant delayed vector mortality effects 72 hours later. In contrast, LLINs containing the synergist piperonyl butoxide, or new insecticides dothianidin and chlorfenapyr, were highly toxic to _A. coluzzii_. Pyrethroid-susceptible _A. coluzzii_ were significantly more likely to be infected with malaria, compared with those that survived insecticidal exposure. Pyrethroid resistance was associated with significant overexpression of _CYP6P4_, _CYP6P3_, and _CYP6Z1_.\n", - "\n", - "header: Malaria Prevalence\n", - "\n", - "Of the 912 _A. gambiae_ s.l. mosquitoes assayed, 31 tested positive for _P. falciparum_ (3.4%). For PCR-confirmed _A. coluzzii_, _P. falciparum_ prevalence was 3.50% (28 of 805); the remaining 3 infections were in _A. gambiae_ s.s. (4%; 3 of 75). By resistance phenotype, susceptible _A. coluzzii_ (ie, those that died after pyrethroid exposure) were more likely to be infected with malaria, compared with resistant mosquitoes (kh2 = 4.6987; \\(P\\) =.03); infection rates were 5.94% (13 of 219) and 2.49% (10 of 401), respectively.\n", - "\n", - "header: Characterization of Insecticide Resistance Mechanisms: Target-Site Mutations\n", - "\n", - "The same cohort of field mosquitoes (n = 912) was tested for the presence of L1014F _kdr_[27] and N1575Y mutations [28]. A subsample of mosquitoes (n = 49) that were exposed to bendiocarb, clothianidin or chlorfenapyr was tested for the presence of the G119S _Ace-1_ mutation [29]. Pearson kh2 and Fisher exact tests (when sample sizes were small) were used to investigate the statistical association between resistance status, allele frequencies, and deviations from Hardy-Weinberg equilibrium.\n", - "\n", - "header: Abstract\n", - "\n", - "Association of Reduced Long-Lasting Insecticidal Net Efficacy and Pyrethroid Insecticide Resistance With Overexpression of _CYP6P4_, _CYP6P3_, and _CYP6Z1_ in Populations of _Anopheles coluzzii_ From Southeast Cote d'Ivoire\n", - "\n", - "Anne Meiwald,\\({}^{1,2}\\) Emma Clark,\\({}^{1,2}\\) Mejica Kristan,\\({}^{1}\\) Constant Edi,\\({}^{2}\\) Claire L Jeffries,\\({}^{1}\\) Bethanie Pelloquin,\\({}^{1}\\) Seth R. Irish,\\({}^{2}\\) Thomas Walker,\\({}^{1}\\) and Louisa A. Messenger\\({}^{1,0}\\)\n", - "\n", - "\n", - "Resistance to major public health insecticides in Cote d'Ivoire has intensified and now threatens the long-term effectiveness of malaria vector control interventions.\n", - "\n", - "header: RESULTS\n", - "\n", - "A total of 4917 female _A. gambiae_ s.l. mosquitoes were collected in Agboville, Cote d'Ivoire. Of those, 912, which were previously tested in either LLIN bioefficacy (n = 384) or resistance intensity (n = 528) bioassays, were selected for molecular species identification. Of the 912 selected, 805 (88.3%) were determined to be _A. coluzzii_, 75 (8.2%) were _A. gambiae_ s.s., and 22 (2.4%) were _A. gambiae_-_A. coluzzii_ hybrids; 10 individuals did not amplify.\n", - "\n", - "header: Mosquito Survival After Insecticidal Exposure\n", - "\n", - "All _A. gambiae_ s.l. tested in LLIN bioefficacy or resistance intensity bioassays, were held for 72 hours, to assess any impact of insecticide or net exposure on delayed mortality rate. For LLIN bioassays, there was little evidence for any reduction in survival during this holding period (Cox regression \\(P\\) =.15,.27, and.85, respectively, for comparisons between untreated control and PermaNet 2.0, PermaNet 3.0 side panels, and PermaNet 3.0 roof panels) (Table 1 and Figure 3A). Exposure to the diagnostic doses of all insecticides in CDC bottle bioassays did not induce significant delayed mortality effects over 72 hours (Cox regression \\(P\\) >.05 for all insecticides compared with control, with the exception of chlorfenapyr [_P_ =.02]) (Table 1 and Figure 3B). This phenomenon was also observed at increasing pyrethroid doses\n", - "\n", - "Figure 2: _A._ Resistance intensity of field-caught _Anaopheles gambiae_ sensu late (s.l.) after exposure to 1, 2, 5, or 10 times the diagnostic dose of pyrethroid insecticides. Mean knockdown/acute toxicity rates after 30-minute exposure are shown with 95% confidence intervals (Cls). Knockdown or mortality rates at the same dose per insecticide sharing a letter do not differ significantly (_P_ >.05). Mortality rates <00% (_lower and line_) represent confirmed resistance at the diagnostic dose (1a), and rates <00% (_upper and line_) indicate moderate to high-intensity resistance and high-intensity resistance at 5° and 10x, respectively, as defined by the World Health Organization [24]. _B._ Restoration of deltamethrin susceptibility of field-caught _A. gambiae_ s.l. after presopause to piperonyl butoxide (PBO). Mean knockdown/acute toxicity after 30-minute exposure to 1 or 2 times the diagnostic dose of deltamethrin with 95% Cls. Knockdown/mortality rates do not differ significantly between pyrethroid only and synergist plus pyrethroid sharing a letter (_P_ >.05). Red line at 90% mortality rate represents metabolic resistance mechanisms partially involved [24].\n", - "\n", - "\n", - "(Cox regression \\(P\\) >.05 for alpha-cypermethrin, deltamethrin, and permethrin 5x and 10x vs either the control or diagnostic dose) (Table 1; Figure 3C and 3D).\n", - "\n", - "header: Metabolic Resistance Mechanisms\n", - "\n", - "Comparison of metabolic gene expression levels in field populations of _A. coluzzi_ and _A. gambiae s.s._ demonstrated significant up-regulation of _CYP6P4_ (fold change, 5.88 [95% CI, 5.19-44.06] for _A. coluzzi_ and 6.08 [5.43-50.64] for _A. gambiae_ s.s.), _CYP6Z1_ (4.04 [3.69-41.54] and 3.56 [3.24-36.25], respectively),\n", - "\n", - "Figure 3.: The longevity of field-caught _A. gambiae_ sensus into after exposure to long-lasting insecticidal nets (LLINs) in World Health Organization cone assays (_A_) and \\(x\\) (B, 5x [_O_], and 10× [_D_) the diagnostic dose of pyrethroid insecticides in Centres for Disease Control and Prevention resistance intensity assays. Kaplan-Meier survival curves indicate the proportion alive each day after exposure. Immediate mortality rates after LLIN (60 minutes and 24 hours) or insecticidal exposure (30 or 60 minutes, depending on insecticide) were excluded.\n", - "\n", - "\n", - "and _CYP6P3_ (12.56 [11.40-12-3.83] and 13.85 [12.53-132.03]), relative to a susceptible laboratory colony, respectively (Figure 4). More modest overexpression of _CYP6P1_ and _GSTE2_ was observed (_CYP6P1_ fold changes, 1.18 [95% CI, 1.08-12.31] and 1.28 [1.17-14.40]; GSTE2, 0.56 [.48-3.32], and 0.67 [.58-4.29], for _A. coluzzi_ and _A. gambiae_ s.s., respectively) (Figure 4). The fold change levels did not differ significantly between the 2 species for any gene nor by malaria infection status in wild _A. coluzzi_. Comparison of metabolic gene expression in phenotyped field populations of _A. coluzzi_ revealed lower fold changes overall, but notably, increased overexpression of _CYP6P3_ in survivors of bendiocarb, deltamethrin, PBO plus deltamethrin, and permethrin (fold change, 3.91 [95% CI, 3.33-22.16], 2.21 [1.88-12.53], 2.64 [2.21-13.69], and 2.21 [1.99-20.03], respectively) (Figure 5).\n", - "\n", - "header: Study Area and Mosquito Collections: WHO Cone Bioassay Testing\n", - "\n", - "Two types of LLIN were evaluated in this study. PermaNet 2.0 is a conventional LLIN treated with deltamethrin only (1.4 g/kg +- 25%) and PermaNet 3.0 is a piperonyl butoxide (PBO) synergism LILIN, consisting of a roof containing PBO (25g/kg) and deltamethrin (4 g/kg +- 25%) and side panels containing deltamethrin only (2.8 g/kg +- 25%). WHO cone bioassays were used to test the susceptibility of _A. gambiae_ s.l. exposed to unwashed PermaNet 2.0, PermaNet 3.0 roof panels, and PermaNet 3.0 side panels [21]. To control for potential variation in insecticide/synergist content, each of 5 LLINs per type was cut into 19 pieces, measuring 30 x 30 cm, with each piece tested a maximum of 3 times.\n", - "\n", - "header: Characterization of Insecticide Resistance Mechanisms: Metabolic Gene Expression\n", - "\n", - "Relative expression of 5 metabolic genes (_CYP6P3_, _CYP6P4_, _CYP6Z1_, _CYP6P1_, and _GSTE2_) was measured in all field collected mosquitoes (n = 912), using multiplex quantitative real-time polymerase chain reaction (PCR) assays, relative to the housekeeping gene ribosomal protein S7 (_RPS7_) [30]. In addition, gene expression levels were measured in susceptible _A. coluzzii_ Nguosso colony mosquitoes (n = 48). All samples were run in technical triplicate. Expression level and fold change of each target gene between resistant and susceptible field samples, relative to the susceptible laboratory strain, were calculated using the 2-\\({}^{\\text{-}\\Delta\\text{ACT}}\\) method incorporating PCR efficiency, normalized relative to the endogenous control gene (_RPS7_).\n", - "\n", - "header: Target-Site Resistance Mutations\n", - "\n", - "L1014_F_kdr_ screening revealed that 92.2% (796/863) of _A. gambiae_ s.l. mosquitoes harbored the mutation; 71.5% (617 of 863) were homozygous, 20.7% (179 of 863) were heterozygous, 5.1% (44 of 863) were wild type, and 2.7% (23 of 863) did not amplify. For PCR-confirmed _A. coluzzii_, L1014F_kdr_ prevalence was 87.8% (707 of 805); 66.6% (536 of 805) were homozygous for the mutation, 21.2% (171 of 805) were heterozygous, 5.3% (43 of 805) were wild type, and 2.2% (18 of 805) did not amplify. For _A. coluzzii_, population-level L1014F_kdr_ allele frequency was 0.83, with evidence for significant deviations from Hardy-Weinberg equilibrium (kh2 = 29.124; \\(P\\) <.001). There was no significant association between L1014F_kdr_ frequency and the ability of _A. coluzzii_, to survive pyrethroid exposure, in either LLIN or resistance bioassays (kh2 = 2.0001 [_P_ =.16] and kh2 = 3.6998 [_P_ =.054], respectively). Similarly, there was no significant association between L1014F_kdr_ and the ability of _A. coluzzii_ to survive PBO preexposure and pyrethroid treatment, in either LLIN or resistance bioassays (kh2 = 0.0086; \\(P\\) =.93; Fisher exact test, \\(P\\) =.429, respectively).\n", - "\n", - "For PCR-confirmed _A. gambiae_ s.s., L1014F_kdr_ prevalence was 95.3% (61 of 64); 89.1% (57 of 64) were homozygous for the mutation, 6.3% (4 of 64) were heterozygous, none were wild type, and 4.7% (3 of 64) did not amplify. There was no significant association between L1014F_kdr_ frequency and ability of _A. gambiae_ s.s. to survive pyrethroid or PBO preexposure and pyrethroid treatment (in either LLIN or resistance bioassays), because all tested individuals harbored this mutation (n = 61). For _A. gambiae_ s.s., the population-level L1014F_kdr_ allele frequency was 0.97, with no significant deviations from Hardy-Weinberg equilibrium (kh2 = 0.070; \\(P\\) =.79).\n", - "\n", - "N1575Y screening revealed that 2.3% of _A. gambiae_ s.l. mosquitoes (21 of 912) harbored the mutation; all were\n", - "heterozygotes. N1575Y prevalence was 1.1% (9 of 805) and 16% (12 of 75) for PCR-confirmed _A. coluzzi_ and _A. gambiae_ s.s., respectively; 0.99% (9 of 912) did not amplify. There was no evidence for ongoing N1575Y selection in either species (kh2 = 0.026 [_P_ =.87] and kh2 = 0.62 [_P_ =.43] for _A. coluzzi_ and _A. gambiae_ s.s., respectively). For _A. coluzzi_, there was no significant association between N1575Y frequency and ability of mosquitoes to survive pyrethroid exposure, in LLIN or resistance bioassays (kh2 = 0.0001 [_P_ =.99] and kh2 = 0.3244 [_P_ =.57], respectively).\n", - "\n", - "G119S _Ace-1_ screening revealed that 55.1% of _A. gambiae_ s.l. mosquitoes (27 of 49) harbored the mutation; all were heterozygotes. G119S _Ace-1_ prevalence was 64.9% (24 of 37) and 27.3% (3 of 11) for PCR-confirmed _A. coluzzi_ and _A. gambiae_ s.s., respectively; 1 remaining _A. gambiae-A. coluzzi_ hybrid was wild type. For _A. coluzzi_, population-level G119S _Ace-1_ allele frequency was 0.32, with evidence of significant deviations from Hardy-Weinberg equilibrium (kh2 = 8.525; \\(P\\) =.004). For _A. gambiae_ s.s., population-level G119S _Ace-1_ allele frequency was 0.14, with no significant deviations from Hardy-Weinberg equilibrium (kh2 = 0.274; \\(P\\) =.60). For _A. coluzzi_, there was a significant association between G119S _Ace-1_ frequency and surviving bendiocarb exposure (Fisher exact test, \\(P\\) =.005).\n", - "\n", - "header: Keywords\n", - "\n", - "_Anopheles coluzzii_; insecticide resistance; _Plasmodium falciparum_; long-lasting insecticidal nets; Cote d'Ivoire; PBO; chlorfenapyr; clothianidin; _CYP6P4_; _CYP6P3_; _CYP6Z1_\n", - "\n", - "In Cote d'Ivoire, malaria is a serious public health problem with the entire population of about 26.2 million people at risk, and disease prevalence reaching as high as 63% in the southwest region [1]. Control of _Anopheles gambiae_ sensu lato (s.l.), the major malaria vector species group, has been through the efforts of the National Malaria Control Programme, which has distributed insecticide-treated nets as the primary vector control intervention. Indoor residual spraying and larviciding in high transmission areas have been recommended as complementary strategies; implementation of the former commenced in late 2020 [2]. Estimates of net coverage across the country remain low, with the proportion of households with at least >=1 insecticide-treated net per 2 persons rising from 31% in 2012 to 47% in 2016, and insecticide-treated net use stagnating at 40% of households reporting sleeping under a net the previous night in both survey years [2]. The most recent universal net campaigns in Cote d'Ivoire in 2017-2018 issued conventional, pyrethroid (deltamethrin) long-lasting insecticidal nets (LLINs), aiming to achieve 90% coverage and 80% use [2]. However, country-wide, multiclass insecticide resistance among populations of _A. gambiae_ s.l. is a growing cause for concern because of potential operational failure of current vector control strategies, both locally and across the sub-Saharan region [2, 3].\n", - "\n", - "Resistance to pyrethroid and carbamate insecticides in _Anopheles_ mosquitoes was first reported from the central \n", - "region of Cote d'Ivoire in the early 1990s [4, 5, 6, 7]. Local resistance to the major insecticide classes recommended by the World Health Organization (WHO) for adult mosquito control--pyrethroids, carbamates, organophosphates, and organochlorines--evolved rapidly [8, 9, 10] and has been increasing in intensity, driven largely by selective pressures imposed by contemporaneous scale-up of public health vector control interventions (including those targeting malaria, trypanosomiasis, and onchocerciasis vectors) and use of agricultural pesticides [11, 12, 13, 14, 7]. This escalation in resistance has now begun to compromise the insecticidal efficacy and community-wide impact of conventional, pyrethroid LLINs in Cote d'Ivoire [14, 15], although some levels of personal protection may still remain [15, 16, 17].\n", - "\n", - "Among vector populations across Cote d'Ivoire, the L1014F _kdr_ mutation is pervasive and has been implicated in some longitudinal trends in decreasing DDT and pyrethroid susceptibility [7, 11]; L1014S _kdr_ and N1575Y resistance mutations have also been detected but at much lower frequencies [18]. Extreme carbamate (bendiocarb) resistance and pyrethroid cross-resistance in some _A. gambiae_ sensu stricto (s.s.) populations are mediated by overexpression of _CYP6P3_ and _CYP6M2_ and duplication of the G119S _Ace-1_ mutation [19]. To support and safeguard future malaria control efforts in Cote d'Ivoire, the current study evaluated the efficacy of conventional and next-generation LLINs for prospective distribution, determined current insecticide resistance profiles of _A. gambiae_ s.l. (principally _Anopheles coluzzi_), and characterized underlying molecular and metabolic resistance mechanisms.\n", - "\n", - "header: Mosquito Collections and Species Identification: LIII Efficacy\n", - "\n", - "A total of 2666 field-caught _A. gambiae_ s.l were used to assess the bioefficacy of conventional pyrethroid-treated LLINs (PermaNet 2.0 and PermaNet 3.0 side panels) and next-generation synergisti LLINs (PermaNet 3.0 roof panels), compared with an untreated control (Figure 1). Overall, _A. gambiae_ s.l. knockdown and mortality rates with deltamethrin LLINs were very low and largely equivalent to those for the untreated control net (Figure 1). At 60 minutes, average mosquito knockdown rates with the untreated control, PermaNet 2.0, and PermaNet 3.0 side panels were 1.56% (95% confidence interval [CI], 1.13%-1.99%), 0.54% (.42%-6.5%), and 1.75% (1.49%-2.0%), respectively. By contrast, average mosquito knockdown rates for PBO-containing PermaNet 3.0 roof panels were significantly higher (79.8% [95% CI, 79.07%-80.48%]; kh2 = 705.51, 968.65, and 937.33 [_P_ <.001] vs untreated control, PermaNet 2.0, and PermaNet 3.0 side panels, respectively) (Figure 1).\n", - "\n", - "At 24 hours, mortality rates with the untreated control, PermaNet 2.0, and PermaNet 3.0 side panels remained low (6.11% [95% CI, 4.71%-7.51%], 5.44% [4.58%-6.29%], and 3.66% [3.12%-4.19%], respectively), while those with PermaNet 3.0 roof panels increased only marginally but still remained significantly higher (83.81% [95% CI, 83.15%-84.47%];\n", - "\n", - "Figure 1.: Bioefficacy of different unwashed long-lasting insecticidal nets (LLINs) against field-caught _Angabies gambiae_ sensu tatto. Mean knockdown and mortality rates are shown with 95% confidence intervals, at 60 minutes and 24 hours, respectively, after 3-minute exposure to PermaNet 2.0 (deltamethrin only), side panels of PermaNet 3.0 (deltamethrin only, roof panels of PermaNet 3.0 (pieronym) butoxide plus deltamethrin), and an untreated control net. Knockdown or mortality rates in the same time period for each treatment sharing a letter do not differ significantly (_P_ >.05). Green lines at 275% and 295% knockdown represent minimal and optimal effectiveness, respectively, at 60 minutes. Red lines at 250% and >80% mortality represent minimal and optimal LLIN effectiveness at 24 hours, respectively, as defined by the World Health Organization [21].\n", - "\n", - "\n", - "\\(\\chi^{2}\\) = 727.96, 914.61, and 963.09 [\\(P\\) <.001 for all] vs untreated control, PermaNet 2.0, and PermaNet 3.0 side panels, respectively) (Figure 1). PermaNet 3.0 roof panels reached minimal effectiveness (knockdown, >=75%) 60 minutes after exposure and optimal effectiveness (mortality rate, >=80%) at 24 hours. Neither of the deltamethrin-only LLINS reached either effectiveness threshold at any time point.\n", - "\n", - "header: Methods\n", - "\n", - "The study protocol was approved by the Comite National d'Ethique des Sciences de la Vie et de la Sante (no. 069-19/MSHP/CNESVS-kp) and the London School of Hygiene and Tropical Medicine (nos. 16782 and 16899). Study activities were conducted in the village of Aboude, rural Agboville, Agneby-Tiassa region, southeast Cote d'Ivoire (5'55'N, 4'13'W), selected because of its high mosquito densities and malaria prevalence [1]. Adult mosquitoes were collected using human landing catches, inside and outside households from 6 pm to 6 am, for a total of 190 person/trap/nights between 5 and 26 July 2019. Unfed mosquitoes, morphologically identified as _A. gambiae_ s.l. [20], were tested in bioassays that same day, after a brief recovery period; blood-fed mosquitoes were first held for 2-3 days to allow for blood-meal digestion.\n", - "\n", - "header: Discussion\n", - "\n", - "Cote d'Ivoire has hot spots with some of the highest levels of resistance of _Anopheles_ mosquitoes to public health insecticides worldwide, with potentially severe implications for sustaining gains in malaria control [31]. To safeguard malaria vector control efforts and inform the design of effective resistance management strategies, involving tactical deployment of differing indoor residual spraying and LLIN modalities, there needs to be a clear understanding of contemporary phenotypic and genotypic insecticide resistance.\n", - "\n", - "Our study detected intense pyrethroid resistance in southeast Cote d'Ivoire, as evidenced by high proportions of survivors, after exposure to 10 times the diagnostic doses of pyrethroids, as well as very low knockdown and 24-hour mortality rates for deltamethrin-only LLINs, equivalent to rates for an untreated net. These findings are largely in agreement with historical resistance profiles from this region [7, 10, 11] and indicate that conventional LLINs may no longer be operationally viable in areas of high pyrethroid resistance intensity. Previous phase II studies of pyrethroid-only LLINs in the central region of Cote d'Ivoire have demonstrated similarly poor efficacy with highly resistant _A. gambiae_ s.l. populations but argued for the retention of some degree of personal protection [15-17].\n", - "\n", - "Other observational cohorts have reported higher incidences of malaria among non-net users compared with users in areas of moderate to high pyrethroid resistance [17]. The extent of protective efficacy afforded by pyrethroid LLINs will likely reflect the strength of local vector resistance and levels of both net physical integrity and individual compliance [32, 33]; in Cote d'Ivoire, reported LLIN usage has been low, requiring additional behavioral interventions [2, 34]. Our findings of high mosquito mortality rates after exposure to clothianidin and chlorfenapyr and improved vector susceptibility with PBO treatment (on both LLINs and in resistance bioassays), are consistent with data from other sentinel sites across Cote d'Ivoire [16, 35, 36], and strongly support the deployment of vector control interventions incorporating these new active ingredients.\n", - "\n", - "Study results indicate that _A. coluzzi_ was the predominant local vector species during the rainy season, as observed previously [7], circulating sympatrically with smaller proportions of _A. gambiae_ s.s. These 2 vector species commonly cohabit but can be genetically distinct in terms of resistance mechanisms [37, 38] and can also differ in larval ecology, behavior, migration, and activation [39-41]. In general, resistance mechanisms in _A. coluzzi_ are less well characterized, compared with _A. gambiae_ s.s., in part because these vectors are morphologically\n", - "\n", - "Figure 4: Metabolic gene expression in field _Anopheles coluzzi_ and _Anopheles gambiae_ sensu stricto (s.s.) populations relative to a susceptible colony population. Error bars represent 95% confidence intervals. Statistically significant differences in expression levels relative to the susceptible colony are indicated as follows: *_P_ <.05; **_P_ <.01; ***_P_ <.001.\n", - "\n", - "\n", - "indistinguishable and few studies present data disaggregated by PCR-confirmed species.\n", - "\n", - "We observed several distinct features in our study, including, principally, evidence for ongoing selection of L1014F _kdr_ and G119S _Ace-1 in A. coluzzii_, which was absent in _A. gambiae_ s.s. and higher proportions of N1575Y in _A. gambiae_ s.s.; expression levels of metabolic genes were comparable between species. The lack of association between L1014F _kdr_ genotype and mosquito phenotype, coupled with the identification of 3 CYP450 enzymes (_CYP6P4, CYP6P3,_ and _CYP6Z1_) that were significantly overexpressed in field populations (some of which are known to metabolize pyrrethroids and next-generation LLIN insecticides [42, 43]), indicate a key role for metabolic resistance in this _A. coluzzii_ population. One notable difference in our data set, compared with previous findings in Agboville [7], was the finding of benodiocarb susceptibility. This may be attributable to small-scale spatial and longitudinal heterogeneity in resistance, which can be highly dynamic [37, 44], and/or phenotypic differences between vector species, complicating intervention choice for resistance management.\n", - "\n", - "With the exception of chlorfenapyr, which is known to be a slow-acting insecticide, no delayed mortality effects were detected after insecticidal exposure; the format and dose used for clothianidin testing (another slow-acting insecticide [45]) were instead intended to measure acute toxicity within a 60-minute exposure period. Previous mathematical models using resistant mosquito colonies have suggested that sublethal insecticide treatment may still reduce vector lifespan and inhibit blood-feeding and host-seeking behaviors, thereby interrupting malaria transmission [46, 47]. Our observations are more compatible with reports from Burkina Faso, where different exposure regimens of wild, resistant _A. gambiae_ s.l. populations to deltamethrin LLINs did not induce any delayed mortality effects [47]. Further assessment of sublethal effects are warranted across additional field populations with differing resistance mechanisms, to clarify the impact of insecticidal exposure on the vectorial capacity of resistant mosquitoes.\n", - "\n", - "To date there is a paucity of data regarding the interactions between insecticide resistance and _Plasmodium_ development [48]. In the current study, _A. coluzzii_ that died after pyrethroid exposure were significantly more likely to be infected with malaria. This might be explained by elevated metabolic enzymes and/or prior pyrethroid exposure detrimentally affecting parasite development [49], although it is important to note that we did not detect any significant differences between gene overexpression in malaria-infected versus noninfected _A. coluzzii_. Alternatively, our sampled population may have been physiologically older, as phenotypic resistance is known to decline with age [50]. It is impossible to distinguish between these hypotheses using field-collected vector populations; the experimental design used in this study had other biological and technical limitations, which have been described in detail elsewhere [23, 37]\n", - "\n", - "In conclusion, as new combination and bitreated vector control interventions become available for deployment, contemporary resistance information is crucial for the rationale design of management strategies and to mitigate further selection for particular resistance mechanisms. The results from the current study contribute to growing insecticide resistance data for Cote d'Ivoire, demonstrating a loss of bioefficacy of pyrethroid LLINs and supporting the use of new active ingredients (clothianidin, chlorfenapyr, and PBO). Study findings also highlight the need for expanded insecticide resistance surveillance, including monitoring of metabolic resistance mechanisms, in conjunction with studies to better characterize the impact of sublethal insecticide exposure on vectorial capacity and the interaction between insecticide resistance and _Plasmodium_ parasite development.\n", - "\n", - "Figure 5: Metabolic gene expression in resistant versus susceptible field _Anopheles coluzzi_, which either died or survived after insecticidal exposure. Error bars represent 95% confidence intervals.\n", - "\n", - "header: Mosquito Processing, Identification of _A. gambiae_ s.l. Species Complex\n", - "\n", - "Members, and _Plasmodium falciparum_ Detection\n", - "\n", - "A subsample of field-caught mosquitoes tested in bioassays was selected for molecular analysis (n = 912). Approximately equal numbers of specimens were chosen to represent phenotypically \"susceptible\" or \"resistant\" mosquitoes for each LLIN type or insecticide dose, selected across different replicates and testing days to capture as much population-level variation as possible. RNA was extracted from individual whole-body mosquitoes according to standard protocols [23]. Field _A. gambiae_ s.l. were identified to species level [25] and were screened for the presence of _Plasmodium falciparum_[26].\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `EntomologicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `EntomologicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `EntomologicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}, \"Start_month\": {\"title\": \"Start Month\", \"description\": \"Numerical start month of the reporting period (some studies may report multiple time periods)\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Bioassay, cone test\",\"Country\":\"Cote d'Ivoire\",\"Site\":\"Aboude, Agboville\",\"Start_month\":7,\"Start_year\":2019,\"End_month\":7,\"End_year\":2019}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Concentration_initial\": {\"title\": \"Insecticide concentration (initial)\", \"description\": \"Enter the initial concentration of the insecticide(s) for net type at the time of distribution.\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"PermaNet 2.0\",\"Insecticide\":\"deltamethrin\",\"Concentration_initial\":\"1.4 g\\/kg\"},\"N02\":{\"Net_type\":\"PermaNet 3.0 roof panels\",\"Insecticide\":\"PBO, deltamethrin\",\"Concentration_initial\":\"25g\\/kg, 4 g\\/kg\"},\"N03\":{\"Net_type\":\"PermaNet 3.0 side panels\",\"Insecticide\":\"deltamethrin\",\"Concentration_initial\":\"2.8 g\\/kg\"}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: 2.2.1 Role of CYP6P9a_R Using WHO Tube Assay Samples\n", - "\n", - "Using the hybrid FUMOZ-FANG strains, the role of the _CYP6P9a_R_ allele in the observed pyrethroid resistance was confirmed. The odds ratio of surviving exposure to permethrin when homozygous for the resistant _CYP6P9a_R_ allele (RR) was high at 693 (CI 88-5421; \\(p\\) < 0.0001) compared to the homozygous-susceptible mosquitoes (SS) (Figure 2A). The OR was 131 (CI 27-978; \\(p\\) < 0.0001) when comparing RR to RS, indicating the increasing resistance conferred by _CYP6P9a_.\n", - "\n", - "header: 4.6.2 Genotyping of the CYP6P9b-R Maker Using PCR-RFLP\n", - "\n", - "The PCR was carried out, as described for CYP6P9a. The following primers were used: 6p9brflp_0.5F 5'-CCCCCACAGGTGTAACTCTGAA-3' and 6p9brflp_0.5R 5'-TTATCCGTAAACTCAATAGCGATG-3'. Then, 3 mL of the PCR product migrated on the 1.5% agarose gel. The expected PCR product was 550 bp. The digestion with the _Tsp_451 restriction enzyme followed 0.2 mL of Tsp451, 5 mL of PCR product, 1 mL of 10x NEBuffer, and 3.8 mL of distilled water. This mix was incubated at 65 degC for 2 h. Afterwards, 3 mL of the digestion product was migrated on the 2% gel. Amplicons from susceptible mosquitoes were cut into two bands with sizes of 400 bp and 150 bp, and the resistant mosquitoes remained undigested with the band at 550 bp.\n", - "\n", - "header: Impact of the Duplicated CYP6P9a and CYP6P9b P450 Genes on the Performance of Bed Nets\n", - "\n", - "The samples collected during the evaluation of Olyset and Olyset Plus in experimental huts were grouped in several categories: dead, alive, blood fed, and unfed; room and veranda. The _CYP6P9a_/b and _6.5 kb SV_ were genotyped in each group using the respective PCR assays as described [28,29,31]. This allowed the relative survival and feeding success of resistant and susceptible insects in the presence of both bed nets to be directly measured.\n", - "\n", - "header: Abstract\n", - "\n", - "Experimental Hut Trials Reveal That CYP6P9a/b P450 Alleles Are Reducing the Efficacy of Pyrethroid-Only Olyset Net against the Malaria Vector _Anopheles funestus_ but PBO-Based Olyset Plus Net Remains Effective\n", - "\n", - "Benjamin D. Menze, Leon M. J. Mugenzi, Magellan Tchouakui, Murielle J. Wondji,\n", - "\n", - "1Vector Biology Department, Liverpool School of Tropical Medicine, Pembroke Place, Liverpool L3 5QA, UK; murielle.wondji@ilstmed.ac.uk\n", - "2Medical Entomology Department, Centre for Research in Infectious Diseases (CRID), Yaounde 13591, Cameroon; leon.mugenzi@crid-cam.net (L.M.J.M.); magellan.tchouakui@crid-cam.net (M.T.); micareme.tchouop@crid-cam.net (M.T.)\n", - "* Correspondence: benjamin.menze@crid-cam.net (B.D.M.); charles.wondji@ilstmed.ac.uk (C.S.W.)\n", - "\n", - "\n", - "Malaria remains a major public health concern in Africa. Metabolic resistance in major malaria vectors such as _An. funestus_ is jeopardizing the effectiveness of long-lasting insecticidal nets (LLINs) to control malaria. Here, we used experimental hut trials (EHTs) to investigate the impact of cytochrome P450-based resistance on the efficacy of PBO-based net (Olyset Plus) compared to a permethrin-only net (Olyset), revealing a greater loss of efficacy for the latter. EHT performed with progenies of F5 crossing between the _An. funestus_ pyrethroid-resistant strain FUMOZ and the pyrethroid-susceptible strain FANG revealed that PBO-based nets (Olyset Plus) induced a significantly higher mortality rate (99.1%) than pyrethroid-only nets (Olyset) (56.7%) (\\(p<0.0001\\)). The blood-feeding rate was higher in Olyset compared to Olyset Plus (11.6% vs. 5.6%; \\(p=0.013\\)). Genotyping the _CYP6P9a/b_ and the intergenic _6.5 kb structural variant_ (SV) resistance alleles showed that, for both nets, homozygote-resistant mosquitoes have a greater ability to blood-feed than the susceptible mosquitoes. Homozygote-resistant genotypes significantly survived more with Olyset after cone assays (e.g., _CYP6P9a_ OR = 34.6; \\(p<0.0001\\)) than homozygote-susceptible mosquitoes. A similar but lower correlation was seen with Olyset Plus (OR = 6.4; \\(p<0.001\\)). Genotyping EHT samples confirmed that _CYP6P9a/b_ and _6.5 kb_SV_ homozygote-resistant mosquitoes survive and blood-feed significantly better than homozygote-susceptible mosquitoes when exposed to Olyset. Our findings highlight the negative impact of P450-based resistance on pyrethroid-only nets, further supporting that PBO nets, such as Olyset Plus, are a better solution in areas of P450-mediated resistance to pyrethroids.\n", - "\n", - "header: Table 1: Description of the long-lasting insecticidal nets used.\n", - "footer: None\n", - "columns: ['Treatment Arm', 'Description', 'Manufacturer']\n", - "\n", - "{\"0\":{\"Treatment Arm\":\"Untreated\",\"Description\":\"100% polyester with no insecticide\",\"Manufacturer\":\"Local market\"},\"1\":{\"Treatment Arm\":\"Olyset\",\"Description\":\"8.6 \\u00d7 10\\u22124 kg\\/m2 (2%) of permethrin incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"2\":{\"Treatment Arm\":\"Olyset\",\"Description\":\"8.6 \\u00d7 10\\u22124 kg\\/m2 (2%) of permethrin incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"3\":{\"Treatment Arm\":\"Olyset Plus\",\"Description\":\"8.6 \\u00d7 10\\u22124 kg\\/m2 (2%) of permethrin and 4.3 \\u00d7 10\\u22124 kg\\/m2 (1%) of PBO incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"4\":{\"Treatment Arm\":\"Olyset Plus\",\"Description\":\"8.6 \\u00d7 10\\u22124 kg\\/m2 (2%) of permethrin and 4.3 \\u00d7 10\\u22124 kg\\/m2 (1%) of PBO incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"5\":{\"Treatment Arm\":\"Olyset Plus\",\"Description\":\"8.6 \\u00d7 10\\u22124 kg\\/m2 (2%) of permethrin and 4.3 \\u00d7 10\\u22124 kg\\/m2 (1%) of PBO incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"}}\n", - "\n", - "header: 5 Conclusions\n", - "\n", - "This study reveals that insecticide resistance driven by _CYP6P9a/b_ and _6.5 kb SV_ can reduce the efficiency of Permethrin-based LLINs, such as Olyset, while PBO-based nets remain effective. However, the greater loss of efficacy observed in mosquitoes with multiple and complex resistance supports the need to introduce new products for vector control which is less reliant on pyrethroids. Meantime, PBO-based nets should be preferably deployed in areas of P450-based resistance.\n", - "\n", - "**Supplementary Materials:** The following supporting information can be downloaded at: [https://www.mdpi.com/article/10.3390/pathogens11060638/s1](https://www.mdpi.com/article/10.3390/pathogens11060638/s1), Table S1: Results of the performance of Olyset and Olyset Plus against _An. funestus_ females (crossing FUMOZ-FANG; F5) in experimental hut trial. Table S2: Correlation between _CYP6P9a and CYP6P9b_ genotypes and mosquito mortality against Olyset and Olyset Plus nets after cone assays with the FANG-FUMOZ mosquito strain. Table S3: Correlation between the _6.5Kv SV_ genotypes and mosquito mortality against Olyset and Olyset Plus nets after cone assays with the FANG-FUMOZ mosquito strain. Table S4: Correlation between genotypes of _CYP6P9a_, _CYP6P9b_ and _6.5 kb SV_ and mortality and blood-feeding after exposure to Olyset and Olyset Plus in experimental huts. Table S5: _CYP6P9a_ and _CYP6P9b_ acting together further increase the ability of _An. funestus_ to survive and blood feed against Olyset after experimental hut trial.\n", - "\n", - "**Author Contributions:** C.S.W. conceived and designed the study; L.M.J.M. and M.T. (Magellan Tchouakui) generated the lab crosses and performed the validation of the PCR; B.D.M. performed the experimental hut experiments with C.S.W. and genotyped the resistance makers with M.J.W. and M.T. (Micareme Tchoupo); B.D.M. and C.S.W. wrote the paper with assistance from M.T. (Magellan Tchouakui) and L.M.J.M. All authors have read and agreed to the published version of the manuscript.\n", - "\n", - "**Funding:** This research was funded in whole by the Welcome Trust (Senior Research Fellowship to CSW 101893/Z/13/Z and 217188/Z/19/Z). For the purpose of open access, the authors applied a CC BY public copyright license to any author who accepted a manuscript version following this submission.\n", - "\n", - "**Institutional Review Board Statement:** NA.\n", - "\n", - "**Informed Consent Statement:** NA.\n", - "\n", - "**Data Availability Statement:** NA.\n", - "\n", - "**Acknowledgments:** A big thanks to Charles Wondji for his financial support through the Wellcome Trust (Senior Research Fellowship to CSW 101893/Z/13/Z and 217188/Z/19/Z). I am also grateful to the Mibellon community.\n", - "\n", - "**Conflicts of Interest:** The authors declare that they have no competing interest.\n", - "\n", - "header: 3 Discussion\n", - "\n", - "The capacity to assess the impact of insecticide resistance on the effectiveness of insecticide-treated control tools is crucial in order to implement suitable insecticide resistance management (IRM) [32]. Evolution in the area of DNA-based resistance markers of P450-mediated resistance [28; 29] currently offers robust tools to screen pyrethroid resistance in field populations of the major malaria vectors such as _An. funestus_ and assess their impact on the effectiveness of LLINs. In this study, we use these markers to evaluate the extent to which pyrethroid resistance is impacting the efficacy of pyrethroid-only nets such as Olyset in comparison to PBO-based net such as Olyset Plus. This study also allowed to assess the interplay between P450 genes in the overall genetic variance to resistance and their combined impact on the efficacy of LLINs.\n", - "\n", - "PBO-Based Nets (Olyset Plus) Exhibit Greater Efficacy than Pyrethroid-Only Nets (Olyset) in the Context of P450-Based Resistance\n", - "\n", - "Olyset presented a moderate mortality compared to Olyset Plus (30.9% vs. 100%; \\(p\\) < 0.0001). The high mortality observed with PBO nets compared to pyrethroid-only nets is similar to what was observed in previous studies [33; 34; 35; 36]. The high mortality observed with PBO-based nets against the hybrid strain FUMOZ/FANG is due to the fact the mechanisms underlying the resistance in this population are driven by _CYP6P9a_ and _CYP6P9b_[37] which are inhibited by PBO [38]. These results demonstrate that PBO-based nets may be a more suitable solution in areas where resistance is mainly mediated by P450 genes.\n", - "\n", - "Figure 7: Combined impact of the triple resistance alleles (_CYP6P9a_/_CYP6P9b_/_6.5 kb SV_) on the efficacy of insecticide-treated nets. (**A**) Distribution of combined genotypes for _CYP6P9a_, _CYP6P9b_ and the _6.5 kb SV_ showing that the three markers combine to increase the chances of being alive in the presence of Olyset Net. (**B**) Ability to survive exposure to Olyset net for the various combined genotypes for the _6.5 kb SV_, _CYP6P9a_ and _CYP6P9b_. (**C**) Distribution of combined genotypes for _CYP6P9a_, _CYP6P9b_ and the _6.5 kb SV_ showing that the three markers combine to increase the chances to bloodfed in the presence of Olyset net. (**D**) The triple RR/RR/SV+SV+ homozygous mosquitoes for the _6.5 kb SV_, _CYP6P9a_ and _CYP6P9b_ exhibit a greater blood-feeding ability than other genotypes. Ns: non-significant; * (0.05); ** (0.01); *** (0.001).\n", - "\n", - "\n", - "The efficacy of nets observed in this study confirms the loss in efficacy of the pyrethroid-only nets against _Anopheles_ mosquitoes, as observed across the continent [39]. This loss of efficacy was observed in Mozambique [7,40], Malawi [41], Congo [42], and Cameroon [6,43]. Overall, similar to this study, it has been noticed that PBO-based nets demonstrate a better performance compared to pyrethroid-only nets [33,34]. The same trends were observed with pyrethroid type II with high mortality observed with PermaNet 3.0 compared to PermaNet 2.0 [28,29,31], suggesting that PBO-based nets with both type I or II can exhibit high performance against resistance sustained by P450s.\n", - "\n", - "P450 Resistance Can Reduce the Efficacy of Pyrethroid-Only Nets Significantly Better Than PBO-Based Nets\n", - "\n", - "When comparing the impact of _CYP6P9a/b_ on pyrethroid-only nets and PBO-based nets using samples from cone assays, we noticed that the impact of _CYP6P9a_ on pyrethroid-only nets was higher than with PBO-based nets (Olyset, OR = 35.1; \\(p\\) < 0.00001 vs. Olyset Plus, OR = 6.4; \\(p\\) < 0.001). The same trend was also observed with _CYP6P9b_ and the 6.5 kb SV. This can be explained by the fact that the addition of the PBO inhibits the cytochrome P450 enzymes, which is the main resistance mechanism in the strain used by the mosquitoes [44,45].\n", - "\n", - "On the other hand, Olyset nets have also shown reduced performance against _CYP6P9a_ and _CYP6P9b_-resistant mosquitoes. Strong association was observed between the resistant alleles and the increased ability of the mosquitoes to survive after exposure to these nets. Nevertheless, the impact of _CYP6P9a_ and _CYP6P9b_ seems to be more significant on PermaNet nets impregnated with deltamethrin [29,31], compared to Olyset nets impregnated with permethrin (Olyset, OR = 35.1; \\(p\\) < 0.00001 vs. PermaNet 2.0, OR = 239.0; \\(p\\) < 0.001 and Olyset Plus, OR = 6.4; \\(p\\) < 0.001 vs. PermaNet 3.0, OR = 81.0; \\(p\\) < 0.001) [29,31]. This significant impact on PermaNet could be associated with the fact that the hybrid strain is more resistant to type II pyrethroids, as shown by WHO bioassays, where the mosquitoes were more resistant to deltamethrin compared to permentrin (48.5% vs. 80.7%). With regards to the obtained odd ratios, a stronger association was observed between _CYP6P9a/CYP6P9b_ and the loss of efficacy of nets compared to what was observed with GST-based resistance through the L119F-_GSTe2_-resistant allele [43], in line with the greater role of P450 in resistance to pyrethroids in _An. funetus_, compared to that of GST. The 6.5 kb SV was shown to further exacerbate the loss of efficacy in the permethrin-only nets. The design of the simple PCR-based assay to genotype the _6.5 kb SV_ enabled us to assess the impact of such structural variation on the efficacy of insecticide-treated nets, including the pyrethroid-only and the PBO-synergist nets. A greater reduction in the efficacy of _6.5 kb SV_ was present on permethrin-only nets compared to PBO-based nets, which is similar to that observed with _CYP6P9a_ [31] and _CYP6P9b_ [29], in terms of the reduced mortality rate and blood-feeding inhibition. This pattern is also similar to that seen with deltamethrin-based nets (PermaNet 2.0 vs. PermaNet 3.0) [29,31]. Overall, the significantly greater loss of efficacy due to P450s observed with both type I (Olyset and PermaNet 2.0) and PBO-based nets (Olyset Plus and PermaNet 3.0) further supports the deployment of PBO-based nets to control P450-based metabolically resistant mosquito populations. The deployment of PBO-based nets should nevertheless also be monitored to regularly assess their efficacy since they too could be impacted by resistance, as shown by the fact that _CYP6P9a/b_-resistant mosquitoes could blood-feed significant better, even with Olyset Plus. This increased ability of resistant mosquitoes to blood-fed, even with PBO-based net, suggests that PBO-based nets are not immune to the impact of resistance, even if they remain significantly more effective than pyrethoid-only nets. The increased blood-feeding of P450-resistant mosquitoes when exposed to PBO-based nets may also lead to a higher malaria transmission, although this is mitigated by the high mortality observed for Olyset Plus in a experimental hut trial. Overall, evaluating the impact of P450-based resistance on the efficacy of Olyset vs. Olyset Plus further supports the results obtained in a cluster \n", - "randomized controlled trial with both nets in Tanzania showing greater effectiveness of Olyset Plus [46].\n", - "\n", - "header: 1 Introduction\n", - "\n", - "Long-lasting insecticidal nets (LLINs) remain an important component of the malaria control strategies used to reduce mortality and morbidity due to this disease in Africa [1, 2]. Mostly insecticides belonging to the pyrethroid group, as well as more and more novel insecticides, are currently recommended for bed net impregnation [3, 4, 5]. In recent years, anopheles mosquitoes have increasingly been reported to show resistance against pyrethroids across Africa. This is the case for major vectors including _Anopheles funestus_[6, 7, 8, 9] and _Anopheles gambiae_[10, 11, 12, 13, 14]. This growing spread of resistance has led to a concern that LLINs may lose their efficacy. However, quantifying such loss of efficacy remains challenging without suitable metrics associated with resistance, highlighting the need to use robust genotype/phenotype analysis for this evaluation. At a time when national malaria control \n", - "programs across Africa are seeking to take evidence-based decisions on their choice of suitable nets to help improve malaria control, it is paramount to determine the extent to which existing resistance to pyrethroid really affects LLIN efficacy. This involves an understanding of the interaction between resistance mechanisms and mosquito responses to exposure to LLINs. Broadly speaking, pyrethroid resistance can be caused by alterations in the target site of the insecticide or enhanced enzymatic activities capable of metabolizing the insecticide before it reaches the target [15-17]. Target site resistance is well studied with mutations in the target of both pyrethroid and DDT insecticides, as well as the voltage-gated sodium channels which lead to knockdown resistance (_kdr_). The development of molecular assays more than twenty years ago made it possible to track this resistance mechanism using a simple PCR [18-21] or high throughput techniques, such as TaqMan assays [22]. It has also been possible to assess the impact of _kdr_ on control tools, notably in _An. gambiae_ where these markers are common [23-25], contrary to _An. funestus_, where it is still not detected [26]. The second best characterized cause of insecticide resistance is metabolic resistance, which is more complex to understand as it can involve the detoxification, sequestration, and transportation of insecticides or their conjugates [16,17,27]. Recent studies have focused on elucidating the genetic factors which cause the increased expression of detoxification genes associated with insecticide resistance in malaria vectors such as _An. funestus_, leading to the development of simple molecular assays used to detect metabolic resistance [28-31].\n", - "\n", - "The recent design of molecular assays for the duplicated _CYP6P9a/b_ and the associated _6.5 kb_ structural variant (SV), refs. [28,29,31] now provides a great opportunity to assess the impact of P450-based pyrethroid resistance on the efficacy of various LLINs, including pyrethroid-only (Olyset) and PBO (Olyset Plus) nets. This will provide evidence-based information on their effectiveness in the presence of a growing and escalading resistance to pyrethroids. Previous assessment of this impact on PermaNet nets made with type II pyrethroid deltamethrin has been performed [28,29,31], but this remains to be carried out for type I pyrethroid nets, such as the common permethrin-based Olyset nets.\n", - "\n", - "Here, using EHT, we show a significantly greater efficacy of the PBO-based net Olyset Plus compared to the pyrethroid-only Olyset net against pyrethroid-resistant _An. funestus_. Using the genotyping of DNA-based markers of P450 resistance, we reveal that _CYP6P9a/b_ P450-based pyrethroid resistance induces a significant loss of efficacy for pyrethroid-only net Olyset against _An. funestus_. A reduced efficacy was also detected for PBO-based net Olyset Plus, but at a lower extent than for Olyset net, revealing that PBO nets are more suitable to tackle such P450-based resistance.\n", - "\n", - "header: 2.3.1 Impact on Mosquito Mortality: 2.3.2 CYP6P9a Impacting the Blood-Feeding\n", - "\n", - "Homozygote _CYP6P9a_-resistant mosquitoes (RR) were significantly more likely to blood-feed better than homozygote-susceptible mosquitoes (SS) (OR = 4.5; \\(p\\) < 0.01) when exposed to Olyset. Heterozygote mosquitoes (RS) were significantly worse at blood-feeding with Olyset compared to homozygote-susceptible mosquitoes (SS) (OR = 0.8; CI = 0.3-1.7; \\(p\\) = 1). Homozygote-resistant mosquitoes (RR) fed heterozygotes (OR = 5.4; CI = 2.6-10.88; \\(p\\) < 0.001) significantly better (Table S4; Figure 5C). Overall, the strength of this association was further shown by the significant ability to blood-feed when possessing a single _CYP6P9a_-resistant allele (R) compared to the susceptible allele (S) (OR = 2.3; CI = 1.3-4.1; \\(p\\) < 0.01) (Table S4). For Olyset Plus, homozygote _CYP6P9a_-resistant mosquitoes (RR) were significantly more likely to blood-feed than homozygote-susceptible mosquitoes (RS) (OR = 6.3; \\(p\\) < 0.001) when exposed to Olyset Plus. The significant ability to blood-feed was observed when possessing a single _CYP6P9a_-resistant allele (R) compared to the susceptible allele (S) (OR = 2.0; CI = 1.1-3.5; \\(p\\) = 0.03) (Table S4).\n", - "\n", - "header: 4.6.1 Genotyping of the CYP6P9a-R Marker Using PCR-RFLP\n", - "\n", - "DNA was extracted from various groups of mosquitoes (dead, alive, blood fed, and unfed; room and veranda) using the Livak protocol [49]. The PCR was carried out using 10 mM of each primer and 1 mL of gDNA as the template in 15 mL reaction containing 10x Kapa Taq buffer A, 25 mM of dNTPs, 25 mM of MgCl2, and 1 U of Kapa Taq (Kapa Biosystems, Boston, MA, USA). Amplification was carried out using thermocycler parameters: 95 degC for 5 min, 35 cycles of 94 degC for 30 s, 58 degC for 30 s, 72 degC for 45 s, and a final extension at 72 degC for 10 min. The following primers were used: RFLP6P9aF forward primer 5'-TCCCGAAATACAGCCTTTCAG-3 and RFLP6P9aR reverse primer 5'-ATTGGTCCATCGCTAGAAG-3'. Then, 3 mL of the PCR product migrated on the 1.5% agarose gel. The expected PCR product was 450 bp. The digestion with Taq1a followed 0.2 mL of Taq1a, 5 mL of PCR product, 1 mL of 10x NEBuffer, and 3.8 mL of distilled water. This mix was incubated at 65 degC for 2 h. Afterwards, 3 mL of the digestion product migrated on the 2% gel. Amplicons from resistant mosquitoes were cut into two bands with sizes of 350 bp and 100 bp, and the susceptible mosquitoes remained undigested with the band at 450 bp.\n", - "\n", - "header: 4.6.3 PCR Assay to Detect the 6.5 kb SV\n", - "\n", - "To easily identify the samples containing the 6.5 kb insertion, the recently designed PCR assay [28] was used to discriminate between mosquitoes with the 8.2 kb (resistant) and 1.7 kb (susceptible) _CYP6P9a_ and _CYP6P9b_ intergenic regions. Briefly, three primers were used: two (FG_5F: CTACCGTCAAAGTCCGGTAT and FG_3R: TTTCGAAAACATCCCTAAA) at regions flanking the insertion point and a third primer (FZ_INS5R: ATATGCCACGAAGGAAAGCAG) in the _6.5 kb_ insertion. One unit of KAPA Taq polymerase (Kapa Biosystems) in 1x buffer A, i.e., 25 mm of MgCl2, 25 mm of dNTPs, and 10 mm of each primer, was used to constitute a 15 mL PCR mix using the following conditions: an initial denaturation step of 3 min at 95 degC, followed by 35 cycles of 30 s at 94 degC, 30 s at 58 degC, and 60 s at 72 degC, with a final extension for 10 min at 72 degC. The amplicon was revealed on a 1.5% agarose gel stained with Midori Green Advance DNA Stain (Nippon genetics Europe GmbH) and revealed on a UV transilluminator.\n", - "\n", - "header: Impact of CYP6P9a on the Efficacy of Olyset and Olyset plus Nets Using Experimental Hut Trial\n", - "\n", - "Genotyping of the _CYP6P9a_ marker allowed us to assess the impact of P450-based metabolic resistance on the loss of efficacy of Olyset, but not for Olyset Plus, since most of the mosquitoes released in Olyset Plus huts died. To avoid confounding effects from blood-feeding, or net entry or exophily status, the distribution of the _CYP6P9a_ genotypes was assessed firstly only among unfed mosquitoes collected in the room. This revealed a highly significant difference in the frequency of the three genotypes between the dead and alive mosquitoes (chi-square = 28.8; \\(p\\) < 0.0001) (Figure 5). Analysis of the correlation between each genotype and mortality revealed that _CYP6P9a_ homozygous-resistant mosquitoes (RR) show an increased ability to survive exposure to the Olyset when compared to homozygote-susceptible mosquitoes (SS) with (OR = 5.0; CI = 2.01-12.4; \\(p\\) = 0.001). The strength of this association was further shown by the significant ability to survive exposure when possessing a single _CYP6P9a_-resistant allele (R) compared to the susceptible allele (S) (OR = 2.04; CI = 1.1-3.6; \\(p\\) < 0.05). However, heterozygote mosquitoes (RS) did not survive exposure to Olyset better than homozygote-susceptible mosquitoes (SS) (OR = 1.8; CI = 0.8-3.9; \\(p\\) > 0.05) (Figure 5A; Table S4; Figure 5B).\n", - "\n", - "Figure 5: Impact of both _CYP6P9a_ and _CYP6P9b_ on the efficacy of bed nets in the experimental hut trial. (**A**) Genotype distribution of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset, showing strong association (RR vs. SS: \\(p\\) < 0.001). (**B**) Allelic frequency of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset with experimental hut trial, showing the significant ability of the _CYP6P9a_R_–resistant mosquitoes to survive compared to their susceptible counterparts _CYP6P9a_S_. (**C**) Association between _CYP6P9a_ and ability to blood-feed when exposed to Olyset. The _CYP6P9a_–R allele increases the strength of resistant mosquitoes by taking a blood meal in contrast to the susceptible ones when exposed to Olyset net. (**D**) Association between _CYP6P9b_ and ability to survive exposure to Olyset in the experimental hut trial. (**E**) Allelic frequency of _CYP6P9b_ between alive and dead mosquitoes after exposure to Olyset with the experimental hut trial, showing the significant ability of the _CYP6P9b_R_–resistant mosquitoes to survive compared to their susceptible counterparts _CYP6P9b_S_. (**F**) Association between _CYP6P9b_ gene and ability to blood-feed when exposed to Olyset in the experimental hut trial. The _CYP6P9b_-R allele increases the strength of resistant mosquitoes by taking a blood meal in contrast to the susceptible ones when exposed to Olyset.\n", - "\n", - "header: 2.4.1 The Impact of CYP6P9b on Mortality: 2.4.2 CYP6P9b Impacting the Blood-Feeding\n", - "\n", - "A strong association was observed between _CYP6P9b_ genotypes and the ability to blood-feed. Homozygote-resistant mosquitoes (RR) could more successfully blood-fed when compared to homozygote-susceptible mosquitoes (SS) (OR = 10.01; CI = 4.1-24.9; \\(p\\) < 0.001) (Table S4; Figure 5F). The blood-feeding ability of heterozygote mosquitoes (RS) in the presence of Olyset was not different to that of homozygote-susceptible mosquitoes (SS) (OR = 0.8; CI = 0.3-2.2; \\(p\\) = 1). Homozygote-resistant mosquitoes (RR) could blood-feed significantly better than heterozygotes (OR = 11.1; CI = 5.3-23.03: \\(p\\) < 0.001), suggesting an additive effect. Overall, the strength of this association was further shown by the significant ability to blood fed when possessing a single _CYP6P9b_-resistant allele (R) compared to the susceptible allele (S) (OR = 4.7; CI = 2.5-8.1; \\(p\\) < 0.01) (Table S4).\n", - "\n", - "header: 2.1.1. Quality Control and Performance of the Nets against the Hybrid Strain: 2.1.2 Performance of Nets against the Hybrid Strain Using Experimental Hut\n", - "\n", - "A total number of 578 mosquitoes from the hybrid strain were released and recaptured on a period of one week. In total, 141 samples were released in the control hut, 224 in the hut were treated with Olyset, and 213 in the hut were treated with Olyset Plus.\n", - "\n", - "**Mortality**: Analysis of mortality rates revealed very high mortality of the hybrid FUMOZ-FANG strain against the PBO-based Olyset Plus net (99.1%). In contrast, lower mortality was observed for the pyrethroid-only Olyset net (56.7%). Very low mortality was observed in the untreated control net (9.9%) (Figure 1D; Table S1).\n", - "\n", - "**Blood-feeding**: The blood-feeding rate did not significantly differ when comparing the control (7.8%) to Olyset (11.6% \\(p>0.05\\)) and Olyset Plus (5.6%; \\(p>0.05\\)). However, the blood-feeding rate was higher in Olyset compared to Olyset Plus (11.6% vs. 5.6%; \\(p=0.013\\)) (Figure 1D; Table S1).\n", - "\n", - "Figure 1: Susceptibility profile of the hybrid FUMOZ-FANG strain to pyrethroids. (**A**) Net quality assessment with recorded mortalities after cone assays with Kisumu, the _An. gambiae_-susceptible lab strain, and the _An. funestus_ FUMOZ-FANG strain. (**B**) Susceptibility profile of the hybrid FUMOZ-FANG strain to type II (deltamethrin) pyrethroids and propoxur with recorded mortalities following 60 min exposure. Data are shown as mean \\(\\pm\\) SEM. (**C**) Susceptibility profile of the hybrid FUMOZ-FANG strain to deltamethrin (type II pyrethroids) and permethrin (type I pyrethroids) with recorded mortalities following 30 and 60 min exposure. Data are shown as mean \\(\\pm\\) SEM. (**D**) Proportion of mortality, blood-feeding, and exophily rate for Olyset and Olyset Plus against _An. funestus_ (crossing the FUMOZ-FANG strain (F5)). Ns = \\(p>0.05\\); * = \\(p\\leq 0.05\\); ** = \\(p\\leq 0.01\\); *** = \\(p\\leq 0.001\\).\n", - "\n", - "\n", - "\n", - "\n", - "**Exophily**: The exophily rate in the hut with Olyset net (23.7%) was significantly higher than that in the control hut (13.5%) (_p_ = 0.02), as well as than for Olyset Plus (7.5%; \\(p\\) < 0.001). No significant difference was observed between Olyset Plus and the control net (_p_ = 0.3) (Figure 1D; Table S1).\n", - "\n", - "Validating the Role of CYP6P9a/b and 6.5 kb SV in Pvrethroid Resistance in the Hybrid FUMOZ-FANG Strains before the Experimental Hut Trials\n", - "\n", - "header: 2.2.2 Validating the Role of CYP6P9b_R_ Using Sample from WHO Tube Assays\n", - "\n", - "To confirm the ability of the _CYP6P9b_R_ allele to predict pyrethroid resistance phenotype in the hybrid strain FUMOZ-FANG, the F5 samples were genotyped. This revealed that those that stayed alive after exposure to permethrin for 90 minutes are mainly homozygote\n", - "\n", - "Figure 2: Association between the _CYP6P9a/b_ and the ability to survive exposure to Olyset nets after WHO tubes cone assays. (**A**) Tube assay _CYP6P9a_ and mortality. Role of _CYP6P9a_ in pyrethroid resistance with samples from the WHO tube. Distribution of the _CYP6P9a_ genotypes according to resistance phenotypes. (**B**) Tube assay _CYP6P9b_ and mortality. Role of _CYP6P9b_ in pyrethroid resistance with samples from the WHO tube. Distribution of the _CYP6P9b_ genotypes according to resistance phenotypes. (**C**) Cone assay _CYP6P9a_ and mortality. Genotype distribution of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset with the cone test, showing the significant ability of mosquitoes carrying the RR genotype in order to survive compared to SS (RR vs. SS: \\(p\\) < 0.001). (**D**) Cone assay _CYP6P9a_ and mortality allele. Allelic frequency of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset with the cone test, showing the significant ability of the _CYP6P9a_R_-resistant mosquitoes to survive compared to their susceptible counterparts _CYP6P9a_S_. (**E**) Cone assay _CYP6P9b_ and mortality. Genotype distribution of _CYP6P9b_ between alive and dead mosquitoes after exposure to Olyset using the cone test, showing strong association (RR vs. SS: \\(p\\) < 0.001).\n", - "\n", - "\n", - "resistant (20.8%) and heterozygotes (75%), with only two being homozygote-susceptible. Among the 47 mosquitoes found dead after 30 min exposure to permethrin (highly susceptible), 97.87% were found to be homozygote-susceptible, and one remaining was a heterozygote (Figure 2B). A strong association was perceived between permethrin resistance and the _CYP6P9b_ genotypes when comparing RR vs. SS (OR = infinity; \\(p\\) < 0.0001) and RS vs. SS (OR = 715; \\(p\\) < 0.0001).\n", - "\n", - "2.3 Validation of the Role of CYP6P9a and CYP6P9b in Conferring Resistance Using Samples from Cone Assays\n", - "\n", - "Using dead and alive mosquitoes obtained after cone assays, _CYP6P9a_ homozygous-resistant mosquitoes (RR) and heterozygous (RS) could survive significantly better following exposure to Olyset and Olyset Plus than homozygote-susceptible mosquitoes (Table S2). Olyset shows a strong association between the resistance alleles and the ability to survive when comparing RR vs. SS (OR = 35.1; \\(p\\) < 0.0001) and RS vs. SS (OR = 34.6; \\(p\\) < 0.0001) for _CYP6P9a_ (Figure 2C). The same trend was observed when looking at the allelic frequency R vs. S (OR = 7.7; \\(p\\) < 0.05) (Table S2; Figure 2D). Concerning _CYP6P9b_, homozygous-resistant mosquitoes (RR) and heterozygous (RS) could also survive significantly better following survive exposure to Olyset net. A strong association was noticed between the gene and the ability to survive when comparing RR to SS (OR = 32.4; \\(p\\) < 0.0001) and RS vs. SS (OR = 97.3; \\(p\\) < 0.0001) (Table S2; Figure 2E).\n", - "\n", - "Olyset Plus shows a strong association between the resistance alleles and the ability to survive when comparing RR vs. SS (OR = 6.4; \\(p\\) < 0.001) and RS vs. SS (OR = 7.2; \\(p\\) < 0.001) for _CYP6P9a_ (Table S2; Figure 3A). The same trend was observed when looking at the allelic frequency R vs. S (OR = 2.0; \\(p\\) = 0.05) (Table S2; Figure 3B). Concerning the _CYP6P9b_, Olyset Plus equally shows a strong association between the resistance alleles and the ability to survive when comparing RR vs. SS (OR = 9.7; \\(p\\) < 0.001) and RS vs. SS (OR = 17.9; \\(p\\) < 0.001) for _CYP6P9b_ (Table S2; Figure 3C). The same trend was observed when looking at the allelic frequency R vs. S (OR = 2.2; \\(p\\) = 0.01) (Table S2).\n", - "\n", - "Figure 3: Association between the _CYP6P9a/b_ and the ability to survive exposure to Olyset Plus nets after cone assays. (**A**) Genotype distribution of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset Plus with the cone test, showing the significant ability of the mosquitoes to carry the RR genotype to survive compared to SS (_p_ < 0.001). (**B**) Allelic frequency of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset Plus with the cone test, showing the significant ability of the _CYP6P9a_R_–resistant mosquitoes to survive compared to their susceptible counterparts _CYP6P9a_S_. (**C**) Genotype distribution of _CYP6P9b_ between alive and dead mosquitoes after exposure to Olyset Plus using the cone test, showing the significant ability of the mosquitoes carrying the RR genotype to survive compared to SS (_p_ < 0.001).\n", - "\n", - "header: Study Site: Laboratory Strain: FUMOZ/FANG Crossing\n", - "\n", - "Previous studies revealed that the duplicated P450 _CYP6P9a/b_ and intergenic _6.5 kb sv_ is mainly found in mosquitoes from southern Africa and absent from mosquitoes collected elsewhere in Africa [31,45]. Moreover, these resistance markers have already been selected (close to fixation) in the southern African _An. funestus_ populations, preventing free-flying mosquitoes from being used in this region in order to assess their impact on LLIN efficacy, as all mosquitoes are nearly homozygote-resistant now [7]. Therefore, to evaluate the impact of these cytochrome P450, we opted to use a hybrid strain generated from two _An. funestus_ laboratory colonies: the FANG colony, a completely insecticide-susceptible colony originating from Angola, and the FUMOZ colony derived from southern Mozambique, which is highly resistant to pyrethroids and carbamates [48]. During rearing, the pupae of each strain were kept individually in Falcon tubes (15 mL), locked with a piece of cotton for individual emergence. After the emergence of pupae in the Falcon tube, the males and the females were separated. A reciprocal crossing was performed using 50 males and 50 females from the other strain. After the initial F1 generation obtained from the reciprocal crosses of the 50 males and 50 females of both strains, the hybrid strain was reared to F5 and F6 generation, presenting good segregation in all the three genotypes. The hybrid strain was then used for the release recapture experiment in the huts.\n", - "\n", - "header: Susceptibility Profile of the Hybrid FUMOZ/FANG Strain to Pyrethroids\n", - "\n", - "Before assessing the impact of _CYP6P9a/b_ on the effectiveness of LLINs using the experimental huts, the resistance status of the hybrid FUMOZ-FANG was evaluated in laboratory conditions via WHO tube tests and cone tests, and the role of _CYP6P9a/b_ in terms of resistance was assessed.\n", - "\n", - "**Bioassays:** WHO bioassays were conducted with 0.05% deltamethrin and 0.1% propoxur. To generate highly resistant and highly susceptible mosquitoes, WHO bioassays were conducted with 0.75% permethrin and 0.05% deltamethrin for 30 min and 90 min. For each insecticide, four replicates of 25 mosquitoes from the hybrid strains were used. Alive mosquitoes after 90 min of exposure and dead mosquitoes after 30 min of exposure were then genotyped to establish the association between the _CYP6P9a/b_ and _6.5 kb SV_ resistance alleles and the ability of mosquitoes to survive to these insecticides.\n", - "\n", - "**Cone assays:** Cone test bioassays were conducted with a fragment of Olyset and Olyset Plus using the resistant hybrid strains FUMOZ-FANG. Five batches of 10 unfed females, aged 2-5 days old, were exposed to each bed net for three minutes. They were then transferred into the holding paper cup containers. The knockdown was checked after 60 min and the mortality after 24 h. Alive and dead mosquitoes obtained after exposure were then genotyped. The association between the _CYP6P9a/b_-resistant allele and the ability of mosquitoes to survive to these insecticides was also established.\n", - "\n", - "header: Results\n", - "\n", - "All the nets used in the study were first exposed to the susceptible lab strain Kisumu for quality control. The mortality for Olyset and Olyset Plus was 100% (Figure 1A). The _An. funestus_ hybrid strain exposed to bed nets using WHO cone assays exhibited mortality rates of 30.1 \\(\\pm\\) 11.5% for Olyset and 100 \\(\\pm\\) 0% for Olyset Plus, suggesting a greater efficacy of PBO synergist nets compared to pyrethroid-only nets.\n", - "\n", - "**Susceptibility profiles of the FUMOZ-FANG:** The bioassays performed with the reciprocal FUMOZ-FANG strains revealed that the hybrid strain was resistant to deltamethrin with mortality of 43.7 \\(\\pm\\) 5.9%, and was resistant to propoxur with mortality of 67.3 \\(\\pm\\) 6.6% (Figure 1B). The second set of bioassays performed with the reciprocal FUMOZ-FANG strains revealed that the hybrid strain was resistant to permethrin with mortality of 43.7 \\(\\pm\\) 1.6% and 39.3 \\(\\pm\\) 1.6%, respectively, for 90 min and 30 min. Resistance was also observed with deltamethrin with a mortality of 86.4 \\(\\pm\\) 3.1% and 42.3 \\(\\pm\\) 2.5%, respectively, for 90 min and 30 min (Figure 1C).\n", - "\n", - "header: Resistance Escalation with Multiple Resistance Alleles Present a Greater Risk of Control Failure\n", - "\n", - "This study confirms the findings by [28], suggesting that the _6.5 kb SV_ acts as an enhancer for nearby duplicated P450 genes _CYP6P9a_ and _CYP6P9b_, leading to their increased overexpression, thus creating greater resistance. This _6.5 kb SV_ is strongly associated with an aggravation of pyrethroid resistance, which reduces the efficacy of pyrethroid-only nets. The fixation of this _6.5 kb SV_, besides the resistant alleles of _CYP6P9a_ and _CYP6P9b_, could explain the resistance escalation currently observed against the _An. funestus_ population from the southern part of Africa reducing the efficacy of bed nets [7,41].\n", - "\n", - "This study revealed that multiple and complex resistance combining elevated expression (_CYP6P9a/b_) [45], as well as the selection of cis-regulatory motifs for transcription binding sites (CnCC/MAF) [31], coupled with structural variations such as the _6.5 kb_, which is known to be enriched with several regulatory elements [28], can lead to a greater reduction in bed net efficacy. The fact that triple homozygote-resistant mosquitoes could survive better against exposure to pyrethroid-only nets compared to all genotypes reveals the greater risk that an unabated increase in resistance can likely lead to the failure of insecticide-based interventions, as predicted by the WHO global plan for insecticide resistance management. This calls for novel nets which do not rely on pyrethroids in the future. However, the impact of these resistance alleles on the efficacy of LLINs in natural populations remains to be established, as we only performed a test with a hybrid strain from two laboratory strains. This work must be urgently carried out, particularly as the molecular tools are increasingly available.\n", - "\n", - "header: 2.5.1 The Impact of 6.5 kb SV on Mortality: 2.5.2 The Impact of 6.5. kb SV on Blood-Feeding\n", - "\n", - "A strong association was observed between _6.5 \\(kb\\)_ SV genotypes and the ability to blood-feed. Homozygote-resistant mosquitoes (RR) could blood-feed better compared to homozygote-susceptible mosquitoes (SS) (OR = 10.01; CI = 3.2-31.4; \\(p\\)\\(<\\) 0.0001) (Table S4; Figure 6C). The blood-feeding ability of heterozygote mosquitoes (RS) in the presence of Olyset differs to that of homozygote-susceptible mosquitoes (SS) but not significantly (OR = 1.7; CI = 0.5-5.4; \\(p\\) = 0.4) (Table S4). Homozygote-resistant mosquitoes (RR) could blood-feed significantly better than heterozygotes (OR = 10.2; CI = 4.9-21.11: \\(p\\)\\(<\\) 0.0001), suggesting an additive effect. Overall, the strength of this association was further shown by the significant ability to blood-feed when possessing a single _CYP6P9b_-resistant allele (R) compared to the susceptible allele (S) (OR = 4.2; CI = 2.3-7.9; \\(p\\)\\(<\\) 0.0001) (Table S5; Figure 6D). A similar trend was observed against Olyset Plus nets (Table S5; Figure 6E,F).\n", - "\n", - "Combined Impact of CYP6P9a and CYP6Pb on the Efficacy of Olyset and Olyset plus Nets Using Experimental Hut Trial\n", - "\n", - "As _CYP6P9b_ genotypes were shown to be independent from those of _CYP6P9a_[28], we also assessed how combinations of genotypes at both genes impact the efficacy of Olyset for mortality and blood-feeding. Analysis of the impact of combined genotypes on mortality with Olyset confirmed the independent segregation of genotypes at both genes with several combinations of genotypes observed including RR/RR, RR/RS, RS/RS, RS/SS and SS/SS (Table S5). A comparison of the distribution of both sets of genotypes revealed that double homozygote-resistant (RR/RR) mosquitoes at both genes had a far greater ability to survive exposure to Olyset than most of the other combinations (Table S4) particularly when compared to double susceptible (SS/SS) (OR = 8.6; CI = 1.8-39.1; \\(p\\)\\(<\\) 0.01) (Table S5). A significantly increased survival is also observed in RR/RR when compared to other combinations although with a lower odds ratio, such as against RR/SS (OR = 2; \\(p\\)\\(<\\) 0.01) (Table S5).\n", - "\n", - "Analysis of the combined genotype distribution for blood-feeding also revealed a significantly increased ability to blood-feed for double homozygote-resistant mosquitoes when exposed to Olyset with the highest significance against double homozygote-susceptible mosquitoes (OR = 9.3; \\(p\\)\\(<\\) 0.001) (Table S5).\n", - "\n", - "Combined Impact of the Triple Resistance Alleles CYP6P9a/CYP6P9b/6.5 kb SV on the Efficacy of Olyset and Olyset plus Nets Using Experimental Hut Trial\n", - "\n", - "Experimental hut trials showed that triple RR/RR/SV\\({}^{+}\\)SV\\({}^{+}\\) homozygotes were more likely to survive exposure to Olyset compared to any other combined genotypes except RR/RS/RS (Figure 7A). RR/RR/SV+SV+ survived more than SS/SS/SV\\(-\\)SV\\(-\\) (OR = 8.5; CI: 2.53-28.46; \\(p\\)\\(=\\) 0.0005) and RS/RS/SV+SV\\(-\\) (OR = 3.57; CI = 1.82- 7.02; \\(p\\)\\(=\\) 0.0002). There was no significant difference between the RR/RR/SV+SV+ and RR/RR/SV+SV\\(-\\) genotypes (OR = 1; CI = 0.16-7.02; \\(p\\)\\(=\\) 1.0), and both had a similar trend in terms of survival with the same odds ratio (Figure 7B). In addition to the ability to survive exposure to the net, RR/RR/SV+SV+ also could blood-feed better than SS/SS/SV\\(-\\) SV\\(-\\) (OR = 7.0; CI: 2.38-20.52; \\(p\\)\\(=\\) 0.0004) and the other combinations in the presence of Olyset (Figure 7C,D).\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ITNCondition` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: 2.2.1 Role of CYP6P9a_R Using WHO Tube Assay Samples\n", - "\n", - "Using the hybrid FUMOZ-FANG strains, the role of the _CYP6P9a_R_ allele in the observed pyrethroid resistance was confirmed. The odds ratio of surviving exposure to permethrin when homozygous for the resistant _CYP6P9a_R_ allele (RR) was high at 693 (CI 88-5421; \\(p\\) < 0.0001) compared to the homozygous-susceptible mosquitoes (SS) (Figure 2A). The OR was 131 (CI 27-978; \\(p\\) < 0.0001) when comparing RR to RS, indicating the increasing resistance conferred by _CYP6P9a_.\n", - "\n", - "header: 4.6.2 Genotyping of the CYP6P9b-R Maker Using PCR-RFLP\n", - "\n", - "The PCR was carried out, as described for CYP6P9a. The following primers were used: 6p9brflp_0.5F 5'-CCCCCACAGGTGTAACTCTGAA-3' and 6p9brflp_0.5R 5'-TTATCCGTAAACTCAATAGCGATG-3'. Then, 3 mL of the PCR product migrated on the 1.5% agarose gel. The expected PCR product was 550 bp. The digestion with the _Tsp_451 restriction enzyme followed 0.2 mL of Tsp451, 5 mL of PCR product, 1 mL of 10x NEBuffer, and 3.8 mL of distilled water. This mix was incubated at 65 degC for 2 h. Afterwards, 3 mL of the digestion product was migrated on the 2% gel. Amplicons from susceptible mosquitoes were cut into two bands with sizes of 400 bp and 150 bp, and the resistant mosquitoes remained undigested with the band at 550 bp.\n", - "\n", - "header: Abstract\n", - "\n", - "Experimental Hut Trials Reveal That CYP6P9a/b P450 Alleles Are Reducing the Efficacy of Pyrethroid-Only Olyset Net against the Malaria Vector _Anopheles funestus_ but PBO-Based Olyset Plus Net Remains Effective\n", - "\n", - "Benjamin D. Menze, Leon M. J. Mugenzi, Magellan Tchouakui, Murielle J. Wondji,\n", - "\n", - "1Vector Biology Department, Liverpool School of Tropical Medicine, Pembroke Place, Liverpool L3 5QA, UK; murielle.wondji@ilstmed.ac.uk\n", - "2Medical Entomology Department, Centre for Research in Infectious Diseases (CRID), Yaounde 13591, Cameroon; leon.mugenzi@crid-cam.net (L.M.J.M.); magellan.tchouakui@crid-cam.net (M.T.); micareme.tchouop@crid-cam.net (M.T.)\n", - "* Correspondence: benjamin.menze@crid-cam.net (B.D.M.); charles.wondji@ilstmed.ac.uk (C.S.W.)\n", - "\n", - "\n", - "Malaria remains a major public health concern in Africa. Metabolic resistance in major malaria vectors such as _An. funestus_ is jeopardizing the effectiveness of long-lasting insecticidal nets (LLINs) to control malaria. Here, we used experimental hut trials (EHTs) to investigate the impact of cytochrome P450-based resistance on the efficacy of PBO-based net (Olyset Plus) compared to a permethrin-only net (Olyset), revealing a greater loss of efficacy for the latter. EHT performed with progenies of F5 crossing between the _An. funestus_ pyrethroid-resistant strain FUMOZ and the pyrethroid-susceptible strain FANG revealed that PBO-based nets (Olyset Plus) induced a significantly higher mortality rate (99.1%) than pyrethroid-only nets (Olyset) (56.7%) (\\(p<0.0001\\)). The blood-feeding rate was higher in Olyset compared to Olyset Plus (11.6% vs. 5.6%; \\(p=0.013\\)). Genotyping the _CYP6P9a/b_ and the intergenic _6.5 kb structural variant_ (SV) resistance alleles showed that, for both nets, homozygote-resistant mosquitoes have a greater ability to blood-feed than the susceptible mosquitoes. Homozygote-resistant genotypes significantly survived more with Olyset after cone assays (e.g., _CYP6P9a_ OR = 34.6; \\(p<0.0001\\)) than homozygote-susceptible mosquitoes. A similar but lower correlation was seen with Olyset Plus (OR = 6.4; \\(p<0.001\\)). Genotyping EHT samples confirmed that _CYP6P9a/b_ and _6.5 kb_SV_ homozygote-resistant mosquitoes survive and blood-feed significantly better than homozygote-susceptible mosquitoes when exposed to Olyset. Our findings highlight the negative impact of P450-based resistance on pyrethroid-only nets, further supporting that PBO nets, such as Olyset Plus, are a better solution in areas of P450-mediated resistance to pyrethroids.\n", - "\n", - "header: Impact of the Duplicated CYP6P9a and CYP6P9b P450 Genes on the Performance of Bed Nets\n", - "\n", - "The samples collected during the evaluation of Olyset and Olyset Plus in experimental huts were grouped in several categories: dead, alive, blood fed, and unfed; room and veranda. The _CYP6P9a_/b and _6.5 kb SV_ were genotyped in each group using the respective PCR assays as described [28,29,31]. This allowed the relative survival and feeding success of resistant and susceptible insects in the presence of both bed nets to be directly measured.\n", - "\n", - "header: 4.6.3 PCR Assay to Detect the 6.5 kb SV\n", - "\n", - "To easily identify the samples containing the 6.5 kb insertion, the recently designed PCR assay [28] was used to discriminate between mosquitoes with the 8.2 kb (resistant) and 1.7 kb (susceptible) _CYP6P9a_ and _CYP6P9b_ intergenic regions. Briefly, three primers were used: two (FG_5F: CTACCGTCAAAGTCCGGTAT and FG_3R: TTTCGAAAACATCCCTAAA) at regions flanking the insertion point and a third primer (FZ_INS5R: ATATGCCACGAAGGAAAGCAG) in the _6.5 kb_ insertion. One unit of KAPA Taq polymerase (Kapa Biosystems) in 1x buffer A, i.e., 25 mm of MgCl2, 25 mm of dNTPs, and 10 mm of each primer, was used to constitute a 15 mL PCR mix using the following conditions: an initial denaturation step of 3 min at 95 degC, followed by 35 cycles of 30 s at 94 degC, 30 s at 58 degC, and 60 s at 72 degC, with a final extension for 10 min at 72 degC. The amplicon was revealed on a 1.5% agarose gel stained with Midori Green Advance DNA Stain (Nippon genetics Europe GmbH) and revealed on a UV transilluminator.\n", - "\n", - "header: 3 Discussion\n", - "\n", - "The capacity to assess the impact of insecticide resistance on the effectiveness of insecticide-treated control tools is crucial in order to implement suitable insecticide resistance management (IRM) [32]. Evolution in the area of DNA-based resistance markers of P450-mediated resistance [28; 29] currently offers robust tools to screen pyrethroid resistance in field populations of the major malaria vectors such as _An. funestus_ and assess their impact on the effectiveness of LLINs. In this study, we use these markers to evaluate the extent to which pyrethroid resistance is impacting the efficacy of pyrethroid-only nets such as Olyset in comparison to PBO-based net such as Olyset Plus. This study also allowed to assess the interplay between P450 genes in the overall genetic variance to resistance and their combined impact on the efficacy of LLINs.\n", - "\n", - "PBO-Based Nets (Olyset Plus) Exhibit Greater Efficacy than Pyrethroid-Only Nets (Olyset) in the Context of P450-Based Resistance\n", - "\n", - "Olyset presented a moderate mortality compared to Olyset Plus (30.9% vs. 100%; \\(p\\) < 0.0001). The high mortality observed with PBO nets compared to pyrethroid-only nets is similar to what was observed in previous studies [33; 34; 35; 36]. The high mortality observed with PBO-based nets against the hybrid strain FUMOZ/FANG is due to the fact the mechanisms underlying the resistance in this population are driven by _CYP6P9a_ and _CYP6P9b_[37] which are inhibited by PBO [38]. These results demonstrate that PBO-based nets may be a more suitable solution in areas where resistance is mainly mediated by P450 genes.\n", - "\n", - "Figure 7: Combined impact of the triple resistance alleles (_CYP6P9a_/_CYP6P9b_/_6.5 kb SV_) on the efficacy of insecticide-treated nets. (**A**) Distribution of combined genotypes for _CYP6P9a_, _CYP6P9b_ and the _6.5 kb SV_ showing that the three markers combine to increase the chances of being alive in the presence of Olyset Net. (**B**) Ability to survive exposure to Olyset net for the various combined genotypes for the _6.5 kb SV_, _CYP6P9a_ and _CYP6P9b_. (**C**) Distribution of combined genotypes for _CYP6P9a_, _CYP6P9b_ and the _6.5 kb SV_ showing that the three markers combine to increase the chances to bloodfed in the presence of Olyset net. (**D**) The triple RR/RR/SV+SV+ homozygous mosquitoes for the _6.5 kb SV_, _CYP6P9a_ and _CYP6P9b_ exhibit a greater blood-feeding ability than other genotypes. Ns: non-significant; * (0.05); ** (0.01); *** (0.001).\n", - "\n", - "\n", - "The efficacy of nets observed in this study confirms the loss in efficacy of the pyrethroid-only nets against _Anopheles_ mosquitoes, as observed across the continent [39]. This loss of efficacy was observed in Mozambique [7,40], Malawi [41], Congo [42], and Cameroon [6,43]. Overall, similar to this study, it has been noticed that PBO-based nets demonstrate a better performance compared to pyrethroid-only nets [33,34]. The same trends were observed with pyrethroid type II with high mortality observed with PermaNet 3.0 compared to PermaNet 2.0 [28,29,31], suggesting that PBO-based nets with both type I or II can exhibit high performance against resistance sustained by P450s.\n", - "\n", - "P450 Resistance Can Reduce the Efficacy of Pyrethroid-Only Nets Significantly Better Than PBO-Based Nets\n", - "\n", - "When comparing the impact of _CYP6P9a/b_ on pyrethroid-only nets and PBO-based nets using samples from cone assays, we noticed that the impact of _CYP6P9a_ on pyrethroid-only nets was higher than with PBO-based nets (Olyset, OR = 35.1; \\(p\\) < 0.00001 vs. Olyset Plus, OR = 6.4; \\(p\\) < 0.001). The same trend was also observed with _CYP6P9b_ and the 6.5 kb SV. This can be explained by the fact that the addition of the PBO inhibits the cytochrome P450 enzymes, which is the main resistance mechanism in the strain used by the mosquitoes [44,45].\n", - "\n", - "On the other hand, Olyset nets have also shown reduced performance against _CYP6P9a_ and _CYP6P9b_-resistant mosquitoes. Strong association was observed between the resistant alleles and the increased ability of the mosquitoes to survive after exposure to these nets. Nevertheless, the impact of _CYP6P9a_ and _CYP6P9b_ seems to be more significant on PermaNet nets impregnated with deltamethrin [29,31], compared to Olyset nets impregnated with permethrin (Olyset, OR = 35.1; \\(p\\) < 0.00001 vs. PermaNet 2.0, OR = 239.0; \\(p\\) < 0.001 and Olyset Plus, OR = 6.4; \\(p\\) < 0.001 vs. PermaNet 3.0, OR = 81.0; \\(p\\) < 0.001) [29,31]. This significant impact on PermaNet could be associated with the fact that the hybrid strain is more resistant to type II pyrethroids, as shown by WHO bioassays, where the mosquitoes were more resistant to deltamethrin compared to permentrin (48.5% vs. 80.7%). With regards to the obtained odd ratios, a stronger association was observed between _CYP6P9a/CYP6P9b_ and the loss of efficacy of nets compared to what was observed with GST-based resistance through the L119F-_GSTe2_-resistant allele [43], in line with the greater role of P450 in resistance to pyrethroids in _An. funetus_, compared to that of GST. The 6.5 kb SV was shown to further exacerbate the loss of efficacy in the permethrin-only nets. The design of the simple PCR-based assay to genotype the _6.5 kb SV_ enabled us to assess the impact of such structural variation on the efficacy of insecticide-treated nets, including the pyrethroid-only and the PBO-synergist nets. A greater reduction in the efficacy of _6.5 kb SV_ was present on permethrin-only nets compared to PBO-based nets, which is similar to that observed with _CYP6P9a_ [31] and _CYP6P9b_ [29], in terms of the reduced mortality rate and blood-feeding inhibition. This pattern is also similar to that seen with deltamethrin-based nets (PermaNet 2.0 vs. PermaNet 3.0) [29,31]. Overall, the significantly greater loss of efficacy due to P450s observed with both type I (Olyset and PermaNet 2.0) and PBO-based nets (Olyset Plus and PermaNet 3.0) further supports the deployment of PBO-based nets to control P450-based metabolically resistant mosquito populations. The deployment of PBO-based nets should nevertheless also be monitored to regularly assess their efficacy since they too could be impacted by resistance, as shown by the fact that _CYP6P9a/b_-resistant mosquitoes could blood-feed significant better, even with Olyset Plus. This increased ability of resistant mosquitoes to blood-fed, even with PBO-based net, suggests that PBO-based nets are not immune to the impact of resistance, even if they remain significantly more effective than pyrethoid-only nets. The increased blood-feeding of P450-resistant mosquitoes when exposed to PBO-based nets may also lead to a higher malaria transmission, although this is mitigated by the high mortality observed for Olyset Plus in a experimental hut trial. Overall, evaluating the impact of P450-based resistance on the efficacy of Olyset vs. Olyset Plus further supports the results obtained in a cluster \n", - "randomized controlled trial with both nets in Tanzania showing greater effectiveness of Olyset Plus [46].\n", - "\n", - "header: 4.6.1 Genotyping of the CYP6P9a-R Marker Using PCR-RFLP\n", - "\n", - "DNA was extracted from various groups of mosquitoes (dead, alive, blood fed, and unfed; room and veranda) using the Livak protocol [49]. The PCR was carried out using 10 mM of each primer and 1 mL of gDNA as the template in 15 mL reaction containing 10x Kapa Taq buffer A, 25 mM of dNTPs, 25 mM of MgCl2, and 1 U of Kapa Taq (Kapa Biosystems, Boston, MA, USA). Amplification was carried out using thermocycler parameters: 95 degC for 5 min, 35 cycles of 94 degC for 30 s, 58 degC for 30 s, 72 degC for 45 s, and a final extension at 72 degC for 10 min. The following primers were used: RFLP6P9aF forward primer 5'-TCCCGAAATACAGCCTTTCAG-3 and RFLP6P9aR reverse primer 5'-ATTGGTCCATCGCTAGAAG-3'. Then, 3 mL of the PCR product migrated on the 1.5% agarose gel. The expected PCR product was 450 bp. The digestion with Taq1a followed 0.2 mL of Taq1a, 5 mL of PCR product, 1 mL of 10x NEBuffer, and 3.8 mL of distilled water. This mix was incubated at 65 degC for 2 h. Afterwards, 3 mL of the digestion product migrated on the 2% gel. Amplicons from resistant mosquitoes were cut into two bands with sizes of 350 bp and 100 bp, and the susceptible mosquitoes remained undigested with the band at 450 bp.\n", - "\n", - "header: 5 Conclusions\n", - "\n", - "This study reveals that insecticide resistance driven by _CYP6P9a/b_ and _6.5 kb SV_ can reduce the efficiency of Permethrin-based LLINs, such as Olyset, while PBO-based nets remain effective. However, the greater loss of efficacy observed in mosquitoes with multiple and complex resistance supports the need to introduce new products for vector control which is less reliant on pyrethroids. Meantime, PBO-based nets should be preferably deployed in areas of P450-based resistance.\n", - "\n", - "**Supplementary Materials:** The following supporting information can be downloaded at: [https://www.mdpi.com/article/10.3390/pathogens11060638/s1](https://www.mdpi.com/article/10.3390/pathogens11060638/s1), Table S1: Results of the performance of Olyset and Olyset Plus against _An. funestus_ females (crossing FUMOZ-FANG; F5) in experimental hut trial. Table S2: Correlation between _CYP6P9a and CYP6P9b_ genotypes and mosquito mortality against Olyset and Olyset Plus nets after cone assays with the FANG-FUMOZ mosquito strain. Table S3: Correlation between the _6.5Kv SV_ genotypes and mosquito mortality against Olyset and Olyset Plus nets after cone assays with the FANG-FUMOZ mosquito strain. Table S4: Correlation between genotypes of _CYP6P9a_, _CYP6P9b_ and _6.5 kb SV_ and mortality and blood-feeding after exposure to Olyset and Olyset Plus in experimental huts. Table S5: _CYP6P9a_ and _CYP6P9b_ acting together further increase the ability of _An. funestus_ to survive and blood feed against Olyset after experimental hut trial.\n", - "\n", - "**Author Contributions:** C.S.W. conceived and designed the study; L.M.J.M. and M.T. (Magellan Tchouakui) generated the lab crosses and performed the validation of the PCR; B.D.M. performed the experimental hut experiments with C.S.W. and genotyped the resistance makers with M.J.W. and M.T. (Micareme Tchoupo); B.D.M. and C.S.W. wrote the paper with assistance from M.T. (Magellan Tchouakui) and L.M.J.M. All authors have read and agreed to the published version of the manuscript.\n", - "\n", - "**Funding:** This research was funded in whole by the Welcome Trust (Senior Research Fellowship to CSW 101893/Z/13/Z and 217188/Z/19/Z). For the purpose of open access, the authors applied a CC BY public copyright license to any author who accepted a manuscript version following this submission.\n", - "\n", - "**Institutional Review Board Statement:** NA.\n", - "\n", - "**Informed Consent Statement:** NA.\n", - "\n", - "**Data Availability Statement:** NA.\n", - "\n", - "**Acknowledgments:** A big thanks to Charles Wondji for his financial support through the Wellcome Trust (Senior Research Fellowship to CSW 101893/Z/13/Z and 217188/Z/19/Z). I am also grateful to the Mibellon community.\n", - "\n", - "**Conflicts of Interest:** The authors declare that they have no competing interest.\n", - "\n", - "header: 2.3.1 Impact on Mosquito Mortality: 2.3.2 CYP6P9a Impacting the Blood-Feeding\n", - "\n", - "Homozygote _CYP6P9a_-resistant mosquitoes (RR) were significantly more likely to blood-feed better than homozygote-susceptible mosquitoes (SS) (OR = 4.5; \\(p\\) < 0.01) when exposed to Olyset. Heterozygote mosquitoes (RS) were significantly worse at blood-feeding with Olyset compared to homozygote-susceptible mosquitoes (SS) (OR = 0.8; CI = 0.3-1.7; \\(p\\) = 1). Homozygote-resistant mosquitoes (RR) fed heterozygotes (OR = 5.4; CI = 2.6-10.88; \\(p\\) < 0.001) significantly better (Table S4; Figure 5C). Overall, the strength of this association was further shown by the significant ability to blood-feed when possessing a single _CYP6P9a_-resistant allele (R) compared to the susceptible allele (S) (OR = 2.3; CI = 1.3-4.1; \\(p\\) < 0.01) (Table S4). For Olyset Plus, homozygote _CYP6P9a_-resistant mosquitoes (RR) were significantly more likely to blood-feed than homozygote-susceptible mosquitoes (RS) (OR = 6.3; \\(p\\) < 0.001) when exposed to Olyset Plus. The significant ability to blood-feed was observed when possessing a single _CYP6P9a_-resistant allele (R) compared to the susceptible allele (S) (OR = 2.0; CI = 1.1-3.5; \\(p\\) = 0.03) (Table S4).\n", - "\n", - "header: 1 Introduction\n", - "\n", - "Long-lasting insecticidal nets (LLINs) remain an important component of the malaria control strategies used to reduce mortality and morbidity due to this disease in Africa [1, 2]. Mostly insecticides belonging to the pyrethroid group, as well as more and more novel insecticides, are currently recommended for bed net impregnation [3, 4, 5]. In recent years, anopheles mosquitoes have increasingly been reported to show resistance against pyrethroids across Africa. This is the case for major vectors including _Anopheles funestus_[6, 7, 8, 9] and _Anopheles gambiae_[10, 11, 12, 13, 14]. This growing spread of resistance has led to a concern that LLINs may lose their efficacy. However, quantifying such loss of efficacy remains challenging without suitable metrics associated with resistance, highlighting the need to use robust genotype/phenotype analysis for this evaluation. At a time when national malaria control \n", - "programs across Africa are seeking to take evidence-based decisions on their choice of suitable nets to help improve malaria control, it is paramount to determine the extent to which existing resistance to pyrethroid really affects LLIN efficacy. This involves an understanding of the interaction between resistance mechanisms and mosquito responses to exposure to LLINs. Broadly speaking, pyrethroid resistance can be caused by alterations in the target site of the insecticide or enhanced enzymatic activities capable of metabolizing the insecticide before it reaches the target [15-17]. Target site resistance is well studied with mutations in the target of both pyrethroid and DDT insecticides, as well as the voltage-gated sodium channels which lead to knockdown resistance (_kdr_). The development of molecular assays more than twenty years ago made it possible to track this resistance mechanism using a simple PCR [18-21] or high throughput techniques, such as TaqMan assays [22]. It has also been possible to assess the impact of _kdr_ on control tools, notably in _An. gambiae_ where these markers are common [23-25], contrary to _An. funestus_, where it is still not detected [26]. The second best characterized cause of insecticide resistance is metabolic resistance, which is more complex to understand as it can involve the detoxification, sequestration, and transportation of insecticides or their conjugates [16,17,27]. Recent studies have focused on elucidating the genetic factors which cause the increased expression of detoxification genes associated with insecticide resistance in malaria vectors such as _An. funestus_, leading to the development of simple molecular assays used to detect metabolic resistance [28-31].\n", - "\n", - "The recent design of molecular assays for the duplicated _CYP6P9a/b_ and the associated _6.5 kb_ structural variant (SV), refs. [28,29,31] now provides a great opportunity to assess the impact of P450-based pyrethroid resistance on the efficacy of various LLINs, including pyrethroid-only (Olyset) and PBO (Olyset Plus) nets. This will provide evidence-based information on their effectiveness in the presence of a growing and escalading resistance to pyrethroids. Previous assessment of this impact on PermaNet nets made with type II pyrethroid deltamethrin has been performed [28,29,31], but this remains to be carried out for type I pyrethroid nets, such as the common permethrin-based Olyset nets.\n", - "\n", - "Here, using EHT, we show a significantly greater efficacy of the PBO-based net Olyset Plus compared to the pyrethroid-only Olyset net against pyrethroid-resistant _An. funestus_. Using the genotyping of DNA-based markers of P450 resistance, we reveal that _CYP6P9a/b_ P450-based pyrethroid resistance induces a significant loss of efficacy for pyrethroid-only net Olyset against _An. funestus_. A reduced efficacy was also detected for PBO-based net Olyset Plus, but at a lower extent than for Olyset net, revealing that PBO nets are more suitable to tackle such P450-based resistance.\n", - "\n", - "header: 2.1.1. Quality Control and Performance of the Nets against the Hybrid Strain: 2.1.2 Performance of Nets against the Hybrid Strain Using Experimental Hut\n", - "\n", - "A total number of 578 mosquitoes from the hybrid strain were released and recaptured on a period of one week. In total, 141 samples were released in the control hut, 224 in the hut were treated with Olyset, and 213 in the hut were treated with Olyset Plus.\n", - "\n", - "**Mortality**: Analysis of mortality rates revealed very high mortality of the hybrid FUMOZ-FANG strain against the PBO-based Olyset Plus net (99.1%). In contrast, lower mortality was observed for the pyrethroid-only Olyset net (56.7%). Very low mortality was observed in the untreated control net (9.9%) (Figure 1D; Table S1).\n", - "\n", - "**Blood-feeding**: The blood-feeding rate did not significantly differ when comparing the control (7.8%) to Olyset (11.6% \\(p>0.05\\)) and Olyset Plus (5.6%; \\(p>0.05\\)). However, the blood-feeding rate was higher in Olyset compared to Olyset Plus (11.6% vs. 5.6%; \\(p=0.013\\)) (Figure 1D; Table S1).\n", - "\n", - "Figure 1: Susceptibility profile of the hybrid FUMOZ-FANG strain to pyrethroids. (**A**) Net quality assessment with recorded mortalities after cone assays with Kisumu, the _An. gambiae_-susceptible lab strain, and the _An. funestus_ FUMOZ-FANG strain. (**B**) Susceptibility profile of the hybrid FUMOZ-FANG strain to type II (deltamethrin) pyrethroids and propoxur with recorded mortalities following 60 min exposure. Data are shown as mean \\(\\pm\\) SEM. (**C**) Susceptibility profile of the hybrid FUMOZ-FANG strain to deltamethrin (type II pyrethroids) and permethrin (type I pyrethroids) with recorded mortalities following 30 and 60 min exposure. Data are shown as mean \\(\\pm\\) SEM. (**D**) Proportion of mortality, blood-feeding, and exophily rate for Olyset and Olyset Plus against _An. funestus_ (crossing the FUMOZ-FANG strain (F5)). Ns = \\(p>0.05\\); * = \\(p\\leq 0.05\\); ** = \\(p\\leq 0.01\\); *** = \\(p\\leq 0.001\\).\n", - "\n", - "\n", - "\n", - "\n", - "**Exophily**: The exophily rate in the hut with Olyset net (23.7%) was significantly higher than that in the control hut (13.5%) (_p_ = 0.02), as well as than for Olyset Plus (7.5%; \\(p\\) < 0.001). No significant difference was observed between Olyset Plus and the control net (_p_ = 0.3) (Figure 1D; Table S1).\n", - "\n", - "Validating the Role of CYP6P9a/b and 6.5 kb SV in Pvrethroid Resistance in the Hybrid FUMOZ-FANG Strains before the Experimental Hut Trials\n", - "\n", - "header: Results\n", - "\n", - "All the nets used in the study were first exposed to the susceptible lab strain Kisumu for quality control. The mortality for Olyset and Olyset Plus was 100% (Figure 1A). The _An. funestus_ hybrid strain exposed to bed nets using WHO cone assays exhibited mortality rates of 30.1 \\(\\pm\\) 11.5% for Olyset and 100 \\(\\pm\\) 0% for Olyset Plus, suggesting a greater efficacy of PBO synergist nets compared to pyrethroid-only nets.\n", - "\n", - "**Susceptibility profiles of the FUMOZ-FANG:** The bioassays performed with the reciprocal FUMOZ-FANG strains revealed that the hybrid strain was resistant to deltamethrin with mortality of 43.7 \\(\\pm\\) 5.9%, and was resistant to propoxur with mortality of 67.3 \\(\\pm\\) 6.6% (Figure 1B). The second set of bioassays performed with the reciprocal FUMOZ-FANG strains revealed that the hybrid strain was resistant to permethrin with mortality of 43.7 \\(\\pm\\) 1.6% and 39.3 \\(\\pm\\) 1.6%, respectively, for 90 min and 30 min. Resistance was also observed with deltamethrin with a mortality of 86.4 \\(\\pm\\) 3.1% and 42.3 \\(\\pm\\) 2.5%, respectively, for 90 min and 30 min (Figure 1C).\n", - "\n", - "header: Table 1: Description of the long-lasting insecticidal nets used.\n", - "footer: None\n", - "columns: ['Treatment Arm', 'Description', 'Manufacturer']\n", - "\n", - "{\"0\":{\"Treatment Arm\":\"Untreated\",\"Description\":\"100% polyester with no insecticide\",\"Manufacturer\":\"Local market\"},\"1\":{\"Treatment Arm\":\"Olyset\",\"Description\":\"8.6 \\u00d7 10\\u22124 kg\\/m2 (2%) of permethrin incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"2\":{\"Treatment Arm\":\"Olyset\",\"Description\":\"8.6 \\u00d7 10\\u22124 kg\\/m2 (2%) of permethrin incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"3\":{\"Treatment Arm\":\"Olyset Plus\",\"Description\":\"8.6 \\u00d7 10\\u22124 kg\\/m2 (2%) of permethrin and 4.3 \\u00d7 10\\u22124 kg\\/m2 (1%) of PBO incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"4\":{\"Treatment Arm\":\"Olyset Plus\",\"Description\":\"8.6 \\u00d7 10\\u22124 kg\\/m2 (2%) of permethrin and 4.3 \\u00d7 10\\u22124 kg\\/m2 (1%) of PBO incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"5\":{\"Treatment Arm\":\"Olyset Plus\",\"Description\":\"8.6 \\u00d7 10\\u22124 kg\\/m2 (2%) of permethrin and 4.3 \\u00d7 10\\u22124 kg\\/m2 (1%) of PBO incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"}}\n", - "\n", - "header: 2.4.1 The Impact of CYP6P9b on Mortality: 2.4.2 CYP6P9b Impacting the Blood-Feeding\n", - "\n", - "A strong association was observed between _CYP6P9b_ genotypes and the ability to blood-feed. Homozygote-resistant mosquitoes (RR) could more successfully blood-fed when compared to homozygote-susceptible mosquitoes (SS) (OR = 10.01; CI = 4.1-24.9; \\(p\\) < 0.001) (Table S4; Figure 5F). The blood-feeding ability of heterozygote mosquitoes (RS) in the presence of Olyset was not different to that of homozygote-susceptible mosquitoes (SS) (OR = 0.8; CI = 0.3-2.2; \\(p\\) = 1). Homozygote-resistant mosquitoes (RR) could blood-feed significantly better than heterozygotes (OR = 11.1; CI = 5.3-23.03: \\(p\\) < 0.001), suggesting an additive effect. Overall, the strength of this association was further shown by the significant ability to blood fed when possessing a single _CYP6P9b_-resistant allele (R) compared to the susceptible allele (S) (OR = 4.7; CI = 2.5-8.1; \\(p\\) < 0.01) (Table S4).\n", - "\n", - "header: 2.2.2 Validating the Role of CYP6P9b_R_ Using Sample from WHO Tube Assays\n", - "\n", - "To confirm the ability of the _CYP6P9b_R_ allele to predict pyrethroid resistance phenotype in the hybrid strain FUMOZ-FANG, the F5 samples were genotyped. This revealed that those that stayed alive after exposure to permethrin for 90 minutes are mainly homozygote\n", - "\n", - "Figure 2: Association between the _CYP6P9a/b_ and the ability to survive exposure to Olyset nets after WHO tubes cone assays. (**A**) Tube assay _CYP6P9a_ and mortality. Role of _CYP6P9a_ in pyrethroid resistance with samples from the WHO tube. Distribution of the _CYP6P9a_ genotypes according to resistance phenotypes. (**B**) Tube assay _CYP6P9b_ and mortality. Role of _CYP6P9b_ in pyrethroid resistance with samples from the WHO tube. Distribution of the _CYP6P9b_ genotypes according to resistance phenotypes. (**C**) Cone assay _CYP6P9a_ and mortality. Genotype distribution of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset with the cone test, showing the significant ability of mosquitoes carrying the RR genotype in order to survive compared to SS (RR vs. SS: \\(p\\) < 0.001). (**D**) Cone assay _CYP6P9a_ and mortality allele. Allelic frequency of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset with the cone test, showing the significant ability of the _CYP6P9a_R_-resistant mosquitoes to survive compared to their susceptible counterparts _CYP6P9a_S_. (**E**) Cone assay _CYP6P9b_ and mortality. Genotype distribution of _CYP6P9b_ between alive and dead mosquitoes after exposure to Olyset using the cone test, showing strong association (RR vs. SS: \\(p\\) < 0.001).\n", - "\n", - "\n", - "resistant (20.8%) and heterozygotes (75%), with only two being homozygote-susceptible. Among the 47 mosquitoes found dead after 30 min exposure to permethrin (highly susceptible), 97.87% were found to be homozygote-susceptible, and one remaining was a heterozygote (Figure 2B). A strong association was perceived between permethrin resistance and the _CYP6P9b_ genotypes when comparing RR vs. SS (OR = infinity; \\(p\\) < 0.0001) and RS vs. SS (OR = 715; \\(p\\) < 0.0001).\n", - "\n", - "2.3 Validation of the Role of CYP6P9a and CYP6P9b in Conferring Resistance Using Samples from Cone Assays\n", - "\n", - "Using dead and alive mosquitoes obtained after cone assays, _CYP6P9a_ homozygous-resistant mosquitoes (RR) and heterozygous (RS) could survive significantly better following exposure to Olyset and Olyset Plus than homozygote-susceptible mosquitoes (Table S2). Olyset shows a strong association between the resistance alleles and the ability to survive when comparing RR vs. SS (OR = 35.1; \\(p\\) < 0.0001) and RS vs. SS (OR = 34.6; \\(p\\) < 0.0001) for _CYP6P9a_ (Figure 2C). The same trend was observed when looking at the allelic frequency R vs. S (OR = 7.7; \\(p\\) < 0.05) (Table S2; Figure 2D). Concerning _CYP6P9b_, homozygous-resistant mosquitoes (RR) and heterozygous (RS) could also survive significantly better following survive exposure to Olyset net. A strong association was noticed between the gene and the ability to survive when comparing RR to SS (OR = 32.4; \\(p\\) < 0.0001) and RS vs. SS (OR = 97.3; \\(p\\) < 0.0001) (Table S2; Figure 2E).\n", - "\n", - "Olyset Plus shows a strong association between the resistance alleles and the ability to survive when comparing RR vs. SS (OR = 6.4; \\(p\\) < 0.001) and RS vs. SS (OR = 7.2; \\(p\\) < 0.001) for _CYP6P9a_ (Table S2; Figure 3A). The same trend was observed when looking at the allelic frequency R vs. S (OR = 2.0; \\(p\\) = 0.05) (Table S2; Figure 3B). Concerning the _CYP6P9b_, Olyset Plus equally shows a strong association between the resistance alleles and the ability to survive when comparing RR vs. SS (OR = 9.7; \\(p\\) < 0.001) and RS vs. SS (OR = 17.9; \\(p\\) < 0.001) for _CYP6P9b_ (Table S2; Figure 3C). The same trend was observed when looking at the allelic frequency R vs. S (OR = 2.2; \\(p\\) = 0.01) (Table S2).\n", - "\n", - "Figure 3: Association between the _CYP6P9a/b_ and the ability to survive exposure to Olyset Plus nets after cone assays. (**A**) Genotype distribution of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset Plus with the cone test, showing the significant ability of the mosquitoes to carry the RR genotype to survive compared to SS (_p_ < 0.001). (**B**) Allelic frequency of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset Plus with the cone test, showing the significant ability of the _CYP6P9a_R_–resistant mosquitoes to survive compared to their susceptible counterparts _CYP6P9a_S_. (**C**) Genotype distribution of _CYP6P9b_ between alive and dead mosquitoes after exposure to Olyset Plus using the cone test, showing the significant ability of the mosquitoes carrying the RR genotype to survive compared to SS (_p_ < 0.001).\n", - "\n", - "header: Impact of CYP6P9a on the Efficacy of Olyset and Olyset plus Nets Using Experimental Hut Trial\n", - "\n", - "Genotyping of the _CYP6P9a_ marker allowed us to assess the impact of P450-based metabolic resistance on the loss of efficacy of Olyset, but not for Olyset Plus, since most of the mosquitoes released in Olyset Plus huts died. To avoid confounding effects from blood-feeding, or net entry or exophily status, the distribution of the _CYP6P9a_ genotypes was assessed firstly only among unfed mosquitoes collected in the room. This revealed a highly significant difference in the frequency of the three genotypes between the dead and alive mosquitoes (chi-square = 28.8; \\(p\\) < 0.0001) (Figure 5). Analysis of the correlation between each genotype and mortality revealed that _CYP6P9a_ homozygous-resistant mosquitoes (RR) show an increased ability to survive exposure to the Olyset when compared to homozygote-susceptible mosquitoes (SS) with (OR = 5.0; CI = 2.01-12.4; \\(p\\) = 0.001). The strength of this association was further shown by the significant ability to survive exposure when possessing a single _CYP6P9a_-resistant allele (R) compared to the susceptible allele (S) (OR = 2.04; CI = 1.1-3.6; \\(p\\) < 0.05). However, heterozygote mosquitoes (RS) did not survive exposure to Olyset better than homozygote-susceptible mosquitoes (SS) (OR = 1.8; CI = 0.8-3.9; \\(p\\) > 0.05) (Figure 5A; Table S4; Figure 5B).\n", - "\n", - "Figure 5: Impact of both _CYP6P9a_ and _CYP6P9b_ on the efficacy of bed nets in the experimental hut trial. (**A**) Genotype distribution of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset, showing strong association (RR vs. SS: \\(p\\) < 0.001). (**B**) Allelic frequency of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset with experimental hut trial, showing the significant ability of the _CYP6P9a_R_–resistant mosquitoes to survive compared to their susceptible counterparts _CYP6P9a_S_. (**C**) Association between _CYP6P9a_ and ability to blood-feed when exposed to Olyset. The _CYP6P9a_–R allele increases the strength of resistant mosquitoes by taking a blood meal in contrast to the susceptible ones when exposed to Olyset net. (**D**) Association between _CYP6P9b_ and ability to survive exposure to Olyset in the experimental hut trial. (**E**) Allelic frequency of _CYP6P9b_ between alive and dead mosquitoes after exposure to Olyset with the experimental hut trial, showing the significant ability of the _CYP6P9b_R_–resistant mosquitoes to survive compared to their susceptible counterparts _CYP6P9b_S_. (**F**) Association between _CYP6P9b_ gene and ability to blood-feed when exposed to Olyset in the experimental hut trial. The _CYP6P9b_-R allele increases the strength of resistant mosquitoes by taking a blood meal in contrast to the susceptible ones when exposed to Olyset.\n", - "\n", - "header: Study Site: Laboratory Strain: FUMOZ/FANG Crossing\n", - "\n", - "Previous studies revealed that the duplicated P450 _CYP6P9a/b_ and intergenic _6.5 kb sv_ is mainly found in mosquitoes from southern Africa and absent from mosquitoes collected elsewhere in Africa [31,45]. Moreover, these resistance markers have already been selected (close to fixation) in the southern African _An. funestus_ populations, preventing free-flying mosquitoes from being used in this region in order to assess their impact on LLIN efficacy, as all mosquitoes are nearly homozygote-resistant now [7]. Therefore, to evaluate the impact of these cytochrome P450, we opted to use a hybrid strain generated from two _An. funestus_ laboratory colonies: the FANG colony, a completely insecticide-susceptible colony originating from Angola, and the FUMOZ colony derived from southern Mozambique, which is highly resistant to pyrethroids and carbamates [48]. During rearing, the pupae of each strain were kept individually in Falcon tubes (15 mL), locked with a piece of cotton for individual emergence. After the emergence of pupae in the Falcon tube, the males and the females were separated. A reciprocal crossing was performed using 50 males and 50 females from the other strain. After the initial F1 generation obtained from the reciprocal crosses of the 50 males and 50 females of both strains, the hybrid strain was reared to F5 and F6 generation, presenting good segregation in all the three genotypes. The hybrid strain was then used for the release recapture experiment in the huts.\n", - "\n", - "header: Susceptibility Profile of the Hybrid FUMOZ/FANG Strain to Pyrethroids\n", - "\n", - "Before assessing the impact of _CYP6P9a/b_ on the effectiveness of LLINs using the experimental huts, the resistance status of the hybrid FUMOZ-FANG was evaluated in laboratory conditions via WHO tube tests and cone tests, and the role of _CYP6P9a/b_ in terms of resistance was assessed.\n", - "\n", - "**Bioassays:** WHO bioassays were conducted with 0.05% deltamethrin and 0.1% propoxur. To generate highly resistant and highly susceptible mosquitoes, WHO bioassays were conducted with 0.75% permethrin and 0.05% deltamethrin for 30 min and 90 min. For each insecticide, four replicates of 25 mosquitoes from the hybrid strains were used. Alive mosquitoes after 90 min of exposure and dead mosquitoes after 30 min of exposure were then genotyped to establish the association between the _CYP6P9a/b_ and _6.5 kb SV_ resistance alleles and the ability of mosquitoes to survive to these insecticides.\n", - "\n", - "**Cone assays:** Cone test bioassays were conducted with a fragment of Olyset and Olyset Plus using the resistant hybrid strains FUMOZ-FANG. Five batches of 10 unfed females, aged 2-5 days old, were exposed to each bed net for three minutes. They were then transferred into the holding paper cup containers. The knockdown was checked after 60 min and the mortality after 24 h. Alive and dead mosquitoes obtained after exposure were then genotyped. The association between the _CYP6P9a/b_-resistant allele and the ability of mosquitoes to survive to these insecticides was also established.\n", - "\n", - "header: Resistance Escalation with Multiple Resistance Alleles Present a Greater Risk of Control Failure\n", - "\n", - "This study confirms the findings by [28], suggesting that the _6.5 kb SV_ acts as an enhancer for nearby duplicated P450 genes _CYP6P9a_ and _CYP6P9b_, leading to their increased overexpression, thus creating greater resistance. This _6.5 kb SV_ is strongly associated with an aggravation of pyrethroid resistance, which reduces the efficacy of pyrethroid-only nets. The fixation of this _6.5 kb SV_, besides the resistant alleles of _CYP6P9a_ and _CYP6P9b_, could explain the resistance escalation currently observed against the _An. funestus_ population from the southern part of Africa reducing the efficacy of bed nets [7,41].\n", - "\n", - "This study revealed that multiple and complex resistance combining elevated expression (_CYP6P9a/b_) [45], as well as the selection of cis-regulatory motifs for transcription binding sites (CnCC/MAF) [31], coupled with structural variations such as the _6.5 kb_, which is known to be enriched with several regulatory elements [28], can lead to a greater reduction in bed net efficacy. The fact that triple homozygote-resistant mosquitoes could survive better against exposure to pyrethroid-only nets compared to all genotypes reveals the greater risk that an unabated increase in resistance can likely lead to the failure of insecticide-based interventions, as predicted by the WHO global plan for insecticide resistance management. This calls for novel nets which do not rely on pyrethroids in the future. However, the impact of these resistance alleles on the efficacy of LLINs in natural populations remains to be established, as we only performed a test with a hybrid strain from two laboratory strains. This work must be urgently carried out, particularly as the molecular tools are increasingly available.\n", - "\n", - "header: 2.5.1 The Impact of 6.5 kb SV on Mortality: 2.5.2 The Impact of 6.5. kb SV on Blood-Feeding\n", - "\n", - "A strong association was observed between _6.5 \\(kb\\)_ SV genotypes and the ability to blood-feed. Homozygote-resistant mosquitoes (RR) could blood-feed better compared to homozygote-susceptible mosquitoes (SS) (OR = 10.01; CI = 3.2-31.4; \\(p\\)\\(<\\) 0.0001) (Table S4; Figure 6C). The blood-feeding ability of heterozygote mosquitoes (RS) in the presence of Olyset differs to that of homozygote-susceptible mosquitoes (SS) but not significantly (OR = 1.7; CI = 0.5-5.4; \\(p\\) = 0.4) (Table S4). Homozygote-resistant mosquitoes (RR) could blood-feed significantly better than heterozygotes (OR = 10.2; CI = 4.9-21.11: \\(p\\)\\(<\\) 0.0001), suggesting an additive effect. Overall, the strength of this association was further shown by the significant ability to blood-feed when possessing a single _CYP6P9b_-resistant allele (R) compared to the susceptible allele (S) (OR = 4.2; CI = 2.3-7.9; \\(p\\)\\(<\\) 0.0001) (Table S5; Figure 6D). A similar trend was observed against Olyset Plus nets (Table S5; Figure 6E,F).\n", - "\n", - "Combined Impact of CYP6P9a and CYP6Pb on the Efficacy of Olyset and Olyset plus Nets Using Experimental Hut Trial\n", - "\n", - "As _CYP6P9b_ genotypes were shown to be independent from those of _CYP6P9a_[28], we also assessed how combinations of genotypes at both genes impact the efficacy of Olyset for mortality and blood-feeding. Analysis of the impact of combined genotypes on mortality with Olyset confirmed the independent segregation of genotypes at both genes with several combinations of genotypes observed including RR/RR, RR/RS, RS/RS, RS/SS and SS/SS (Table S5). A comparison of the distribution of both sets of genotypes revealed that double homozygote-resistant (RR/RR) mosquitoes at both genes had a far greater ability to survive exposure to Olyset than most of the other combinations (Table S4) particularly when compared to double susceptible (SS/SS) (OR = 8.6; CI = 1.8-39.1; \\(p\\)\\(<\\) 0.01) (Table S5). A significantly increased survival is also observed in RR/RR when compared to other combinations although with a lower odds ratio, such as against RR/SS (OR = 2; \\(p\\)\\(<\\) 0.01) (Table S5).\n", - "\n", - "Analysis of the combined genotype distribution for blood-feeding also revealed a significantly increased ability to blood-feed for double homozygote-resistant mosquitoes when exposed to Olyset with the highest significance against double homozygote-susceptible mosquitoes (OR = 9.3; \\(p\\)\\(<\\) 0.001) (Table S5).\n", - "\n", - "Combined Impact of the Triple Resistance Alleles CYP6P9a/CYP6P9b/6.5 kb SV on the Efficacy of Olyset and Olyset plus Nets Using Experimental Hut Trial\n", - "\n", - "Experimental hut trials showed that triple RR/RR/SV\\({}^{+}\\)SV\\({}^{+}\\) homozygotes were more likely to survive exposure to Olyset compared to any other combined genotypes except RR/RS/RS (Figure 7A). RR/RR/SV+SV+ survived more than SS/SS/SV\\(-\\)SV\\(-\\) (OR = 8.5; CI: 2.53-28.46; \\(p\\)\\(=\\) 0.0005) and RS/RS/SV+SV\\(-\\) (OR = 3.57; CI = 1.82- 7.02; \\(p\\)\\(=\\) 0.0002). There was no significant difference between the RR/RR/SV+SV+ and RR/RR/SV+SV\\(-\\) genotypes (OR = 1; CI = 0.16-7.02; \\(p\\)\\(=\\) 1.0), and both had a similar trend in terms of survival with the same odds ratio (Figure 7B). In addition to the ability to survive exposure to the net, RR/RR/SV+SV+ also could blood-feed better than SS/SS/SV\\(-\\) SV\\(-\\) (OR = 7.0; CI: 2.38-20.52; \\(p\\)\\(=\\) 0.0004) and the other combinations in the presence of Olyset (Figure 7C,D).\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `Observation` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: 2.2.1 Role of CYP6P9a_R Using WHO Tube Assay Samples\n", - "\n", - "Using the hybrid FUMOZ-FANG strains, the role of the _CYP6P9a_R_ allele in the observed pyrethroid resistance was confirmed. The odds ratio of surviving exposure to permethrin when homozygous for the resistant _CYP6P9a_R_ allele (RR) was high at 693 (CI 88-5421; \\(p\\) < 0.0001) compared to the homozygous-susceptible mosquitoes (SS) (Figure 2A). The OR was 131 (CI 27-978; \\(p\\) < 0.0001) when comparing RR to RS, indicating the increasing resistance conferred by _CYP6P9a_.\n", - "\n", - "header: 4.6.2 Genotyping of the CYP6P9b-R Maker Using PCR-RFLP\n", - "\n", - "The PCR was carried out, as described for CYP6P9a. The following primers were used: 6p9brflp_0.5F 5'-CCCCCACAGGTGTAACTCTGAA-3' and 6p9brflp_0.5R 5'-TTATCCGTAAACTCAATAGCGATG-3'. Then, 3 mL of the PCR product migrated on the 1.5% agarose gel. The expected PCR product was 550 bp. The digestion with the _Tsp_451 restriction enzyme followed 0.2 mL of Tsp451, 5 mL of PCR product, 1 mL of 10x NEBuffer, and 3.8 mL of distilled water. This mix was incubated at 65 degC for 2 h. Afterwards, 3 mL of the digestion product was migrated on the 2% gel. Amplicons from susceptible mosquitoes were cut into two bands with sizes of 400 bp and 150 bp, and the resistant mosquitoes remained undigested with the band at 550 bp.\n", - "\n", - "header: Impact of the Duplicated CYP6P9a and CYP6P9b P450 Genes on the Performance of Bed Nets\n", - "\n", - "The samples collected during the evaluation of Olyset and Olyset Plus in experimental huts were grouped in several categories: dead, alive, blood fed, and unfed; room and veranda. The _CYP6P9a_/b and _6.5 kb SV_ were genotyped in each group using the respective PCR assays as described [28,29,31]. This allowed the relative survival and feeding success of resistant and susceptible insects in the presence of both bed nets to be directly measured.\n", - "\n", - "header: Abstract\n", - "\n", - "Experimental Hut Trials Reveal That CYP6P9a/b P450 Alleles Are Reducing the Efficacy of Pyrethroid-Only Olyset Net against the Malaria Vector _Anopheles funestus_ but PBO-Based Olyset Plus Net Remains Effective\n", - "\n", - "Benjamin D. Menze, Leon M. J. Mugenzi, Magellan Tchouakui, Murielle J. Wondji,\n", - "\n", - "1Vector Biology Department, Liverpool School of Tropical Medicine, Pembroke Place, Liverpool L3 5QA, UK; murielle.wondji@ilstmed.ac.uk\n", - "2Medical Entomology Department, Centre for Research in Infectious Diseases (CRID), Yaounde 13591, Cameroon; leon.mugenzi@crid-cam.net (L.M.J.M.); magellan.tchouakui@crid-cam.net (M.T.); micareme.tchouop@crid-cam.net (M.T.)\n", - "* Correspondence: benjamin.menze@crid-cam.net (B.D.M.); charles.wondji@ilstmed.ac.uk (C.S.W.)\n", - "\n", - "\n", - "Malaria remains a major public health concern in Africa. Metabolic resistance in major malaria vectors such as _An. funestus_ is jeopardizing the effectiveness of long-lasting insecticidal nets (LLINs) to control malaria. Here, we used experimental hut trials (EHTs) to investigate the impact of cytochrome P450-based resistance on the efficacy of PBO-based net (Olyset Plus) compared to a permethrin-only net (Olyset), revealing a greater loss of efficacy for the latter. EHT performed with progenies of F5 crossing between the _An. funestus_ pyrethroid-resistant strain FUMOZ and the pyrethroid-susceptible strain FANG revealed that PBO-based nets (Olyset Plus) induced a significantly higher mortality rate (99.1%) than pyrethroid-only nets (Olyset) (56.7%) (\\(p<0.0001\\)). The blood-feeding rate was higher in Olyset compared to Olyset Plus (11.6% vs. 5.6%; \\(p=0.013\\)). Genotyping the _CYP6P9a/b_ and the intergenic _6.5 kb structural variant_ (SV) resistance alleles showed that, for both nets, homozygote-resistant mosquitoes have a greater ability to blood-feed than the susceptible mosquitoes. Homozygote-resistant genotypes significantly survived more with Olyset after cone assays (e.g., _CYP6P9a_ OR = 34.6; \\(p<0.0001\\)) than homozygote-susceptible mosquitoes. A similar but lower correlation was seen with Olyset Plus (OR = 6.4; \\(p<0.001\\)). Genotyping EHT samples confirmed that _CYP6P9a/b_ and _6.5 kb_SV_ homozygote-resistant mosquitoes survive and blood-feed significantly better than homozygote-susceptible mosquitoes when exposed to Olyset. Our findings highlight the negative impact of P450-based resistance on pyrethroid-only nets, further supporting that PBO nets, such as Olyset Plus, are a better solution in areas of P450-mediated resistance to pyrethroids.\n", - "\n", - "header: 4.6.1 Genotyping of the CYP6P9a-R Marker Using PCR-RFLP\n", - "\n", - "DNA was extracted from various groups of mosquitoes (dead, alive, blood fed, and unfed; room and veranda) using the Livak protocol [49]. The PCR was carried out using 10 mM of each primer and 1 mL of gDNA as the template in 15 mL reaction containing 10x Kapa Taq buffer A, 25 mM of dNTPs, 25 mM of MgCl2, and 1 U of Kapa Taq (Kapa Biosystems, Boston, MA, USA). Amplification was carried out using thermocycler parameters: 95 degC for 5 min, 35 cycles of 94 degC for 30 s, 58 degC for 30 s, 72 degC for 45 s, and a final extension at 72 degC for 10 min. The following primers were used: RFLP6P9aF forward primer 5'-TCCCGAAATACAGCCTTTCAG-3 and RFLP6P9aR reverse primer 5'-ATTGGTCCATCGCTAGAAG-3'. Then, 3 mL of the PCR product migrated on the 1.5% agarose gel. The expected PCR product was 450 bp. The digestion with Taq1a followed 0.2 mL of Taq1a, 5 mL of PCR product, 1 mL of 10x NEBuffer, and 3.8 mL of distilled water. This mix was incubated at 65 degC for 2 h. Afterwards, 3 mL of the digestion product migrated on the 2% gel. Amplicons from resistant mosquitoes were cut into two bands with sizes of 350 bp and 100 bp, and the susceptible mosquitoes remained undigested with the band at 450 bp.\n", - "\n", - "header: 4.6.3 PCR Assay to Detect the 6.5 kb SV\n", - "\n", - "To easily identify the samples containing the 6.5 kb insertion, the recently designed PCR assay [28] was used to discriminate between mosquitoes with the 8.2 kb (resistant) and 1.7 kb (susceptible) _CYP6P9a_ and _CYP6P9b_ intergenic regions. Briefly, three primers were used: two (FG_5F: CTACCGTCAAAGTCCGGTAT and FG_3R: TTTCGAAAACATCCCTAAA) at regions flanking the insertion point and a third primer (FZ_INS5R: ATATGCCACGAAGGAAAGCAG) in the _6.5 kb_ insertion. One unit of KAPA Taq polymerase (Kapa Biosystems) in 1x buffer A, i.e., 25 mm of MgCl2, 25 mm of dNTPs, and 10 mm of each primer, was used to constitute a 15 mL PCR mix using the following conditions: an initial denaturation step of 3 min at 95 degC, followed by 35 cycles of 30 s at 94 degC, 30 s at 58 degC, and 60 s at 72 degC, with a final extension for 10 min at 72 degC. The amplicon was revealed on a 1.5% agarose gel stained with Midori Green Advance DNA Stain (Nippon genetics Europe GmbH) and revealed on a UV transilluminator.\n", - "\n", - "header: 3 Discussion\n", - "\n", - "The capacity to assess the impact of insecticide resistance on the effectiveness of insecticide-treated control tools is crucial in order to implement suitable insecticide resistance management (IRM) [32]. Evolution in the area of DNA-based resistance markers of P450-mediated resistance [28; 29] currently offers robust tools to screen pyrethroid resistance in field populations of the major malaria vectors such as _An. funestus_ and assess their impact on the effectiveness of LLINs. In this study, we use these markers to evaluate the extent to which pyrethroid resistance is impacting the efficacy of pyrethroid-only nets such as Olyset in comparison to PBO-based net such as Olyset Plus. This study also allowed to assess the interplay between P450 genes in the overall genetic variance to resistance and their combined impact on the efficacy of LLINs.\n", - "\n", - "PBO-Based Nets (Olyset Plus) Exhibit Greater Efficacy than Pyrethroid-Only Nets (Olyset) in the Context of P450-Based Resistance\n", - "\n", - "Olyset presented a moderate mortality compared to Olyset Plus (30.9% vs. 100%; \\(p\\) < 0.0001). The high mortality observed with PBO nets compared to pyrethroid-only nets is similar to what was observed in previous studies [33; 34; 35; 36]. The high mortality observed with PBO-based nets against the hybrid strain FUMOZ/FANG is due to the fact the mechanisms underlying the resistance in this population are driven by _CYP6P9a_ and _CYP6P9b_[37] which are inhibited by PBO [38]. These results demonstrate that PBO-based nets may be a more suitable solution in areas where resistance is mainly mediated by P450 genes.\n", - "\n", - "Figure 7: Combined impact of the triple resistance alleles (_CYP6P9a_/_CYP6P9b_/_6.5 kb SV_) on the efficacy of insecticide-treated nets. (**A**) Distribution of combined genotypes for _CYP6P9a_, _CYP6P9b_ and the _6.5 kb SV_ showing that the three markers combine to increase the chances of being alive in the presence of Olyset Net. (**B**) Ability to survive exposure to Olyset net for the various combined genotypes for the _6.5 kb SV_, _CYP6P9a_ and _CYP6P9b_. (**C**) Distribution of combined genotypes for _CYP6P9a_, _CYP6P9b_ and the _6.5 kb SV_ showing that the three markers combine to increase the chances to bloodfed in the presence of Olyset net. (**D**) The triple RR/RR/SV+SV+ homozygous mosquitoes for the _6.5 kb SV_, _CYP6P9a_ and _CYP6P9b_ exhibit a greater blood-feeding ability than other genotypes. Ns: non-significant; * (0.05); ** (0.01); *** (0.001).\n", - "\n", - "\n", - "The efficacy of nets observed in this study confirms the loss in efficacy of the pyrethroid-only nets against _Anopheles_ mosquitoes, as observed across the continent [39]. This loss of efficacy was observed in Mozambique [7,40], Malawi [41], Congo [42], and Cameroon [6,43]. Overall, similar to this study, it has been noticed that PBO-based nets demonstrate a better performance compared to pyrethroid-only nets [33,34]. The same trends were observed with pyrethroid type II with high mortality observed with PermaNet 3.0 compared to PermaNet 2.0 [28,29,31], suggesting that PBO-based nets with both type I or II can exhibit high performance against resistance sustained by P450s.\n", - "\n", - "P450 Resistance Can Reduce the Efficacy of Pyrethroid-Only Nets Significantly Better Than PBO-Based Nets\n", - "\n", - "When comparing the impact of _CYP6P9a/b_ on pyrethroid-only nets and PBO-based nets using samples from cone assays, we noticed that the impact of _CYP6P9a_ on pyrethroid-only nets was higher than with PBO-based nets (Olyset, OR = 35.1; \\(p\\) < 0.00001 vs. Olyset Plus, OR = 6.4; \\(p\\) < 0.001). The same trend was also observed with _CYP6P9b_ and the 6.5 kb SV. This can be explained by the fact that the addition of the PBO inhibits the cytochrome P450 enzymes, which is the main resistance mechanism in the strain used by the mosquitoes [44,45].\n", - "\n", - "On the other hand, Olyset nets have also shown reduced performance against _CYP6P9a_ and _CYP6P9b_-resistant mosquitoes. Strong association was observed between the resistant alleles and the increased ability of the mosquitoes to survive after exposure to these nets. Nevertheless, the impact of _CYP6P9a_ and _CYP6P9b_ seems to be more significant on PermaNet nets impregnated with deltamethrin [29,31], compared to Olyset nets impregnated with permethrin (Olyset, OR = 35.1; \\(p\\) < 0.00001 vs. PermaNet 2.0, OR = 239.0; \\(p\\) < 0.001 and Olyset Plus, OR = 6.4; \\(p\\) < 0.001 vs. PermaNet 3.0, OR = 81.0; \\(p\\) < 0.001) [29,31]. This significant impact on PermaNet could be associated with the fact that the hybrid strain is more resistant to type II pyrethroids, as shown by WHO bioassays, where the mosquitoes were more resistant to deltamethrin compared to permentrin (48.5% vs. 80.7%). With regards to the obtained odd ratios, a stronger association was observed between _CYP6P9a/CYP6P9b_ and the loss of efficacy of nets compared to what was observed with GST-based resistance through the L119F-_GSTe2_-resistant allele [43], in line with the greater role of P450 in resistance to pyrethroids in _An. funetus_, compared to that of GST. The 6.5 kb SV was shown to further exacerbate the loss of efficacy in the permethrin-only nets. The design of the simple PCR-based assay to genotype the _6.5 kb SV_ enabled us to assess the impact of such structural variation on the efficacy of insecticide-treated nets, including the pyrethroid-only and the PBO-synergist nets. A greater reduction in the efficacy of _6.5 kb SV_ was present on permethrin-only nets compared to PBO-based nets, which is similar to that observed with _CYP6P9a_ [31] and _CYP6P9b_ [29], in terms of the reduced mortality rate and blood-feeding inhibition. This pattern is also similar to that seen with deltamethrin-based nets (PermaNet 2.0 vs. PermaNet 3.0) [29,31]. Overall, the significantly greater loss of efficacy due to P450s observed with both type I (Olyset and PermaNet 2.0) and PBO-based nets (Olyset Plus and PermaNet 3.0) further supports the deployment of PBO-based nets to control P450-based metabolically resistant mosquito populations. The deployment of PBO-based nets should nevertheless also be monitored to regularly assess their efficacy since they too could be impacted by resistance, as shown by the fact that _CYP6P9a/b_-resistant mosquitoes could blood-feed significant better, even with Olyset Plus. This increased ability of resistant mosquitoes to blood-fed, even with PBO-based net, suggests that PBO-based nets are not immune to the impact of resistance, even if they remain significantly more effective than pyrethoid-only nets. The increased blood-feeding of P450-resistant mosquitoes when exposed to PBO-based nets may also lead to a higher malaria transmission, although this is mitigated by the high mortality observed for Olyset Plus in a experimental hut trial. Overall, evaluating the impact of P450-based resistance on the efficacy of Olyset vs. Olyset Plus further supports the results obtained in a cluster \n", - "randomized controlled trial with both nets in Tanzania showing greater effectiveness of Olyset Plus [46].\n", - "\n", - "header: Results\n", - "\n", - "All the nets used in the study were first exposed to the susceptible lab strain Kisumu for quality control. The mortality for Olyset and Olyset Plus was 100% (Figure 1A). The _An. funestus_ hybrid strain exposed to bed nets using WHO cone assays exhibited mortality rates of 30.1 \\(\\pm\\) 11.5% for Olyset and 100 \\(\\pm\\) 0% for Olyset Plus, suggesting a greater efficacy of PBO synergist nets compared to pyrethroid-only nets.\n", - "\n", - "**Susceptibility profiles of the FUMOZ-FANG:** The bioassays performed with the reciprocal FUMOZ-FANG strains revealed that the hybrid strain was resistant to deltamethrin with mortality of 43.7 \\(\\pm\\) 5.9%, and was resistant to propoxur with mortality of 67.3 \\(\\pm\\) 6.6% (Figure 1B). The second set of bioassays performed with the reciprocal FUMOZ-FANG strains revealed that the hybrid strain was resistant to permethrin with mortality of 43.7 \\(\\pm\\) 1.6% and 39.3 \\(\\pm\\) 1.6%, respectively, for 90 min and 30 min. Resistance was also observed with deltamethrin with a mortality of 86.4 \\(\\pm\\) 3.1% and 42.3 \\(\\pm\\) 2.5%, respectively, for 90 min and 30 min (Figure 1C).\n", - "\n", - "header: 2.1.1. Quality Control and Performance of the Nets against the Hybrid Strain: 2.1.2 Performance of Nets against the Hybrid Strain Using Experimental Hut\n", - "\n", - "A total number of 578 mosquitoes from the hybrid strain were released and recaptured on a period of one week. In total, 141 samples were released in the control hut, 224 in the hut were treated with Olyset, and 213 in the hut were treated with Olyset Plus.\n", - "\n", - "**Mortality**: Analysis of mortality rates revealed very high mortality of the hybrid FUMOZ-FANG strain against the PBO-based Olyset Plus net (99.1%). In contrast, lower mortality was observed for the pyrethroid-only Olyset net (56.7%). Very low mortality was observed in the untreated control net (9.9%) (Figure 1D; Table S1).\n", - "\n", - "**Blood-feeding**: The blood-feeding rate did not significantly differ when comparing the control (7.8%) to Olyset (11.6% \\(p>0.05\\)) and Olyset Plus (5.6%; \\(p>0.05\\)). However, the blood-feeding rate was higher in Olyset compared to Olyset Plus (11.6% vs. 5.6%; \\(p=0.013\\)) (Figure 1D; Table S1).\n", - "\n", - "Figure 1: Susceptibility profile of the hybrid FUMOZ-FANG strain to pyrethroids. (**A**) Net quality assessment with recorded mortalities after cone assays with Kisumu, the _An. gambiae_-susceptible lab strain, and the _An. funestus_ FUMOZ-FANG strain. (**B**) Susceptibility profile of the hybrid FUMOZ-FANG strain to type II (deltamethrin) pyrethroids and propoxur with recorded mortalities following 60 min exposure. Data are shown as mean \\(\\pm\\) SEM. (**C**) Susceptibility profile of the hybrid FUMOZ-FANG strain to deltamethrin (type II pyrethroids) and permethrin (type I pyrethroids) with recorded mortalities following 30 and 60 min exposure. Data are shown as mean \\(\\pm\\) SEM. (**D**) Proportion of mortality, blood-feeding, and exophily rate for Olyset and Olyset Plus against _An. funestus_ (crossing the FUMOZ-FANG strain (F5)). Ns = \\(p>0.05\\); * = \\(p\\leq 0.05\\); ** = \\(p\\leq 0.01\\); *** = \\(p\\leq 0.001\\).\n", - "\n", - "\n", - "\n", - "\n", - "**Exophily**: The exophily rate in the hut with Olyset net (23.7%) was significantly higher than that in the control hut (13.5%) (_p_ = 0.02), as well as than for Olyset Plus (7.5%; \\(p\\) < 0.001). No significant difference was observed between Olyset Plus and the control net (_p_ = 0.3) (Figure 1D; Table S1).\n", - "\n", - "Validating the Role of CYP6P9a/b and 6.5 kb SV in Pvrethroid Resistance in the Hybrid FUMOZ-FANG Strains before the Experimental Hut Trials\n", - "\n", - "header: 5 Conclusions\n", - "\n", - "This study reveals that insecticide resistance driven by _CYP6P9a/b_ and _6.5 kb SV_ can reduce the efficiency of Permethrin-based LLINs, such as Olyset, while PBO-based nets remain effective. However, the greater loss of efficacy observed in mosquitoes with multiple and complex resistance supports the need to introduce new products for vector control which is less reliant on pyrethroids. Meantime, PBO-based nets should be preferably deployed in areas of P450-based resistance.\n", - "\n", - "**Supplementary Materials:** The following supporting information can be downloaded at: [https://www.mdpi.com/article/10.3390/pathogens11060638/s1](https://www.mdpi.com/article/10.3390/pathogens11060638/s1), Table S1: Results of the performance of Olyset and Olyset Plus against _An. funestus_ females (crossing FUMOZ-FANG; F5) in experimental hut trial. Table S2: Correlation between _CYP6P9a and CYP6P9b_ genotypes and mosquito mortality against Olyset and Olyset Plus nets after cone assays with the FANG-FUMOZ mosquito strain. Table S3: Correlation between the _6.5Kv SV_ genotypes and mosquito mortality against Olyset and Olyset Plus nets after cone assays with the FANG-FUMOZ mosquito strain. Table S4: Correlation between genotypes of _CYP6P9a_, _CYP6P9b_ and _6.5 kb SV_ and mortality and blood-feeding after exposure to Olyset and Olyset Plus in experimental huts. Table S5: _CYP6P9a_ and _CYP6P9b_ acting together further increase the ability of _An. funestus_ to survive and blood feed against Olyset after experimental hut trial.\n", - "\n", - "**Author Contributions:** C.S.W. conceived and designed the study; L.M.J.M. and M.T. (Magellan Tchouakui) generated the lab crosses and performed the validation of the PCR; B.D.M. performed the experimental hut experiments with C.S.W. and genotyped the resistance makers with M.J.W. and M.T. (Micareme Tchoupo); B.D.M. and C.S.W. wrote the paper with assistance from M.T. (Magellan Tchouakui) and L.M.J.M. All authors have read and agreed to the published version of the manuscript.\n", - "\n", - "**Funding:** This research was funded in whole by the Welcome Trust (Senior Research Fellowship to CSW 101893/Z/13/Z and 217188/Z/19/Z). For the purpose of open access, the authors applied a CC BY public copyright license to any author who accepted a manuscript version following this submission.\n", - "\n", - "**Institutional Review Board Statement:** NA.\n", - "\n", - "**Informed Consent Statement:** NA.\n", - "\n", - "**Data Availability Statement:** NA.\n", - "\n", - "**Acknowledgments:** A big thanks to Charles Wondji for his financial support through the Wellcome Trust (Senior Research Fellowship to CSW 101893/Z/13/Z and 217188/Z/19/Z). I am also grateful to the Mibellon community.\n", - "\n", - "**Conflicts of Interest:** The authors declare that they have no competing interest.\n", - "\n", - "header: Study Site: Laboratory Strain: FUMOZ/FANG Crossing\n", - "\n", - "Previous studies revealed that the duplicated P450 _CYP6P9a/b_ and intergenic _6.5 kb sv_ is mainly found in mosquitoes from southern Africa and absent from mosquitoes collected elsewhere in Africa [31,45]. Moreover, these resistance markers have already been selected (close to fixation) in the southern African _An. funestus_ populations, preventing free-flying mosquitoes from being used in this region in order to assess their impact on LLIN efficacy, as all mosquitoes are nearly homozygote-resistant now [7]. Therefore, to evaluate the impact of these cytochrome P450, we opted to use a hybrid strain generated from two _An. funestus_ laboratory colonies: the FANG colony, a completely insecticide-susceptible colony originating from Angola, and the FUMOZ colony derived from southern Mozambique, which is highly resistant to pyrethroids and carbamates [48]. During rearing, the pupae of each strain were kept individually in Falcon tubes (15 mL), locked with a piece of cotton for individual emergence. After the emergence of pupae in the Falcon tube, the males and the females were separated. A reciprocal crossing was performed using 50 males and 50 females from the other strain. After the initial F1 generation obtained from the reciprocal crosses of the 50 males and 50 females of both strains, the hybrid strain was reared to F5 and F6 generation, presenting good segregation in all the three genotypes. The hybrid strain was then used for the release recapture experiment in the huts.\n", - "\n", - "header: 2.3.1 Impact on Mosquito Mortality: 2.3.2 CYP6P9a Impacting the Blood-Feeding\n", - "\n", - "Homozygote _CYP6P9a_-resistant mosquitoes (RR) were significantly more likely to blood-feed better than homozygote-susceptible mosquitoes (SS) (OR = 4.5; \\(p\\) < 0.01) when exposed to Olyset. Heterozygote mosquitoes (RS) were significantly worse at blood-feeding with Olyset compared to homozygote-susceptible mosquitoes (SS) (OR = 0.8; CI = 0.3-1.7; \\(p\\) = 1). Homozygote-resistant mosquitoes (RR) fed heterozygotes (OR = 5.4; CI = 2.6-10.88; \\(p\\) < 0.001) significantly better (Table S4; Figure 5C). Overall, the strength of this association was further shown by the significant ability to blood-feed when possessing a single _CYP6P9a_-resistant allele (R) compared to the susceptible allele (S) (OR = 2.3; CI = 1.3-4.1; \\(p\\) < 0.01) (Table S4). For Olyset Plus, homozygote _CYP6P9a_-resistant mosquitoes (RR) were significantly more likely to blood-feed than homozygote-susceptible mosquitoes (RS) (OR = 6.3; \\(p\\) < 0.001) when exposed to Olyset Plus. The significant ability to blood-feed was observed when possessing a single _CYP6P9a_-resistant allele (R) compared to the susceptible allele (S) (OR = 2.0; CI = 1.1-3.5; \\(p\\) = 0.03) (Table S4).\n", - "\n", - "header: 1 Introduction\n", - "\n", - "Long-lasting insecticidal nets (LLINs) remain an important component of the malaria control strategies used to reduce mortality and morbidity due to this disease in Africa [1, 2]. Mostly insecticides belonging to the pyrethroid group, as well as more and more novel insecticides, are currently recommended for bed net impregnation [3, 4, 5]. In recent years, anopheles mosquitoes have increasingly been reported to show resistance against pyrethroids across Africa. This is the case for major vectors including _Anopheles funestus_[6, 7, 8, 9] and _Anopheles gambiae_[10, 11, 12, 13, 14]. This growing spread of resistance has led to a concern that LLINs may lose their efficacy. However, quantifying such loss of efficacy remains challenging without suitable metrics associated with resistance, highlighting the need to use robust genotype/phenotype analysis for this evaluation. At a time when national malaria control \n", - "programs across Africa are seeking to take evidence-based decisions on their choice of suitable nets to help improve malaria control, it is paramount to determine the extent to which existing resistance to pyrethroid really affects LLIN efficacy. This involves an understanding of the interaction between resistance mechanisms and mosquito responses to exposure to LLINs. Broadly speaking, pyrethroid resistance can be caused by alterations in the target site of the insecticide or enhanced enzymatic activities capable of metabolizing the insecticide before it reaches the target [15-17]. Target site resistance is well studied with mutations in the target of both pyrethroid and DDT insecticides, as well as the voltage-gated sodium channels which lead to knockdown resistance (_kdr_). The development of molecular assays more than twenty years ago made it possible to track this resistance mechanism using a simple PCR [18-21] or high throughput techniques, such as TaqMan assays [22]. It has also been possible to assess the impact of _kdr_ on control tools, notably in _An. gambiae_ where these markers are common [23-25], contrary to _An. funestus_, where it is still not detected [26]. The second best characterized cause of insecticide resistance is metabolic resistance, which is more complex to understand as it can involve the detoxification, sequestration, and transportation of insecticides or their conjugates [16,17,27]. Recent studies have focused on elucidating the genetic factors which cause the increased expression of detoxification genes associated with insecticide resistance in malaria vectors such as _An. funestus_, leading to the development of simple molecular assays used to detect metabolic resistance [28-31].\n", - "\n", - "The recent design of molecular assays for the duplicated _CYP6P9a/b_ and the associated _6.5 kb_ structural variant (SV), refs. [28,29,31] now provides a great opportunity to assess the impact of P450-based pyrethroid resistance on the efficacy of various LLINs, including pyrethroid-only (Olyset) and PBO (Olyset Plus) nets. This will provide evidence-based information on their effectiveness in the presence of a growing and escalading resistance to pyrethroids. Previous assessment of this impact on PermaNet nets made with type II pyrethroid deltamethrin has been performed [28,29,31], but this remains to be carried out for type I pyrethroid nets, such as the common permethrin-based Olyset nets.\n", - "\n", - "Here, using EHT, we show a significantly greater efficacy of the PBO-based net Olyset Plus compared to the pyrethroid-only Olyset net against pyrethroid-resistant _An. funestus_. Using the genotyping of DNA-based markers of P450 resistance, we reveal that _CYP6P9a/b_ P450-based pyrethroid resistance induces a significant loss of efficacy for pyrethroid-only net Olyset against _An. funestus_. A reduced efficacy was also detected for PBO-based net Olyset Plus, but at a lower extent than for Olyset net, revealing that PBO nets are more suitable to tackle such P450-based resistance.\n", - "\n", - "header: Susceptibility Profile of the Hybrid FUMOZ/FANG Strain to Pyrethroids\n", - "\n", - "Before assessing the impact of _CYP6P9a/b_ on the effectiveness of LLINs using the experimental huts, the resistance status of the hybrid FUMOZ-FANG was evaluated in laboratory conditions via WHO tube tests and cone tests, and the role of _CYP6P9a/b_ in terms of resistance was assessed.\n", - "\n", - "**Bioassays:** WHO bioassays were conducted with 0.05% deltamethrin and 0.1% propoxur. To generate highly resistant and highly susceptible mosquitoes, WHO bioassays were conducted with 0.75% permethrin and 0.05% deltamethrin for 30 min and 90 min. For each insecticide, four replicates of 25 mosquitoes from the hybrid strains were used. Alive mosquitoes after 90 min of exposure and dead mosquitoes after 30 min of exposure were then genotyped to establish the association between the _CYP6P9a/b_ and _6.5 kb SV_ resistance alleles and the ability of mosquitoes to survive to these insecticides.\n", - "\n", - "**Cone assays:** Cone test bioassays were conducted with a fragment of Olyset and Olyset Plus using the resistant hybrid strains FUMOZ-FANG. Five batches of 10 unfed females, aged 2-5 days old, were exposed to each bed net for three minutes. They were then transferred into the holding paper cup containers. The knockdown was checked after 60 min and the mortality after 24 h. Alive and dead mosquitoes obtained after exposure were then genotyped. The association between the _CYP6P9a/b_-resistant allele and the ability of mosquitoes to survive to these insecticides was also established.\n", - "\n", - "header: 2.4.1 The Impact of CYP6P9b on Mortality: 2.4.2 CYP6P9b Impacting the Blood-Feeding\n", - "\n", - "A strong association was observed between _CYP6P9b_ genotypes and the ability to blood-feed. Homozygote-resistant mosquitoes (RR) could more successfully blood-fed when compared to homozygote-susceptible mosquitoes (SS) (OR = 10.01; CI = 4.1-24.9; \\(p\\) < 0.001) (Table S4; Figure 5F). The blood-feeding ability of heterozygote mosquitoes (RS) in the presence of Olyset was not different to that of homozygote-susceptible mosquitoes (SS) (OR = 0.8; CI = 0.3-2.2; \\(p\\) = 1). Homozygote-resistant mosquitoes (RR) could blood-feed significantly better than heterozygotes (OR = 11.1; CI = 5.3-23.03: \\(p\\) < 0.001), suggesting an additive effect. Overall, the strength of this association was further shown by the significant ability to blood fed when possessing a single _CYP6P9b_-resistant allele (R) compared to the susceptible allele (S) (OR = 4.7; CI = 2.5-8.1; \\(p\\) < 0.01) (Table S4).\n", - "\n", - "header: Table 1: Description of the long-lasting insecticidal nets used.\n", - "footer: None\n", - "columns: ['Treatment Arm', 'Description', 'Manufacturer']\n", - "\n", - "{\"0\":{\"Treatment Arm\":\"Untreated\",\"Description\":\"100% polyester with no insecticide\",\"Manufacturer\":\"Local market\"},\"1\":{\"Treatment Arm\":\"Olyset\",\"Description\":\"8.6 \\u00d7 10\\u22124 kg\\/m2 (2%) of permethrin incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"2\":{\"Treatment Arm\":\"Olyset\",\"Description\":\"8.6 \\u00d7 10\\u22124 kg\\/m2 (2%) of permethrin incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"3\":{\"Treatment Arm\":\"Olyset Plus\",\"Description\":\"8.6 \\u00d7 10\\u22124 kg\\/m2 (2%) of permethrin and 4.3 \\u00d7 10\\u22124 kg\\/m2 (1%) of PBO incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"4\":{\"Treatment Arm\":\"Olyset Plus\",\"Description\":\"8.6 \\u00d7 10\\u22124 kg\\/m2 (2%) of permethrin and 4.3 \\u00d7 10\\u22124 kg\\/m2 (1%) of PBO incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"5\":{\"Treatment Arm\":\"Olyset Plus\",\"Description\":\"8.6 \\u00d7 10\\u22124 kg\\/m2 (2%) of permethrin and 4.3 \\u00d7 10\\u22124 kg\\/m2 (1%) of PBO incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"}}\n", - "\n", - "header: 2.2.2 Validating the Role of CYP6P9b_R_ Using Sample from WHO Tube Assays\n", - "\n", - "To confirm the ability of the _CYP6P9b_R_ allele to predict pyrethroid resistance phenotype in the hybrid strain FUMOZ-FANG, the F5 samples were genotyped. This revealed that those that stayed alive after exposure to permethrin for 90 minutes are mainly homozygote\n", - "\n", - "Figure 2: Association between the _CYP6P9a/b_ and the ability to survive exposure to Olyset nets after WHO tubes cone assays. (**A**) Tube assay _CYP6P9a_ and mortality. Role of _CYP6P9a_ in pyrethroid resistance with samples from the WHO tube. Distribution of the _CYP6P9a_ genotypes according to resistance phenotypes. (**B**) Tube assay _CYP6P9b_ and mortality. Role of _CYP6P9b_ in pyrethroid resistance with samples from the WHO tube. Distribution of the _CYP6P9b_ genotypes according to resistance phenotypes. (**C**) Cone assay _CYP6P9a_ and mortality. Genotype distribution of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset with the cone test, showing the significant ability of mosquitoes carrying the RR genotype in order to survive compared to SS (RR vs. SS: \\(p\\) < 0.001). (**D**) Cone assay _CYP6P9a_ and mortality allele. Allelic frequency of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset with the cone test, showing the significant ability of the _CYP6P9a_R_-resistant mosquitoes to survive compared to their susceptible counterparts _CYP6P9a_S_. (**E**) Cone assay _CYP6P9b_ and mortality. Genotype distribution of _CYP6P9b_ between alive and dead mosquitoes after exposure to Olyset using the cone test, showing strong association (RR vs. SS: \\(p\\) < 0.001).\n", - "\n", - "\n", - "resistant (20.8%) and heterozygotes (75%), with only two being homozygote-susceptible. Among the 47 mosquitoes found dead after 30 min exposure to permethrin (highly susceptible), 97.87% were found to be homozygote-susceptible, and one remaining was a heterozygote (Figure 2B). A strong association was perceived between permethrin resistance and the _CYP6P9b_ genotypes when comparing RR vs. SS (OR = infinity; \\(p\\) < 0.0001) and RS vs. SS (OR = 715; \\(p\\) < 0.0001).\n", - "\n", - "2.3 Validation of the Role of CYP6P9a and CYP6P9b in Conferring Resistance Using Samples from Cone Assays\n", - "\n", - "Using dead and alive mosquitoes obtained after cone assays, _CYP6P9a_ homozygous-resistant mosquitoes (RR) and heterozygous (RS) could survive significantly better following exposure to Olyset and Olyset Plus than homozygote-susceptible mosquitoes (Table S2). Olyset shows a strong association between the resistance alleles and the ability to survive when comparing RR vs. SS (OR = 35.1; \\(p\\) < 0.0001) and RS vs. SS (OR = 34.6; \\(p\\) < 0.0001) for _CYP6P9a_ (Figure 2C). The same trend was observed when looking at the allelic frequency R vs. S (OR = 7.7; \\(p\\) < 0.05) (Table S2; Figure 2D). Concerning _CYP6P9b_, homozygous-resistant mosquitoes (RR) and heterozygous (RS) could also survive significantly better following survive exposure to Olyset net. A strong association was noticed between the gene and the ability to survive when comparing RR to SS (OR = 32.4; \\(p\\) < 0.0001) and RS vs. SS (OR = 97.3; \\(p\\) < 0.0001) (Table S2; Figure 2E).\n", - "\n", - "Olyset Plus shows a strong association between the resistance alleles and the ability to survive when comparing RR vs. SS (OR = 6.4; \\(p\\) < 0.001) and RS vs. SS (OR = 7.2; \\(p\\) < 0.001) for _CYP6P9a_ (Table S2; Figure 3A). The same trend was observed when looking at the allelic frequency R vs. S (OR = 2.0; \\(p\\) = 0.05) (Table S2; Figure 3B). Concerning the _CYP6P9b_, Olyset Plus equally shows a strong association between the resistance alleles and the ability to survive when comparing RR vs. SS (OR = 9.7; \\(p\\) < 0.001) and RS vs. SS (OR = 17.9; \\(p\\) < 0.001) for _CYP6P9b_ (Table S2; Figure 3C). The same trend was observed when looking at the allelic frequency R vs. S (OR = 2.2; \\(p\\) = 0.01) (Table S2).\n", - "\n", - "Figure 3: Association between the _CYP6P9a/b_ and the ability to survive exposure to Olyset Plus nets after cone assays. (**A**) Genotype distribution of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset Plus with the cone test, showing the significant ability of the mosquitoes to carry the RR genotype to survive compared to SS (_p_ < 0.001). (**B**) Allelic frequency of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset Plus with the cone test, showing the significant ability of the _CYP6P9a_R_–resistant mosquitoes to survive compared to their susceptible counterparts _CYP6P9a_S_. (**C**) Genotype distribution of _CYP6P9b_ between alive and dead mosquitoes after exposure to Olyset Plus using the cone test, showing the significant ability of the mosquitoes carrying the RR genotype to survive compared to SS (_p_ < 0.001).\n", - "\n", - "header: Impact of CYP6P9a on the Efficacy of Olyset and Olyset plus Nets Using Experimental Hut Trial\n", - "\n", - "Genotyping of the _CYP6P9a_ marker allowed us to assess the impact of P450-based metabolic resistance on the loss of efficacy of Olyset, but not for Olyset Plus, since most of the mosquitoes released in Olyset Plus huts died. To avoid confounding effects from blood-feeding, or net entry or exophily status, the distribution of the _CYP6P9a_ genotypes was assessed firstly only among unfed mosquitoes collected in the room. This revealed a highly significant difference in the frequency of the three genotypes between the dead and alive mosquitoes (chi-square = 28.8; \\(p\\) < 0.0001) (Figure 5). Analysis of the correlation between each genotype and mortality revealed that _CYP6P9a_ homozygous-resistant mosquitoes (RR) show an increased ability to survive exposure to the Olyset when compared to homozygote-susceptible mosquitoes (SS) with (OR = 5.0; CI = 2.01-12.4; \\(p\\) = 0.001). The strength of this association was further shown by the significant ability to survive exposure when possessing a single _CYP6P9a_-resistant allele (R) compared to the susceptible allele (S) (OR = 2.04; CI = 1.1-3.6; \\(p\\) < 0.05). However, heterozygote mosquitoes (RS) did not survive exposure to Olyset better than homozygote-susceptible mosquitoes (SS) (OR = 1.8; CI = 0.8-3.9; \\(p\\) > 0.05) (Figure 5A; Table S4; Figure 5B).\n", - "\n", - "Figure 5: Impact of both _CYP6P9a_ and _CYP6P9b_ on the efficacy of bed nets in the experimental hut trial. (**A**) Genotype distribution of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset, showing strong association (RR vs. SS: \\(p\\) < 0.001). (**B**) Allelic frequency of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset with experimental hut trial, showing the significant ability of the _CYP6P9a_R_–resistant mosquitoes to survive compared to their susceptible counterparts _CYP6P9a_S_. (**C**) Association between _CYP6P9a_ and ability to blood-feed when exposed to Olyset. The _CYP6P9a_–R allele increases the strength of resistant mosquitoes by taking a blood meal in contrast to the susceptible ones when exposed to Olyset net. (**D**) Association between _CYP6P9b_ and ability to survive exposure to Olyset in the experimental hut trial. (**E**) Allelic frequency of _CYP6P9b_ between alive and dead mosquitoes after exposure to Olyset with the experimental hut trial, showing the significant ability of the _CYP6P9b_R_–resistant mosquitoes to survive compared to their susceptible counterparts _CYP6P9b_S_. (**F**) Association between _CYP6P9b_ gene and ability to blood-feed when exposed to Olyset in the experimental hut trial. The _CYP6P9b_-R allele increases the strength of resistant mosquitoes by taking a blood meal in contrast to the susceptible ones when exposed to Olyset.\n", - "\n", - "header: Resistance Escalation with Multiple Resistance Alleles Present a Greater Risk of Control Failure\n", - "\n", - "This study confirms the findings by [28], suggesting that the _6.5 kb SV_ acts as an enhancer for nearby duplicated P450 genes _CYP6P9a_ and _CYP6P9b_, leading to their increased overexpression, thus creating greater resistance. This _6.5 kb SV_ is strongly associated with an aggravation of pyrethroid resistance, which reduces the efficacy of pyrethroid-only nets. The fixation of this _6.5 kb SV_, besides the resistant alleles of _CYP6P9a_ and _CYP6P9b_, could explain the resistance escalation currently observed against the _An. funestus_ population from the southern part of Africa reducing the efficacy of bed nets [7,41].\n", - "\n", - "This study revealed that multiple and complex resistance combining elevated expression (_CYP6P9a/b_) [45], as well as the selection of cis-regulatory motifs for transcription binding sites (CnCC/MAF) [31], coupled with structural variations such as the _6.5 kb_, which is known to be enriched with several regulatory elements [28], can lead to a greater reduction in bed net efficacy. The fact that triple homozygote-resistant mosquitoes could survive better against exposure to pyrethroid-only nets compared to all genotypes reveals the greater risk that an unabated increase in resistance can likely lead to the failure of insecticide-based interventions, as predicted by the WHO global plan for insecticide resistance management. This calls for novel nets which do not rely on pyrethroids in the future. However, the impact of these resistance alleles on the efficacy of LLINs in natural populations remains to be established, as we only performed a test with a hybrid strain from two laboratory strains. This work must be urgently carried out, particularly as the molecular tools are increasingly available.\n", - "\n", - "header: Bed Nets Performance Assessment\n", - "\n", - "The performance of the bed nets was expressed relative to control (untreated nets). This was performed with four parameters in mind.\n", - "\n", - "**(i)**: **Exophily**. The proportion of mosquitoes found exited in the veranda trap Exophily (%) = 100 x (Ev/Et), where Ev is the total number of mosquitoes found in veranda and Et is the total number of mosquitoes in the hut.\n", - "**(ii)**: **Blood-feeding rate (BFR)**. This rate was calculated as follows: blood-feeding rate = (N mosquitoes fed) x 100/total N mosquitoes, where N mosquitoes fed was the number of mosquitoes fed and a total N mosquito was the total number of mosquitoes collected.\n", - "**(iii)**: **Blood-feeding inhibition (BFI)**. The reduction in blood-feeding in comparison with the control hut. Blood-feeding inhibition is an indicator of personal protection (PP). More precisely, the personal protection effect of each bed net is the reduction in the blood-feeding percentage induced by the net when compared to the control. The protective effect of each bed net can be calculated as follows: _personal protection_ (%) = 100 x (_Bu_ - _Bt_)/_Bu_, where _Bu_ is the total number of blood-fed mosquitoes in the huts with untreated nets and _Bt_ is the total number of blood-fed mosquitoes in the huts with treated nets [47].\n", - "**(iv)**: **Immediate and delay mortality**. The proportion of mosquitoes entering the hut that are found dead in the morning (immediate mortality) or after being caught alive and held for 24 h with access to sugar solution (delay mortality) [47]. In this study, we presented the overall mortality calculated as follows: mortality (%) = 100 x (Mt/MT), where Mt is the total number of mosquitoes found dead in the hut and MT is the total number of mosquitoes collected in the hut [28,47].\n", - "**(v)**: As mosquitoes were rather released in the huts, the deterrence, i.e., the reduction in the entry rate of mosquitoes in the treated huts relative to control, could not be determined here.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ClinicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `ClinicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `ClinicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}, \"Start_month\": {\"title\": \"Start Month\", \"description\": \"Numerical start month of the reporting period (some studies may report multiple time periods)\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}, \"Time_elapsed\": {\"title\": \"Time Elapsed\", \"description\": \"For longitudinal studies: how long since the start of the study, in units of months?Report this value only if explicitly stated in the text.\"}, \"Blood_meal_count\": {\"title\": \"Blood Meal Count\", \"description\": \"Count of blood meals taken by mosquitos over observation period. This is a proxy for time, as mosquitoes in the study were fed blood meals once a week and oviposition recorded at each time step.\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Hut trial\",\"Country\":\"Cameroon\",\"Site\":\"Yaounde\",\"Start_month\":1,\"Start_year\":2023,\"End_month\":6,\"End_year\":2023,\"Time_elapsed\":5.0,\"Blood_meal_count\":4.0},\"S02\":{\"Study_type\":\"Bioassay, WHO cylinder test\",\"Country\":\"Mozambique\",\"Site\":\"Lab facility\",\"Start_month\":2,\"Start_year\":2023,\"End_month\":5,\"End_year\":2023,\"Time_elapsed\":3.0,\"Blood_meal_count\":null}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Concentration_initial\": {\"title\": \"Insecticide concentration (initial)\", \"description\": \"Enter the initial concentration of the insecticide(s) for net type at the time of distribution.\"}, \"Synergist\": {\"title\": \"Synergist\", \"description\": \"Enter the synergist or synergists combination (delimited by comma).\"}, \"Synergist_concentration\": {\"title\": \"Synergist concentration (measured)\", \"description\": \"Enter the measured concentration of the synergist.\"}, \"pHI_category\": {\"title\": \"Phi Category\", \"description\": \"Classification of the nets holed surface area, as one of \\\"Good\\\", \\\"Damaged\\\", \\\"Torn\\\", \\\"Serviceable\\\", or \\\"All\\\", as proposed by WHO\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"Untreated\",\"pHI_category\":\"Good\",\"Insecticide\":null,\"Concentration_initial\":null,\"Synergist\":null,\"Synergist_concentration\":null},\"N02\":{\"Net_type\":\"Olyset\",\"pHI_category\":\"Good\",\"Insecticide\":\"Permethrin\",\"Concentration_initial\":\"8.6 \\u00d7 10\\u207b\\u2074 kg\\/m\\u00b2 (2%)\",\"Synergist\":null,\"Synergist_concentration\":null},\"N03\":{\"Net_type\":\"Olyset Plus\",\"pHI_category\":\"Good\",\"Insecticide\":\"Permethrin\",\"Concentration_initial\":\"8.6 \\u00d7 10\\u207b\\u2074 kg\\/m\\u00b2 (2%)\",\"Synergist\":\"PBO\",\"Synergist_concentration\":\"4.3 \\u00d7 10\\u207b\\u2074 kg\\/m\\u00b2 (1%)\"}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: 2.2.1 Role of CYP6P9a_R Using WHO Tube Assay Samples\n", - "\n", - "Using the hybrid FUMOZ-FANG strains, the role of the _CYP6P9a_R_ allele in the observed pyrethroid resistance was confirmed. The odds ratio of surviving exposure to permethrin when homozygous for the resistant _CYP6P9a_R_ allele (RR) was high at 693 (CI 88-5421; \\(p\\) < 0.0001) compared to the homozygous-susceptible mosquitoes (SS) (Figure 2A). The OR was 131 (CI 27-978; \\(p\\) < 0.0001) when comparing RR to RS, indicating the increasing resistance conferred by _CYP6P9a_.\n", - "\n", - "header: 4.6.2 Genotyping of the CYP6P9b-R Maker Using PCR-RFLP\n", - "\n", - "The PCR was carried out, as described for CYP6P9a. The following primers were used: 6p9brflp_0.5F 5'-CCCCCACAGGTGTAACTCTGAA-3' and 6p9brflp_0.5R 5'-TTATCCGTAAACTCAATAGCGATG-3'. Then, 3 mL of the PCR product migrated on the 1.5% agarose gel. The expected PCR product was 550 bp. The digestion with the _Tsp_451 restriction enzyme followed 0.2 mL of Tsp451, 5 mL of PCR product, 1 mL of 10x NEBuffer, and 3.8 mL of distilled water. This mix was incubated at 65 degC for 2 h. Afterwards, 3 mL of the digestion product was migrated on the 2% gel. Amplicons from susceptible mosquitoes were cut into two bands with sizes of 400 bp and 150 bp, and the resistant mosquitoes remained undigested with the band at 550 bp.\n", - "\n", - "header: Impact of the Duplicated CYP6P9a and CYP6P9b P450 Genes on the Performance of Bed Nets\n", - "\n", - "The samples collected during the evaluation of Olyset and Olyset Plus in experimental huts were grouped in several categories: dead, alive, blood fed, and unfed; room and veranda. The _CYP6P9a_/b and _6.5 kb SV_ were genotyped in each group using the respective PCR assays as described [28,29,31]. This allowed the relative survival and feeding success of resistant and susceptible insects in the presence of both bed nets to be directly measured.\n", - "\n", - "header: Abstract\n", - "\n", - "Experimental Hut Trials Reveal That CYP6P9a/b P450 Alleles Are Reducing the Efficacy of Pyrethroid-Only Olyset Net against the Malaria Vector _Anopheles funestus_ but PBO-Based Olyset Plus Net Remains Effective\n", - "\n", - "Benjamin D. Menze, Leon M. J. Mugenzi, Magellan Tchouakui, Murielle J. Wondji,\n", - "\n", - "1Vector Biology Department, Liverpool School of Tropical Medicine, Pembroke Place, Liverpool L3 5QA, UK; murielle.wondji@ilstmed.ac.uk\n", - "2Medical Entomology Department, Centre for Research in Infectious Diseases (CRID), Yaounde 13591, Cameroon; leon.mugenzi@crid-cam.net (L.M.J.M.); magellan.tchouakui@crid-cam.net (M.T.); micareme.tchouop@crid-cam.net (M.T.)\n", - "* Correspondence: benjamin.menze@crid-cam.net (B.D.M.); charles.wondji@ilstmed.ac.uk (C.S.W.)\n", - "\n", - "\n", - "Malaria remains a major public health concern in Africa. Metabolic resistance in major malaria vectors such as _An. funestus_ is jeopardizing the effectiveness of long-lasting insecticidal nets (LLINs) to control malaria. Here, we used experimental hut trials (EHTs) to investigate the impact of cytochrome P450-based resistance on the efficacy of PBO-based net (Olyset Plus) compared to a permethrin-only net (Olyset), revealing a greater loss of efficacy for the latter. EHT performed with progenies of F5 crossing between the _An. funestus_ pyrethroid-resistant strain FUMOZ and the pyrethroid-susceptible strain FANG revealed that PBO-based nets (Olyset Plus) induced a significantly higher mortality rate (99.1%) than pyrethroid-only nets (Olyset) (56.7%) (\\(p<0.0001\\)). The blood-feeding rate was higher in Olyset compared to Olyset Plus (11.6% vs. 5.6%; \\(p=0.013\\)). Genotyping the _CYP6P9a/b_ and the intergenic _6.5 kb structural variant_ (SV) resistance alleles showed that, for both nets, homozygote-resistant mosquitoes have a greater ability to blood-feed than the susceptible mosquitoes. Homozygote-resistant genotypes significantly survived more with Olyset after cone assays (e.g., _CYP6P9a_ OR = 34.6; \\(p<0.0001\\)) than homozygote-susceptible mosquitoes. A similar but lower correlation was seen with Olyset Plus (OR = 6.4; \\(p<0.001\\)). Genotyping EHT samples confirmed that _CYP6P9a/b_ and _6.5 kb_SV_ homozygote-resistant mosquitoes survive and blood-feed significantly better than homozygote-susceptible mosquitoes when exposed to Olyset. Our findings highlight the negative impact of P450-based resistance on pyrethroid-only nets, further supporting that PBO nets, such as Olyset Plus, are a better solution in areas of P450-mediated resistance to pyrethroids.\n", - "\n", - "header: 4.6.3 PCR Assay to Detect the 6.5 kb SV\n", - "\n", - "To easily identify the samples containing the 6.5 kb insertion, the recently designed PCR assay [28] was used to discriminate between mosquitoes with the 8.2 kb (resistant) and 1.7 kb (susceptible) _CYP6P9a_ and _CYP6P9b_ intergenic regions. Briefly, three primers were used: two (FG_5F: CTACCGTCAAAGTCCGGTAT and FG_3R: TTTCGAAAACATCCCTAAA) at regions flanking the insertion point and a third primer (FZ_INS5R: ATATGCCACGAAGGAAAGCAG) in the _6.5 kb_ insertion. One unit of KAPA Taq polymerase (Kapa Biosystems) in 1x buffer A, i.e., 25 mm of MgCl2, 25 mm of dNTPs, and 10 mm of each primer, was used to constitute a 15 mL PCR mix using the following conditions: an initial denaturation step of 3 min at 95 degC, followed by 35 cycles of 30 s at 94 degC, 30 s at 58 degC, and 60 s at 72 degC, with a final extension for 10 min at 72 degC. The amplicon was revealed on a 1.5% agarose gel stained with Midori Green Advance DNA Stain (Nippon genetics Europe GmbH) and revealed on a UV transilluminator.\n", - "\n", - "header: 4.6.1 Genotyping of the CYP6P9a-R Marker Using PCR-RFLP\n", - "\n", - "DNA was extracted from various groups of mosquitoes (dead, alive, blood fed, and unfed; room and veranda) using the Livak protocol [49]. The PCR was carried out using 10 mM of each primer and 1 mL of gDNA as the template in 15 mL reaction containing 10x Kapa Taq buffer A, 25 mM of dNTPs, 25 mM of MgCl2, and 1 U of Kapa Taq (Kapa Biosystems, Boston, MA, USA). Amplification was carried out using thermocycler parameters: 95 degC for 5 min, 35 cycles of 94 degC for 30 s, 58 degC for 30 s, 72 degC for 45 s, and a final extension at 72 degC for 10 min. The following primers were used: RFLP6P9aF forward primer 5'-TCCCGAAATACAGCCTTTCAG-3 and RFLP6P9aR reverse primer 5'-ATTGGTCCATCGCTAGAAG-3'. Then, 3 mL of the PCR product migrated on the 1.5% agarose gel. The expected PCR product was 450 bp. The digestion with Taq1a followed 0.2 mL of Taq1a, 5 mL of PCR product, 1 mL of 10x NEBuffer, and 3.8 mL of distilled water. This mix was incubated at 65 degC for 2 h. Afterwards, 3 mL of the digestion product migrated on the 2% gel. Amplicons from resistant mosquitoes were cut into two bands with sizes of 350 bp and 100 bp, and the susceptible mosquitoes remained undigested with the band at 450 bp.\n", - "\n", - "header: 3 Discussion\n", - "\n", - "The capacity to assess the impact of insecticide resistance on the effectiveness of insecticide-treated control tools is crucial in order to implement suitable insecticide resistance management (IRM) [32]. Evolution in the area of DNA-based resistance markers of P450-mediated resistance [28; 29] currently offers robust tools to screen pyrethroid resistance in field populations of the major malaria vectors such as _An. funestus_ and assess their impact on the effectiveness of LLINs. In this study, we use these markers to evaluate the extent to which pyrethroid resistance is impacting the efficacy of pyrethroid-only nets such as Olyset in comparison to PBO-based net such as Olyset Plus. This study also allowed to assess the interplay between P450 genes in the overall genetic variance to resistance and their combined impact on the efficacy of LLINs.\n", - "\n", - "PBO-Based Nets (Olyset Plus) Exhibit Greater Efficacy than Pyrethroid-Only Nets (Olyset) in the Context of P450-Based Resistance\n", - "\n", - "Olyset presented a moderate mortality compared to Olyset Plus (30.9% vs. 100%; \\(p\\) < 0.0001). The high mortality observed with PBO nets compared to pyrethroid-only nets is similar to what was observed in previous studies [33; 34; 35; 36]. The high mortality observed with PBO-based nets against the hybrid strain FUMOZ/FANG is due to the fact the mechanisms underlying the resistance in this population are driven by _CYP6P9a_ and _CYP6P9b_[37] which are inhibited by PBO [38]. These results demonstrate that PBO-based nets may be a more suitable solution in areas where resistance is mainly mediated by P450 genes.\n", - "\n", - "Figure 7: Combined impact of the triple resistance alleles (_CYP6P9a_/_CYP6P9b_/_6.5 kb SV_) on the efficacy of insecticide-treated nets. (**A**) Distribution of combined genotypes for _CYP6P9a_, _CYP6P9b_ and the _6.5 kb SV_ showing that the three markers combine to increase the chances of being alive in the presence of Olyset Net. (**B**) Ability to survive exposure to Olyset net for the various combined genotypes for the _6.5 kb SV_, _CYP6P9a_ and _CYP6P9b_. (**C**) Distribution of combined genotypes for _CYP6P9a_, _CYP6P9b_ and the _6.5 kb SV_ showing that the three markers combine to increase the chances to bloodfed in the presence of Olyset net. (**D**) The triple RR/RR/SV+SV+ homozygous mosquitoes for the _6.5 kb SV_, _CYP6P9a_ and _CYP6P9b_ exhibit a greater blood-feeding ability than other genotypes. Ns: non-significant; * (0.05); ** (0.01); *** (0.001).\n", - "\n", - "\n", - "The efficacy of nets observed in this study confirms the loss in efficacy of the pyrethroid-only nets against _Anopheles_ mosquitoes, as observed across the continent [39]. This loss of efficacy was observed in Mozambique [7,40], Malawi [41], Congo [42], and Cameroon [6,43]. Overall, similar to this study, it has been noticed that PBO-based nets demonstrate a better performance compared to pyrethroid-only nets [33,34]. The same trends were observed with pyrethroid type II with high mortality observed with PermaNet 3.0 compared to PermaNet 2.0 [28,29,31], suggesting that PBO-based nets with both type I or II can exhibit high performance against resistance sustained by P450s.\n", - "\n", - "P450 Resistance Can Reduce the Efficacy of Pyrethroid-Only Nets Significantly Better Than PBO-Based Nets\n", - "\n", - "When comparing the impact of _CYP6P9a/b_ on pyrethroid-only nets and PBO-based nets using samples from cone assays, we noticed that the impact of _CYP6P9a_ on pyrethroid-only nets was higher than with PBO-based nets (Olyset, OR = 35.1; \\(p\\) < 0.00001 vs. Olyset Plus, OR = 6.4; \\(p\\) < 0.001). The same trend was also observed with _CYP6P9b_ and the 6.5 kb SV. This can be explained by the fact that the addition of the PBO inhibits the cytochrome P450 enzymes, which is the main resistance mechanism in the strain used by the mosquitoes [44,45].\n", - "\n", - "On the other hand, Olyset nets have also shown reduced performance against _CYP6P9a_ and _CYP6P9b_-resistant mosquitoes. Strong association was observed between the resistant alleles and the increased ability of the mosquitoes to survive after exposure to these nets. Nevertheless, the impact of _CYP6P9a_ and _CYP6P9b_ seems to be more significant on PermaNet nets impregnated with deltamethrin [29,31], compared to Olyset nets impregnated with permethrin (Olyset, OR = 35.1; \\(p\\) < 0.00001 vs. PermaNet 2.0, OR = 239.0; \\(p\\) < 0.001 and Olyset Plus, OR = 6.4; \\(p\\) < 0.001 vs. PermaNet 3.0, OR = 81.0; \\(p\\) < 0.001) [29,31]. This significant impact on PermaNet could be associated with the fact that the hybrid strain is more resistant to type II pyrethroids, as shown by WHO bioassays, where the mosquitoes were more resistant to deltamethrin compared to permentrin (48.5% vs. 80.7%). With regards to the obtained odd ratios, a stronger association was observed between _CYP6P9a/CYP6P9b_ and the loss of efficacy of nets compared to what was observed with GST-based resistance through the L119F-_GSTe2_-resistant allele [43], in line with the greater role of P450 in resistance to pyrethroids in _An. funetus_, compared to that of GST. The 6.5 kb SV was shown to further exacerbate the loss of efficacy in the permethrin-only nets. The design of the simple PCR-based assay to genotype the _6.5 kb SV_ enabled us to assess the impact of such structural variation on the efficacy of insecticide-treated nets, including the pyrethroid-only and the PBO-synergist nets. A greater reduction in the efficacy of _6.5 kb SV_ was present on permethrin-only nets compared to PBO-based nets, which is similar to that observed with _CYP6P9a_ [31] and _CYP6P9b_ [29], in terms of the reduced mortality rate and blood-feeding inhibition. This pattern is also similar to that seen with deltamethrin-based nets (PermaNet 2.0 vs. PermaNet 3.0) [29,31]. Overall, the significantly greater loss of efficacy due to P450s observed with both type I (Olyset and PermaNet 2.0) and PBO-based nets (Olyset Plus and PermaNet 3.0) further supports the deployment of PBO-based nets to control P450-based metabolically resistant mosquito populations. The deployment of PBO-based nets should nevertheless also be monitored to regularly assess their efficacy since they too could be impacted by resistance, as shown by the fact that _CYP6P9a/b_-resistant mosquitoes could blood-feed significant better, even with Olyset Plus. This increased ability of resistant mosquitoes to blood-fed, even with PBO-based net, suggests that PBO-based nets are not immune to the impact of resistance, even if they remain significantly more effective than pyrethoid-only nets. The increased blood-feeding of P450-resistant mosquitoes when exposed to PBO-based nets may also lead to a higher malaria transmission, although this is mitigated by the high mortality observed for Olyset Plus in a experimental hut trial. Overall, evaluating the impact of P450-based resistance on the efficacy of Olyset vs. Olyset Plus further supports the results obtained in a cluster \n", - "randomized controlled trial with both nets in Tanzania showing greater effectiveness of Olyset Plus [46].\n", - "\n", - "header: Results\n", - "\n", - "All the nets used in the study were first exposed to the susceptible lab strain Kisumu for quality control. The mortality for Olyset and Olyset Plus was 100% (Figure 1A). The _An. funestus_ hybrid strain exposed to bed nets using WHO cone assays exhibited mortality rates of 30.1 \\(\\pm\\) 11.5% for Olyset and 100 \\(\\pm\\) 0% for Olyset Plus, suggesting a greater efficacy of PBO synergist nets compared to pyrethroid-only nets.\n", - "\n", - "**Susceptibility profiles of the FUMOZ-FANG:** The bioassays performed with the reciprocal FUMOZ-FANG strains revealed that the hybrid strain was resistant to deltamethrin with mortality of 43.7 \\(\\pm\\) 5.9%, and was resistant to propoxur with mortality of 67.3 \\(\\pm\\) 6.6% (Figure 1B). The second set of bioassays performed with the reciprocal FUMOZ-FANG strains revealed that the hybrid strain was resistant to permethrin with mortality of 43.7 \\(\\pm\\) 1.6% and 39.3 \\(\\pm\\) 1.6%, respectively, for 90 min and 30 min. Resistance was also observed with deltamethrin with a mortality of 86.4 \\(\\pm\\) 3.1% and 42.3 \\(\\pm\\) 2.5%, respectively, for 90 min and 30 min (Figure 1C).\n", - "\n", - "header: 2.1.1. Quality Control and Performance of the Nets against the Hybrid Strain: 2.1.2 Performance of Nets against the Hybrid Strain Using Experimental Hut\n", - "\n", - "A total number of 578 mosquitoes from the hybrid strain were released and recaptured on a period of one week. In total, 141 samples were released in the control hut, 224 in the hut were treated with Olyset, and 213 in the hut were treated with Olyset Plus.\n", - "\n", - "**Mortality**: Analysis of mortality rates revealed very high mortality of the hybrid FUMOZ-FANG strain against the PBO-based Olyset Plus net (99.1%). In contrast, lower mortality was observed for the pyrethroid-only Olyset net (56.7%). Very low mortality was observed in the untreated control net (9.9%) (Figure 1D; Table S1).\n", - "\n", - "**Blood-feeding**: The blood-feeding rate did not significantly differ when comparing the control (7.8%) to Olyset (11.6% \\(p>0.05\\)) and Olyset Plus (5.6%; \\(p>0.05\\)). However, the blood-feeding rate was higher in Olyset compared to Olyset Plus (11.6% vs. 5.6%; \\(p=0.013\\)) (Figure 1D; Table S1).\n", - "\n", - "Figure 1: Susceptibility profile of the hybrid FUMOZ-FANG strain to pyrethroids. (**A**) Net quality assessment with recorded mortalities after cone assays with Kisumu, the _An. gambiae_-susceptible lab strain, and the _An. funestus_ FUMOZ-FANG strain. (**B**) Susceptibility profile of the hybrid FUMOZ-FANG strain to type II (deltamethrin) pyrethroids and propoxur with recorded mortalities following 60 min exposure. Data are shown as mean \\(\\pm\\) SEM. (**C**) Susceptibility profile of the hybrid FUMOZ-FANG strain to deltamethrin (type II pyrethroids) and permethrin (type I pyrethroids) with recorded mortalities following 30 and 60 min exposure. Data are shown as mean \\(\\pm\\) SEM. (**D**) Proportion of mortality, blood-feeding, and exophily rate for Olyset and Olyset Plus against _An. funestus_ (crossing the FUMOZ-FANG strain (F5)). Ns = \\(p>0.05\\); * = \\(p\\leq 0.05\\); ** = \\(p\\leq 0.01\\); *** = \\(p\\leq 0.001\\).\n", - "\n", - "\n", - "\n", - "\n", - "**Exophily**: The exophily rate in the hut with Olyset net (23.7%) was significantly higher than that in the control hut (13.5%) (_p_ = 0.02), as well as than for Olyset Plus (7.5%; \\(p\\) < 0.001). No significant difference was observed between Olyset Plus and the control net (_p_ = 0.3) (Figure 1D; Table S1).\n", - "\n", - "Validating the Role of CYP6P9a/b and 6.5 kb SV in Pvrethroid Resistance in the Hybrid FUMOZ-FANG Strains before the Experimental Hut Trials\n", - "\n", - "header: 2.3.1 Impact on Mosquito Mortality: 2.3.2 CYP6P9a Impacting the Blood-Feeding\n", - "\n", - "Homozygote _CYP6P9a_-resistant mosquitoes (RR) were significantly more likely to blood-feed better than homozygote-susceptible mosquitoes (SS) (OR = 4.5; \\(p\\) < 0.01) when exposed to Olyset. Heterozygote mosquitoes (RS) were significantly worse at blood-feeding with Olyset compared to homozygote-susceptible mosquitoes (SS) (OR = 0.8; CI = 0.3-1.7; \\(p\\) = 1). Homozygote-resistant mosquitoes (RR) fed heterozygotes (OR = 5.4; CI = 2.6-10.88; \\(p\\) < 0.001) significantly better (Table S4; Figure 5C). Overall, the strength of this association was further shown by the significant ability to blood-feed when possessing a single _CYP6P9a_-resistant allele (R) compared to the susceptible allele (S) (OR = 2.3; CI = 1.3-4.1; \\(p\\) < 0.01) (Table S4). For Olyset Plus, homozygote _CYP6P9a_-resistant mosquitoes (RR) were significantly more likely to blood-feed than homozygote-susceptible mosquitoes (RS) (OR = 6.3; \\(p\\) < 0.001) when exposed to Olyset Plus. The significant ability to blood-feed was observed when possessing a single _CYP6P9a_-resistant allele (R) compared to the susceptible allele (S) (OR = 2.0; CI = 1.1-3.5; \\(p\\) = 0.03) (Table S4).\n", - "\n", - "header: 5 Conclusions\n", - "\n", - "This study reveals that insecticide resistance driven by _CYP6P9a/b_ and _6.5 kb SV_ can reduce the efficiency of Permethrin-based LLINs, such as Olyset, while PBO-based nets remain effective. However, the greater loss of efficacy observed in mosquitoes with multiple and complex resistance supports the need to introduce new products for vector control which is less reliant on pyrethroids. Meantime, PBO-based nets should be preferably deployed in areas of P450-based resistance.\n", - "\n", - "**Supplementary Materials:** The following supporting information can be downloaded at: [https://www.mdpi.com/article/10.3390/pathogens11060638/s1](https://www.mdpi.com/article/10.3390/pathogens11060638/s1), Table S1: Results of the performance of Olyset and Olyset Plus against _An. funestus_ females (crossing FUMOZ-FANG; F5) in experimental hut trial. Table S2: Correlation between _CYP6P9a and CYP6P9b_ genotypes and mosquito mortality against Olyset and Olyset Plus nets after cone assays with the FANG-FUMOZ mosquito strain. Table S3: Correlation between the _6.5Kv SV_ genotypes and mosquito mortality against Olyset and Olyset Plus nets after cone assays with the FANG-FUMOZ mosquito strain. Table S4: Correlation between genotypes of _CYP6P9a_, _CYP6P9b_ and _6.5 kb SV_ and mortality and blood-feeding after exposure to Olyset and Olyset Plus in experimental huts. Table S5: _CYP6P9a_ and _CYP6P9b_ acting together further increase the ability of _An. funestus_ to survive and blood feed against Olyset after experimental hut trial.\n", - "\n", - "**Author Contributions:** C.S.W. conceived and designed the study; L.M.J.M. and M.T. (Magellan Tchouakui) generated the lab crosses and performed the validation of the PCR; B.D.M. performed the experimental hut experiments with C.S.W. and genotyped the resistance makers with M.J.W. and M.T. (Micareme Tchoupo); B.D.M. and C.S.W. wrote the paper with assistance from M.T. (Magellan Tchouakui) and L.M.J.M. All authors have read and agreed to the published version of the manuscript.\n", - "\n", - "**Funding:** This research was funded in whole by the Welcome Trust (Senior Research Fellowship to CSW 101893/Z/13/Z and 217188/Z/19/Z). For the purpose of open access, the authors applied a CC BY public copyright license to any author who accepted a manuscript version following this submission.\n", - "\n", - "**Institutional Review Board Statement:** NA.\n", - "\n", - "**Informed Consent Statement:** NA.\n", - "\n", - "**Data Availability Statement:** NA.\n", - "\n", - "**Acknowledgments:** A big thanks to Charles Wondji for his financial support through the Wellcome Trust (Senior Research Fellowship to CSW 101893/Z/13/Z and 217188/Z/19/Z). I am also grateful to the Mibellon community.\n", - "\n", - "**Conflicts of Interest:** The authors declare that they have no competing interest.\n", - "\n", - "header: Study Site: Laboratory Strain: FUMOZ/FANG Crossing\n", - "\n", - "Previous studies revealed that the duplicated P450 _CYP6P9a/b_ and intergenic _6.5 kb sv_ is mainly found in mosquitoes from southern Africa and absent from mosquitoes collected elsewhere in Africa [31,45]. Moreover, these resistance markers have already been selected (close to fixation) in the southern African _An. funestus_ populations, preventing free-flying mosquitoes from being used in this region in order to assess their impact on LLIN efficacy, as all mosquitoes are nearly homozygote-resistant now [7]. Therefore, to evaluate the impact of these cytochrome P450, we opted to use a hybrid strain generated from two _An. funestus_ laboratory colonies: the FANG colony, a completely insecticide-susceptible colony originating from Angola, and the FUMOZ colony derived from southern Mozambique, which is highly resistant to pyrethroids and carbamates [48]. During rearing, the pupae of each strain were kept individually in Falcon tubes (15 mL), locked with a piece of cotton for individual emergence. After the emergence of pupae in the Falcon tube, the males and the females were separated. A reciprocal crossing was performed using 50 males and 50 females from the other strain. After the initial F1 generation obtained from the reciprocal crosses of the 50 males and 50 females of both strains, the hybrid strain was reared to F5 and F6 generation, presenting good segregation in all the three genotypes. The hybrid strain was then used for the release recapture experiment in the huts.\n", - "\n", - "header: 2.4.1 The Impact of CYP6P9b on Mortality: 2.4.2 CYP6P9b Impacting the Blood-Feeding\n", - "\n", - "A strong association was observed between _CYP6P9b_ genotypes and the ability to blood-feed. Homozygote-resistant mosquitoes (RR) could more successfully blood-fed when compared to homozygote-susceptible mosquitoes (SS) (OR = 10.01; CI = 4.1-24.9; \\(p\\) < 0.001) (Table S4; Figure 5F). The blood-feeding ability of heterozygote mosquitoes (RS) in the presence of Olyset was not different to that of homozygote-susceptible mosquitoes (SS) (OR = 0.8; CI = 0.3-2.2; \\(p\\) = 1). Homozygote-resistant mosquitoes (RR) could blood-feed significantly better than heterozygotes (OR = 11.1; CI = 5.3-23.03: \\(p\\) < 0.001), suggesting an additive effect. Overall, the strength of this association was further shown by the significant ability to blood fed when possessing a single _CYP6P9b_-resistant allele (R) compared to the susceptible allele (S) (OR = 4.7; CI = 2.5-8.1; \\(p\\) < 0.01) (Table S4).\n", - "\n", - "header: Susceptibility Profile of the Hybrid FUMOZ/FANG Strain to Pyrethroids\n", - "\n", - "Before assessing the impact of _CYP6P9a/b_ on the effectiveness of LLINs using the experimental huts, the resistance status of the hybrid FUMOZ-FANG was evaluated in laboratory conditions via WHO tube tests and cone tests, and the role of _CYP6P9a/b_ in terms of resistance was assessed.\n", - "\n", - "**Bioassays:** WHO bioassays were conducted with 0.05% deltamethrin and 0.1% propoxur. To generate highly resistant and highly susceptible mosquitoes, WHO bioassays were conducted with 0.75% permethrin and 0.05% deltamethrin for 30 min and 90 min. For each insecticide, four replicates of 25 mosquitoes from the hybrid strains were used. Alive mosquitoes after 90 min of exposure and dead mosquitoes after 30 min of exposure were then genotyped to establish the association between the _CYP6P9a/b_ and _6.5 kb SV_ resistance alleles and the ability of mosquitoes to survive to these insecticides.\n", - "\n", - "**Cone assays:** Cone test bioassays were conducted with a fragment of Olyset and Olyset Plus using the resistant hybrid strains FUMOZ-FANG. Five batches of 10 unfed females, aged 2-5 days old, were exposed to each bed net for three minutes. They were then transferred into the holding paper cup containers. The knockdown was checked after 60 min and the mortality after 24 h. Alive and dead mosquitoes obtained after exposure were then genotyped. The association between the _CYP6P9a/b_-resistant allele and the ability of mosquitoes to survive to these insecticides was also established.\n", - "\n", - "header: 1 Introduction\n", - "\n", - "Long-lasting insecticidal nets (LLINs) remain an important component of the malaria control strategies used to reduce mortality and morbidity due to this disease in Africa [1, 2]. Mostly insecticides belonging to the pyrethroid group, as well as more and more novel insecticides, are currently recommended for bed net impregnation [3, 4, 5]. In recent years, anopheles mosquitoes have increasingly been reported to show resistance against pyrethroids across Africa. This is the case for major vectors including _Anopheles funestus_[6, 7, 8, 9] and _Anopheles gambiae_[10, 11, 12, 13, 14]. This growing spread of resistance has led to a concern that LLINs may lose their efficacy. However, quantifying such loss of efficacy remains challenging without suitable metrics associated with resistance, highlighting the need to use robust genotype/phenotype analysis for this evaluation. At a time when national malaria control \n", - "programs across Africa are seeking to take evidence-based decisions on their choice of suitable nets to help improve malaria control, it is paramount to determine the extent to which existing resistance to pyrethroid really affects LLIN efficacy. This involves an understanding of the interaction between resistance mechanisms and mosquito responses to exposure to LLINs. Broadly speaking, pyrethroid resistance can be caused by alterations in the target site of the insecticide or enhanced enzymatic activities capable of metabolizing the insecticide before it reaches the target [15-17]. Target site resistance is well studied with mutations in the target of both pyrethroid and DDT insecticides, as well as the voltage-gated sodium channels which lead to knockdown resistance (_kdr_). The development of molecular assays more than twenty years ago made it possible to track this resistance mechanism using a simple PCR [18-21] or high throughput techniques, such as TaqMan assays [22]. It has also been possible to assess the impact of _kdr_ on control tools, notably in _An. gambiae_ where these markers are common [23-25], contrary to _An. funestus_, where it is still not detected [26]. The second best characterized cause of insecticide resistance is metabolic resistance, which is more complex to understand as it can involve the detoxification, sequestration, and transportation of insecticides or their conjugates [16,17,27]. Recent studies have focused on elucidating the genetic factors which cause the increased expression of detoxification genes associated with insecticide resistance in malaria vectors such as _An. funestus_, leading to the development of simple molecular assays used to detect metabolic resistance [28-31].\n", - "\n", - "The recent design of molecular assays for the duplicated _CYP6P9a/b_ and the associated _6.5 kb_ structural variant (SV), refs. [28,29,31] now provides a great opportunity to assess the impact of P450-based pyrethroid resistance on the efficacy of various LLINs, including pyrethroid-only (Olyset) and PBO (Olyset Plus) nets. This will provide evidence-based information on their effectiveness in the presence of a growing and escalading resistance to pyrethroids. Previous assessment of this impact on PermaNet nets made with type II pyrethroid deltamethrin has been performed [28,29,31], but this remains to be carried out for type I pyrethroid nets, such as the common permethrin-based Olyset nets.\n", - "\n", - "Here, using EHT, we show a significantly greater efficacy of the PBO-based net Olyset Plus compared to the pyrethroid-only Olyset net against pyrethroid-resistant _An. funestus_. Using the genotyping of DNA-based markers of P450 resistance, we reveal that _CYP6P9a/b_ P450-based pyrethroid resistance induces a significant loss of efficacy for pyrethroid-only net Olyset against _An. funestus_. A reduced efficacy was also detected for PBO-based net Olyset Plus, but at a lower extent than for Olyset net, revealing that PBO nets are more suitable to tackle such P450-based resistance.\n", - "\n", - "header: Table 1: Description of the long-lasting insecticidal nets used.\n", - "footer: None\n", - "columns: ['Treatment Arm', 'Description', 'Manufacturer']\n", - "\n", - "{\"0\":{\"Treatment Arm\":\"Untreated\",\"Description\":\"100% polyester with no insecticide\",\"Manufacturer\":\"Local market\"},\"1\":{\"Treatment Arm\":\"Olyset\",\"Description\":\"8.6 \\u00d7 10\\u22124 kg\\/m2 (2%) of permethrin incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"2\":{\"Treatment Arm\":\"Olyset\",\"Description\":\"8.6 \\u00d7 10\\u22124 kg\\/m2 (2%) of permethrin incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"3\":{\"Treatment Arm\":\"Olyset Plus\",\"Description\":\"8.6 \\u00d7 10\\u22124 kg\\/m2 (2%) of permethrin and 4.3 \\u00d7 10\\u22124 kg\\/m2 (1%) of PBO incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"4\":{\"Treatment Arm\":\"Olyset Plus\",\"Description\":\"8.6 \\u00d7 10\\u22124 kg\\/m2 (2%) of permethrin and 4.3 \\u00d7 10\\u22124 kg\\/m2 (1%) of PBO incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"5\":{\"Treatment Arm\":\"Olyset Plus\",\"Description\":\"8.6 \\u00d7 10\\u22124 kg\\/m2 (2%) of permethrin and 4.3 \\u00d7 10\\u22124 kg\\/m2 (1%) of PBO incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"}}\n", - "\n", - "header: Impact of CYP6P9a on the Efficacy of Olyset and Olyset plus Nets Using Experimental Hut Trial\n", - "\n", - "Genotyping of the _CYP6P9a_ marker allowed us to assess the impact of P450-based metabolic resistance on the loss of efficacy of Olyset, but not for Olyset Plus, since most of the mosquitoes released in Olyset Plus huts died. To avoid confounding effects from blood-feeding, or net entry or exophily status, the distribution of the _CYP6P9a_ genotypes was assessed firstly only among unfed mosquitoes collected in the room. This revealed a highly significant difference in the frequency of the three genotypes between the dead and alive mosquitoes (chi-square = 28.8; \\(p\\) < 0.0001) (Figure 5). Analysis of the correlation between each genotype and mortality revealed that _CYP6P9a_ homozygous-resistant mosquitoes (RR) show an increased ability to survive exposure to the Olyset when compared to homozygote-susceptible mosquitoes (SS) with (OR = 5.0; CI = 2.01-12.4; \\(p\\) = 0.001). The strength of this association was further shown by the significant ability to survive exposure when possessing a single _CYP6P9a_-resistant allele (R) compared to the susceptible allele (S) (OR = 2.04; CI = 1.1-3.6; \\(p\\) < 0.05). However, heterozygote mosquitoes (RS) did not survive exposure to Olyset better than homozygote-susceptible mosquitoes (SS) (OR = 1.8; CI = 0.8-3.9; \\(p\\) > 0.05) (Figure 5A; Table S4; Figure 5B).\n", - "\n", - "Figure 5: Impact of both _CYP6P9a_ and _CYP6P9b_ on the efficacy of bed nets in the experimental hut trial. (**A**) Genotype distribution of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset, showing strong association (RR vs. SS: \\(p\\) < 0.001). (**B**) Allelic frequency of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset with experimental hut trial, showing the significant ability of the _CYP6P9a_R_–resistant mosquitoes to survive compared to their susceptible counterparts _CYP6P9a_S_. (**C**) Association between _CYP6P9a_ and ability to blood-feed when exposed to Olyset. The _CYP6P9a_–R allele increases the strength of resistant mosquitoes by taking a blood meal in contrast to the susceptible ones when exposed to Olyset net. (**D**) Association between _CYP6P9b_ and ability to survive exposure to Olyset in the experimental hut trial. (**E**) Allelic frequency of _CYP6P9b_ between alive and dead mosquitoes after exposure to Olyset with the experimental hut trial, showing the significant ability of the _CYP6P9b_R_–resistant mosquitoes to survive compared to their susceptible counterparts _CYP6P9b_S_. (**F**) Association between _CYP6P9b_ gene and ability to blood-feed when exposed to Olyset in the experimental hut trial. The _CYP6P9b_-R allele increases the strength of resistant mosquitoes by taking a blood meal in contrast to the susceptible ones when exposed to Olyset.\n", - "\n", - "header: 2.2.2 Validating the Role of CYP6P9b_R_ Using Sample from WHO Tube Assays\n", - "\n", - "To confirm the ability of the _CYP6P9b_R_ allele to predict pyrethroid resistance phenotype in the hybrid strain FUMOZ-FANG, the F5 samples were genotyped. This revealed that those that stayed alive after exposure to permethrin for 90 minutes are mainly homozygote\n", - "\n", - "Figure 2: Association between the _CYP6P9a/b_ and the ability to survive exposure to Olyset nets after WHO tubes cone assays. (**A**) Tube assay _CYP6P9a_ and mortality. Role of _CYP6P9a_ in pyrethroid resistance with samples from the WHO tube. Distribution of the _CYP6P9a_ genotypes according to resistance phenotypes. (**B**) Tube assay _CYP6P9b_ and mortality. Role of _CYP6P9b_ in pyrethroid resistance with samples from the WHO tube. Distribution of the _CYP6P9b_ genotypes according to resistance phenotypes. (**C**) Cone assay _CYP6P9a_ and mortality. Genotype distribution of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset with the cone test, showing the significant ability of mosquitoes carrying the RR genotype in order to survive compared to SS (RR vs. SS: \\(p\\) < 0.001). (**D**) Cone assay _CYP6P9a_ and mortality allele. Allelic frequency of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset with the cone test, showing the significant ability of the _CYP6P9a_R_-resistant mosquitoes to survive compared to their susceptible counterparts _CYP6P9a_S_. (**E**) Cone assay _CYP6P9b_ and mortality. Genotype distribution of _CYP6P9b_ between alive and dead mosquitoes after exposure to Olyset using the cone test, showing strong association (RR vs. SS: \\(p\\) < 0.001).\n", - "\n", - "\n", - "resistant (20.8%) and heterozygotes (75%), with only two being homozygote-susceptible. Among the 47 mosquitoes found dead after 30 min exposure to permethrin (highly susceptible), 97.87% were found to be homozygote-susceptible, and one remaining was a heterozygote (Figure 2B). A strong association was perceived between permethrin resistance and the _CYP6P9b_ genotypes when comparing RR vs. SS (OR = infinity; \\(p\\) < 0.0001) and RS vs. SS (OR = 715; \\(p\\) < 0.0001).\n", - "\n", - "2.3 Validation of the Role of CYP6P9a and CYP6P9b in Conferring Resistance Using Samples from Cone Assays\n", - "\n", - "Using dead and alive mosquitoes obtained after cone assays, _CYP6P9a_ homozygous-resistant mosquitoes (RR) and heterozygous (RS) could survive significantly better following exposure to Olyset and Olyset Plus than homozygote-susceptible mosquitoes (Table S2). Olyset shows a strong association between the resistance alleles and the ability to survive when comparing RR vs. SS (OR = 35.1; \\(p\\) < 0.0001) and RS vs. SS (OR = 34.6; \\(p\\) < 0.0001) for _CYP6P9a_ (Figure 2C). The same trend was observed when looking at the allelic frequency R vs. S (OR = 7.7; \\(p\\) < 0.05) (Table S2; Figure 2D). Concerning _CYP6P9b_, homozygous-resistant mosquitoes (RR) and heterozygous (RS) could also survive significantly better following survive exposure to Olyset net. A strong association was noticed between the gene and the ability to survive when comparing RR to SS (OR = 32.4; \\(p\\) < 0.0001) and RS vs. SS (OR = 97.3; \\(p\\) < 0.0001) (Table S2; Figure 2E).\n", - "\n", - "Olyset Plus shows a strong association between the resistance alleles and the ability to survive when comparing RR vs. SS (OR = 6.4; \\(p\\) < 0.001) and RS vs. SS (OR = 7.2; \\(p\\) < 0.001) for _CYP6P9a_ (Table S2; Figure 3A). The same trend was observed when looking at the allelic frequency R vs. S (OR = 2.0; \\(p\\) = 0.05) (Table S2; Figure 3B). Concerning the _CYP6P9b_, Olyset Plus equally shows a strong association between the resistance alleles and the ability to survive when comparing RR vs. SS (OR = 9.7; \\(p\\) < 0.001) and RS vs. SS (OR = 17.9; \\(p\\) < 0.001) for _CYP6P9b_ (Table S2; Figure 3C). The same trend was observed when looking at the allelic frequency R vs. S (OR = 2.2; \\(p\\) = 0.01) (Table S2).\n", - "\n", - "Figure 3: Association between the _CYP6P9a/b_ and the ability to survive exposure to Olyset Plus nets after cone assays. (**A**) Genotype distribution of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset Plus with the cone test, showing the significant ability of the mosquitoes to carry the RR genotype to survive compared to SS (_p_ < 0.001). (**B**) Allelic frequency of _CYP6P9a_ between alive and dead mosquitoes after exposure to Olyset Plus with the cone test, showing the significant ability of the _CYP6P9a_R_–resistant mosquitoes to survive compared to their susceptible counterparts _CYP6P9a_S_. (**C**) Genotype distribution of _CYP6P9b_ between alive and dead mosquitoes after exposure to Olyset Plus using the cone test, showing the significant ability of the mosquitoes carrying the RR genotype to survive compared to SS (_p_ < 0.001).\n", - "\n", - "header: Resistance Escalation with Multiple Resistance Alleles Present a Greater Risk of Control Failure\n", - "\n", - "This study confirms the findings by [28], suggesting that the _6.5 kb SV_ acts as an enhancer for nearby duplicated P450 genes _CYP6P9a_ and _CYP6P9b_, leading to their increased overexpression, thus creating greater resistance. This _6.5 kb SV_ is strongly associated with an aggravation of pyrethroid resistance, which reduces the efficacy of pyrethroid-only nets. The fixation of this _6.5 kb SV_, besides the resistant alleles of _CYP6P9a_ and _CYP6P9b_, could explain the resistance escalation currently observed against the _An. funestus_ population from the southern part of Africa reducing the efficacy of bed nets [7,41].\n", - "\n", - "This study revealed that multiple and complex resistance combining elevated expression (_CYP6P9a/b_) [45], as well as the selection of cis-regulatory motifs for transcription binding sites (CnCC/MAF) [31], coupled with structural variations such as the _6.5 kb_, which is known to be enriched with several regulatory elements [28], can lead to a greater reduction in bed net efficacy. The fact that triple homozygote-resistant mosquitoes could survive better against exposure to pyrethroid-only nets compared to all genotypes reveals the greater risk that an unabated increase in resistance can likely lead to the failure of insecticide-based interventions, as predicted by the WHO global plan for insecticide resistance management. This calls for novel nets which do not rely on pyrethroids in the future. However, the impact of these resistance alleles on the efficacy of LLINs in natural populations remains to be established, as we only performed a test with a hybrid strain from two laboratory strains. This work must be urgently carried out, particularly as the molecular tools are increasingly available.\n", - "\n", - "header: Impact of CYP6P9b on the Efficacy of Olyset and Olyset plus Nets Using Experimental Hut Trial\n", - "\n", - "The impact of _CYP6P9b_ genotypes on the ability of mosquitoes to survive exposure to Olyset was firstly evaluated on the unfed samples collected only in the room. This investigation showed that the three genotypes were significantly different in their distributions (chi-square = 23.4; \\(p\\) < 0.0001) (Figure 5). Analysis of the correlation between each genotype and mortality revealed that _CYP6P9b_ homozygous-resistant mosquitoes (RR) show an increased ability to survive exposure to the Olyset when compared to homozygote-susceptible mosquitoes (SS) (OR = 15.0; CI = 4.5-50.3; \\(p\\) < 0.001) (Figure 5D). Heterozygote mosquitoes (RS) survived exposure to Olyset significantly better than homozygote-susceptible mosquitoes (SS) (OR = 6; CI = 1.9-18.75; \\(p\\) < 0.001). Homozygote-resistant mosquitoes (RR) struggled to survive compared to heterozygotes (OR = 2.4; CI = 1.2-4.8; \\(p\\) = 1) when considering samples from the room only. On the other hand, when considering all the samples, the additive resistance conferred by each allele of _CYP6P9b_ was shown by the fact that homozygote-resistant mosquitoes (RR) could survive significantly better than heterozygotes (OR = 2.5; CI = 1.3-4.8; \\(p\\) < 0.01). Moreover, the strength of this association was further shown by the significant ability to survive exposure when possessing a single _CYP6P9b_-resistant allele (R) compared to the susceptible allele (S) (OR = 2.5; CI = 1.4-4.5; \\(p\\) < 0.01) (Table S4; Figure 5E). The same trend showing a strong association between the _CYP6P9b_ genotypes and the mortality was also observed when analyzing all the samples dead and alive, including the blood-fed mosquitoes and the one collected in the veranda (Table S4).\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `EntomologicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `EntomologicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `EntomologicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}, \"Start_month\": {\"title\": \"Start Month\", \"description\": \"Numerical start month of the reporting period (some studies may report multiple time periods)\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}, \"Time_elapsed\": {\"title\": \"Time Elapsed\", \"description\": \"For longitudinal studies: how long since the start of the study, in units of months?Report this value only if explicitly stated in the text.\"}, \"Blood_meal_count\": {\"title\": \"Blood Meal Count\", \"description\": \"Count of blood meals taken by mosquitos over observation period. This is a proxy for time, as mosquitoes in the study were fed blood meals once a week and oviposition recorded at each time step.\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Hut trial\",\"Country\":\"Cameroon\",\"Site\":\"Yaounde\",\"Start_month\":1,\"Start_year\":2023,\"End_month\":6,\"End_year\":2023,\"Time_elapsed\":5.0,\"Blood_meal_count\":4.0},\"S02\":{\"Study_type\":\"Bioassay, WHO cylinder test\",\"Country\":\"Mozambique\",\"Site\":\"Lab facility\",\"Start_month\":2,\"Start_year\":2023,\"End_month\":5,\"End_year\":2023,\"Time_elapsed\":3.0,\"Blood_meal_count\":null}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Concentration_initial\": {\"title\": \"Insecticide concentration (initial)\", \"description\": \"Enter the initial concentration of the insecticide(s) for net type at the time of distribution.\"}, \"Synergist\": {\"title\": \"Synergist\", \"description\": \"Enter the synergist or synergists combination (delimited by comma).\"}, \"Synergist_concentration\": {\"title\": \"Synergist concentration (measured)\", \"description\": \"Enter the measured concentration of the synergist.\"}, \"pHI_category\": {\"title\": \"Phi Category\", \"description\": \"Classification of the nets holed surface area, as one of \\\"Good\\\", \\\"Damaged\\\", \\\"Torn\\\", \\\"Serviceable\\\", or \\\"All\\\", as proposed by WHO\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"Untreated\",\"pHI_category\":\"Good\",\"Insecticide\":null,\"Concentration_initial\":null,\"Synergist\":null,\"Synergist_concentration\":null},\"N02\":{\"Net_type\":\"Olyset\",\"pHI_category\":\"Good\",\"Insecticide\":\"Permethrin\",\"Concentration_initial\":\"8.6 \\u00d7 10\\u207b\\u2074 kg\\/m\\u00b2 (2%)\",\"Synergist\":null,\"Synergist_concentration\":null},\"N03\":{\"Net_type\":\"Olyset Plus\",\"pHI_category\":\"Good\",\"Insecticide\":\"Permethrin\",\"Concentration_initial\":\"8.6 \\u00d7 10\\u207b\\u2074 kg\\/m\\u00b2 (2%)\",\"Synergist\":\"PBO\",\"Synergist_concentration\":\"4.3 \\u00d7 10\\u207b\\u2074 kg\\/m\\u00b2 (1%)\"}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Trial 2.\n", - "\n", - "1. Untreated net.\n", - "2. PermaNet 3.0 (Vestergaard Sarl).\n", - "3. Bendiocarb IRS applied at 400 mg/m2 (Ficam 80WP, Bayer).\n", - "4. PermaNet 3.0 + Bendiocarb IRS applied at 400 mg/m2.\n", - "5. Pirimiphos-methyl IRS applied at 1000 mg/m2 (Actellic 300CS, Syngenta).\n", - "6. PermaNet 3.0 + Pirimiphos-methyl IRS applied at 1000 mg/m2.\n", - "\n", - "Olyset Plus and PermaNet 3.0 are WHO prequalified pyrethroid-PBO ITNs [3]. Olyset Plus is made of polyethylene filaments coated with 20 g/Kg of permethrin and 10 g/Kg of PBO. PermaNet 3.0 consists of polyester side panels coated with deltamethrin at 2.1 g/kg and a polyethylene roof panel incorporating deltamethrin and PBO at 4.0 g/kg and 25 g/kg respectively.\n", - "\n", - "header: Tunnel tests\n", - "\n", - "The tunnel test consists of a square glass cylinder (25 cm high, 25 cm wide, 60 cm in length) divided into two sections using a netting frame fitted into a slot across the tunnel. In one of the sections, a guinea pig was housed unconstrained in a small cage, and in the other section, -100 unfed female mosquitoes aged 5-8 days were released at dusk and left overnight. The net samples were deliberately hoked with nine 1-cm holes to give opportunity for mosquitoes to penetrate the animal bathed chamber for a blood meal an untreated net sample served as the control. The tunnels were kept overnight in a dark room at 25-29 oC and 65-85% RH. The next morning, the numbers of mosquitoes found alive or dead, fed or unfed, in each section were scored. Live mosquitoes were provided with 10% glucose solution and delayed mortality was recorded after 24 h. The pyrethroid-PBO ITNs were compared to Olyset Net (a permethrin-only net, Sumitomo chemical) and PermaNet 2.0 (a deltamethrin-only net, Vestergaard Sarl) and an untreated control net. Two to three net pieces were tested per net type.\n", - "\n", - "header: Table 3: Blood-feeding results of wild, pyrethroid-resistant Anopheles gambiae sensu lato exposed to pyrethroid-PBO ITNs and pirimiphos-methyl IRS applied alone and in combination in experimental huts in Cové, southern Benin.\n", - "footer: Results are presented separately for the trials involving Olgest Plus (Trial 1) and PermaNet 3.0 (Trial 2). ‘For each trial, values on this column sharing a superscript letter do not differ significantly, P > 0.05, logistic regression.\n", - "columns: ['Treatment', 'Total females caught', 'Total blood-fed', '% blood-feeding', '95% CIs', '% blood-feeding inhibition', '% personal protection']\n", - "\n", - "{\"0\":{\"Treatment\":\"Trial 1\",\"Total females caught\":\"Trial 1\",\"Total blood-fed\":\"Trial 1\",\"% blood-feeding\":\"Trial 1\",\"95% CIs\":\"Trial 1\",\"% blood-feeding inhibition\":\"Trial 1\",\"% personal protection\":\"Trial 1\"},\"1\":{\"Treatment\":\"Untreated net\",\"Total females caught\":\"664\",\"Total blood-fed\":\"481\",\"% blood-feeding\":\"72a\",\"95% CIs\":\"69\\u201376\",\"% blood-feeding inhibition\":\"\\u2013\",\"% personal protection\":\"\\u2013\"},\"2\":{\"Treatment\":\"Olyset plus\",\"Total females caught\":\"511\",\"Total blood-fed\":\"122\",\"% blood-feeding\":\"24b\",\"95% CIs\":\"20\\u201328\",\"% blood-feeding inhibition\":\"67\",\"% personal protection\":\"75\"},\"3\":{\"Treatment\":\"Benedicarb IRS\",\"Total females caught\":\"556\",\"Total blood-fed\":\"528\",\"% blood-feeding\":\"95c\",\"95% CIs\":\"93\\u201397\",\"% blood-feeding inhibition\":\"\\u201331\",\"% personal protection\":\"\\u2013 10\"},\"4\":{\"Treatment\":\"Olyset Plus + bendicarb IRS\",\"Total females caught\":\"288\",\"Total blood-fed\":\"64\",\"% blood-feeding\":\"22b\",\"95% CIs\":\"17\\u201327\",\"% blood-feeding inhibition\":\"69\",\"% personal protection\":\"87\"},\"5\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught\":\"531\",\"Total blood-fed\":\"420\",\"% blood-feeding\":\"79d\",\"95% CIs\":\"76\\u201383\",\"% blood-feeding inhibition\":\"\\u20139\",\"% personal protection\":\"13\"},\"6\":{\"Treatment\":\"Olyset Plus + P-methyl IRS\",\"Total females caught\":\"304\",\"Total blood-fed\":\"47\",\"% blood-feeding\":\"16e\",\"95% CIs\":\"11\\u201320\",\"% blood-feeding inhibition\":\"79\",\"% personal protection\":\"90\"},\"7\":{\"Treatment\":\"Trial 2\",\"Total females caught\":\"Trial 2\",\"Total blood-fed\":\"Trial 2\",\"% blood-feeding\":\"Trial 2\",\"95% CIs\":\"Trial 2\",\"% blood-feeding inhibition\":\"Trial 2\",\"% personal protection\":\"Trial 2\"},\"8\":{\"Treatment\":\"Untreated net\",\"Total females caught\":\"581\",\"Total blood-fed\":\"391\",\"% blood-feeding\":\"67u\",\"95% CIs\":\"64\\u201371\",\"% blood-feeding inhibition\":\"\\u2013\",\"% personal protection\":\"\\u2013\"},\"9\":{\"Treatment\":\"PermaNet 3.0\",\"Total females caught\":\"488\",\"Total blood-fed\":\"115\",\"% blood-feeding\":\"24v\",\"95% CIs\":\"20\\u201327\",\"% blood-feeding inhibition\":\"65\",\"% personal protection\":\"71\"},\"10\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught\":\"575\",\"Total blood-fed\":\"519\",\"% blood-feeding\":\"90w\",\"95% CIs\":\"88\\u201393\",\"% blood-feeding inhibition\":\"\\u201334\",\"% personal protection\":\"\\u2013 33\"},\"11\":{\"Treatment\":\"PermaNet 3.0 + bendiocarb IRS\",\"Total females caught\":\"233\",\"Total blood-fed\":\"54\",\"% blood-feeding\":\"23v\",\"95% CIs\":\"18\\u201329\",\"% blood-feeding inhibition\":\"66\",\"% personal protection\":\"86\"},\"12\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught\":\"450\",\"Total blood-fed\":\"406\",\"% blood-feeding\":\"90w\",\"95% CIs\":\"88\\u201393\",\"% blood-feeding inhibition\":\"\\u201334\",\"% personal protection\":\"\\u2013 4\"},\"13\":{\"Treatment\":\"PermaNet 3.0 + P-methyl IRS\",\"Total females caught\":\"223\",\"Total blood-fed\":\"55\",\"% blood-feeding\":\"25v\",\"95% CIs\":\"19\\u201330\",\"% blood-feeding inhibition\":\"63\",\"% personal protection\":\"86\"},\"14\":{\"Treatment\":\"PermaNet 3.0 + P-methyl IRS\",\"Total females caught\":\"223\",\"Total blood-fed\":\"55\",\"% blood-feeding\":\"25v\",\"95% CIs\":\"19\\u201330\",\"% blood-feeding inhibition\":\"63\",\"% personal protection\":\"86\"}}\n", - "\n", - "header: 3.2.2 Tumed test bioassays.\n", - "\n", - "To further assess the efficacy of the pyrethroid-PBO ITNs and help explain the findings in the experimental huts, tunnel tests were performed using the susceptible _An. gambiae_ Kisum strain and pyrethroid-resistant _An. gambiae_ as from Cove on net samples (30 x 30 cm) obtained from Olyset Plus and Permaket 3.0 nets. The tunnel test is an overnight animal baulesar what simulates host-seeking behaviour of vector mosquitoes under controlled laboratory conditions. Both pyrethroid-PBO ITNs were compared to pyrethroid-only nets which contained similar pyrethroid-insecticles (Olyset Net and Permaket 2.0). Mosquito mortality rates observed in the tunnels are presented in Fig. 3. Mortality in the control tunnels was 11% with the susceptible Kisum strain and 2% with the pyrethroid-resistant Cove strain. All ITN types induced >8% mortality with the susceptible Kisum strain. Olyset Plus killed significantly higher proportions of the Cove mosquitoes compared to Olyset Net (90% vs. 42%). With Permaket 3.0, mortality of Cove mosquitoes exposed to net prices obtained from the PBO treated root of the net (68%) was higher compared to net prices obtained from the sides of the net (34%) and Permaket 2.0 (27%). The results, therefore, showed higher levels of mortality against pyrethroid-resistant mosquitoes from the Cove experimental hut station with the pyrethroid-PBO ITNs relative to pyrethroid-only nets. More detailed results from the tunnel tests are available in the supplementary information (Table S1).\n", - "\n", - "header: Table 2. Entry and exiting of wild, pyrethroid-resistant Anopheles gambiae sensu lato in experimental huts in Covè, southern Benin treated with pyrethroid-PBO ITNs and pirimiphos-methyl IRS applied alone and in combination.\n", - "footer: Results are presented separately for the trials involving Olyset Plus (Trial 1) and PermaNet 3.0 (Trial 2). *For each trial, values on this column sharing a superscript letter do not di\u001d\n", - "er signi\u001fcantly, P>0.05, negative binomial regression for females caught and logistic regression for exophily.\n", - "columns: ['Treatment', 'Total females caught*', '% deterrence', 'Total exiting', '% exophily*', '95% CIs']\n", - "\n", - "{\"0\":{\"Treatment\":\"Trial 1\",\"Total females caught*\":\"Trial 1\",\"% deterrence\":\"Trial 1\",\"Total exiting\":\"Trial 1\",\"% exophily*\":\"Trial 1\",\"95% CIs\":\"Trial 1\"},\"1\":{\"Treatment\":\"Untreated net\",\"Total females caught*\":\"664a\",\"% deterrence\":\"-\",\"Total exiting\":\"241\",\"% exophily*\":\"36a\",\"95% CIs\":\"33\\u201340\"},\"2\":{\"Treatment\":\"Olyset plus\",\"Total females caught*\":\"511a\",\"% deterrence\":\"23\",\"Total exiting\":\"390\",\"% exophily*\":\"76b\",\"95% CIs\":\"73\\u201380\"},\"3\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught*\":\"556a\",\"% deterrence\":\"16\",\"Total exiting\":\"282\",\"% exophily*\":\"51c\",\"95% CIs\":\"47\\u201355\"},\"4\":{\"Treatment\":\"Olyset Plus + bendiocarb IRS\",\"Total females caught*\":\"288b\",\"% deterrence\":\"57\",\"Total exiting\":\"228\",\"% exophily*\":\"79b\",\"95% CIs\":\"75\\u201384\"},\"5\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught*\":\"531a\",\"% deterrence\":\"20\",\"Total exiting\":\"281\",\"% exophily*\":\"53c\",\"95% CIs\":\"49\\u201357\"},\"6\":{\"Treatment\":\"Olyset plus + P-methyl IRS\",\"Total females caught*\":\"304b\",\"% deterrence\":\"54\",\"Total exiting\":\"270\",\"% exophily*\":\"89d\",\"95% CIs\":\"85\\u201392\"},\"7\":{\"Treatment\":\"Trial 2\",\"Total females caught*\":\"Trial 2\",\"% deterrence\":\"Trial 2\",\"Total exiting\":\"Trial 2\",\"% exophily*\":\"Trial 2\",\"95% CIs\":\"Trial 2\"},\"8\":{\"Treatment\":\"Untreated net\",\"Total females caught*\":\"581u\",\"% deterrence\":\"-\",\"Total exiting\":\"226\",\"% exophily*\":\"39u\",\"95% CIs\":\"35\\u201343\"},\"9\":{\"Treatment\":\"PermaNet 3.0\",\"Total females caught*\":\"488u\",\"% deterrence\":\"16\",\"Total exiting\":\"369\",\"% exophily*\":\"76v\",\"95% CIs\":\"72\\u201379\"},\"10\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught*\":\"575u\",\"% deterrence\":\"1\",\"Total exiting\":\"360\",\"% exophily*\":\"63w\",\"95% CIs\":\"59\\u201367\"},\"11\":{\"Treatment\":\"PermaNet 3.0 + bendiocarb IRS\",\"Total females caught*\":\"233v\",\"% deterrence\":\"60\",\"Total exiting\":\"185\",\"% exophily*\":\"79v\",\"95% CIs\":\"74\\u201385\"},\"12\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught*\":\"450u\",\"% deterrence\":\"23\",\"Total exiting\":\"311\",\"% exophily*\":\"69x\",\"95% CIs\":\"65\\u201373\"},\"13\":{\"Treatment\":\"PermaNet 3.0 + P-methyl IRS\",\"Total females caught*\":\"223v\",\"% deterrence\":\"62\",\"Total exiting\":\"195\",\"% exophily*\":\"87y\",\"95% CIs\":\"83\\u201392\"}}\n", - "\n", - "header: scientific reports: Abstract\n", - "\n", - "OPEN : Pyrethroid-piperonyl butoxide (PBO) nets reduce the efficacy of indoor residual spraying with pirimiphos-methyl against pyrethroid-resistant malaria vectors\n", - "\n", - "Thomas Syme, Mariai Ghegbo, Dorothy Obuobi, Augustin Fongnikin, Abel Agbevo, Damien Todjinou, & Corine Ngufori\n", - "\n", - "\n", - "Primiphos-methyl is a pro-insecticide requiring activation by mosquito cytochrome P450 enzymes to induce toxicity while PBO blocks activation of these enzymes in pyrethroid-resistant vector mosquitoes. PBO may thus antagonise the toxicity of pirimiphos-methyl IRS when combined with pyrethroid-PBO ITMs. The impact of combining Olyset Plus and PermaNet 3.0 with Actellite 300CS IRS was evaluated against pyrethroid-resistant _Anopheles gambiae_ s.l. in two parallel experimental hut trials in southern Benin. The vector population was resistant to pyrethroids and PBO pre-exposure partially restored deltamethrin toxicity but not permitting. Mosquito mortality in experimental huts was significantly improved in the combinations of bendicocarp IRS with pyrethroid-PBO ITMs (33-3896) compared to bendicocarp IRS alone (14-16%, p < 0.001), demonstrating an additive effect. Conversely, mortality was significantly reduced in the combinations of pirimiphos-methyl IRS with pyrethroid-PBO ITMs (55-59%) compared to pirimiphos-methyl IRS alone (77-78%, p < 0.001), demonstrating evidence of an antagonistic effect when both interventions are applied in the same household. Mosquito mortality in the combination was significantly higher compared to the pyrethroid-PBO ITMs alone (55-59% vs. 22-26% p < 0.001) showing potential of pirimiphos-methyl IRS to enhance vector control when deployed to complement pyrethroid-PBO ITMs in an area where PBO fails to fully restore susceptibility to pyrethroids.\n", - "\n", - "header: Conclusion\n", - "\n", - "Our study provides the first evidence of an antagonistic effect when pyrethroid-PBO ITNs are combined with pirimphos-methyl IRS in the same household resulting in lower levels of vector mosquito mortality compared to the IRS alone. In line with WHO recommendations, vector control programmes faced with multiple choice of ITN types to deploy as an additional intervention to improve vector control impact in an area dedicated to IRS with pirimphos-methyl, may consider other types of ITNs like pyrethroid-ITNs which can better complement pirimphos-methyl IRS when deployed together. Nevertheless, the pyrethroid-PBO ITNs performed poorly probably due to the lower levels of restoration of pyrethroid susceptibility with PBO in the vector population. Combining these nets with pirimphos-methyl IRS provided significantly improved vector control compared to the net alone demonstrating the potential for pirimphos-methyl IRS to enhance malaria control when deployed to complement pyrethroid-PBO ITNs in areas where PBO fails to fully restore susceptibility to pyrethroids.\n", - "\n", - "header: Table 4.Mortality results of wild, pyrethroid-resistant Anopheles gambiae sensu lato in experimental huts in Covè, southern Benin treated with pyrethroid-PBO ITNs, and pirimiphos-methyl IRS applied alone and in combination.\n", - "footer: Results are presented separately for the trials involving Olyset Plus (Trial 1) and PermaNet 3.0 (Trial 2). *For each trial, values on this column sharing a superscript letter do not di\u001d\n", - "er signi\u001fcantly, p>0.05, logistic regression\n", - "columns: ['Treatment', 'Total females caught', 'Total dead', '% mortality*', '95% CIs']\n", - "\n", - "{\"0\":{\"Treatment\":\"Trial 1\",\"Total females caught\":\"Trial 1\",\"Total dead\":\"Trial 1\",\"% mortality*\":\"Trial 1\",\"95% CIs\":\"Trial 1\"},\"1\":{\"Treatment\":\"Untreated net\",\"Total females caught\":\"664\",\"Total dead\":\"22\",\"% mortality*\":\"3a\",\"95% CIs\":\"2\\u20135\"},\"2\":{\"Treatment\":\"Olyset Plus\",\"Total females caught\":\"511\",\"Total dead\":\"114\",\"% mortality*\":\"22b\",\"95% CIs\":\"19\\u201326\"},\"3\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught\":\"556\",\"Total dead\":\"87\",\"% mortality*\":\"16c\",\"95% CIs\":\"13\\u201319\"},\"4\":{\"Treatment\":\"Olyset Plus + Bendiocarb IRS\",\"Total females caught\":\"288\",\"Total dead\":\"95\",\"% mortality*\":\"33d\",\"95% CIs\":\"28\\u201338\"},\"5\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught\":\"531\",\"Total dead\":\"411\",\"% mortality*\":\"77e\",\"95% CIs\":\"74\\u201381\"},\"6\":{\"Treatment\":\"Olyset Plus + P-methyl IRS\",\"Total females caught\":\"304\",\"Total dead\":\"178\",\"% mortality*\":\"59f\",\"95% CIs\":\"53\\u201364\"},\"7\":{\"Treatment\":\"Trial 2\",\"Total females caught\":\"Trial 2\",\"Total dead\":\"Trial 2\",\"% mortality*\":\"Trial 2\",\"95% CIs\":\"Trial 2\"},\"8\":{\"Treatment\":\"Untreated net\",\"Total females caught\":\"581\",\"Total dead\":\"12\",\"% mortality*\":\"2u\",\"95% CIs\":\"1\\u20133\"},\"9\":{\"Treatment\":\"PermaNet 3.0\",\"Total females caught\":\"488\",\"Total dead\":\"127\",\"% mortality*\":\"26v\",\"95% CIs\":\"22\\u201330\"},\"10\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught\":\"575\",\"Total dead\":\"80\",\"% mortality*\":\"14w\",\"95% CIs\":\"11\\u201317\"},\"11\":{\"Treatment\":\"PermaNet 3.0 + Bendiocarb IRS\",\"Total females caught\":\"233\",\"Total dead\":\"89\",\"% mortality*\":\"38x\",\"95% CIs\":\"32\\u201344\"},\"12\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught\":\"450\",\"Total dead\":\"350\",\"% mortality*\":\"78y\",\"95% CIs\":\"74\\u201382\"},\"13\":{\"Treatment\":\"PermaNet 3.0 + P-methyl IRS\",\"Total females caught\":\"223\",\"Total dead\":\"122\",\"% mortality*\":\"55z\",\"95% CIs\":\"48\\u201361\"}}\n", - "\n", - "header: Materials and methods\n", - "\n", - "Adult F1 progeny of field-collected _An. gambiae_ s.l. from the Cove hut station were exposed to filter papers treated with discriminating doses of deltamethrin (0.05%), permethrin (0.75%), benchicaro (0.1%) and pirimphos-methyl (0.25%) in WHO cylinders8. Deltamethrin and perme-thrin were also tested with 60 min pre-exposure to PBO (4%) to assess the involvement of metabolic enzymes in pyrethroid resistance. A comparison was made with the laboratory-maintained, susceptible _An. gambiae_ s.s. Kisumu strain. Approximately 100, 3-5-day old mosquitoes of each strain were exposed to each insecticide for 60 min in four batches of 20-25. Similar numbers of mosquitoes were concurrently exposed to untreated filter papers as a control. At the end of exposure, mosquitoes were transferred to appropriately labelled holding tubes, provided access to 10% (w/v) glucose solution, and held at 27 +- 2degC and 75 +- 10% relative humidity. Knockdown was recorded 60 min after exposure and delayed mortality after 24 h for all treatments. The insecticide-treated filter papers were obtained from Universiti Sains Malaysia.\n", - "\n", - "header: Study site and experimental hut treatments.: Trial 1.\n", - "\n", - "1. Untreated net.\n", - "2. Olyset Plus (Sumitomo Chemical).\n", - "3. Bendiocarb IRS applied at 400 mg/m2 (Ficam 80WP, Bayer).\n", - "4. Olyset Plus + Bendiocarb IRS applied at 400 mg/m2.\n", - "5. Pirimiphos-methyl IRS applied at 1000 mg/m2 (Actellic 300CS, Syngenta).\n", - "6. Olyset Plus + Pirimiphos-methyl IRS applied at 1000 mg/m2.\n", - "\n", - "header: Experimental hut results.\n", - "\n", - "_Mosquito entry and exiting in experimental huts._\n", - "\n", - "A total of 5,404 wild female _An. gambiae_ s.l. were collected in the experimental huts over the 4-month trials (Table 2). In both trials, mosquito entry in huts with the pyrethroid-PBO ITN alone and IRS treatments alone did not differ significantly from the controls (p > 0.05) but was significantly reduced with the pyrethroid-PBO ITN plus IRS combinations compared to the single treatments (p < 0.01). Mosquito entry rates did not also differ between the combinations of the pyrethroid-PBO ITN with bendiocarb IRS relative to the combinations with pirimiphos-methyl IRS (p < 0.05). Nevertheless, IRS treatments could not be rotated and thus, treatment-induced deterrence cannot be fully distinguished from differential attractiveness due to hut position.\n", - "\n", - "The proportion of mosquitoes exiting into the veranda of the huts with the untreated net controls was 36% and 39% for Trials 1 and 2 respectively. Exiting rates were higher with the pyrethroid-PBO ITNs alone (76%) relative to the IRS insecticides alone (51-63% with bendiocarb and 53-69% with pirimiphos-methyl IRS, p < 0.005). In both trials, the highest levels of mosquito exiting were achieved with the pyrethroid-PBO ITN plus IRS combinations (79% with bendiocarb and 87-89% with pirimiphos-methyl IRS). Between the combinations, adding\n", - "primiphos-methyl IRS to the pyrethroid-PBO ITN provided significantly higher levels of mosquito exiting relative to adding bendicord IRS (87-89% vs. 79%, P < 0.05).\n", - "\n", - "Blood-feeding rates of wild malaria vector mosquitoes in experimental huts.Blood-feeding rates in huts with the untreated net controls were 72% and 67% for Trials 1 and 2 respectively (Table 3). The IRS treatments did not provide any blood-feeding inhibition relative to the controls. Blood-feeding inhibition rates were high with the pyrethroid-PBO ITN plus IRS combinations in both trials (69-79% with Olyst Plus and 63-66% with PermaNet 3.0) and this was generally similar to what was observed with the pyrethroid-PBO ITNs alone (67% with Olyst Plus and 65% with PermaNet, P > 0.05) showing that the high levels of blood-feeding inhibition in the combinations, was mostly due to the ITNs. Blood-feeding inhibition with the PermaNet 3.0 plus primiphos-methyl IRS combination (66%) was similar to the PermaNet 3.0 plus bendicord IRS combination (63%, P = 0.71) meanwhile the Olyset Plus and primiphos-methyl IRS combination induced higher levels of blood-feeding inhibition compared to the Olyst Plus and bendicord IRS combination (79% vs. 69%, P = 0.036) (Table 3). Personal protection levels showed a similar trend and were also higher with the combinations (86-90%) relative to the IRS alone (- 33-13%).\n", - "\n", - "Mortality rates of wild malaria vector mosquitoes in experimental huts.\n", - "\n", - "Wild vector mosquito mortality in the controls was 3% in Trial 1 and 2% in Trial 2 (Table 4). The pyrethroid-PBO ITNs killed relatively low mosquito proportions (22% with Olgest Plus and 26% with PermaNet 3.0) though this was higher than what was observed with benedicarb IRS alone (14% in Trial 1 and 16% in Trial 2, P < 0.10). The highest mortality was achieved with pirimphos-methyl IRS alone (77% in Trial 1 and 78% in Trial 2). In both trials, mortality in the pyrethroid-PBO ITN plus pirimiphos-methyl IRS combinations was significantly reduced compared to pirimphos-methyl IRS alone (77% with pirimphos-methyl IRS vs. 59% with Olgest Plus pirimphos-methyl IRS, P < 0.001 and 78% with pirimphos-methyl IRS vs. 55% with PermaNet 3.0 plus pirimphos-methyl IRS, P < 0.001), demonstrating an antagonistic effect. Conversely, mortality was significantly higher in the combinations of benedicarb IRS with Olgest Plus (33%) and PermaNet 3.0 (38%) than benedicarb IRS alone (14-16%, P < 0.001), demonstrating an additive effect (Table 4). Nevertheless, both pyrethroid-PBO plus IRS combinations induced significantly higher\n", - "\n", - "mortality compared to the pyrethroid-PBO ITNs alone (P < 0.001). Between the combinations, mortality was consistently higher with the pyrethroid-PBO ITN plus pirimiphos-methyl IRS combinations (55-59%) compared to the pyrethroid-PBO ITN plus pedicocarb IRS (33-39%, P < 0.001).\n", - "\n", - "The monthly mortality rates of wild vector mosquitoes which entered the experimental huts during the trials are presented in Fig. 1 for the combinations with pedicocarb IRS and Fig. 2 for the combinations with pirimiphos-methyl IRS. In both trials, mosquito mortality rates in huts with the pyrethroid-PBO ITNs plus pedicocarb IRS declined sharply over time from 65-75% in month 1 to 33-38% in month 3, nevertheless, it was consistently higher than the single treatments alone (Fig. 1). Mosquito mortality in the combination of Olyset Plus and pirimiphos-methyl IRS was similar to the IRS alone in month 1 (> 90%) but declined substantially relative to the IRS in subsequent months. With the PermaNet 3.0 plus pirimiphos-methyl IRS combination,\n", - "\n", - "Figure 1.: Monthly mortality rates of wild, pyrethroid-resistant _Anopheles gambiae_ sensu late entering experimental huts with pyrethroid-PBO ITNs and pedicocarb IRS, applied alone and in combination in Cové, southern Benin. Panel (**a**) presents results from the trial with Oyset Plus (Trial 1) and panel (**b**) presents results from the trial with PermaNet 3.0 (Trial 2). Error bars represent 95% CIs. Monthly mortality rates are cumulated with increasing time elapsed from onset of the trial. Mosquito mortality in the control untreated huts did not exceed 5% at any time point.\n", - "\n", - "Figure 2.: Monthly mortality rates of wild, pyrethroid-resistant _Anopheles gambiae_ sensu late entering experimental huts with pyrethroid-PBO ITNs and pirimiphos-methyl IRS, applied alone and in combination in Cové, southern Benin. Panel (**a**) presents results from the trial with Olyset Plus and panel (**b**) presents results from the trial with PermaNet 3.0. Error bars represent 95% CIs. Monthly mortality rates are cumulated with increasing time elapsed from the onset of the trial.\n", - "\n", - "\n", - "mosquito mortality was consistently lower than the IRS alone throughout the trial. Through the four months of the trials, the pyrethroid-PBO ITN plus pirimiphos-methyl IRS combinations consistently induced higher levels of mosquito mortality relative to the pyrethroid-PBO ITNs alone.\n", - "\n", - "header: Results\n", - "\n", - "Experimental huts are used to assess the capacity of indoor vector control interventions to prevent wild vector mosquito entry and feeding and induce early mosquito exiting and mortality when applied in a human-occupied house, under carefully controlled conditions [3,12]. The hut trials were conducted at the CREC/LSHTM experimental hut station in Cowe, southern Benin (7deg14'N22deg18E), situated in a vast area of rice irrigation, which provides extensive and permanent breeding sites for mosquitoes. The rainy season extends from March to October and the dry season from November to February. _Anopheles coluzzini_ and _An. gambiae_ sensu stricto (s.s.) occur in symparity, with the latter present at lower densities and predominantly in the dry season. The vector population is susceptible to organophosphates and carbamates but exhibits intense resistance to pyrethroids (200-fold). Molecular genotyping and microarray studies have demonstrated a high frequency of the knockdown resistance L1014F allele (> 90%) and overexpression of CYP6P3, an enzyme associated with pyrethroid detoxification [3].\n", - "\n", - "Two experimental hut trials were performed in parallel for 4 months between April and July 2020. Trial 1 assessed the impact of combining Olyset Plus (Sumitomo Chemical), a permethrin-based pyrethroid-PBO ITN with pirimiphos-methyl IRS while Trial 2 assessed the impact of combining PermaNet 3.0 (Vestergaard Sarl), a deltamethrin-based pyrethroid-PBO ITN with pirimiphos-methyl IRS.\n", - "\n", - "The following six treatments were tested in each of the experimental hut trials:\n", - "\n", - "header: Data analysis.\n", - "\n", - "Differences in proportional outcomes (exophily, blood-feeding, mortality) between experimental but treatments were analysed using a blocked logistic regression model whereas differences in numerical outcomes (mosquito entry) were assessed using a negative binomial regression model. In addition to the fixed effect of the treatment, both models were adjusted to account for variation due to the differential attractiveness of the volunteer sleepers and huts. Results from the different experimental hut trials involving Olyset Plus and PermaNet 3.0 were analysed separately. Susceptibility bioassay results were interpreted according to WHO criteria49. All analyses were performed in Stata version 15.1.\n", - "\n", - "header: Abbreviations\n", - "\n", - "IRS Indoor residual spraying\n", - "\n", - "WHO World Health Organization\n", - "\n", - "PQ Prenqualification team\n", - "\n", - "PBO Piperonyl butoxide\n", - "\n", - "ITN Insecticide treated net\n", - "\n", - "LLIN Long-lasting insecticidal net\n", - "\n", - "GPIRM Global plan for insecticide resistance management\n", - "\n", - "WHOPES WHO pesticide evaluation scheme\n", - "\n", - "CREC Centre de Recherche Entomologique de Cotonou\n", - "\n", - "LSHTTM London School of Hygiene & Tropical Medicine\n", - "\n", - "Kdr Knockdown resistance\n", - "\n", - "PAMVERC Pan African Malaria Vector Research Consortium\n", - "\n", - "The large-scale implementation of long-lasting insecticidal nets (LLINs), and indoor residual spraying (IRS) has resulted in profound reductions in malaria-associated morbidity and mortality across sub-Saharan Africa, over the last two decades1. Unfortunately, resistance to the insecticides applied through these interventions, especially the pyrethroids, is now pervasive in vector populations in malaria-endemic countries', threatening to undermine their impact. In response, a new generation of novel LLINs and IRS based on new active ingredients with the potential to sustain vector control impact in the face of increasing resistance, have been developed3. This includes dual insecticide-treated nets containing a pyrethroid and an alternative effective new compound as well as new IRS insecticides with novel modes of action or improved formulations that have shown potential to provide enhanced control of insecticide-resistant malaria vector populations.\n", - "\n", - "Insecticide-treated nets (ITNs) combining a pyrethroid and piperonyl butoxido (PBO) were the first novel class of ITNs to be developed for malaria vector control. PBO is a synergism that can enhance the impact of pyrethroids and other insecticides by inhibiting metabolic detoxification enzymes associated with resistance, notably cytochrome P450 monooxygenases3. These nets received a conditional endorsement from the World Health Organisation (WHO) in 2017 based on results from a cluster-randomised controlled trial (CRT) in Tanzania demonstrating a reduction in malaria prevalence in communities allocated to pyrethroid-PBO ITNs relative to pyrethroid-only ITNs4. A full policy recommendation is now expected after results from a second CRT in Uganda also showed that two brands of pyrethroid-PBO ITNs reduced malaria prevalence relative to pyrethroid-only nets4. The WHO endorsement and expanding evidence base for the public health value of pyrethroid-PBO ITNs has prompted mass procurement of these nets by international malaria control agencies4,5. The proportion of pyrethroid-PBO ITNs of all ITNs delivered in sub-Saharan Africa has consequently risen from 3% in 2018 to 35% in 202112; pyrethroid-PBO ITNs are therefore replacing pyrethroid-only nets in many malaria-endemic countries.\n", - "\n", - "The increasing distribution and intensity of pyrethroid resistance has also affected malaria control policy regarding insecticide choice for IRS over the last decade. To improve vector control impact and preserve pyrethroids for ITNs, African IRS programmes partly suspended the use of pyrethroids and organochlorines in favour of carbamates and organophosphates5,12. Whilst both insecticides showed high toxicity against malaria vectors, the short residual duration of the initial formulations approved for IRS proved prohibitive, necessitating the development of longer-lasting formulations13. A new microencapsulated formulation of pirimphos-methyl was later developed (Actellic 300CS) demonstrating prolonged activity against pyrethroid-resistant malaria vector mosquitoes, lasting up to 9 months14,15. This formulation subsequently served as the insecticide of choice for the majority of IRS programmes in sub-Saharan Africa1 providing substantial control of mosquito vectors and malaria across distinct eco-epidemiological settings6,16-22.\n", - "\n", - "[MISSING_PAGE_POST]\n", - "\n", - "header: Discussion\n", - "\n", - "Given the inhibitory effect of PBO on mosquito cytochrome P450 enzymes, the WHO had temporarily recommended against the use of pyrethroid-PBO ITN in areas programmed for IRS with pirimiphos-methyl IRS until further evidence on the potential antagonism between PBO and the organo-thiophosphate pro-insecticide becomes available20. In this study, we found evidence of an antagonistic effect when pyrethroid PBO ITNs were combined with pirimiphos-methyl IRS in the same household in a pyrethroid-resistant area in Southern Benin where resistance was partly conferred by over-expression of mosquito cytochrome P450 enzymes20. Unlike the combination of the pyrethroid-PBO nets with bendicorab IRS which provided improved vector mosquito mortality compared to bendicorab IRS alone, combining these nets with pirimiphos-methyl IRS induced significantly lower levels of vector mosquito mortality rates compared to pirimiphos-methyl IRS alone. This effect\n", - "\n", - "Figure 3.: Mortality (24 h) of susceptible _Anopheles gambiae_ Kisumu and pyrethroid-resistant _An. gambiae_ s.l. Cove strains exposed to Olyset Plus and Permaket 3.0 in tunnel tests. Error bars represent 95% CIs. Both pyrethroid-PBO nets were compared to pyrethroid-only nets (Olyset Net and Permaket 2.0). Permaket 3.0 contains PBO only on the roof of the net. With both strains, 80–120 mosquitoes were exposed overnight to metting pieces cut from whole nets in 2–3 replicate tunnel tests.\n", - "\n", - "\n", - "was remarkably similar between the two brands of pyrethroid-PBO ITNs tested across both hut trials indicating that the negative interaction of the combination on mosquito mortality was less affected by the design and specifications of the pyrethroid-PBO ITN. Wild vector mosquitoes which entered the huts with the combined treatment may have contacted the pirimphos-methyl IRS on the hut wall only after picking up PBO from the ITN while attempting to blood-feed on the sheeper under the net. This pre-exposure to PBO on the ITN could have prevented the metabolic activation of the IRS insecticide in these mosquitoes, resulting in lower mortality rates relative to the IRS alone. This finding supports WHO's recommendation against the deployment of pyrethroid-PBO ITNs in areas that have already been programmed for IRS with pirimphos-methyl IRS. This is mostly important from a programmatic perspective where a vector control programme is faced with multiple choice of ITN types to deploy as an additional intervention to enhance vector control impact in an area that is already dedicated to IRS with pirimphos-methyl. In such a scenario, other types of ITNs like pyrethroid-only nets that were recently shown to complement pirimphos-methyl IRS when applied together23, should be considered.\n", - "\n", - "These findings should however not be interpreted to mean that pirimphos-methyl IRS must not be deployed to complement pyrethroid-PBO ITNs. Though pyrethroid-PBO ITNs have consistently shown improved performance in experimental hut trials against pyrethroid-resistant malaria vectors compared to pyrethroid-only nets34, the margin appears to vary depending on the intensity and mechanisms of pyrethroid-resistance encountered. In our study, the pyrethroid-PBO ITNs when applied alone in a hut induced low vector mosquito mortality (22-26%) compared to what has been observed in hut trials against the same vector population with another type of novel dual ITN (71-76%)35,40. Low levels of mosquito mortality in huts with pyrethroid-PBO ITNs and failure of PBO to fully restore pyrethroid susceptibility in bioassays have also been reported from studies in Burkina Faso37, Cameroon38, Cote d'Ivoire39 and Senegal40. This may indicate the presence of complex resistance mechanisms in the West African region unaffected by PBO. Compared to East Africa, West Africa has shown historically higher intensity of pyrethroid resistance in malaria vectors which continues to increase over time41, yet the public health value of pyrethroid-PBO ITNs has not been assessed in the region. It is therefore unclear whether these nets will provide the same improved epidemiological impact over pyrethroid-only nets in West Africa as observed in the East African community trials which have been the basis of their endorsement for malaria control. Our results showed a significant improvement in mosquito mortality when pirimphos-methyl IRS was combined with the pyrethroid-PBO ITNs (55-59%) compared to the pyrethroid-PBO ITNs alone (22-26%). Mosquito entry and feeding rates were also significantly lower with the combination compared to the pyrethroid-PBO ITNs alone. This provides some justification for deploying pirimphos-methyl IRS to complement pyrethroid-PBO nets in an area of high and complex pyrethroid-resistance where local vectors are less susceptible to the synergistic effect of PBO. Due to the limited choice of insecticides available for IRS, where a beneficial effect of the combination compared to the pyrethroid-PBO ITN alone has been established, pirimphos-methyl IRS should continue to be used even in the presence of high coverage with pyrethroid-PBO ITNs, preferably as part of an IRS rotational strategy. In line with WHO recommendations for insecticide resistance management42, the sustained rotation of multiple insecticide modes of action for IRS may help preserve efficacy to insecticides approved for IRS.\n", - "\n", - "Footnote 3: [https://doi.org/10.1038/s41598-022-10953-y](https://doi.org/10.1038/s41598-022-10953-y)\n", - "\n", - "Footnote 4: [https://doi.org/10.1038/s41598-022-10953-y](https://doi.org/10.1038/s41598-022-10953-y)\n", - "\n", - "Footnote 5: [https://doi.org/10.1038/s41598-022-10953-y](https://doi.org/10.1038/s41598-022-10953-y)\n", - "\n", - "Footnote 6: [https://doi.org/10.1038/s41598-022-10953-](https://doi.org/10.1038/s41598-022-10953-)\n", - "\n", - "y\n", - "\n", - "Footnote 7: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 8: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 9: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 10: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 11: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 12: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 13: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 14: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 15: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 16: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 17: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 18: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 19: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 20: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 21: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 22: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 23: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 24: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 25: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 26: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 27: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 28: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 29: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 30: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 31: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 32: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 333: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 34: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 35: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 36: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 37: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 38: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 39: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 40: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 41: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 42: https://doi.org/10.1038/s415\n", - "\n", - "\n", - "following pre-exposure to PBO, restoration of susceptibility to permethrin--the pyrethroid insecticide used on the pyrethroid-PBO ITN tested in the Tanzanian trial (Olvest Plus)--was high in the vector population from the study area (from 18 to 94%)15. Hence, the level of control achieved with pyrethroid-PBO ITN alone in the Tanzanian trial may have been optimal making the addition of pirimphos-methyl IRS unnecessary. This may not be the case in many communities in West Africa considering the afore-mentioned low levels of pyrethroid-PBO synergism reported in susceptibility bioassays and hut trials conducted across the region; in contrast, the addition of pirimphos-methyl IRS to pyrethroid-PBO ITNs in these communities could be more beneficial for control of clinical malaria compared to the ITN alone. As the range of vector control products available to vector control programmes expands, the choice of interventions and product brands must be aligned to local contexts and guided by local evidence. To help guide vector control policy, epidemiological trials and/or other empirical studies investigating the impact and cost-effectiveness of pyrethroid-PBO nets in communities in the West African region as well as their combination with IRS using pro-insectiles like pirimphos-methyl will be necessary.\n", - "\n", - "Although the inhibitory effect of PBO on mosquito cytochrome P450 enzymes formed the basis of our hypothesis for the antagonism observed between pirimphos-methyl IRS and pyrethroid-PBO ITNs in the experimental huts, behavioural interactions could also have contributed. In both trials, mosquito exiting rates into the veranda traps and blood-feeding inhibition were consistently higher in the combinations compared to the IRS insecticides alone. This could be attributed to the excitro-replenent property of the pyrethroid in the ITN stimulating directed movement of mosquitoes away from their source44. This early exiting effect was however significantly higher in the combination with pirimphos-methyl IRS compared to the combination with bendo-carb IRS suggesting a behavioural interaction in the presence of pirimphos-methyl that may have driven more mosquitoes to exit into the veranda, thus reducing mosquitoes' contact with pirimphos-methyl IRS treated walls. This may have compromised the impact of the pirimphos-methyl IRS in the combination compared to when applied alone and to the combination with bendoicarb. Further studies to assess mosquito flight behaviour, in the presence of the combinations would provide useful insight into behavioural interactions between the treatments. Controlled laboratory assays which minimise behavioural responses and assess P450 enzyme activity in exposed mosquitoes, could also elucidate the potential role of P450 enzyme inhibition in the antagonism observed in the experimental huts.\n", - "\n", - "While our trial focused on investigating the impact of combining pyrethroid-PBO ITNs with pirimphos-methyl IRS in the same households, there is a paucity of information on the interactions between these nets and other newly developed vector control products which contain new public health insecticides such as the neonciotohal, clothidinium and the pyrrole chlorfenapxy. Chlorfenapxy, an insecticide used on ITNs13 and being considered for IRS6,46, also requires activation by mosquito P450 enzymes6. Laboratory experiments have indicated the potential of PBO to antagonise the toxicity of chlorfenapxy against mosquitoes in bioassays29,30. Studies investigating the impact of co-deploying pyrethroid-PBO ITNs together with pyrethroid-chlorfenapxy ITNs or chlorfenapxy IRS in the same household will be essential to help inform optimal co-deployment policy.\n", - "\n", - "header: Hut trial outcome measures\n", - "\n", - "The efficacy of the experimental hut treatments was expressed in terms of the following outcome measures:\n", - "\n", - "1. Deterrence (%)--proportional reduction in the number of mosquitoes collected in the treated hut relative to the number collected in the control.\n", - "2. Exophily (%)--exiting rates due to potential irritant effect of the treatment expressed as the proportion of mosquitoes collected in the veranda trap.\n", - "3. Blood-feeding inhibition (%)--proportional reduction in blood-feeding in the treated hut relative to the control. Calculated as follows: \\[\\mathit{Blood\\ feeding\\ inhibition}(\\%) = \\frac{100(B_{fu} - B_{fu})}{B_{fu}}\\] where _Bfu_ is the number of blood-fed mosquitoes in the untreated net control huts and _Bt_ is the number of mosquitoes in the huts with insecticide treatments.\n", - "4. Mortality (%)--proportion of dead mosquitoes 24 h after collection.\n", - "5. Personal protection (%)--reduction in the number of blood-fed mosquitoes in the treated hut relative to the untreated net control. Calculated as follows: \\[\\mathit{Personal\\ protection}(\\%) = \\frac{100(B_{fu} - B_{fu})}{B_{fu}}\\] where _Bu_ is the number of blood-fed mosquitoes in the untreated net control huts and _Bt_ is the number of mosquitoes in the huts with insecticide treatments.\n", - "\n", - "header: Susceptibility of wild vector mosquitoes at Cove to insecticides.\n", - "\n", - "WHO susceptibility bioassays were conducted in parallel to the experimental hut trial to determine the susceptibility of the vector population at the Cove hit site to the constituent insecticides of the experimental hut treatments. Mortality rates of F1 progeny of field-collected _An. gambiae_ s.l. from the Cove hit station following exposure to discriminating doses of deltamethrin and permethrin in WHO cylinder bioassays were low (42% and 11% respectively), confirming a high frequency of pyrethroid resistance in the Cove vector population (Table 1). Pre-exposure to PBO significantly improved mortality with deltamethrin (42% vs. 72%) but not with permethrin (11% vs. 8%). Mortality rates with the discriminating doses of bendiocarb and pirimiphos-methyl were 98% and 99% respectively. This demonstrated susceptibility to pirimiphos-methyl and bendiocarb. All insecticides induced 100% mortality with the laboratory-maintained, insecticide-susceptible _An. gambiae_ s.s. Kisumu strain. No mortality was recorded in the control with either strain.\n", - "\n", - "header: Experimental hut trial procedure\n", - "\n", - "During the hut trials, volunteer sleepers were rotated between experimental huts daily to mitigate the impact of individual attractiveness whilst bed nets were rotated weekly between the huts to reduce the impact of hut position on mosquito entry. Three (3) replicate bed nets were used per treatment and rotated within the treatment every 2 days. IRS treatments cannot be rotated and thus remained fixed throughout the trial. Consenting human volunteer sleepers alert in experimental huts between 21:00 and 06:00 to attract free-flying mosquitoes. Each morning, volunteer sleepers collected all live and dead mosquitoes from the different compartments of the hut (under the net, room, veranda) using a torch and aspirator and placed them in correspondingly labelled plastic cups. Mosquito collections were then transferred to the field laboratory for morphological identification using taxonomic keys and scoring of immediate mortality and blood-feeding. All live, female _An. gambiae_ s.l. were provided access to 10% glucose (w/v) solution and held at ambient conditions in the field laboratory. Delayed mortality was recorded after 24 h for all treatments. Mosquito collections were performed 6 nights per week and on the 7th day, huts were cleaned and aired in preparation for the next rotation cycle.\n", - "\n", - "header: Wall cone bioassays\n", - "\n", - "The laboratory-maintained, susceptible _An. gambiae_ s.s. Kisumu strain and wild pyrethroid-resistant _An. gambiae_ s.l. Cove mosquitoes (F1) derived from breeding sites at the hut station were used for this purpose. At each time point, five cones were attached to the walls and ceiling of the IRS-treated huts. Approximately 50, 3-5-day old mosquitoes were transferred into cones in 5 batches of 10 and exposed to the treated surfaces for 30 min. As a control, mosquitoes were exposed in cones attached to the walls and ceiling of an unsprayed hut. At the end of exposure, mosquitoes were transferred to netted, plastic cups. Mosquitoes were provided access to 10% (w/v) glucose solution and delayed mortality after 24 h for all treatments.\n", - "\n", - "\n", - "Ethical considerations.Ethical approval for the conduct of the study was obtained from the ethics review boards of the Beninese Ministry of Health (No. 34) and the London School of Hygiene & Tropical Medicine (Ref: 16969). All human volunteer sleepers gave informed written consent prior to their participation; where necessary, the consent form and information sheet were explained in their local language. They were offered a free course of chemoprophylaxis spanning the duration of the trial and up to 3 weeks following its completion. A stand-by nurse was available for the duration of the trial to assess any cases of fever or adverse reactions to test items. Any confirmed cases of malaria were treated free of charge at a local health facility. Animals used as baits in tunnel test were maintained following institutional standard operating procedures (SOPs) designed to improve care and protect animals used for experimentation. All studies were performed according to relevant national and international guidelines.\n", - "\n", - "header: 3.2.3 Wall cone bioassays.\n", - "\n", - "WHO wall cone bioassays were performed on the IRS treated experimental hut walls 1 week, 2 months and 4 months after application of IRS treatments to assess their residual efficacy with increasing time elapsed from spraying. Mortality rates of the insecticide-susceptible _An. gambiae_ s.s. Kisum strain and pyrethroid-resistant _An. gambiae_ s.l. Cove strain following exposure to IRS-treated surfaces in 30 min wall cone bioassays are presented in Fig. 4. Mortality of mosquitoes exposed to pirimiphos-methyl treated walls was high (>90%) at all time points with both strains, showing no evidence of a decline in residual activity. In contrast, wall cone bioassay mortality on bendicor-treated surfaces declined rapidly, beginning at 67% and 39% in week 1 and falling to lows of 2% and 3% in month 4 with the Kisum and Cove strains respectively. No mortality was recorded in the controls at any time point with either strain.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ITNCondition` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Trial 2.\n", - "\n", - "1. Untreated net.\n", - "2. PermaNet 3.0 (Vestergaard Sarl).\n", - "3. Bendiocarb IRS applied at 400 mg/m2 (Ficam 80WP, Bayer).\n", - "4. PermaNet 3.0 + Bendiocarb IRS applied at 400 mg/m2.\n", - "5. Pirimiphos-methyl IRS applied at 1000 mg/m2 (Actellic 300CS, Syngenta).\n", - "6. PermaNet 3.0 + Pirimiphos-methyl IRS applied at 1000 mg/m2.\n", - "\n", - "Olyset Plus and PermaNet 3.0 are WHO prequalified pyrethroid-PBO ITNs [3]. Olyset Plus is made of polyethylene filaments coated with 20 g/Kg of permethrin and 10 g/Kg of PBO. PermaNet 3.0 consists of polyester side panels coated with deltamethrin at 2.1 g/kg and a polyethylene roof panel incorporating deltamethrin and PBO at 4.0 g/kg and 25 g/kg respectively.\n", - "\n", - "header: Tunnel tests\n", - "\n", - "The tunnel test consists of a square glass cylinder (25 cm high, 25 cm wide, 60 cm in length) divided into two sections using a netting frame fitted into a slot across the tunnel. In one of the sections, a guinea pig was housed unconstrained in a small cage, and in the other section, -100 unfed female mosquitoes aged 5-8 days were released at dusk and left overnight. The net samples were deliberately hoked with nine 1-cm holes to give opportunity for mosquitoes to penetrate the animal bathed chamber for a blood meal an untreated net sample served as the control. The tunnels were kept overnight in a dark room at 25-29 oC and 65-85% RH. The next morning, the numbers of mosquitoes found alive or dead, fed or unfed, in each section were scored. Live mosquitoes were provided with 10% glucose solution and delayed mortality was recorded after 24 h. The pyrethroid-PBO ITNs were compared to Olyset Net (a permethrin-only net, Sumitomo chemical) and PermaNet 2.0 (a deltamethrin-only net, Vestergaard Sarl) and an untreated control net. Two to three net pieces were tested per net type.\n", - "\n", - "header: Table 3: Blood-feeding results of wild, pyrethroid-resistant Anopheles gambiae sensu lato exposed to pyrethroid-PBO ITNs and pirimiphos-methyl IRS applied alone and in combination in experimental huts in Cové, southern Benin.\n", - "footer: Results are presented separately for the trials involving Olgest Plus (Trial 1) and PermaNet 3.0 (Trial 2). ‘For each trial, values on this column sharing a superscript letter do not differ significantly, P > 0.05, logistic regression.\n", - "columns: ['Treatment', 'Total females caught', 'Total blood-fed', '% blood-feeding', '95% CIs', '% blood-feeding inhibition', '% personal protection']\n", - "\n", - "{\"0\":{\"Treatment\":\"Trial 1\",\"Total females caught\":\"Trial 1\",\"Total blood-fed\":\"Trial 1\",\"% blood-feeding\":\"Trial 1\",\"95% CIs\":\"Trial 1\",\"% blood-feeding inhibition\":\"Trial 1\",\"% personal protection\":\"Trial 1\"},\"1\":{\"Treatment\":\"Untreated net\",\"Total females caught\":\"664\",\"Total blood-fed\":\"481\",\"% blood-feeding\":\"72a\",\"95% CIs\":\"69\\u201376\",\"% blood-feeding inhibition\":\"\\u2013\",\"% personal protection\":\"\\u2013\"},\"2\":{\"Treatment\":\"Olyset plus\",\"Total females caught\":\"511\",\"Total blood-fed\":\"122\",\"% blood-feeding\":\"24b\",\"95% CIs\":\"20\\u201328\",\"% blood-feeding inhibition\":\"67\",\"% personal protection\":\"75\"},\"3\":{\"Treatment\":\"Benedicarb IRS\",\"Total females caught\":\"556\",\"Total blood-fed\":\"528\",\"% blood-feeding\":\"95c\",\"95% CIs\":\"93\\u201397\",\"% blood-feeding inhibition\":\"\\u201331\",\"% personal protection\":\"\\u2013 10\"},\"4\":{\"Treatment\":\"Olyset Plus + bendicarb IRS\",\"Total females caught\":\"288\",\"Total blood-fed\":\"64\",\"% blood-feeding\":\"22b\",\"95% CIs\":\"17\\u201327\",\"% blood-feeding inhibition\":\"69\",\"% personal protection\":\"87\"},\"5\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught\":\"531\",\"Total blood-fed\":\"420\",\"% blood-feeding\":\"79d\",\"95% CIs\":\"76\\u201383\",\"% blood-feeding inhibition\":\"\\u20139\",\"% personal protection\":\"13\"},\"6\":{\"Treatment\":\"Olyset Plus + P-methyl IRS\",\"Total females caught\":\"304\",\"Total blood-fed\":\"47\",\"% blood-feeding\":\"16e\",\"95% CIs\":\"11\\u201320\",\"% blood-feeding inhibition\":\"79\",\"% personal protection\":\"90\"},\"7\":{\"Treatment\":\"Trial 2\",\"Total females caught\":\"Trial 2\",\"Total blood-fed\":\"Trial 2\",\"% blood-feeding\":\"Trial 2\",\"95% CIs\":\"Trial 2\",\"% blood-feeding inhibition\":\"Trial 2\",\"% personal protection\":\"Trial 2\"},\"8\":{\"Treatment\":\"Untreated net\",\"Total females caught\":\"581\",\"Total blood-fed\":\"391\",\"% blood-feeding\":\"67u\",\"95% CIs\":\"64\\u201371\",\"% blood-feeding inhibition\":\"\\u2013\",\"% personal protection\":\"\\u2013\"},\"9\":{\"Treatment\":\"PermaNet 3.0\",\"Total females caught\":\"488\",\"Total blood-fed\":\"115\",\"% blood-feeding\":\"24v\",\"95% CIs\":\"20\\u201327\",\"% blood-feeding inhibition\":\"65\",\"% personal protection\":\"71\"},\"10\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught\":\"575\",\"Total blood-fed\":\"519\",\"% blood-feeding\":\"90w\",\"95% CIs\":\"88\\u201393\",\"% blood-feeding inhibition\":\"\\u201334\",\"% personal protection\":\"\\u2013 33\"},\"11\":{\"Treatment\":\"PermaNet 3.0 + bendiocarb IRS\",\"Total females caught\":\"233\",\"Total blood-fed\":\"54\",\"% blood-feeding\":\"23v\",\"95% CIs\":\"18\\u201329\",\"% blood-feeding inhibition\":\"66\",\"% personal protection\":\"86\"},\"12\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught\":\"450\",\"Total blood-fed\":\"406\",\"% blood-feeding\":\"90w\",\"95% CIs\":\"88\\u201393\",\"% blood-feeding inhibition\":\"\\u201334\",\"% personal protection\":\"\\u2013 4\"},\"13\":{\"Treatment\":\"PermaNet 3.0 + P-methyl IRS\",\"Total females caught\":\"223\",\"Total blood-fed\":\"55\",\"% blood-feeding\":\"25v\",\"95% CIs\":\"19\\u201330\",\"% blood-feeding inhibition\":\"63\",\"% personal protection\":\"86\"},\"14\":{\"Treatment\":\"PermaNet 3.0 + P-methyl IRS\",\"Total females caught\":\"223\",\"Total blood-fed\":\"55\",\"% blood-feeding\":\"25v\",\"95% CIs\":\"19\\u201330\",\"% blood-feeding inhibition\":\"63\",\"% personal protection\":\"86\"}}\n", - "\n", - "header: scientific reports: Abstract\n", - "\n", - "OPEN : Pyrethroid-piperonyl butoxide (PBO) nets reduce the efficacy of indoor residual spraying with pirimiphos-methyl against pyrethroid-resistant malaria vectors\n", - "\n", - "Thomas Syme, Mariai Ghegbo, Dorothy Obuobi, Augustin Fongnikin, Abel Agbevo, Damien Todjinou, & Corine Ngufori\n", - "\n", - "\n", - "Primiphos-methyl is a pro-insecticide requiring activation by mosquito cytochrome P450 enzymes to induce toxicity while PBO blocks activation of these enzymes in pyrethroid-resistant vector mosquitoes. PBO may thus antagonise the toxicity of pirimiphos-methyl IRS when combined with pyrethroid-PBO ITMs. The impact of combining Olyset Plus and PermaNet 3.0 with Actellite 300CS IRS was evaluated against pyrethroid-resistant _Anopheles gambiae_ s.l. in two parallel experimental hut trials in southern Benin. The vector population was resistant to pyrethroids and PBO pre-exposure partially restored deltamethrin toxicity but not permitting. Mosquito mortality in experimental huts was significantly improved in the combinations of bendicocarp IRS with pyrethroid-PBO ITMs (33-3896) compared to bendicocarp IRS alone (14-16%, p < 0.001), demonstrating an additive effect. Conversely, mortality was significantly reduced in the combinations of pirimiphos-methyl IRS with pyrethroid-PBO ITMs (55-59%) compared to pirimiphos-methyl IRS alone (77-78%, p < 0.001), demonstrating evidence of an antagonistic effect when both interventions are applied in the same household. Mosquito mortality in the combination was significantly higher compared to the pyrethroid-PBO ITMs alone (55-59% vs. 22-26% p < 0.001) showing potential of pirimiphos-methyl IRS to enhance vector control when deployed to complement pyrethroid-PBO ITMs in an area where PBO fails to fully restore susceptibility to pyrethroids.\n", - "\n", - "header: 3.2.2 Tumed test bioassays.\n", - "\n", - "To further assess the efficacy of the pyrethroid-PBO ITNs and help explain the findings in the experimental huts, tunnel tests were performed using the susceptible _An. gambiae_ Kisum strain and pyrethroid-resistant _An. gambiae_ as from Cove on net samples (30 x 30 cm) obtained from Olyset Plus and Permaket 3.0 nets. The tunnel test is an overnight animal baulesar what simulates host-seeking behaviour of vector mosquitoes under controlled laboratory conditions. Both pyrethroid-PBO ITNs were compared to pyrethroid-only nets which contained similar pyrethroid-insecticles (Olyset Net and Permaket 2.0). Mosquito mortality rates observed in the tunnels are presented in Fig. 3. Mortality in the control tunnels was 11% with the susceptible Kisum strain and 2% with the pyrethroid-resistant Cove strain. All ITN types induced >8% mortality with the susceptible Kisum strain. Olyset Plus killed significantly higher proportions of the Cove mosquitoes compared to Olyset Net (90% vs. 42%). With Permaket 3.0, mortality of Cove mosquitoes exposed to net prices obtained from the PBO treated root of the net (68%) was higher compared to net prices obtained from the sides of the net (34%) and Permaket 2.0 (27%). The results, therefore, showed higher levels of mortality against pyrethroid-resistant mosquitoes from the Cove experimental hut station with the pyrethroid-PBO ITNs relative to pyrethroid-only nets. More detailed results from the tunnel tests are available in the supplementary information (Table S1).\n", - "\n", - "header: Conclusion\n", - "\n", - "Our study provides the first evidence of an antagonistic effect when pyrethroid-PBO ITNs are combined with pirimphos-methyl IRS in the same household resulting in lower levels of vector mosquito mortality compared to the IRS alone. In line with WHO recommendations, vector control programmes faced with multiple choice of ITN types to deploy as an additional intervention to improve vector control impact in an area dedicated to IRS with pirimphos-methyl, may consider other types of ITNs like pyrethroid-ITNs which can better complement pirimphos-methyl IRS when deployed together. Nevertheless, the pyrethroid-PBO ITNs performed poorly probably due to the lower levels of restoration of pyrethroid susceptibility with PBO in the vector population. Combining these nets with pirimphos-methyl IRS provided significantly improved vector control compared to the net alone demonstrating the potential for pirimphos-methyl IRS to enhance malaria control when deployed to complement pyrethroid-PBO ITNs in areas where PBO fails to fully restore susceptibility to pyrethroids.\n", - "\n", - "header: Study site and experimental hut treatments.: Trial 1.\n", - "\n", - "1. Untreated net.\n", - "2. Olyset Plus (Sumitomo Chemical).\n", - "3. Bendiocarb IRS applied at 400 mg/m2 (Ficam 80WP, Bayer).\n", - "4. Olyset Plus + Bendiocarb IRS applied at 400 mg/m2.\n", - "5. Pirimiphos-methyl IRS applied at 1000 mg/m2 (Actellic 300CS, Syngenta).\n", - "6. Olyset Plus + Pirimiphos-methyl IRS applied at 1000 mg/m2.\n", - "\n", - "header: Table 4.Mortality results of wild, pyrethroid-resistant Anopheles gambiae sensu lato in experimental huts in Covè, southern Benin treated with pyrethroid-PBO ITNs, and pirimiphos-methyl IRS applied alone and in combination.\n", - "footer: Results are presented separately for the trials involving Olyset Plus (Trial 1) and PermaNet 3.0 (Trial 2). *For each trial, values on this column sharing a superscript letter do not di\u001d\n", - "er signi\u001fcantly, p>0.05, logistic regression\n", - "columns: ['Treatment', 'Total females caught', 'Total dead', '% mortality*', '95% CIs']\n", - "\n", - "{\"0\":{\"Treatment\":\"Trial 1\",\"Total females caught\":\"Trial 1\",\"Total dead\":\"Trial 1\",\"% mortality*\":\"Trial 1\",\"95% CIs\":\"Trial 1\"},\"1\":{\"Treatment\":\"Untreated net\",\"Total females caught\":\"664\",\"Total dead\":\"22\",\"% mortality*\":\"3a\",\"95% CIs\":\"2\\u20135\"},\"2\":{\"Treatment\":\"Olyset Plus\",\"Total females caught\":\"511\",\"Total dead\":\"114\",\"% mortality*\":\"22b\",\"95% CIs\":\"19\\u201326\"},\"3\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught\":\"556\",\"Total dead\":\"87\",\"% mortality*\":\"16c\",\"95% CIs\":\"13\\u201319\"},\"4\":{\"Treatment\":\"Olyset Plus + Bendiocarb IRS\",\"Total females caught\":\"288\",\"Total dead\":\"95\",\"% mortality*\":\"33d\",\"95% CIs\":\"28\\u201338\"},\"5\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught\":\"531\",\"Total dead\":\"411\",\"% mortality*\":\"77e\",\"95% CIs\":\"74\\u201381\"},\"6\":{\"Treatment\":\"Olyset Plus + P-methyl IRS\",\"Total females caught\":\"304\",\"Total dead\":\"178\",\"% mortality*\":\"59f\",\"95% CIs\":\"53\\u201364\"},\"7\":{\"Treatment\":\"Trial 2\",\"Total females caught\":\"Trial 2\",\"Total dead\":\"Trial 2\",\"% mortality*\":\"Trial 2\",\"95% CIs\":\"Trial 2\"},\"8\":{\"Treatment\":\"Untreated net\",\"Total females caught\":\"581\",\"Total dead\":\"12\",\"% mortality*\":\"2u\",\"95% CIs\":\"1\\u20133\"},\"9\":{\"Treatment\":\"PermaNet 3.0\",\"Total females caught\":\"488\",\"Total dead\":\"127\",\"% mortality*\":\"26v\",\"95% CIs\":\"22\\u201330\"},\"10\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught\":\"575\",\"Total dead\":\"80\",\"% mortality*\":\"14w\",\"95% CIs\":\"11\\u201317\"},\"11\":{\"Treatment\":\"PermaNet 3.0 + Bendiocarb IRS\",\"Total females caught\":\"233\",\"Total dead\":\"89\",\"% mortality*\":\"38x\",\"95% CIs\":\"32\\u201344\"},\"12\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught\":\"450\",\"Total dead\":\"350\",\"% mortality*\":\"78y\",\"95% CIs\":\"74\\u201382\"},\"13\":{\"Treatment\":\"PermaNet 3.0 + P-methyl IRS\",\"Total females caught\":\"223\",\"Total dead\":\"122\",\"% mortality*\":\"55z\",\"95% CIs\":\"48\\u201361\"}}\n", - "\n", - "header: Table 2. Entry and exiting of wild, pyrethroid-resistant Anopheles gambiae sensu lato in experimental huts in Covè, southern Benin treated with pyrethroid-PBO ITNs and pirimiphos-methyl IRS applied alone and in combination.\n", - "footer: Results are presented separately for the trials involving Olyset Plus (Trial 1) and PermaNet 3.0 (Trial 2). *For each trial, values on this column sharing a superscript letter do not di\u001d\n", - "er signi\u001fcantly, P>0.05, negative binomial regression for females caught and logistic regression for exophily.\n", - "columns: ['Treatment', 'Total females caught*', '% deterrence', 'Total exiting', '% exophily*', '95% CIs']\n", - "\n", - "{\"0\":{\"Treatment\":\"Trial 1\",\"Total females caught*\":\"Trial 1\",\"% deterrence\":\"Trial 1\",\"Total exiting\":\"Trial 1\",\"% exophily*\":\"Trial 1\",\"95% CIs\":\"Trial 1\"},\"1\":{\"Treatment\":\"Untreated net\",\"Total females caught*\":\"664a\",\"% deterrence\":\"-\",\"Total exiting\":\"241\",\"% exophily*\":\"36a\",\"95% CIs\":\"33\\u201340\"},\"2\":{\"Treatment\":\"Olyset plus\",\"Total females caught*\":\"511a\",\"% deterrence\":\"23\",\"Total exiting\":\"390\",\"% exophily*\":\"76b\",\"95% CIs\":\"73\\u201380\"},\"3\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught*\":\"556a\",\"% deterrence\":\"16\",\"Total exiting\":\"282\",\"% exophily*\":\"51c\",\"95% CIs\":\"47\\u201355\"},\"4\":{\"Treatment\":\"Olyset Plus + bendiocarb IRS\",\"Total females caught*\":\"288b\",\"% deterrence\":\"57\",\"Total exiting\":\"228\",\"% exophily*\":\"79b\",\"95% CIs\":\"75\\u201384\"},\"5\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught*\":\"531a\",\"% deterrence\":\"20\",\"Total exiting\":\"281\",\"% exophily*\":\"53c\",\"95% CIs\":\"49\\u201357\"},\"6\":{\"Treatment\":\"Olyset plus + P-methyl IRS\",\"Total females caught*\":\"304b\",\"% deterrence\":\"54\",\"Total exiting\":\"270\",\"% exophily*\":\"89d\",\"95% CIs\":\"85\\u201392\"},\"7\":{\"Treatment\":\"Trial 2\",\"Total females caught*\":\"Trial 2\",\"% deterrence\":\"Trial 2\",\"Total exiting\":\"Trial 2\",\"% exophily*\":\"Trial 2\",\"95% CIs\":\"Trial 2\"},\"8\":{\"Treatment\":\"Untreated net\",\"Total females caught*\":\"581u\",\"% deterrence\":\"-\",\"Total exiting\":\"226\",\"% exophily*\":\"39u\",\"95% CIs\":\"35\\u201343\"},\"9\":{\"Treatment\":\"PermaNet 3.0\",\"Total females caught*\":\"488u\",\"% deterrence\":\"16\",\"Total exiting\":\"369\",\"% exophily*\":\"76v\",\"95% CIs\":\"72\\u201379\"},\"10\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught*\":\"575u\",\"% deterrence\":\"1\",\"Total exiting\":\"360\",\"% exophily*\":\"63w\",\"95% CIs\":\"59\\u201367\"},\"11\":{\"Treatment\":\"PermaNet 3.0 + bendiocarb IRS\",\"Total females caught*\":\"233v\",\"% deterrence\":\"60\",\"Total exiting\":\"185\",\"% exophily*\":\"79v\",\"95% CIs\":\"74\\u201385\"},\"12\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught*\":\"450u\",\"% deterrence\":\"23\",\"Total exiting\":\"311\",\"% exophily*\":\"69x\",\"95% CIs\":\"65\\u201373\"},\"13\":{\"Treatment\":\"PermaNet 3.0 + P-methyl IRS\",\"Total females caught*\":\"223v\",\"% deterrence\":\"62\",\"Total exiting\":\"195\",\"% exophily*\":\"87y\",\"95% CIs\":\"83\\u201392\"}}\n", - "\n", - "header: Data analysis.\n", - "\n", - "Differences in proportional outcomes (exophily, blood-feeding, mortality) between experimental but treatments were analysed using a blocked logistic regression model whereas differences in numerical outcomes (mosquito entry) were assessed using a negative binomial regression model. In addition to the fixed effect of the treatment, both models were adjusted to account for variation due to the differential attractiveness of the volunteer sleepers and huts. Results from the different experimental hut trials involving Olyset Plus and PermaNet 3.0 were analysed separately. Susceptibility bioassay results were interpreted according to WHO criteria49. All analyses were performed in Stata version 15.1.\n", - "\n", - "header: Experimental hut results.\n", - "\n", - "_Mosquito entry and exiting in experimental huts._\n", - "\n", - "A total of 5,404 wild female _An. gambiae_ s.l. were collected in the experimental huts over the 4-month trials (Table 2). In both trials, mosquito entry in huts with the pyrethroid-PBO ITN alone and IRS treatments alone did not differ significantly from the controls (p > 0.05) but was significantly reduced with the pyrethroid-PBO ITN plus IRS combinations compared to the single treatments (p < 0.01). Mosquito entry rates did not also differ between the combinations of the pyrethroid-PBO ITN with bendiocarb IRS relative to the combinations with pirimiphos-methyl IRS (p < 0.05). Nevertheless, IRS treatments could not be rotated and thus, treatment-induced deterrence cannot be fully distinguished from differential attractiveness due to hut position.\n", - "\n", - "The proportion of mosquitoes exiting into the veranda of the huts with the untreated net controls was 36% and 39% for Trials 1 and 2 respectively. Exiting rates were higher with the pyrethroid-PBO ITNs alone (76%) relative to the IRS insecticides alone (51-63% with bendiocarb and 53-69% with pirimiphos-methyl IRS, p < 0.005). In both trials, the highest levels of mosquito exiting were achieved with the pyrethroid-PBO ITN plus IRS combinations (79% with bendiocarb and 87-89% with pirimiphos-methyl IRS). Between the combinations, adding\n", - "primiphos-methyl IRS to the pyrethroid-PBO ITN provided significantly higher levels of mosquito exiting relative to adding bendicord IRS (87-89% vs. 79%, P < 0.05).\n", - "\n", - "Blood-feeding rates of wild malaria vector mosquitoes in experimental huts.Blood-feeding rates in huts with the untreated net controls were 72% and 67% for Trials 1 and 2 respectively (Table 3). The IRS treatments did not provide any blood-feeding inhibition relative to the controls. Blood-feeding inhibition rates were high with the pyrethroid-PBO ITN plus IRS combinations in both trials (69-79% with Olyst Plus and 63-66% with PermaNet 3.0) and this was generally similar to what was observed with the pyrethroid-PBO ITNs alone (67% with Olyst Plus and 65% with PermaNet, P > 0.05) showing that the high levels of blood-feeding inhibition in the combinations, was mostly due to the ITNs. Blood-feeding inhibition with the PermaNet 3.0 plus primiphos-methyl IRS combination (66%) was similar to the PermaNet 3.0 plus bendicord IRS combination (63%, P = 0.71) meanwhile the Olyset Plus and primiphos-methyl IRS combination induced higher levels of blood-feeding inhibition compared to the Olyst Plus and bendicord IRS combination (79% vs. 69%, P = 0.036) (Table 3). Personal protection levels showed a similar trend and were also higher with the combinations (86-90%) relative to the IRS alone (- 33-13%).\n", - "\n", - "Mortality rates of wild malaria vector mosquitoes in experimental huts.\n", - "\n", - "Wild vector mosquito mortality in the controls was 3% in Trial 1 and 2% in Trial 2 (Table 4). The pyrethroid-PBO ITNs killed relatively low mosquito proportions (22% with Olgest Plus and 26% with PermaNet 3.0) though this was higher than what was observed with benedicarb IRS alone (14% in Trial 1 and 16% in Trial 2, P < 0.10). The highest mortality was achieved with pirimphos-methyl IRS alone (77% in Trial 1 and 78% in Trial 2). In both trials, mortality in the pyrethroid-PBO ITN plus pirimiphos-methyl IRS combinations was significantly reduced compared to pirimphos-methyl IRS alone (77% with pirimphos-methyl IRS vs. 59% with Olgest Plus pirimphos-methyl IRS, P < 0.001 and 78% with pirimphos-methyl IRS vs. 55% with PermaNet 3.0 plus pirimphos-methyl IRS, P < 0.001), demonstrating an antagonistic effect. Conversely, mortality was significantly higher in the combinations of benedicarb IRS with Olgest Plus (33%) and PermaNet 3.0 (38%) than benedicarb IRS alone (14-16%, P < 0.001), demonstrating an additive effect (Table 4). Nevertheless, both pyrethroid-PBO plus IRS combinations induced significantly higher\n", - "\n", - "mortality compared to the pyrethroid-PBO ITNs alone (P < 0.001). Between the combinations, mortality was consistently higher with the pyrethroid-PBO ITN plus pirimiphos-methyl IRS combinations (55-59%) compared to the pyrethroid-PBO ITN plus pedicocarb IRS (33-39%, P < 0.001).\n", - "\n", - "The monthly mortality rates of wild vector mosquitoes which entered the experimental huts during the trials are presented in Fig. 1 for the combinations with pedicocarb IRS and Fig. 2 for the combinations with pirimiphos-methyl IRS. In both trials, mosquito mortality rates in huts with the pyrethroid-PBO ITNs plus pedicocarb IRS declined sharply over time from 65-75% in month 1 to 33-38% in month 3, nevertheless, it was consistently higher than the single treatments alone (Fig. 1). Mosquito mortality in the combination of Olyset Plus and pirimiphos-methyl IRS was similar to the IRS alone in month 1 (> 90%) but declined substantially relative to the IRS in subsequent months. With the PermaNet 3.0 plus pirimiphos-methyl IRS combination,\n", - "\n", - "Figure 1.: Monthly mortality rates of wild, pyrethroid-resistant _Anopheles gambiae_ sensu late entering experimental huts with pyrethroid-PBO ITNs and pedicocarb IRS, applied alone and in combination in Cové, southern Benin. Panel (**a**) presents results from the trial with Oyset Plus (Trial 1) and panel (**b**) presents results from the trial with PermaNet 3.0 (Trial 2). Error bars represent 95% CIs. Monthly mortality rates are cumulated with increasing time elapsed from onset of the trial. Mosquito mortality in the control untreated huts did not exceed 5% at any time point.\n", - "\n", - "Figure 2.: Monthly mortality rates of wild, pyrethroid-resistant _Anopheles gambiae_ sensu late entering experimental huts with pyrethroid-PBO ITNs and pirimiphos-methyl IRS, applied alone and in combination in Cové, southern Benin. Panel (**a**) presents results from the trial with Olyset Plus and panel (**b**) presents results from the trial with PermaNet 3.0. Error bars represent 95% CIs. Monthly mortality rates are cumulated with increasing time elapsed from the onset of the trial.\n", - "\n", - "\n", - "mosquito mortality was consistently lower than the IRS alone throughout the trial. Through the four months of the trials, the pyrethroid-PBO ITN plus pirimiphos-methyl IRS combinations consistently induced higher levels of mosquito mortality relative to the pyrethroid-PBO ITNs alone.\n", - "\n", - "header: Materials and methods\n", - "\n", - "Adult F1 progeny of field-collected _An. gambiae_ s.l. from the Cove hut station were exposed to filter papers treated with discriminating doses of deltamethrin (0.05%), permethrin (0.75%), benchicaro (0.1%) and pirimphos-methyl (0.25%) in WHO cylinders8. Deltamethrin and perme-thrin were also tested with 60 min pre-exposure to PBO (4%) to assess the involvement of metabolic enzymes in pyrethroid resistance. A comparison was made with the laboratory-maintained, susceptible _An. gambiae_ s.s. Kisumu strain. Approximately 100, 3-5-day old mosquitoes of each strain were exposed to each insecticide for 60 min in four batches of 20-25. Similar numbers of mosquitoes were concurrently exposed to untreated filter papers as a control. At the end of exposure, mosquitoes were transferred to appropriately labelled holding tubes, provided access to 10% (w/v) glucose solution, and held at 27 +- 2degC and 75 +- 10% relative humidity. Knockdown was recorded 60 min after exposure and delayed mortality after 24 h for all treatments. The insecticide-treated filter papers were obtained from Universiti Sains Malaysia.\n", - "\n", - "header: Hut trial outcome measures\n", - "\n", - "The efficacy of the experimental hut treatments was expressed in terms of the following outcome measures:\n", - "\n", - "1. Deterrence (%)--proportional reduction in the number of mosquitoes collected in the treated hut relative to the number collected in the control.\n", - "2. Exophily (%)--exiting rates due to potential irritant effect of the treatment expressed as the proportion of mosquitoes collected in the veranda trap.\n", - "3. Blood-feeding inhibition (%)--proportional reduction in blood-feeding in the treated hut relative to the control. Calculated as follows: \\[\\mathit{Blood\\ feeding\\ inhibition}(\\%) = \\frac{100(B_{fu} - B_{fu})}{B_{fu}}\\] where _Bfu_ is the number of blood-fed mosquitoes in the untreated net control huts and _Bt_ is the number of mosquitoes in the huts with insecticide treatments.\n", - "4. Mortality (%)--proportion of dead mosquitoes 24 h after collection.\n", - "5. Personal protection (%)--reduction in the number of blood-fed mosquitoes in the treated hut relative to the untreated net control. Calculated as follows: \\[\\mathit{Personal\\ protection}(\\%) = \\frac{100(B_{fu} - B_{fu})}{B_{fu}}\\] where _Bu_ is the number of blood-fed mosquitoes in the untreated net control huts and _Bt_ is the number of mosquitoes in the huts with insecticide treatments.\n", - "\n", - "header: Results\n", - "\n", - "Experimental huts are used to assess the capacity of indoor vector control interventions to prevent wild vector mosquito entry and feeding and induce early mosquito exiting and mortality when applied in a human-occupied house, under carefully controlled conditions [3,12]. The hut trials were conducted at the CREC/LSHTM experimental hut station in Cowe, southern Benin (7deg14'N22deg18E), situated in a vast area of rice irrigation, which provides extensive and permanent breeding sites for mosquitoes. The rainy season extends from March to October and the dry season from November to February. _Anopheles coluzzini_ and _An. gambiae_ sensu stricto (s.s.) occur in symparity, with the latter present at lower densities and predominantly in the dry season. The vector population is susceptible to organophosphates and carbamates but exhibits intense resistance to pyrethroids (200-fold). Molecular genotyping and microarray studies have demonstrated a high frequency of the knockdown resistance L1014F allele (> 90%) and overexpression of CYP6P3, an enzyme associated with pyrethroid detoxification [3].\n", - "\n", - "Two experimental hut trials were performed in parallel for 4 months between April and July 2020. Trial 1 assessed the impact of combining Olyset Plus (Sumitomo Chemical), a permethrin-based pyrethroid-PBO ITN with pirimiphos-methyl IRS while Trial 2 assessed the impact of combining PermaNet 3.0 (Vestergaard Sarl), a deltamethrin-based pyrethroid-PBO ITN with pirimiphos-methyl IRS.\n", - "\n", - "The following six treatments were tested in each of the experimental hut trials:\n", - "\n", - "header: Susceptibility of wild vector mosquitoes at Cove to insecticides.\n", - "\n", - "WHO susceptibility bioassays were conducted in parallel to the experimental hut trial to determine the susceptibility of the vector population at the Cove hit site to the constituent insecticides of the experimental hut treatments. Mortality rates of F1 progeny of field-collected _An. gambiae_ s.l. from the Cove hit station following exposure to discriminating doses of deltamethrin and permethrin in WHO cylinder bioassays were low (42% and 11% respectively), confirming a high frequency of pyrethroid resistance in the Cove vector population (Table 1). Pre-exposure to PBO significantly improved mortality with deltamethrin (42% vs. 72%) but not with permethrin (11% vs. 8%). Mortality rates with the discriminating doses of bendiocarb and pirimiphos-methyl were 98% and 99% respectively. This demonstrated susceptibility to pirimiphos-methyl and bendiocarb. All insecticides induced 100% mortality with the laboratory-maintained, insecticide-susceptible _An. gambiae_ s.s. Kisumu strain. No mortality was recorded in the control with either strain.\n", - "\n", - "header: Discussion\n", - "\n", - "Given the inhibitory effect of PBO on mosquito cytochrome P450 enzymes, the WHO had temporarily recommended against the use of pyrethroid-PBO ITN in areas programmed for IRS with pirimiphos-methyl IRS until further evidence on the potential antagonism between PBO and the organo-thiophosphate pro-insecticide becomes available20. In this study, we found evidence of an antagonistic effect when pyrethroid PBO ITNs were combined with pirimiphos-methyl IRS in the same household in a pyrethroid-resistant area in Southern Benin where resistance was partly conferred by over-expression of mosquito cytochrome P450 enzymes20. Unlike the combination of the pyrethroid-PBO nets with bendicorab IRS which provided improved vector mosquito mortality compared to bendicorab IRS alone, combining these nets with pirimiphos-methyl IRS induced significantly lower levels of vector mosquito mortality rates compared to pirimiphos-methyl IRS alone. This effect\n", - "\n", - "Figure 3.: Mortality (24 h) of susceptible _Anopheles gambiae_ Kisumu and pyrethroid-resistant _An. gambiae_ s.l. Cove strains exposed to Olyset Plus and Permaket 3.0 in tunnel tests. Error bars represent 95% CIs. Both pyrethroid-PBO nets were compared to pyrethroid-only nets (Olyset Net and Permaket 2.0). Permaket 3.0 contains PBO only on the roof of the net. With both strains, 80–120 mosquitoes were exposed overnight to metting pieces cut from whole nets in 2–3 replicate tunnel tests.\n", - "\n", - "\n", - "was remarkably similar between the two brands of pyrethroid-PBO ITNs tested across both hut trials indicating that the negative interaction of the combination on mosquito mortality was less affected by the design and specifications of the pyrethroid-PBO ITN. Wild vector mosquitoes which entered the huts with the combined treatment may have contacted the pirimphos-methyl IRS on the hut wall only after picking up PBO from the ITN while attempting to blood-feed on the sheeper under the net. This pre-exposure to PBO on the ITN could have prevented the metabolic activation of the IRS insecticide in these mosquitoes, resulting in lower mortality rates relative to the IRS alone. This finding supports WHO's recommendation against the deployment of pyrethroid-PBO ITNs in areas that have already been programmed for IRS with pirimphos-methyl IRS. This is mostly important from a programmatic perspective where a vector control programme is faced with multiple choice of ITN types to deploy as an additional intervention to enhance vector control impact in an area that is already dedicated to IRS with pirimphos-methyl. In such a scenario, other types of ITNs like pyrethroid-only nets that were recently shown to complement pirimphos-methyl IRS when applied together23, should be considered.\n", - "\n", - "These findings should however not be interpreted to mean that pirimphos-methyl IRS must not be deployed to complement pyrethroid-PBO ITNs. Though pyrethroid-PBO ITNs have consistently shown improved performance in experimental hut trials against pyrethroid-resistant malaria vectors compared to pyrethroid-only nets34, the margin appears to vary depending on the intensity and mechanisms of pyrethroid-resistance encountered. In our study, the pyrethroid-PBO ITNs when applied alone in a hut induced low vector mosquito mortality (22-26%) compared to what has been observed in hut trials against the same vector population with another type of novel dual ITN (71-76%)35,40. Low levels of mosquito mortality in huts with pyrethroid-PBO ITNs and failure of PBO to fully restore pyrethroid susceptibility in bioassays have also been reported from studies in Burkina Faso37, Cameroon38, Cote d'Ivoire39 and Senegal40. This may indicate the presence of complex resistance mechanisms in the West African region unaffected by PBO. Compared to East Africa, West Africa has shown historically higher intensity of pyrethroid resistance in malaria vectors which continues to increase over time41, yet the public health value of pyrethroid-PBO ITNs has not been assessed in the region. It is therefore unclear whether these nets will provide the same improved epidemiological impact over pyrethroid-only nets in West Africa as observed in the East African community trials which have been the basis of their endorsement for malaria control. Our results showed a significant improvement in mosquito mortality when pirimphos-methyl IRS was combined with the pyrethroid-PBO ITNs (55-59%) compared to the pyrethroid-PBO ITNs alone (22-26%). Mosquito entry and feeding rates were also significantly lower with the combination compared to the pyrethroid-PBO ITNs alone. This provides some justification for deploying pirimphos-methyl IRS to complement pyrethroid-PBO nets in an area of high and complex pyrethroid-resistance where local vectors are less susceptible to the synergistic effect of PBO. Due to the limited choice of insecticides available for IRS, where a beneficial effect of the combination compared to the pyrethroid-PBO ITN alone has been established, pirimphos-methyl IRS should continue to be used even in the presence of high coverage with pyrethroid-PBO ITNs, preferably as part of an IRS rotational strategy. In line with WHO recommendations for insecticide resistance management42, the sustained rotation of multiple insecticide modes of action for IRS may help preserve efficacy to insecticides approved for IRS.\n", - "\n", - "Footnote 3: [https://doi.org/10.1038/s41598-022-10953-y](https://doi.org/10.1038/s41598-022-10953-y)\n", - "\n", - "Footnote 4: [https://doi.org/10.1038/s41598-022-10953-y](https://doi.org/10.1038/s41598-022-10953-y)\n", - "\n", - "Footnote 5: [https://doi.org/10.1038/s41598-022-10953-y](https://doi.org/10.1038/s41598-022-10953-y)\n", - "\n", - "Footnote 6: [https://doi.org/10.1038/s41598-022-10953-](https://doi.org/10.1038/s41598-022-10953-)\n", - "\n", - "y\n", - "\n", - "Footnote 7: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 8: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 9: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 10: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 11: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 12: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 13: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 14: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 15: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 16: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 17: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 18: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 19: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 20: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 21: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 22: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 23: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 24: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 25: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 26: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 27: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 28: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 29: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 30: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 31: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 32: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 333: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 34: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 35: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 36: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 37: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 38: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 39: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 40: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 41: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 42: https://doi.org/10.1038/s415\n", - "\n", - "\n", - "following pre-exposure to PBO, restoration of susceptibility to permethrin--the pyrethroid insecticide used on the pyrethroid-PBO ITN tested in the Tanzanian trial (Olvest Plus)--was high in the vector population from the study area (from 18 to 94%)15. Hence, the level of control achieved with pyrethroid-PBO ITN alone in the Tanzanian trial may have been optimal making the addition of pirimphos-methyl IRS unnecessary. This may not be the case in many communities in West Africa considering the afore-mentioned low levels of pyrethroid-PBO synergism reported in susceptibility bioassays and hut trials conducted across the region; in contrast, the addition of pirimphos-methyl IRS to pyrethroid-PBO ITNs in these communities could be more beneficial for control of clinical malaria compared to the ITN alone. As the range of vector control products available to vector control programmes expands, the choice of interventions and product brands must be aligned to local contexts and guided by local evidence. To help guide vector control policy, epidemiological trials and/or other empirical studies investigating the impact and cost-effectiveness of pyrethroid-PBO nets in communities in the West African region as well as their combination with IRS using pro-insectiles like pirimphos-methyl will be necessary.\n", - "\n", - "Although the inhibitory effect of PBO on mosquito cytochrome P450 enzymes formed the basis of our hypothesis for the antagonism observed between pirimphos-methyl IRS and pyrethroid-PBO ITNs in the experimental huts, behavioural interactions could also have contributed. In both trials, mosquito exiting rates into the veranda traps and blood-feeding inhibition were consistently higher in the combinations compared to the IRS insecticides alone. This could be attributed to the excitro-replenent property of the pyrethroid in the ITN stimulating directed movement of mosquitoes away from their source44. This early exiting effect was however significantly higher in the combination with pirimphos-methyl IRS compared to the combination with bendo-carb IRS suggesting a behavioural interaction in the presence of pirimphos-methyl that may have driven more mosquitoes to exit into the veranda, thus reducing mosquitoes' contact with pirimphos-methyl IRS treated walls. This may have compromised the impact of the pirimphos-methyl IRS in the combination compared to when applied alone and to the combination with bendoicarb. Further studies to assess mosquito flight behaviour, in the presence of the combinations would provide useful insight into behavioural interactions between the treatments. Controlled laboratory assays which minimise behavioural responses and assess P450 enzyme activity in exposed mosquitoes, could also elucidate the potential role of P450 enzyme inhibition in the antagonism observed in the experimental huts.\n", - "\n", - "While our trial focused on investigating the impact of combining pyrethroid-PBO ITNs with pirimphos-methyl IRS in the same households, there is a paucity of information on the interactions between these nets and other newly developed vector control products which contain new public health insecticides such as the neonciotohal, clothidinium and the pyrrole chlorfenapxy. Chlorfenapxy, an insecticide used on ITNs13 and being considered for IRS6,46, also requires activation by mosquito P450 enzymes6. Laboratory experiments have indicated the potential of PBO to antagonise the toxicity of chlorfenapxy against mosquitoes in bioassays29,30. Studies investigating the impact of co-deploying pyrethroid-PBO ITNs together with pyrethroid-chlorfenapxy ITNs or chlorfenapxy IRS in the same household will be essential to help inform optimal co-deployment policy.\n", - "\n", - "header: 3.2.3 Wall cone bioassays.\n", - "\n", - "WHO wall cone bioassays were performed on the IRS treated experimental hut walls 1 week, 2 months and 4 months after application of IRS treatments to assess their residual efficacy with increasing time elapsed from spraying. Mortality rates of the insecticide-susceptible _An. gambiae_ s.s. Kisum strain and pyrethroid-resistant _An. gambiae_ s.l. Cove strain following exposure to IRS-treated surfaces in 30 min wall cone bioassays are presented in Fig. 4. Mortality of mosquitoes exposed to pirimiphos-methyl treated walls was high (>90%) at all time points with both strains, showing no evidence of a decline in residual activity. In contrast, wall cone bioassay mortality on bendicor-treated surfaces declined rapidly, beginning at 67% and 39% in week 1 and falling to lows of 2% and 3% in month 4 with the Kisum and Cove strains respectively. No mortality was recorded in the controls at any time point with either strain.\n", - "\n", - "header: Experimental hut trial procedure\n", - "\n", - "During the hut trials, volunteer sleepers were rotated between experimental huts daily to mitigate the impact of individual attractiveness whilst bed nets were rotated weekly between the huts to reduce the impact of hut position on mosquito entry. Three (3) replicate bed nets were used per treatment and rotated within the treatment every 2 days. IRS treatments cannot be rotated and thus remained fixed throughout the trial. Consenting human volunteer sleepers alert in experimental huts between 21:00 and 06:00 to attract free-flying mosquitoes. Each morning, volunteer sleepers collected all live and dead mosquitoes from the different compartments of the hut (under the net, room, veranda) using a torch and aspirator and placed them in correspondingly labelled plastic cups. Mosquito collections were then transferred to the field laboratory for morphological identification using taxonomic keys and scoring of immediate mortality and blood-feeding. All live, female _An. gambiae_ s.l. were provided access to 10% glucose (w/v) solution and held at ambient conditions in the field laboratory. Delayed mortality was recorded after 24 h for all treatments. Mosquito collections were performed 6 nights per week and on the 7th day, huts were cleaned and aired in preparation for the next rotation cycle.\n", - "\n", - "header: Abbreviations\n", - "\n", - "IRS Indoor residual spraying\n", - "\n", - "WHO World Health Organization\n", - "\n", - "PQ Prenqualification team\n", - "\n", - "PBO Piperonyl butoxide\n", - "\n", - "ITN Insecticide treated net\n", - "\n", - "LLIN Long-lasting insecticidal net\n", - "\n", - "GPIRM Global plan for insecticide resistance management\n", - "\n", - "WHOPES WHO pesticide evaluation scheme\n", - "\n", - "CREC Centre de Recherche Entomologique de Cotonou\n", - "\n", - "LSHTTM London School of Hygiene & Tropical Medicine\n", - "\n", - "Kdr Knockdown resistance\n", - "\n", - "PAMVERC Pan African Malaria Vector Research Consortium\n", - "\n", - "The large-scale implementation of long-lasting insecticidal nets (LLINs), and indoor residual spraying (IRS) has resulted in profound reductions in malaria-associated morbidity and mortality across sub-Saharan Africa, over the last two decades1. Unfortunately, resistance to the insecticides applied through these interventions, especially the pyrethroids, is now pervasive in vector populations in malaria-endemic countries', threatening to undermine their impact. In response, a new generation of novel LLINs and IRS based on new active ingredients with the potential to sustain vector control impact in the face of increasing resistance, have been developed3. This includes dual insecticide-treated nets containing a pyrethroid and an alternative effective new compound as well as new IRS insecticides with novel modes of action or improved formulations that have shown potential to provide enhanced control of insecticide-resistant malaria vector populations.\n", - "\n", - "Insecticide-treated nets (ITNs) combining a pyrethroid and piperonyl butoxido (PBO) were the first novel class of ITNs to be developed for malaria vector control. PBO is a synergism that can enhance the impact of pyrethroids and other insecticides by inhibiting metabolic detoxification enzymes associated with resistance, notably cytochrome P450 monooxygenases3. These nets received a conditional endorsement from the World Health Organisation (WHO) in 2017 based on results from a cluster-randomised controlled trial (CRT) in Tanzania demonstrating a reduction in malaria prevalence in communities allocated to pyrethroid-PBO ITNs relative to pyrethroid-only ITNs4. A full policy recommendation is now expected after results from a second CRT in Uganda also showed that two brands of pyrethroid-PBO ITNs reduced malaria prevalence relative to pyrethroid-only nets4. The WHO endorsement and expanding evidence base for the public health value of pyrethroid-PBO ITNs has prompted mass procurement of these nets by international malaria control agencies4,5. The proportion of pyrethroid-PBO ITNs of all ITNs delivered in sub-Saharan Africa has consequently risen from 3% in 2018 to 35% in 202112; pyrethroid-PBO ITNs are therefore replacing pyrethroid-only nets in many malaria-endemic countries.\n", - "\n", - "The increasing distribution and intensity of pyrethroid resistance has also affected malaria control policy regarding insecticide choice for IRS over the last decade. To improve vector control impact and preserve pyrethroids for ITNs, African IRS programmes partly suspended the use of pyrethroids and organochlorines in favour of carbamates and organophosphates5,12. Whilst both insecticides showed high toxicity against malaria vectors, the short residual duration of the initial formulations approved for IRS proved prohibitive, necessitating the development of longer-lasting formulations13. A new microencapsulated formulation of pirimphos-methyl was later developed (Actellic 300CS) demonstrating prolonged activity against pyrethroid-resistant malaria vector mosquitoes, lasting up to 9 months14,15. This formulation subsequently served as the insecticide of choice for the majority of IRS programmes in sub-Saharan Africa1 providing substantial control of mosquito vectors and malaria across distinct eco-epidemiological settings6,16-22.\n", - "\n", - "[MISSING_PAGE_POST]\n", - "\n", - "header: Wall cone bioassays\n", - "\n", - "The laboratory-maintained, susceptible _An. gambiae_ s.s. Kisumu strain and wild pyrethroid-resistant _An. gambiae_ s.l. Cove mosquitoes (F1) derived from breeding sites at the hut station were used for this purpose. At each time point, five cones were attached to the walls and ceiling of the IRS-treated huts. Approximately 50, 3-5-day old mosquitoes were transferred into cones in 5 batches of 10 and exposed to the treated surfaces for 30 min. As a control, mosquitoes were exposed in cones attached to the walls and ceiling of an unsprayed hut. At the end of exposure, mosquitoes were transferred to netted, plastic cups. Mosquitoes were provided access to 10% (w/v) glucose solution and delayed mortality after 24 h for all treatments.\n", - "\n", - "\n", - "Ethical considerations.Ethical approval for the conduct of the study was obtained from the ethics review boards of the Beninese Ministry of Health (No. 34) and the London School of Hygiene & Tropical Medicine (Ref: 16969). All human volunteer sleepers gave informed written consent prior to their participation; where necessary, the consent form and information sheet were explained in their local language. They were offered a free course of chemoprophylaxis spanning the duration of the trial and up to 3 weeks following its completion. A stand-by nurse was available for the duration of the trial to assess any cases of fever or adverse reactions to test items. Any confirmed cases of malaria were treated free of charge at a local health facility. Animals used as baits in tunnel test were maintained following institutional standard operating procedures (SOPs) designed to improve care and protect animals used for experimentation. All studies were performed according to relevant national and international guidelines.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `Observation` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Trial 2.\n", - "\n", - "1. Untreated net.\n", - "2. PermaNet 3.0 (Vestergaard Sarl).\n", - "3. Bendiocarb IRS applied at 400 mg/m2 (Ficam 80WP, Bayer).\n", - "4. PermaNet 3.0 + Bendiocarb IRS applied at 400 mg/m2.\n", - "5. Pirimiphos-methyl IRS applied at 1000 mg/m2 (Actellic 300CS, Syngenta).\n", - "6. PermaNet 3.0 + Pirimiphos-methyl IRS applied at 1000 mg/m2.\n", - "\n", - "Olyset Plus and PermaNet 3.0 are WHO prequalified pyrethroid-PBO ITNs [3]. Olyset Plus is made of polyethylene filaments coated with 20 g/Kg of permethrin and 10 g/Kg of PBO. PermaNet 3.0 consists of polyester side panels coated with deltamethrin at 2.1 g/kg and a polyethylene roof panel incorporating deltamethrin and PBO at 4.0 g/kg and 25 g/kg respectively.\n", - "\n", - "header: Tunnel tests\n", - "\n", - "The tunnel test consists of a square glass cylinder (25 cm high, 25 cm wide, 60 cm in length) divided into two sections using a netting frame fitted into a slot across the tunnel. In one of the sections, a guinea pig was housed unconstrained in a small cage, and in the other section, -100 unfed female mosquitoes aged 5-8 days were released at dusk and left overnight. The net samples were deliberately hoked with nine 1-cm holes to give opportunity for mosquitoes to penetrate the animal bathed chamber for a blood meal an untreated net sample served as the control. The tunnels were kept overnight in a dark room at 25-29 oC and 65-85% RH. The next morning, the numbers of mosquitoes found alive or dead, fed or unfed, in each section were scored. Live mosquitoes were provided with 10% glucose solution and delayed mortality was recorded after 24 h. The pyrethroid-PBO ITNs were compared to Olyset Net (a permethrin-only net, Sumitomo chemical) and PermaNet 2.0 (a deltamethrin-only net, Vestergaard Sarl) and an untreated control net. Two to three net pieces were tested per net type.\n", - "\n", - "header: scientific reports: Abstract\n", - "\n", - "OPEN : Pyrethroid-piperonyl butoxide (PBO) nets reduce the efficacy of indoor residual spraying with pirimiphos-methyl against pyrethroid-resistant malaria vectors\n", - "\n", - "Thomas Syme, Mariai Ghegbo, Dorothy Obuobi, Augustin Fongnikin, Abel Agbevo, Damien Todjinou, & Corine Ngufori\n", - "\n", - "\n", - "Primiphos-methyl is a pro-insecticide requiring activation by mosquito cytochrome P450 enzymes to induce toxicity while PBO blocks activation of these enzymes in pyrethroid-resistant vector mosquitoes. PBO may thus antagonise the toxicity of pirimiphos-methyl IRS when combined with pyrethroid-PBO ITMs. The impact of combining Olyset Plus and PermaNet 3.0 with Actellite 300CS IRS was evaluated against pyrethroid-resistant _Anopheles gambiae_ s.l. in two parallel experimental hut trials in southern Benin. The vector population was resistant to pyrethroids and PBO pre-exposure partially restored deltamethrin toxicity but not permitting. Mosquito mortality in experimental huts was significantly improved in the combinations of bendicocarp IRS with pyrethroid-PBO ITMs (33-3896) compared to bendicocarp IRS alone (14-16%, p < 0.001), demonstrating an additive effect. Conversely, mortality was significantly reduced in the combinations of pirimiphos-methyl IRS with pyrethroid-PBO ITMs (55-59%) compared to pirimiphos-methyl IRS alone (77-78%, p < 0.001), demonstrating evidence of an antagonistic effect when both interventions are applied in the same household. Mosquito mortality in the combination was significantly higher compared to the pyrethroid-PBO ITMs alone (55-59% vs. 22-26% p < 0.001) showing potential of pirimiphos-methyl IRS to enhance vector control when deployed to complement pyrethroid-PBO ITMs in an area where PBO fails to fully restore susceptibility to pyrethroids.\n", - "\n", - "header: 3.2.2 Tumed test bioassays.\n", - "\n", - "To further assess the efficacy of the pyrethroid-PBO ITNs and help explain the findings in the experimental huts, tunnel tests were performed using the susceptible _An. gambiae_ Kisum strain and pyrethroid-resistant _An. gambiae_ as from Cove on net samples (30 x 30 cm) obtained from Olyset Plus and Permaket 3.0 nets. The tunnel test is an overnight animal baulesar what simulates host-seeking behaviour of vector mosquitoes under controlled laboratory conditions. Both pyrethroid-PBO ITNs were compared to pyrethroid-only nets which contained similar pyrethroid-insecticles (Olyset Net and Permaket 2.0). Mosquito mortality rates observed in the tunnels are presented in Fig. 3. Mortality in the control tunnels was 11% with the susceptible Kisum strain and 2% with the pyrethroid-resistant Cove strain. All ITN types induced >8% mortality with the susceptible Kisum strain. Olyset Plus killed significantly higher proportions of the Cove mosquitoes compared to Olyset Net (90% vs. 42%). With Permaket 3.0, mortality of Cove mosquitoes exposed to net prices obtained from the PBO treated root of the net (68%) was higher compared to net prices obtained from the sides of the net (34%) and Permaket 2.0 (27%). The results, therefore, showed higher levels of mortality against pyrethroid-resistant mosquitoes from the Cove experimental hut station with the pyrethroid-PBO ITNs relative to pyrethroid-only nets. More detailed results from the tunnel tests are available in the supplementary information (Table S1).\n", - "\n", - "header: Table 3: Blood-feeding results of wild, pyrethroid-resistant Anopheles gambiae sensu lato exposed to pyrethroid-PBO ITNs and pirimiphos-methyl IRS applied alone and in combination in experimental huts in Cové, southern Benin.\n", - "footer: Results are presented separately for the trials involving Olgest Plus (Trial 1) and PermaNet 3.0 (Trial 2). ‘For each trial, values on this column sharing a superscript letter do not differ significantly, P > 0.05, logistic regression.\n", - "columns: ['Treatment', 'Total females caught', 'Total blood-fed', '% blood-feeding', '95% CIs', '% blood-feeding inhibition', '% personal protection']\n", - "\n", - "{\"0\":{\"Treatment\":\"Trial 1\",\"Total females caught\":\"Trial 1\",\"Total blood-fed\":\"Trial 1\",\"% blood-feeding\":\"Trial 1\",\"95% CIs\":\"Trial 1\",\"% blood-feeding inhibition\":\"Trial 1\",\"% personal protection\":\"Trial 1\"},\"1\":{\"Treatment\":\"Untreated net\",\"Total females caught\":\"664\",\"Total blood-fed\":\"481\",\"% blood-feeding\":\"72a\",\"95% CIs\":\"69\\u201376\",\"% blood-feeding inhibition\":\"\\u2013\",\"% personal protection\":\"\\u2013\"},\"2\":{\"Treatment\":\"Olyset plus\",\"Total females caught\":\"511\",\"Total blood-fed\":\"122\",\"% blood-feeding\":\"24b\",\"95% CIs\":\"20\\u201328\",\"% blood-feeding inhibition\":\"67\",\"% personal protection\":\"75\"},\"3\":{\"Treatment\":\"Benedicarb IRS\",\"Total females caught\":\"556\",\"Total blood-fed\":\"528\",\"% blood-feeding\":\"95c\",\"95% CIs\":\"93\\u201397\",\"% blood-feeding inhibition\":\"\\u201331\",\"% personal protection\":\"\\u2013 10\"},\"4\":{\"Treatment\":\"Olyset Plus + bendicarb IRS\",\"Total females caught\":\"288\",\"Total blood-fed\":\"64\",\"% blood-feeding\":\"22b\",\"95% CIs\":\"17\\u201327\",\"% blood-feeding inhibition\":\"69\",\"% personal protection\":\"87\"},\"5\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught\":\"531\",\"Total blood-fed\":\"420\",\"% blood-feeding\":\"79d\",\"95% CIs\":\"76\\u201383\",\"% blood-feeding inhibition\":\"\\u20139\",\"% personal protection\":\"13\"},\"6\":{\"Treatment\":\"Olyset Plus + P-methyl IRS\",\"Total females caught\":\"304\",\"Total blood-fed\":\"47\",\"% blood-feeding\":\"16e\",\"95% CIs\":\"11\\u201320\",\"% blood-feeding inhibition\":\"79\",\"% personal protection\":\"90\"},\"7\":{\"Treatment\":\"Trial 2\",\"Total females caught\":\"Trial 2\",\"Total blood-fed\":\"Trial 2\",\"% blood-feeding\":\"Trial 2\",\"95% CIs\":\"Trial 2\",\"% blood-feeding inhibition\":\"Trial 2\",\"% personal protection\":\"Trial 2\"},\"8\":{\"Treatment\":\"Untreated net\",\"Total females caught\":\"581\",\"Total blood-fed\":\"391\",\"% blood-feeding\":\"67u\",\"95% CIs\":\"64\\u201371\",\"% blood-feeding inhibition\":\"\\u2013\",\"% personal protection\":\"\\u2013\"},\"9\":{\"Treatment\":\"PermaNet 3.0\",\"Total females caught\":\"488\",\"Total blood-fed\":\"115\",\"% blood-feeding\":\"24v\",\"95% CIs\":\"20\\u201327\",\"% blood-feeding inhibition\":\"65\",\"% personal protection\":\"71\"},\"10\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught\":\"575\",\"Total blood-fed\":\"519\",\"% blood-feeding\":\"90w\",\"95% CIs\":\"88\\u201393\",\"% blood-feeding inhibition\":\"\\u201334\",\"% personal protection\":\"\\u2013 33\"},\"11\":{\"Treatment\":\"PermaNet 3.0 + bendiocarb IRS\",\"Total females caught\":\"233\",\"Total blood-fed\":\"54\",\"% blood-feeding\":\"23v\",\"95% CIs\":\"18\\u201329\",\"% blood-feeding inhibition\":\"66\",\"% personal protection\":\"86\"},\"12\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught\":\"450\",\"Total blood-fed\":\"406\",\"% blood-feeding\":\"90w\",\"95% CIs\":\"88\\u201393\",\"% blood-feeding inhibition\":\"\\u201334\",\"% personal protection\":\"\\u2013 4\"},\"13\":{\"Treatment\":\"PermaNet 3.0 + P-methyl IRS\",\"Total females caught\":\"223\",\"Total blood-fed\":\"55\",\"% blood-feeding\":\"25v\",\"95% CIs\":\"19\\u201330\",\"% blood-feeding inhibition\":\"63\",\"% personal protection\":\"86\"},\"14\":{\"Treatment\":\"PermaNet 3.0 + P-methyl IRS\",\"Total females caught\":\"223\",\"Total blood-fed\":\"55\",\"% blood-feeding\":\"25v\",\"95% CIs\":\"19\\u201330\",\"% blood-feeding inhibition\":\"63\",\"% personal protection\":\"86\"}}\n", - "\n", - "header: Study site and experimental hut treatments.: Trial 1.\n", - "\n", - "1. Untreated net.\n", - "2. Olyset Plus (Sumitomo Chemical).\n", - "3. Bendiocarb IRS applied at 400 mg/m2 (Ficam 80WP, Bayer).\n", - "4. Olyset Plus + Bendiocarb IRS applied at 400 mg/m2.\n", - "5. Pirimiphos-methyl IRS applied at 1000 mg/m2 (Actellic 300CS, Syngenta).\n", - "6. Olyset Plus + Pirimiphos-methyl IRS applied at 1000 mg/m2.\n", - "\n", - "header: Conclusion\n", - "\n", - "Our study provides the first evidence of an antagonistic effect when pyrethroid-PBO ITNs are combined with pirimphos-methyl IRS in the same household resulting in lower levels of vector mosquito mortality compared to the IRS alone. In line with WHO recommendations, vector control programmes faced with multiple choice of ITN types to deploy as an additional intervention to improve vector control impact in an area dedicated to IRS with pirimphos-methyl, may consider other types of ITNs like pyrethroid-ITNs which can better complement pirimphos-methyl IRS when deployed together. Nevertheless, the pyrethroid-PBO ITNs performed poorly probably due to the lower levels of restoration of pyrethroid susceptibility with PBO in the vector population. Combining these nets with pirimphos-methyl IRS provided significantly improved vector control compared to the net alone demonstrating the potential for pirimphos-methyl IRS to enhance malaria control when deployed to complement pyrethroid-PBO ITNs in areas where PBO fails to fully restore susceptibility to pyrethroids.\n", - "\n", - "header: Hut trial outcome measures\n", - "\n", - "The efficacy of the experimental hut treatments was expressed in terms of the following outcome measures:\n", - "\n", - "1. Deterrence (%)--proportional reduction in the number of mosquitoes collected in the treated hut relative to the number collected in the control.\n", - "2. Exophily (%)--exiting rates due to potential irritant effect of the treatment expressed as the proportion of mosquitoes collected in the veranda trap.\n", - "3. Blood-feeding inhibition (%)--proportional reduction in blood-feeding in the treated hut relative to the control. Calculated as follows: \\[\\mathit{Blood\\ feeding\\ inhibition}(\\%) = \\frac{100(B_{fu} - B_{fu})}{B_{fu}}\\] where _Bfu_ is the number of blood-fed mosquitoes in the untreated net control huts and _Bt_ is the number of mosquitoes in the huts with insecticide treatments.\n", - "4. Mortality (%)--proportion of dead mosquitoes 24 h after collection.\n", - "5. Personal protection (%)--reduction in the number of blood-fed mosquitoes in the treated hut relative to the untreated net control. Calculated as follows: \\[\\mathit{Personal\\ protection}(\\%) = \\frac{100(B_{fu} - B_{fu})}{B_{fu}}\\] where _Bu_ is the number of blood-fed mosquitoes in the untreated net control huts and _Bt_ is the number of mosquitoes in the huts with insecticide treatments.\n", - "\n", - "header: Materials and methods\n", - "\n", - "Adult F1 progeny of field-collected _An. gambiae_ s.l. from the Cove hut station were exposed to filter papers treated with discriminating doses of deltamethrin (0.05%), permethrin (0.75%), benchicaro (0.1%) and pirimphos-methyl (0.25%) in WHO cylinders8. Deltamethrin and perme-thrin were also tested with 60 min pre-exposure to PBO (4%) to assess the involvement of metabolic enzymes in pyrethroid resistance. A comparison was made with the laboratory-maintained, susceptible _An. gambiae_ s.s. Kisumu strain. Approximately 100, 3-5-day old mosquitoes of each strain were exposed to each insecticide for 60 min in four batches of 20-25. Similar numbers of mosquitoes were concurrently exposed to untreated filter papers as a control. At the end of exposure, mosquitoes were transferred to appropriately labelled holding tubes, provided access to 10% (w/v) glucose solution, and held at 27 +- 2degC and 75 +- 10% relative humidity. Knockdown was recorded 60 min after exposure and delayed mortality after 24 h for all treatments. The insecticide-treated filter papers were obtained from Universiti Sains Malaysia.\n", - "\n", - "header: Table 4.Mortality results of wild, pyrethroid-resistant Anopheles gambiae sensu lato in experimental huts in Covè, southern Benin treated with pyrethroid-PBO ITNs, and pirimiphos-methyl IRS applied alone and in combination.\n", - "footer: Results are presented separately for the trials involving Olyset Plus (Trial 1) and PermaNet 3.0 (Trial 2). *For each trial, values on this column sharing a superscript letter do not di\u001d\n", - "er signi\u001fcantly, p>0.05, logistic regression\n", - "columns: ['Treatment', 'Total females caught', 'Total dead', '% mortality*', '95% CIs']\n", - "\n", - "{\"0\":{\"Treatment\":\"Trial 1\",\"Total females caught\":\"Trial 1\",\"Total dead\":\"Trial 1\",\"% mortality*\":\"Trial 1\",\"95% CIs\":\"Trial 1\"},\"1\":{\"Treatment\":\"Untreated net\",\"Total females caught\":\"664\",\"Total dead\":\"22\",\"% mortality*\":\"3a\",\"95% CIs\":\"2\\u20135\"},\"2\":{\"Treatment\":\"Olyset Plus\",\"Total females caught\":\"511\",\"Total dead\":\"114\",\"% mortality*\":\"22b\",\"95% CIs\":\"19\\u201326\"},\"3\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught\":\"556\",\"Total dead\":\"87\",\"% mortality*\":\"16c\",\"95% CIs\":\"13\\u201319\"},\"4\":{\"Treatment\":\"Olyset Plus + Bendiocarb IRS\",\"Total females caught\":\"288\",\"Total dead\":\"95\",\"% mortality*\":\"33d\",\"95% CIs\":\"28\\u201338\"},\"5\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught\":\"531\",\"Total dead\":\"411\",\"% mortality*\":\"77e\",\"95% CIs\":\"74\\u201381\"},\"6\":{\"Treatment\":\"Olyset Plus + P-methyl IRS\",\"Total females caught\":\"304\",\"Total dead\":\"178\",\"% mortality*\":\"59f\",\"95% CIs\":\"53\\u201364\"},\"7\":{\"Treatment\":\"Trial 2\",\"Total females caught\":\"Trial 2\",\"Total dead\":\"Trial 2\",\"% mortality*\":\"Trial 2\",\"95% CIs\":\"Trial 2\"},\"8\":{\"Treatment\":\"Untreated net\",\"Total females caught\":\"581\",\"Total dead\":\"12\",\"% mortality*\":\"2u\",\"95% CIs\":\"1\\u20133\"},\"9\":{\"Treatment\":\"PermaNet 3.0\",\"Total females caught\":\"488\",\"Total dead\":\"127\",\"% mortality*\":\"26v\",\"95% CIs\":\"22\\u201330\"},\"10\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught\":\"575\",\"Total dead\":\"80\",\"% mortality*\":\"14w\",\"95% CIs\":\"11\\u201317\"},\"11\":{\"Treatment\":\"PermaNet 3.0 + Bendiocarb IRS\",\"Total females caught\":\"233\",\"Total dead\":\"89\",\"% mortality*\":\"38x\",\"95% CIs\":\"32\\u201344\"},\"12\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught\":\"450\",\"Total dead\":\"350\",\"% mortality*\":\"78y\",\"95% CIs\":\"74\\u201382\"},\"13\":{\"Treatment\":\"PermaNet 3.0 + P-methyl IRS\",\"Total females caught\":\"223\",\"Total dead\":\"122\",\"% mortality*\":\"55z\",\"95% CIs\":\"48\\u201361\"}}\n", - "\n", - "header: Table 2. Entry and exiting of wild, pyrethroid-resistant Anopheles gambiae sensu lato in experimental huts in Covè, southern Benin treated with pyrethroid-PBO ITNs and pirimiphos-methyl IRS applied alone and in combination.\n", - "footer: Results are presented separately for the trials involving Olyset Plus (Trial 1) and PermaNet 3.0 (Trial 2). *For each trial, values on this column sharing a superscript letter do not di\u001d\n", - "er signi\u001fcantly, P>0.05, negative binomial regression for females caught and logistic regression for exophily.\n", - "columns: ['Treatment', 'Total females caught*', '% deterrence', 'Total exiting', '% exophily*', '95% CIs']\n", - "\n", - "{\"0\":{\"Treatment\":\"Trial 1\",\"Total females caught*\":\"Trial 1\",\"% deterrence\":\"Trial 1\",\"Total exiting\":\"Trial 1\",\"% exophily*\":\"Trial 1\",\"95% CIs\":\"Trial 1\"},\"1\":{\"Treatment\":\"Untreated net\",\"Total females caught*\":\"664a\",\"% deterrence\":\"-\",\"Total exiting\":\"241\",\"% exophily*\":\"36a\",\"95% CIs\":\"33\\u201340\"},\"2\":{\"Treatment\":\"Olyset plus\",\"Total females caught*\":\"511a\",\"% deterrence\":\"23\",\"Total exiting\":\"390\",\"% exophily*\":\"76b\",\"95% CIs\":\"73\\u201380\"},\"3\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught*\":\"556a\",\"% deterrence\":\"16\",\"Total exiting\":\"282\",\"% exophily*\":\"51c\",\"95% CIs\":\"47\\u201355\"},\"4\":{\"Treatment\":\"Olyset Plus + bendiocarb IRS\",\"Total females caught*\":\"288b\",\"% deterrence\":\"57\",\"Total exiting\":\"228\",\"% exophily*\":\"79b\",\"95% CIs\":\"75\\u201384\"},\"5\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught*\":\"531a\",\"% deterrence\":\"20\",\"Total exiting\":\"281\",\"% exophily*\":\"53c\",\"95% CIs\":\"49\\u201357\"},\"6\":{\"Treatment\":\"Olyset plus + P-methyl IRS\",\"Total females caught*\":\"304b\",\"% deterrence\":\"54\",\"Total exiting\":\"270\",\"% exophily*\":\"89d\",\"95% CIs\":\"85\\u201392\"},\"7\":{\"Treatment\":\"Trial 2\",\"Total females caught*\":\"Trial 2\",\"% deterrence\":\"Trial 2\",\"Total exiting\":\"Trial 2\",\"% exophily*\":\"Trial 2\",\"95% CIs\":\"Trial 2\"},\"8\":{\"Treatment\":\"Untreated net\",\"Total females caught*\":\"581u\",\"% deterrence\":\"-\",\"Total exiting\":\"226\",\"% exophily*\":\"39u\",\"95% CIs\":\"35\\u201343\"},\"9\":{\"Treatment\":\"PermaNet 3.0\",\"Total females caught*\":\"488u\",\"% deterrence\":\"16\",\"Total exiting\":\"369\",\"% exophily*\":\"76v\",\"95% CIs\":\"72\\u201379\"},\"10\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught*\":\"575u\",\"% deterrence\":\"1\",\"Total exiting\":\"360\",\"% exophily*\":\"63w\",\"95% CIs\":\"59\\u201367\"},\"11\":{\"Treatment\":\"PermaNet 3.0 + bendiocarb IRS\",\"Total females caught*\":\"233v\",\"% deterrence\":\"60\",\"Total exiting\":\"185\",\"% exophily*\":\"79v\",\"95% CIs\":\"74\\u201385\"},\"12\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught*\":\"450u\",\"% deterrence\":\"23\",\"Total exiting\":\"311\",\"% exophily*\":\"69x\",\"95% CIs\":\"65\\u201373\"},\"13\":{\"Treatment\":\"PermaNet 3.0 + P-methyl IRS\",\"Total females caught*\":\"223v\",\"% deterrence\":\"62\",\"Total exiting\":\"195\",\"% exophily*\":\"87y\",\"95% CIs\":\"83\\u201392\"}}\n", - "\n", - "header: Data analysis.\n", - "\n", - "Differences in proportional outcomes (exophily, blood-feeding, mortality) between experimental but treatments were analysed using a blocked logistic regression model whereas differences in numerical outcomes (mosquito entry) were assessed using a negative binomial regression model. In addition to the fixed effect of the treatment, both models were adjusted to account for variation due to the differential attractiveness of the volunteer sleepers and huts. Results from the different experimental hut trials involving Olyset Plus and PermaNet 3.0 were analysed separately. Susceptibility bioassay results were interpreted according to WHO criteria49. All analyses were performed in Stata version 15.1.\n", - "\n", - "header: Experimental hut results.\n", - "\n", - "_Mosquito entry and exiting in experimental huts._\n", - "\n", - "A total of 5,404 wild female _An. gambiae_ s.l. were collected in the experimental huts over the 4-month trials (Table 2). In both trials, mosquito entry in huts with the pyrethroid-PBO ITN alone and IRS treatments alone did not differ significantly from the controls (p > 0.05) but was significantly reduced with the pyrethroid-PBO ITN plus IRS combinations compared to the single treatments (p < 0.01). Mosquito entry rates did not also differ between the combinations of the pyrethroid-PBO ITN with bendiocarb IRS relative to the combinations with pirimiphos-methyl IRS (p < 0.05). Nevertheless, IRS treatments could not be rotated and thus, treatment-induced deterrence cannot be fully distinguished from differential attractiveness due to hut position.\n", - "\n", - "The proportion of mosquitoes exiting into the veranda of the huts with the untreated net controls was 36% and 39% for Trials 1 and 2 respectively. Exiting rates were higher with the pyrethroid-PBO ITNs alone (76%) relative to the IRS insecticides alone (51-63% with bendiocarb and 53-69% with pirimiphos-methyl IRS, p < 0.005). In both trials, the highest levels of mosquito exiting were achieved with the pyrethroid-PBO ITN plus IRS combinations (79% with bendiocarb and 87-89% with pirimiphos-methyl IRS). Between the combinations, adding\n", - "primiphos-methyl IRS to the pyrethroid-PBO ITN provided significantly higher levels of mosquito exiting relative to adding bendicord IRS (87-89% vs. 79%, P < 0.05).\n", - "\n", - "Blood-feeding rates of wild malaria vector mosquitoes in experimental huts.Blood-feeding rates in huts with the untreated net controls were 72% and 67% for Trials 1 and 2 respectively (Table 3). The IRS treatments did not provide any blood-feeding inhibition relative to the controls. Blood-feeding inhibition rates were high with the pyrethroid-PBO ITN plus IRS combinations in both trials (69-79% with Olyst Plus and 63-66% with PermaNet 3.0) and this was generally similar to what was observed with the pyrethroid-PBO ITNs alone (67% with Olyst Plus and 65% with PermaNet, P > 0.05) showing that the high levels of blood-feeding inhibition in the combinations, was mostly due to the ITNs. Blood-feeding inhibition with the PermaNet 3.0 plus primiphos-methyl IRS combination (66%) was similar to the PermaNet 3.0 plus bendicord IRS combination (63%, P = 0.71) meanwhile the Olyset Plus and primiphos-methyl IRS combination induced higher levels of blood-feeding inhibition compared to the Olyst Plus and bendicord IRS combination (79% vs. 69%, P = 0.036) (Table 3). Personal protection levels showed a similar trend and were also higher with the combinations (86-90%) relative to the IRS alone (- 33-13%).\n", - "\n", - "Mortality rates of wild malaria vector mosquitoes in experimental huts.\n", - "\n", - "Wild vector mosquito mortality in the controls was 3% in Trial 1 and 2% in Trial 2 (Table 4). The pyrethroid-PBO ITNs killed relatively low mosquito proportions (22% with Olgest Plus and 26% with PermaNet 3.0) though this was higher than what was observed with benedicarb IRS alone (14% in Trial 1 and 16% in Trial 2, P < 0.10). The highest mortality was achieved with pirimphos-methyl IRS alone (77% in Trial 1 and 78% in Trial 2). In both trials, mortality in the pyrethroid-PBO ITN plus pirimiphos-methyl IRS combinations was significantly reduced compared to pirimphos-methyl IRS alone (77% with pirimphos-methyl IRS vs. 59% with Olgest Plus pirimphos-methyl IRS, P < 0.001 and 78% with pirimphos-methyl IRS vs. 55% with PermaNet 3.0 plus pirimphos-methyl IRS, P < 0.001), demonstrating an antagonistic effect. Conversely, mortality was significantly higher in the combinations of benedicarb IRS with Olgest Plus (33%) and PermaNet 3.0 (38%) than benedicarb IRS alone (14-16%, P < 0.001), demonstrating an additive effect (Table 4). Nevertheless, both pyrethroid-PBO plus IRS combinations induced significantly higher\n", - "\n", - "mortality compared to the pyrethroid-PBO ITNs alone (P < 0.001). Between the combinations, mortality was consistently higher with the pyrethroid-PBO ITN plus pirimiphos-methyl IRS combinations (55-59%) compared to the pyrethroid-PBO ITN plus pedicocarb IRS (33-39%, P < 0.001).\n", - "\n", - "The monthly mortality rates of wild vector mosquitoes which entered the experimental huts during the trials are presented in Fig. 1 for the combinations with pedicocarb IRS and Fig. 2 for the combinations with pirimiphos-methyl IRS. In both trials, mosquito mortality rates in huts with the pyrethroid-PBO ITNs plus pedicocarb IRS declined sharply over time from 65-75% in month 1 to 33-38% in month 3, nevertheless, it was consistently higher than the single treatments alone (Fig. 1). Mosquito mortality in the combination of Olyset Plus and pirimiphos-methyl IRS was similar to the IRS alone in month 1 (> 90%) but declined substantially relative to the IRS in subsequent months. With the PermaNet 3.0 plus pirimiphos-methyl IRS combination,\n", - "\n", - "Figure 1.: Monthly mortality rates of wild, pyrethroid-resistant _Anopheles gambiae_ sensu late entering experimental huts with pyrethroid-PBO ITNs and pedicocarb IRS, applied alone and in combination in Cové, southern Benin. Panel (**a**) presents results from the trial with Oyset Plus (Trial 1) and panel (**b**) presents results from the trial with PermaNet 3.0 (Trial 2). Error bars represent 95% CIs. Monthly mortality rates are cumulated with increasing time elapsed from onset of the trial. Mosquito mortality in the control untreated huts did not exceed 5% at any time point.\n", - "\n", - "Figure 2.: Monthly mortality rates of wild, pyrethroid-resistant _Anopheles gambiae_ sensu late entering experimental huts with pyrethroid-PBO ITNs and pirimiphos-methyl IRS, applied alone and in combination in Cové, southern Benin. Panel (**a**) presents results from the trial with Olyset Plus and panel (**b**) presents results from the trial with PermaNet 3.0. Error bars represent 95% CIs. Monthly mortality rates are cumulated with increasing time elapsed from the onset of the trial.\n", - "\n", - "\n", - "mosquito mortality was consistently lower than the IRS alone throughout the trial. Through the four months of the trials, the pyrethroid-PBO ITN plus pirimiphos-methyl IRS combinations consistently induced higher levels of mosquito mortality relative to the pyrethroid-PBO ITNs alone.\n", - "\n", - "header: Abbreviations\n", - "\n", - "IRS Indoor residual spraying\n", - "\n", - "WHO World Health Organization\n", - "\n", - "PQ Prenqualification team\n", - "\n", - "PBO Piperonyl butoxide\n", - "\n", - "ITN Insecticide treated net\n", - "\n", - "LLIN Long-lasting insecticidal net\n", - "\n", - "GPIRM Global plan for insecticide resistance management\n", - "\n", - "WHOPES WHO pesticide evaluation scheme\n", - "\n", - "CREC Centre de Recherche Entomologique de Cotonou\n", - "\n", - "LSHTTM London School of Hygiene & Tropical Medicine\n", - "\n", - "Kdr Knockdown resistance\n", - "\n", - "PAMVERC Pan African Malaria Vector Research Consortium\n", - "\n", - "The large-scale implementation of long-lasting insecticidal nets (LLINs), and indoor residual spraying (IRS) has resulted in profound reductions in malaria-associated morbidity and mortality across sub-Saharan Africa, over the last two decades1. Unfortunately, resistance to the insecticides applied through these interventions, especially the pyrethroids, is now pervasive in vector populations in malaria-endemic countries', threatening to undermine their impact. In response, a new generation of novel LLINs and IRS based on new active ingredients with the potential to sustain vector control impact in the face of increasing resistance, have been developed3. This includes dual insecticide-treated nets containing a pyrethroid and an alternative effective new compound as well as new IRS insecticides with novel modes of action or improved formulations that have shown potential to provide enhanced control of insecticide-resistant malaria vector populations.\n", - "\n", - "Insecticide-treated nets (ITNs) combining a pyrethroid and piperonyl butoxido (PBO) were the first novel class of ITNs to be developed for malaria vector control. PBO is a synergism that can enhance the impact of pyrethroids and other insecticides by inhibiting metabolic detoxification enzymes associated with resistance, notably cytochrome P450 monooxygenases3. These nets received a conditional endorsement from the World Health Organisation (WHO) in 2017 based on results from a cluster-randomised controlled trial (CRT) in Tanzania demonstrating a reduction in malaria prevalence in communities allocated to pyrethroid-PBO ITNs relative to pyrethroid-only ITNs4. A full policy recommendation is now expected after results from a second CRT in Uganda also showed that two brands of pyrethroid-PBO ITNs reduced malaria prevalence relative to pyrethroid-only nets4. The WHO endorsement and expanding evidence base for the public health value of pyrethroid-PBO ITNs has prompted mass procurement of these nets by international malaria control agencies4,5. The proportion of pyrethroid-PBO ITNs of all ITNs delivered in sub-Saharan Africa has consequently risen from 3% in 2018 to 35% in 202112; pyrethroid-PBO ITNs are therefore replacing pyrethroid-only nets in many malaria-endemic countries.\n", - "\n", - "The increasing distribution and intensity of pyrethroid resistance has also affected malaria control policy regarding insecticide choice for IRS over the last decade. To improve vector control impact and preserve pyrethroids for ITNs, African IRS programmes partly suspended the use of pyrethroids and organochlorines in favour of carbamates and organophosphates5,12. Whilst both insecticides showed high toxicity against malaria vectors, the short residual duration of the initial formulations approved for IRS proved prohibitive, necessitating the development of longer-lasting formulations13. A new microencapsulated formulation of pirimphos-methyl was later developed (Actellic 300CS) demonstrating prolonged activity against pyrethroid-resistant malaria vector mosquitoes, lasting up to 9 months14,15. This formulation subsequently served as the insecticide of choice for the majority of IRS programmes in sub-Saharan Africa1 providing substantial control of mosquito vectors and malaria across distinct eco-epidemiological settings6,16-22.\n", - "\n", - "[MISSING_PAGE_POST]\n", - "\n", - "header: Discussion\n", - "\n", - "Given the inhibitory effect of PBO on mosquito cytochrome P450 enzymes, the WHO had temporarily recommended against the use of pyrethroid-PBO ITN in areas programmed for IRS with pirimiphos-methyl IRS until further evidence on the potential antagonism between PBO and the organo-thiophosphate pro-insecticide becomes available20. In this study, we found evidence of an antagonistic effect when pyrethroid PBO ITNs were combined with pirimiphos-methyl IRS in the same household in a pyrethroid-resistant area in Southern Benin where resistance was partly conferred by over-expression of mosquito cytochrome P450 enzymes20. Unlike the combination of the pyrethroid-PBO nets with bendicorab IRS which provided improved vector mosquito mortality compared to bendicorab IRS alone, combining these nets with pirimiphos-methyl IRS induced significantly lower levels of vector mosquito mortality rates compared to pirimiphos-methyl IRS alone. This effect\n", - "\n", - "Figure 3.: Mortality (24 h) of susceptible _Anopheles gambiae_ Kisumu and pyrethroid-resistant _An. gambiae_ s.l. Cove strains exposed to Olyset Plus and Permaket 3.0 in tunnel tests. Error bars represent 95% CIs. Both pyrethroid-PBO nets were compared to pyrethroid-only nets (Olyset Net and Permaket 2.0). Permaket 3.0 contains PBO only on the roof of the net. With both strains, 80–120 mosquitoes were exposed overnight to metting pieces cut from whole nets in 2–3 replicate tunnel tests.\n", - "\n", - "\n", - "was remarkably similar between the two brands of pyrethroid-PBO ITNs tested across both hut trials indicating that the negative interaction of the combination on mosquito mortality was less affected by the design and specifications of the pyrethroid-PBO ITN. Wild vector mosquitoes which entered the huts with the combined treatment may have contacted the pirimphos-methyl IRS on the hut wall only after picking up PBO from the ITN while attempting to blood-feed on the sheeper under the net. This pre-exposure to PBO on the ITN could have prevented the metabolic activation of the IRS insecticide in these mosquitoes, resulting in lower mortality rates relative to the IRS alone. This finding supports WHO's recommendation against the deployment of pyrethroid-PBO ITNs in areas that have already been programmed for IRS with pirimphos-methyl IRS. This is mostly important from a programmatic perspective where a vector control programme is faced with multiple choice of ITN types to deploy as an additional intervention to enhance vector control impact in an area that is already dedicated to IRS with pirimphos-methyl. In such a scenario, other types of ITNs like pyrethroid-only nets that were recently shown to complement pirimphos-methyl IRS when applied together23, should be considered.\n", - "\n", - "These findings should however not be interpreted to mean that pirimphos-methyl IRS must not be deployed to complement pyrethroid-PBO ITNs. Though pyrethroid-PBO ITNs have consistently shown improved performance in experimental hut trials against pyrethroid-resistant malaria vectors compared to pyrethroid-only nets34, the margin appears to vary depending on the intensity and mechanisms of pyrethroid-resistance encountered. In our study, the pyrethroid-PBO ITNs when applied alone in a hut induced low vector mosquito mortality (22-26%) compared to what has been observed in hut trials against the same vector population with another type of novel dual ITN (71-76%)35,40. Low levels of mosquito mortality in huts with pyrethroid-PBO ITNs and failure of PBO to fully restore pyrethroid susceptibility in bioassays have also been reported from studies in Burkina Faso37, Cameroon38, Cote d'Ivoire39 and Senegal40. This may indicate the presence of complex resistance mechanisms in the West African region unaffected by PBO. Compared to East Africa, West Africa has shown historically higher intensity of pyrethroid resistance in malaria vectors which continues to increase over time41, yet the public health value of pyrethroid-PBO ITNs has not been assessed in the region. It is therefore unclear whether these nets will provide the same improved epidemiological impact over pyrethroid-only nets in West Africa as observed in the East African community trials which have been the basis of their endorsement for malaria control. Our results showed a significant improvement in mosquito mortality when pirimphos-methyl IRS was combined with the pyrethroid-PBO ITNs (55-59%) compared to the pyrethroid-PBO ITNs alone (22-26%). Mosquito entry and feeding rates were also significantly lower with the combination compared to the pyrethroid-PBO ITNs alone. This provides some justification for deploying pirimphos-methyl IRS to complement pyrethroid-PBO nets in an area of high and complex pyrethroid-resistance where local vectors are less susceptible to the synergistic effect of PBO. Due to the limited choice of insecticides available for IRS, where a beneficial effect of the combination compared to the pyrethroid-PBO ITN alone has been established, pirimphos-methyl IRS should continue to be used even in the presence of high coverage with pyrethroid-PBO ITNs, preferably as part of an IRS rotational strategy. In line with WHO recommendations for insecticide resistance management42, the sustained rotation of multiple insecticide modes of action for IRS may help preserve efficacy to insecticides approved for IRS.\n", - "\n", - "Footnote 3: [https://doi.org/10.1038/s41598-022-10953-y](https://doi.org/10.1038/s41598-022-10953-y)\n", - "\n", - "Footnote 4: [https://doi.org/10.1038/s41598-022-10953-y](https://doi.org/10.1038/s41598-022-10953-y)\n", - "\n", - "Footnote 5: [https://doi.org/10.1038/s41598-022-10953-y](https://doi.org/10.1038/s41598-022-10953-y)\n", - "\n", - "Footnote 6: [https://doi.org/10.1038/s41598-022-10953-](https://doi.org/10.1038/s41598-022-10953-)\n", - "\n", - "y\n", - "\n", - "Footnote 7: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 8: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 9: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 10: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 11: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 12: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 13: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 14: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 15: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 16: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 17: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 18: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 19: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 20: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 21: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 22: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 23: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 24: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 25: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 26: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 27: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 28: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 29: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 30: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 31: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 32: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 333: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 34: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 35: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 36: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 37: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 38: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 39: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 40: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 41: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 42: https://doi.org/10.1038/s415\n", - "\n", - "\n", - "following pre-exposure to PBO, restoration of susceptibility to permethrin--the pyrethroid insecticide used on the pyrethroid-PBO ITN tested in the Tanzanian trial (Olvest Plus)--was high in the vector population from the study area (from 18 to 94%)15. Hence, the level of control achieved with pyrethroid-PBO ITN alone in the Tanzanian trial may have been optimal making the addition of pirimphos-methyl IRS unnecessary. This may not be the case in many communities in West Africa considering the afore-mentioned low levels of pyrethroid-PBO synergism reported in susceptibility bioassays and hut trials conducted across the region; in contrast, the addition of pirimphos-methyl IRS to pyrethroid-PBO ITNs in these communities could be more beneficial for control of clinical malaria compared to the ITN alone. As the range of vector control products available to vector control programmes expands, the choice of interventions and product brands must be aligned to local contexts and guided by local evidence. To help guide vector control policy, epidemiological trials and/or other empirical studies investigating the impact and cost-effectiveness of pyrethroid-PBO nets in communities in the West African region as well as their combination with IRS using pro-insectiles like pirimphos-methyl will be necessary.\n", - "\n", - "Although the inhibitory effect of PBO on mosquito cytochrome P450 enzymes formed the basis of our hypothesis for the antagonism observed between pirimphos-methyl IRS and pyrethroid-PBO ITNs in the experimental huts, behavioural interactions could also have contributed. In both trials, mosquito exiting rates into the veranda traps and blood-feeding inhibition were consistently higher in the combinations compared to the IRS insecticides alone. This could be attributed to the excitro-replenent property of the pyrethroid in the ITN stimulating directed movement of mosquitoes away from their source44. This early exiting effect was however significantly higher in the combination with pirimphos-methyl IRS compared to the combination with bendo-carb IRS suggesting a behavioural interaction in the presence of pirimphos-methyl that may have driven more mosquitoes to exit into the veranda, thus reducing mosquitoes' contact with pirimphos-methyl IRS treated walls. This may have compromised the impact of the pirimphos-methyl IRS in the combination compared to when applied alone and to the combination with bendoicarb. Further studies to assess mosquito flight behaviour, in the presence of the combinations would provide useful insight into behavioural interactions between the treatments. Controlled laboratory assays which minimise behavioural responses and assess P450 enzyme activity in exposed mosquitoes, could also elucidate the potential role of P450 enzyme inhibition in the antagonism observed in the experimental huts.\n", - "\n", - "While our trial focused on investigating the impact of combining pyrethroid-PBO ITNs with pirimphos-methyl IRS in the same households, there is a paucity of information on the interactions between these nets and other newly developed vector control products which contain new public health insecticides such as the neonciotohal, clothidinium and the pyrrole chlorfenapxy. Chlorfenapxy, an insecticide used on ITNs13 and being considered for IRS6,46, also requires activation by mosquito P450 enzymes6. Laboratory experiments have indicated the potential of PBO to antagonise the toxicity of chlorfenapxy against mosquitoes in bioassays29,30. Studies investigating the impact of co-deploying pyrethroid-PBO ITNs together with pyrethroid-chlorfenapxy ITNs or chlorfenapxy IRS in the same household will be essential to help inform optimal co-deployment policy.\n", - "\n", - "header: Results\n", - "\n", - "Experimental huts are used to assess the capacity of indoor vector control interventions to prevent wild vector mosquito entry and feeding and induce early mosquito exiting and mortality when applied in a human-occupied house, under carefully controlled conditions [3,12]. The hut trials were conducted at the CREC/LSHTM experimental hut station in Cowe, southern Benin (7deg14'N22deg18E), situated in a vast area of rice irrigation, which provides extensive and permanent breeding sites for mosquitoes. The rainy season extends from March to October and the dry season from November to February. _Anopheles coluzzini_ and _An. gambiae_ sensu stricto (s.s.) occur in symparity, with the latter present at lower densities and predominantly in the dry season. The vector population is susceptible to organophosphates and carbamates but exhibits intense resistance to pyrethroids (200-fold). Molecular genotyping and microarray studies have demonstrated a high frequency of the knockdown resistance L1014F allele (> 90%) and overexpression of CYP6P3, an enzyme associated with pyrethroid detoxification [3].\n", - "\n", - "Two experimental hut trials were performed in parallel for 4 months between April and July 2020. Trial 1 assessed the impact of combining Olyset Plus (Sumitomo Chemical), a permethrin-based pyrethroid-PBO ITN with pirimiphos-methyl IRS while Trial 2 assessed the impact of combining PermaNet 3.0 (Vestergaard Sarl), a deltamethrin-based pyrethroid-PBO ITN with pirimiphos-methyl IRS.\n", - "\n", - "The following six treatments were tested in each of the experimental hut trials:\n", - "\n", - "header: Susceptibility of wild vector mosquitoes at Cove to insecticides.\n", - "\n", - "WHO susceptibility bioassays were conducted in parallel to the experimental hut trial to determine the susceptibility of the vector population at the Cove hit site to the constituent insecticides of the experimental hut treatments. Mortality rates of F1 progeny of field-collected _An. gambiae_ s.l. from the Cove hit station following exposure to discriminating doses of deltamethrin and permethrin in WHO cylinder bioassays were low (42% and 11% respectively), confirming a high frequency of pyrethroid resistance in the Cove vector population (Table 1). Pre-exposure to PBO significantly improved mortality with deltamethrin (42% vs. 72%) but not with permethrin (11% vs. 8%). Mortality rates with the discriminating doses of bendiocarb and pirimiphos-methyl were 98% and 99% respectively. This demonstrated susceptibility to pirimiphos-methyl and bendiocarb. All insecticides induced 100% mortality with the laboratory-maintained, insecticide-susceptible _An. gambiae_ s.s. Kisumu strain. No mortality was recorded in the control with either strain.\n", - "\n", - "header: 3.2.3 Wall cone bioassays.\n", - "\n", - "WHO wall cone bioassays were performed on the IRS treated experimental hut walls 1 week, 2 months and 4 months after application of IRS treatments to assess their residual efficacy with increasing time elapsed from spraying. Mortality rates of the insecticide-susceptible _An. gambiae_ s.s. Kisum strain and pyrethroid-resistant _An. gambiae_ s.l. Cove strain following exposure to IRS-treated surfaces in 30 min wall cone bioassays are presented in Fig. 4. Mortality of mosquitoes exposed to pirimiphos-methyl treated walls was high (>90%) at all time points with both strains, showing no evidence of a decline in residual activity. In contrast, wall cone bioassay mortality on bendicor-treated surfaces declined rapidly, beginning at 67% and 39% in week 1 and falling to lows of 2% and 3% in month 4 with the Kisum and Cove strains respectively. No mortality was recorded in the controls at any time point with either strain.\n", - "\n", - "header: Experimental hut trial procedure\n", - "\n", - "During the hut trials, volunteer sleepers were rotated between experimental huts daily to mitigate the impact of individual attractiveness whilst bed nets were rotated weekly between the huts to reduce the impact of hut position on mosquito entry. Three (3) replicate bed nets were used per treatment and rotated within the treatment every 2 days. IRS treatments cannot be rotated and thus remained fixed throughout the trial. Consenting human volunteer sleepers alert in experimental huts between 21:00 and 06:00 to attract free-flying mosquitoes. Each morning, volunteer sleepers collected all live and dead mosquitoes from the different compartments of the hut (under the net, room, veranda) using a torch and aspirator and placed them in correspondingly labelled plastic cups. Mosquito collections were then transferred to the field laboratory for morphological identification using taxonomic keys and scoring of immediate mortality and blood-feeding. All live, female _An. gambiae_ s.l. were provided access to 10% glucose (w/v) solution and held at ambient conditions in the field laboratory. Delayed mortality was recorded after 24 h for all treatments. Mosquito collections were performed 6 nights per week and on the 7th day, huts were cleaned and aired in preparation for the next rotation cycle.\n", - "\n", - "header: Wall cone bioassays\n", - "\n", - "The laboratory-maintained, susceptible _An. gambiae_ s.s. Kisumu strain and wild pyrethroid-resistant _An. gambiae_ s.l. Cove mosquitoes (F1) derived from breeding sites at the hut station were used for this purpose. At each time point, five cones were attached to the walls and ceiling of the IRS-treated huts. Approximately 50, 3-5-day old mosquitoes were transferred into cones in 5 batches of 10 and exposed to the treated surfaces for 30 min. As a control, mosquitoes were exposed in cones attached to the walls and ceiling of an unsprayed hut. At the end of exposure, mosquitoes were transferred to netted, plastic cups. Mosquitoes were provided access to 10% (w/v) glucose solution and delayed mortality after 24 h for all treatments.\n", - "\n", - "\n", - "Ethical considerations.Ethical approval for the conduct of the study was obtained from the ethics review boards of the Beninese Ministry of Health (No. 34) and the London School of Hygiene & Tropical Medicine (Ref: 16969). All human volunteer sleepers gave informed written consent prior to their participation; where necessary, the consent form and information sheet were explained in their local language. They were offered a free course of chemoprophylaxis spanning the duration of the trial and up to 3 weeks following its completion. A stand-by nurse was available for the duration of the trial to assess any cases of fever or adverse reactions to test items. Any confirmed cases of malaria were treated free of charge at a local health facility. Animals used as baits in tunnel test were maintained following institutional standard operating procedures (SOPs) designed to improve care and protect animals used for experimentation. All studies were performed according to relevant national and international guidelines.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ClinicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `ClinicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `ClinicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}, \"Start_month\": {\"title\": \"Start Month\", \"description\": \"Numerical start month of the reporting period (some studies may report multiple time periods)\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Hut trial\",\"Country\":\"Benin\",\"Site\":\"Cov\\u00e9\",\"Start_month\":4,\"Start_year\":2020,\"End_month\":7,\"End_year\":2020}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Concentration_initial\": {\"title\": \"Insecticide concentration (initial)\", \"description\": \"Enter the initial concentration of the insecticide(s) for net type at the time of distribution.\"}, \"Net_washed\": {\"title\": \"Net Washed\", \"description\": \"Numerical count of number of net washes - 0 if none and NA if not reported.\"}, \"Net_holed\": {\"title\": \"Net Holed\", \"description\": \"Numerical count of the number of holes a net has - 0 if new and NA if not reported\\nNote - for tunnel tests there are holes that allow the mosquitoes the option of passing through to feed on the guinea pig.\"}, \"pHI_category\": {\"title\": \"Phi Category\", \"description\": \"Classification of the nets holed surface area, as one of \\\"Good\\\", \\\"Damaged\\\", \\\"Torn\\\", \\\"Serviceable\\\", or \\\"All\\\", as proposed by WHO\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"Untreated net\",\"Insecticide\":null,\"Concentration_initial\":null,\"Net_washed\":null,\"Net_holed\":null,\"pHI_category\":null},\"N02\":{\"Net_type\":\"PermaNet 3.0\",\"Insecticide\":\"Deltamethrin, PBO\",\"Concentration_initial\":\"2.1 g\\/kg, 4.0 g\\/kg, 25 g\\/kg\",\"Net_washed\":0.0,\"Net_holed\":9.0,\"pHI_category\":\"Good\"},\"N03\":{\"Net_type\":\"Olyset Plus\",\"Insecticide\":\"Permethrin, PBO\",\"Concentration_initial\":\"20 g\\/kg, 10 g\\/kg\",\"Net_washed\":0.0,\"Net_holed\":9.0,\"pHI_category\":\"Good\"}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Trial 2.\n", - "\n", - "1. Untreated net.\n", - "2. PermaNet 3.0 (Vestergaard Sarl).\n", - "3. Bendiocarb IRS applied at 400 mg/m2 (Ficam 80WP, Bayer).\n", - "4. PermaNet 3.0 + Bendiocarb IRS applied at 400 mg/m2.\n", - "5. Pirimiphos-methyl IRS applied at 1000 mg/m2 (Actellic 300CS, Syngenta).\n", - "6. PermaNet 3.0 + Pirimiphos-methyl IRS applied at 1000 mg/m2.\n", - "\n", - "Olyset Plus and PermaNet 3.0 are WHO prequalified pyrethroid-PBO ITNs [3]. Olyset Plus is made of polyethylene filaments coated with 20 g/Kg of permethrin and 10 g/Kg of PBO. PermaNet 3.0 consists of polyester side panels coated with deltamethrin at 2.1 g/kg and a polyethylene roof panel incorporating deltamethrin and PBO at 4.0 g/kg and 25 g/kg respectively.\n", - "\n", - "header: Tunnel tests\n", - "\n", - "The tunnel test consists of a square glass cylinder (25 cm high, 25 cm wide, 60 cm in length) divided into two sections using a netting frame fitted into a slot across the tunnel. In one of the sections, a guinea pig was housed unconstrained in a small cage, and in the other section, -100 unfed female mosquitoes aged 5-8 days were released at dusk and left overnight. The net samples were deliberately hoked with nine 1-cm holes to give opportunity for mosquitoes to penetrate the animal bathed chamber for a blood meal an untreated net sample served as the control. The tunnels were kept overnight in a dark room at 25-29 oC and 65-85% RH. The next morning, the numbers of mosquitoes found alive or dead, fed or unfed, in each section were scored. Live mosquitoes were provided with 10% glucose solution and delayed mortality was recorded after 24 h. The pyrethroid-PBO ITNs were compared to Olyset Net (a permethrin-only net, Sumitomo chemical) and PermaNet 2.0 (a deltamethrin-only net, Vestergaard Sarl) and an untreated control net. Two to three net pieces were tested per net type.\n", - "\n", - "header: scientific reports: Abstract\n", - "\n", - "OPEN : Pyrethroid-piperonyl butoxide (PBO) nets reduce the efficacy of indoor residual spraying with pirimiphos-methyl against pyrethroid-resistant malaria vectors\n", - "\n", - "Thomas Syme, Mariai Ghegbo, Dorothy Obuobi, Augustin Fongnikin, Abel Agbevo, Damien Todjinou, & Corine Ngufori\n", - "\n", - "\n", - "Primiphos-methyl is a pro-insecticide requiring activation by mosquito cytochrome P450 enzymes to induce toxicity while PBO blocks activation of these enzymes in pyrethroid-resistant vector mosquitoes. PBO may thus antagonise the toxicity of pirimiphos-methyl IRS when combined with pyrethroid-PBO ITMs. The impact of combining Olyset Plus and PermaNet 3.0 with Actellite 300CS IRS was evaluated against pyrethroid-resistant _Anopheles gambiae_ s.l. in two parallel experimental hut trials in southern Benin. The vector population was resistant to pyrethroids and PBO pre-exposure partially restored deltamethrin toxicity but not permitting. Mosquito mortality in experimental huts was significantly improved in the combinations of bendicocarp IRS with pyrethroid-PBO ITMs (33-3896) compared to bendicocarp IRS alone (14-16%, p < 0.001), demonstrating an additive effect. Conversely, mortality was significantly reduced in the combinations of pirimiphos-methyl IRS with pyrethroid-PBO ITMs (55-59%) compared to pirimiphos-methyl IRS alone (77-78%, p < 0.001), demonstrating evidence of an antagonistic effect when both interventions are applied in the same household. Mosquito mortality in the combination was significantly higher compared to the pyrethroid-PBO ITMs alone (55-59% vs. 22-26% p < 0.001) showing potential of pirimiphos-methyl IRS to enhance vector control when deployed to complement pyrethroid-PBO ITMs in an area where PBO fails to fully restore susceptibility to pyrethroids.\n", - "\n", - "header: 3.2.2 Tumed test bioassays.\n", - "\n", - "To further assess the efficacy of the pyrethroid-PBO ITNs and help explain the findings in the experimental huts, tunnel tests were performed using the susceptible _An. gambiae_ Kisum strain and pyrethroid-resistant _An. gambiae_ as from Cove on net samples (30 x 30 cm) obtained from Olyset Plus and Permaket 3.0 nets. The tunnel test is an overnight animal baulesar what simulates host-seeking behaviour of vector mosquitoes under controlled laboratory conditions. Both pyrethroid-PBO ITNs were compared to pyrethroid-only nets which contained similar pyrethroid-insecticles (Olyset Net and Permaket 2.0). Mosquito mortality rates observed in the tunnels are presented in Fig. 3. Mortality in the control tunnels was 11% with the susceptible Kisum strain and 2% with the pyrethroid-resistant Cove strain. All ITN types induced >8% mortality with the susceptible Kisum strain. Olyset Plus killed significantly higher proportions of the Cove mosquitoes compared to Olyset Net (90% vs. 42%). With Permaket 3.0, mortality of Cove mosquitoes exposed to net prices obtained from the PBO treated root of the net (68%) was higher compared to net prices obtained from the sides of the net (34%) and Permaket 2.0 (27%). The results, therefore, showed higher levels of mortality against pyrethroid-resistant mosquitoes from the Cove experimental hut station with the pyrethroid-PBO ITNs relative to pyrethroid-only nets. More detailed results from the tunnel tests are available in the supplementary information (Table S1).\n", - "\n", - "header: Study site and experimental hut treatments.: Trial 1.\n", - "\n", - "1. Untreated net.\n", - "2. Olyset Plus (Sumitomo Chemical).\n", - "3. Bendiocarb IRS applied at 400 mg/m2 (Ficam 80WP, Bayer).\n", - "4. Olyset Plus + Bendiocarb IRS applied at 400 mg/m2.\n", - "5. Pirimiphos-methyl IRS applied at 1000 mg/m2 (Actellic 300CS, Syngenta).\n", - "6. Olyset Plus + Pirimiphos-methyl IRS applied at 1000 mg/m2.\n", - "\n", - "header: Table 3: Blood-feeding results of wild, pyrethroid-resistant Anopheles gambiae sensu lato exposed to pyrethroid-PBO ITNs and pirimiphos-methyl IRS applied alone and in combination in experimental huts in Cové, southern Benin.\n", - "footer: Results are presented separately for the trials involving Olgest Plus (Trial 1) and PermaNet 3.0 (Trial 2). ‘For each trial, values on this column sharing a superscript letter do not differ significantly, P > 0.05, logistic regression.\n", - "columns: ['Treatment', 'Total females caught', 'Total blood-fed', '% blood-feeding', '95% CIs', '% blood-feeding inhibition', '% personal protection']\n", - "\n", - "{\"0\":{\"Treatment\":\"Trial 1\",\"Total females caught\":\"Trial 1\",\"Total blood-fed\":\"Trial 1\",\"% blood-feeding\":\"Trial 1\",\"95% CIs\":\"Trial 1\",\"% blood-feeding inhibition\":\"Trial 1\",\"% personal protection\":\"Trial 1\"},\"1\":{\"Treatment\":\"Untreated net\",\"Total females caught\":\"664\",\"Total blood-fed\":\"481\",\"% blood-feeding\":\"72a\",\"95% CIs\":\"69\\u201376\",\"% blood-feeding inhibition\":\"\\u2013\",\"% personal protection\":\"\\u2013\"},\"2\":{\"Treatment\":\"Olyset plus\",\"Total females caught\":\"511\",\"Total blood-fed\":\"122\",\"% blood-feeding\":\"24b\",\"95% CIs\":\"20\\u201328\",\"% blood-feeding inhibition\":\"67\",\"% personal protection\":\"75\"},\"3\":{\"Treatment\":\"Benedicarb IRS\",\"Total females caught\":\"556\",\"Total blood-fed\":\"528\",\"% blood-feeding\":\"95c\",\"95% CIs\":\"93\\u201397\",\"% blood-feeding inhibition\":\"\\u201331\",\"% personal protection\":\"\\u2013 10\"},\"4\":{\"Treatment\":\"Olyset Plus + bendicarb IRS\",\"Total females caught\":\"288\",\"Total blood-fed\":\"64\",\"% blood-feeding\":\"22b\",\"95% CIs\":\"17\\u201327\",\"% blood-feeding inhibition\":\"69\",\"% personal protection\":\"87\"},\"5\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught\":\"531\",\"Total blood-fed\":\"420\",\"% blood-feeding\":\"79d\",\"95% CIs\":\"76\\u201383\",\"% blood-feeding inhibition\":\"\\u20139\",\"% personal protection\":\"13\"},\"6\":{\"Treatment\":\"Olyset Plus + P-methyl IRS\",\"Total females caught\":\"304\",\"Total blood-fed\":\"47\",\"% blood-feeding\":\"16e\",\"95% CIs\":\"11\\u201320\",\"% blood-feeding inhibition\":\"79\",\"% personal protection\":\"90\"},\"7\":{\"Treatment\":\"Trial 2\",\"Total females caught\":\"Trial 2\",\"Total blood-fed\":\"Trial 2\",\"% blood-feeding\":\"Trial 2\",\"95% CIs\":\"Trial 2\",\"% blood-feeding inhibition\":\"Trial 2\",\"% personal protection\":\"Trial 2\"},\"8\":{\"Treatment\":\"Untreated net\",\"Total females caught\":\"581\",\"Total blood-fed\":\"391\",\"% blood-feeding\":\"67u\",\"95% CIs\":\"64\\u201371\",\"% blood-feeding inhibition\":\"\\u2013\",\"% personal protection\":\"\\u2013\"},\"9\":{\"Treatment\":\"PermaNet 3.0\",\"Total females caught\":\"488\",\"Total blood-fed\":\"115\",\"% blood-feeding\":\"24v\",\"95% CIs\":\"20\\u201327\",\"% blood-feeding inhibition\":\"65\",\"% personal protection\":\"71\"},\"10\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught\":\"575\",\"Total blood-fed\":\"519\",\"% blood-feeding\":\"90w\",\"95% CIs\":\"88\\u201393\",\"% blood-feeding inhibition\":\"\\u201334\",\"% personal protection\":\"\\u2013 33\"},\"11\":{\"Treatment\":\"PermaNet 3.0 + bendiocarb IRS\",\"Total females caught\":\"233\",\"Total blood-fed\":\"54\",\"% blood-feeding\":\"23v\",\"95% CIs\":\"18\\u201329\",\"% blood-feeding inhibition\":\"66\",\"% personal protection\":\"86\"},\"12\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught\":\"450\",\"Total blood-fed\":\"406\",\"% blood-feeding\":\"90w\",\"95% CIs\":\"88\\u201393\",\"% blood-feeding inhibition\":\"\\u201334\",\"% personal protection\":\"\\u2013 4\"},\"13\":{\"Treatment\":\"PermaNet 3.0 + P-methyl IRS\",\"Total females caught\":\"223\",\"Total blood-fed\":\"55\",\"% blood-feeding\":\"25v\",\"95% CIs\":\"19\\u201330\",\"% blood-feeding inhibition\":\"63\",\"% personal protection\":\"86\"},\"14\":{\"Treatment\":\"PermaNet 3.0 + P-methyl IRS\",\"Total females caught\":\"223\",\"Total blood-fed\":\"55\",\"% blood-feeding\":\"25v\",\"95% CIs\":\"19\\u201330\",\"% blood-feeding inhibition\":\"63\",\"% personal protection\":\"86\"}}\n", - "\n", - "header: Conclusion\n", - "\n", - "Our study provides the first evidence of an antagonistic effect when pyrethroid-PBO ITNs are combined with pirimphos-methyl IRS in the same household resulting in lower levels of vector mosquito mortality compared to the IRS alone. In line with WHO recommendations, vector control programmes faced with multiple choice of ITN types to deploy as an additional intervention to improve vector control impact in an area dedicated to IRS with pirimphos-methyl, may consider other types of ITNs like pyrethroid-ITNs which can better complement pirimphos-methyl IRS when deployed together. Nevertheless, the pyrethroid-PBO ITNs performed poorly probably due to the lower levels of restoration of pyrethroid susceptibility with PBO in the vector population. Combining these nets with pirimphos-methyl IRS provided significantly improved vector control compared to the net alone demonstrating the potential for pirimphos-methyl IRS to enhance malaria control when deployed to complement pyrethroid-PBO ITNs in areas where PBO fails to fully restore susceptibility to pyrethroids.\n", - "\n", - "header: Materials and methods\n", - "\n", - "Adult F1 progeny of field-collected _An. gambiae_ s.l. from the Cove hut station were exposed to filter papers treated with discriminating doses of deltamethrin (0.05%), permethrin (0.75%), benchicaro (0.1%) and pirimphos-methyl (0.25%) in WHO cylinders8. Deltamethrin and perme-thrin were also tested with 60 min pre-exposure to PBO (4%) to assess the involvement of metabolic enzymes in pyrethroid resistance. A comparison was made with the laboratory-maintained, susceptible _An. gambiae_ s.s. Kisumu strain. Approximately 100, 3-5-day old mosquitoes of each strain were exposed to each insecticide for 60 min in four batches of 20-25. Similar numbers of mosquitoes were concurrently exposed to untreated filter papers as a control. At the end of exposure, mosquitoes were transferred to appropriately labelled holding tubes, provided access to 10% (w/v) glucose solution, and held at 27 +- 2degC and 75 +- 10% relative humidity. Knockdown was recorded 60 min after exposure and delayed mortality after 24 h for all treatments. The insecticide-treated filter papers were obtained from Universiti Sains Malaysia.\n", - "\n", - "header: Hut trial outcome measures\n", - "\n", - "The efficacy of the experimental hut treatments was expressed in terms of the following outcome measures:\n", - "\n", - "1. Deterrence (%)--proportional reduction in the number of mosquitoes collected in the treated hut relative to the number collected in the control.\n", - "2. Exophily (%)--exiting rates due to potential irritant effect of the treatment expressed as the proportion of mosquitoes collected in the veranda trap.\n", - "3. Blood-feeding inhibition (%)--proportional reduction in blood-feeding in the treated hut relative to the control. Calculated as follows: \\[\\mathit{Blood\\ feeding\\ inhibition}(\\%) = \\frac{100(B_{fu} - B_{fu})}{B_{fu}}\\] where _Bfu_ is the number of blood-fed mosquitoes in the untreated net control huts and _Bt_ is the number of mosquitoes in the huts with insecticide treatments.\n", - "4. Mortality (%)--proportion of dead mosquitoes 24 h after collection.\n", - "5. Personal protection (%)--reduction in the number of blood-fed mosquitoes in the treated hut relative to the untreated net control. Calculated as follows: \\[\\mathit{Personal\\ protection}(\\%) = \\frac{100(B_{fu} - B_{fu})}{B_{fu}}\\] where _Bu_ is the number of blood-fed mosquitoes in the untreated net control huts and _Bt_ is the number of mosquitoes in the huts with insecticide treatments.\n", - "\n", - "header: Experimental hut results.\n", - "\n", - "_Mosquito entry and exiting in experimental huts._\n", - "\n", - "A total of 5,404 wild female _An. gambiae_ s.l. were collected in the experimental huts over the 4-month trials (Table 2). In both trials, mosquito entry in huts with the pyrethroid-PBO ITN alone and IRS treatments alone did not differ significantly from the controls (p > 0.05) but was significantly reduced with the pyrethroid-PBO ITN plus IRS combinations compared to the single treatments (p < 0.01). Mosquito entry rates did not also differ between the combinations of the pyrethroid-PBO ITN with bendiocarb IRS relative to the combinations with pirimiphos-methyl IRS (p < 0.05). Nevertheless, IRS treatments could not be rotated and thus, treatment-induced deterrence cannot be fully distinguished from differential attractiveness due to hut position.\n", - "\n", - "The proportion of mosquitoes exiting into the veranda of the huts with the untreated net controls was 36% and 39% for Trials 1 and 2 respectively. Exiting rates were higher with the pyrethroid-PBO ITNs alone (76%) relative to the IRS insecticides alone (51-63% with bendiocarb and 53-69% with pirimiphos-methyl IRS, p < 0.005). In both trials, the highest levels of mosquito exiting were achieved with the pyrethroid-PBO ITN plus IRS combinations (79% with bendiocarb and 87-89% with pirimiphos-methyl IRS). Between the combinations, adding\n", - "primiphos-methyl IRS to the pyrethroid-PBO ITN provided significantly higher levels of mosquito exiting relative to adding bendicord IRS (87-89% vs. 79%, P < 0.05).\n", - "\n", - "Blood-feeding rates of wild malaria vector mosquitoes in experimental huts.Blood-feeding rates in huts with the untreated net controls were 72% and 67% for Trials 1 and 2 respectively (Table 3). The IRS treatments did not provide any blood-feeding inhibition relative to the controls. Blood-feeding inhibition rates were high with the pyrethroid-PBO ITN plus IRS combinations in both trials (69-79% with Olyst Plus and 63-66% with PermaNet 3.0) and this was generally similar to what was observed with the pyrethroid-PBO ITNs alone (67% with Olyst Plus and 65% with PermaNet, P > 0.05) showing that the high levels of blood-feeding inhibition in the combinations, was mostly due to the ITNs. Blood-feeding inhibition with the PermaNet 3.0 plus primiphos-methyl IRS combination (66%) was similar to the PermaNet 3.0 plus bendicord IRS combination (63%, P = 0.71) meanwhile the Olyset Plus and primiphos-methyl IRS combination induced higher levels of blood-feeding inhibition compared to the Olyst Plus and bendicord IRS combination (79% vs. 69%, P = 0.036) (Table 3). Personal protection levels showed a similar trend and were also higher with the combinations (86-90%) relative to the IRS alone (- 33-13%).\n", - "\n", - "Mortality rates of wild malaria vector mosquitoes in experimental huts.\n", - "\n", - "Wild vector mosquito mortality in the controls was 3% in Trial 1 and 2% in Trial 2 (Table 4). The pyrethroid-PBO ITNs killed relatively low mosquito proportions (22% with Olgest Plus and 26% with PermaNet 3.0) though this was higher than what was observed with benedicarb IRS alone (14% in Trial 1 and 16% in Trial 2, P < 0.10). The highest mortality was achieved with pirimphos-methyl IRS alone (77% in Trial 1 and 78% in Trial 2). In both trials, mortality in the pyrethroid-PBO ITN plus pirimiphos-methyl IRS combinations was significantly reduced compared to pirimphos-methyl IRS alone (77% with pirimphos-methyl IRS vs. 59% with Olgest Plus pirimphos-methyl IRS, P < 0.001 and 78% with pirimphos-methyl IRS vs. 55% with PermaNet 3.0 plus pirimphos-methyl IRS, P < 0.001), demonstrating an antagonistic effect. Conversely, mortality was significantly higher in the combinations of benedicarb IRS with Olgest Plus (33%) and PermaNet 3.0 (38%) than benedicarb IRS alone (14-16%, P < 0.001), demonstrating an additive effect (Table 4). Nevertheless, both pyrethroid-PBO plus IRS combinations induced significantly higher\n", - "\n", - "mortality compared to the pyrethroid-PBO ITNs alone (P < 0.001). Between the combinations, mortality was consistently higher with the pyrethroid-PBO ITN plus pirimiphos-methyl IRS combinations (55-59%) compared to the pyrethroid-PBO ITN plus pedicocarb IRS (33-39%, P < 0.001).\n", - "\n", - "The monthly mortality rates of wild vector mosquitoes which entered the experimental huts during the trials are presented in Fig. 1 for the combinations with pedicocarb IRS and Fig. 2 for the combinations with pirimiphos-methyl IRS. In both trials, mosquito mortality rates in huts with the pyrethroid-PBO ITNs plus pedicocarb IRS declined sharply over time from 65-75% in month 1 to 33-38% in month 3, nevertheless, it was consistently higher than the single treatments alone (Fig. 1). Mosquito mortality in the combination of Olyset Plus and pirimiphos-methyl IRS was similar to the IRS alone in month 1 (> 90%) but declined substantially relative to the IRS in subsequent months. With the PermaNet 3.0 plus pirimiphos-methyl IRS combination,\n", - "\n", - "Figure 1.: Monthly mortality rates of wild, pyrethroid-resistant _Anopheles gambiae_ sensu late entering experimental huts with pyrethroid-PBO ITNs and pedicocarb IRS, applied alone and in combination in Cové, southern Benin. Panel (**a**) presents results from the trial with Oyset Plus (Trial 1) and panel (**b**) presents results from the trial with PermaNet 3.0 (Trial 2). Error bars represent 95% CIs. Monthly mortality rates are cumulated with increasing time elapsed from onset of the trial. Mosquito mortality in the control untreated huts did not exceed 5% at any time point.\n", - "\n", - "Figure 2.: Monthly mortality rates of wild, pyrethroid-resistant _Anopheles gambiae_ sensu late entering experimental huts with pyrethroid-PBO ITNs and pirimiphos-methyl IRS, applied alone and in combination in Cové, southern Benin. Panel (**a**) presents results from the trial with Olyset Plus and panel (**b**) presents results from the trial with PermaNet 3.0. Error bars represent 95% CIs. Monthly mortality rates are cumulated with increasing time elapsed from the onset of the trial.\n", - "\n", - "\n", - "mosquito mortality was consistently lower than the IRS alone throughout the trial. Through the four months of the trials, the pyrethroid-PBO ITN plus pirimiphos-methyl IRS combinations consistently induced higher levels of mosquito mortality relative to the pyrethroid-PBO ITNs alone.\n", - "\n", - "header: Table 2. Entry and exiting of wild, pyrethroid-resistant Anopheles gambiae sensu lato in experimental huts in Covè, southern Benin treated with pyrethroid-PBO ITNs and pirimiphos-methyl IRS applied alone and in combination.\n", - "footer: Results are presented separately for the trials involving Olyset Plus (Trial 1) and PermaNet 3.0 (Trial 2). *For each trial, values on this column sharing a superscript letter do not di\u001d\n", - "er signi\u001fcantly, P>0.05, negative binomial regression for females caught and logistic regression for exophily.\n", - "columns: ['Treatment', 'Total females caught*', '% deterrence', 'Total exiting', '% exophily*', '95% CIs']\n", - "\n", - "{\"0\":{\"Treatment\":\"Trial 1\",\"Total females caught*\":\"Trial 1\",\"% deterrence\":\"Trial 1\",\"Total exiting\":\"Trial 1\",\"% exophily*\":\"Trial 1\",\"95% CIs\":\"Trial 1\"},\"1\":{\"Treatment\":\"Untreated net\",\"Total females caught*\":\"664a\",\"% deterrence\":\"-\",\"Total exiting\":\"241\",\"% exophily*\":\"36a\",\"95% CIs\":\"33\\u201340\"},\"2\":{\"Treatment\":\"Olyset plus\",\"Total females caught*\":\"511a\",\"% deterrence\":\"23\",\"Total exiting\":\"390\",\"% exophily*\":\"76b\",\"95% CIs\":\"73\\u201380\"},\"3\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught*\":\"556a\",\"% deterrence\":\"16\",\"Total exiting\":\"282\",\"% exophily*\":\"51c\",\"95% CIs\":\"47\\u201355\"},\"4\":{\"Treatment\":\"Olyset Plus + bendiocarb IRS\",\"Total females caught*\":\"288b\",\"% deterrence\":\"57\",\"Total exiting\":\"228\",\"% exophily*\":\"79b\",\"95% CIs\":\"75\\u201384\"},\"5\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught*\":\"531a\",\"% deterrence\":\"20\",\"Total exiting\":\"281\",\"% exophily*\":\"53c\",\"95% CIs\":\"49\\u201357\"},\"6\":{\"Treatment\":\"Olyset plus + P-methyl IRS\",\"Total females caught*\":\"304b\",\"% deterrence\":\"54\",\"Total exiting\":\"270\",\"% exophily*\":\"89d\",\"95% CIs\":\"85\\u201392\"},\"7\":{\"Treatment\":\"Trial 2\",\"Total females caught*\":\"Trial 2\",\"% deterrence\":\"Trial 2\",\"Total exiting\":\"Trial 2\",\"% exophily*\":\"Trial 2\",\"95% CIs\":\"Trial 2\"},\"8\":{\"Treatment\":\"Untreated net\",\"Total females caught*\":\"581u\",\"% deterrence\":\"-\",\"Total exiting\":\"226\",\"% exophily*\":\"39u\",\"95% CIs\":\"35\\u201343\"},\"9\":{\"Treatment\":\"PermaNet 3.0\",\"Total females caught*\":\"488u\",\"% deterrence\":\"16\",\"Total exiting\":\"369\",\"% exophily*\":\"76v\",\"95% CIs\":\"72\\u201379\"},\"10\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught*\":\"575u\",\"% deterrence\":\"1\",\"Total exiting\":\"360\",\"% exophily*\":\"63w\",\"95% CIs\":\"59\\u201367\"},\"11\":{\"Treatment\":\"PermaNet 3.0 + bendiocarb IRS\",\"Total females caught*\":\"233v\",\"% deterrence\":\"60\",\"Total exiting\":\"185\",\"% exophily*\":\"79v\",\"95% CIs\":\"74\\u201385\"},\"12\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught*\":\"450u\",\"% deterrence\":\"23\",\"Total exiting\":\"311\",\"% exophily*\":\"69x\",\"95% CIs\":\"65\\u201373\"},\"13\":{\"Treatment\":\"PermaNet 3.0 + P-methyl IRS\",\"Total females caught*\":\"223v\",\"% deterrence\":\"62\",\"Total exiting\":\"195\",\"% exophily*\":\"87y\",\"95% CIs\":\"83\\u201392\"}}\n", - "\n", - "header: Table 4.Mortality results of wild, pyrethroid-resistant Anopheles gambiae sensu lato in experimental huts in Covè, southern Benin treated with pyrethroid-PBO ITNs, and pirimiphos-methyl IRS applied alone and in combination.\n", - "footer: Results are presented separately for the trials involving Olyset Plus (Trial 1) and PermaNet 3.0 (Trial 2). *For each trial, values on this column sharing a superscript letter do not di\u001d\n", - "er signi\u001fcantly, p>0.05, logistic regression\n", - "columns: ['Treatment', 'Total females caught', 'Total dead', '% mortality*', '95% CIs']\n", - "\n", - "{\"0\":{\"Treatment\":\"Trial 1\",\"Total females caught\":\"Trial 1\",\"Total dead\":\"Trial 1\",\"% mortality*\":\"Trial 1\",\"95% CIs\":\"Trial 1\"},\"1\":{\"Treatment\":\"Untreated net\",\"Total females caught\":\"664\",\"Total dead\":\"22\",\"% mortality*\":\"3a\",\"95% CIs\":\"2\\u20135\"},\"2\":{\"Treatment\":\"Olyset Plus\",\"Total females caught\":\"511\",\"Total dead\":\"114\",\"% mortality*\":\"22b\",\"95% CIs\":\"19\\u201326\"},\"3\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught\":\"556\",\"Total dead\":\"87\",\"% mortality*\":\"16c\",\"95% CIs\":\"13\\u201319\"},\"4\":{\"Treatment\":\"Olyset Plus + Bendiocarb IRS\",\"Total females caught\":\"288\",\"Total dead\":\"95\",\"% mortality*\":\"33d\",\"95% CIs\":\"28\\u201338\"},\"5\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught\":\"531\",\"Total dead\":\"411\",\"% mortality*\":\"77e\",\"95% CIs\":\"74\\u201381\"},\"6\":{\"Treatment\":\"Olyset Plus + P-methyl IRS\",\"Total females caught\":\"304\",\"Total dead\":\"178\",\"% mortality*\":\"59f\",\"95% CIs\":\"53\\u201364\"},\"7\":{\"Treatment\":\"Trial 2\",\"Total females caught\":\"Trial 2\",\"Total dead\":\"Trial 2\",\"% mortality*\":\"Trial 2\",\"95% CIs\":\"Trial 2\"},\"8\":{\"Treatment\":\"Untreated net\",\"Total females caught\":\"581\",\"Total dead\":\"12\",\"% mortality*\":\"2u\",\"95% CIs\":\"1\\u20133\"},\"9\":{\"Treatment\":\"PermaNet 3.0\",\"Total females caught\":\"488\",\"Total dead\":\"127\",\"% mortality*\":\"26v\",\"95% CIs\":\"22\\u201330\"},\"10\":{\"Treatment\":\"Bendiocarb IRS\",\"Total females caught\":\"575\",\"Total dead\":\"80\",\"% mortality*\":\"14w\",\"95% CIs\":\"11\\u201317\"},\"11\":{\"Treatment\":\"PermaNet 3.0 + Bendiocarb IRS\",\"Total females caught\":\"233\",\"Total dead\":\"89\",\"% mortality*\":\"38x\",\"95% CIs\":\"32\\u201344\"},\"12\":{\"Treatment\":\"P-methyl IRS\",\"Total females caught\":\"450\",\"Total dead\":\"350\",\"% mortality*\":\"78y\",\"95% CIs\":\"74\\u201382\"},\"13\":{\"Treatment\":\"PermaNet 3.0 + P-methyl IRS\",\"Total females caught\":\"223\",\"Total dead\":\"122\",\"% mortality*\":\"55z\",\"95% CIs\":\"48\\u201361\"}}\n", - "\n", - "header: Data analysis.\n", - "\n", - "Differences in proportional outcomes (exophily, blood-feeding, mortality) between experimental but treatments were analysed using a blocked logistic regression model whereas differences in numerical outcomes (mosquito entry) were assessed using a negative binomial regression model. In addition to the fixed effect of the treatment, both models were adjusted to account for variation due to the differential attractiveness of the volunteer sleepers and huts. Results from the different experimental hut trials involving Olyset Plus and PermaNet 3.0 were analysed separately. Susceptibility bioassay results were interpreted according to WHO criteria49. All analyses were performed in Stata version 15.1.\n", - "\n", - "header: Results\n", - "\n", - "Experimental huts are used to assess the capacity of indoor vector control interventions to prevent wild vector mosquito entry and feeding and induce early mosquito exiting and mortality when applied in a human-occupied house, under carefully controlled conditions [3,12]. The hut trials were conducted at the CREC/LSHTM experimental hut station in Cowe, southern Benin (7deg14'N22deg18E), situated in a vast area of rice irrigation, which provides extensive and permanent breeding sites for mosquitoes. The rainy season extends from March to October and the dry season from November to February. _Anopheles coluzzini_ and _An. gambiae_ sensu stricto (s.s.) occur in symparity, with the latter present at lower densities and predominantly in the dry season. The vector population is susceptible to organophosphates and carbamates but exhibits intense resistance to pyrethroids (200-fold). Molecular genotyping and microarray studies have demonstrated a high frequency of the knockdown resistance L1014F allele (> 90%) and overexpression of CYP6P3, an enzyme associated with pyrethroid detoxification [3].\n", - "\n", - "Two experimental hut trials were performed in parallel for 4 months between April and July 2020. Trial 1 assessed the impact of combining Olyset Plus (Sumitomo Chemical), a permethrin-based pyrethroid-PBO ITN with pirimiphos-methyl IRS while Trial 2 assessed the impact of combining PermaNet 3.0 (Vestergaard Sarl), a deltamethrin-based pyrethroid-PBO ITN with pirimiphos-methyl IRS.\n", - "\n", - "The following six treatments were tested in each of the experimental hut trials:\n", - "\n", - "header: 3.2.3 Wall cone bioassays.\n", - "\n", - "WHO wall cone bioassays were performed on the IRS treated experimental hut walls 1 week, 2 months and 4 months after application of IRS treatments to assess their residual efficacy with increasing time elapsed from spraying. Mortality rates of the insecticide-susceptible _An. gambiae_ s.s. Kisum strain and pyrethroid-resistant _An. gambiae_ s.l. Cove strain following exposure to IRS-treated surfaces in 30 min wall cone bioassays are presented in Fig. 4. Mortality of mosquitoes exposed to pirimiphos-methyl treated walls was high (>90%) at all time points with both strains, showing no evidence of a decline in residual activity. In contrast, wall cone bioassay mortality on bendicor-treated surfaces declined rapidly, beginning at 67% and 39% in week 1 and falling to lows of 2% and 3% in month 4 with the Kisum and Cove strains respectively. No mortality was recorded in the controls at any time point with either strain.\n", - "\n", - "header: Discussion\n", - "\n", - "Given the inhibitory effect of PBO on mosquito cytochrome P450 enzymes, the WHO had temporarily recommended against the use of pyrethroid-PBO ITN in areas programmed for IRS with pirimiphos-methyl IRS until further evidence on the potential antagonism between PBO and the organo-thiophosphate pro-insecticide becomes available20. In this study, we found evidence of an antagonistic effect when pyrethroid PBO ITNs were combined with pirimiphos-methyl IRS in the same household in a pyrethroid-resistant area in Southern Benin where resistance was partly conferred by over-expression of mosquito cytochrome P450 enzymes20. Unlike the combination of the pyrethroid-PBO nets with bendicorab IRS which provided improved vector mosquito mortality compared to bendicorab IRS alone, combining these nets with pirimiphos-methyl IRS induced significantly lower levels of vector mosquito mortality rates compared to pirimiphos-methyl IRS alone. This effect\n", - "\n", - "Figure 3.: Mortality (24 h) of susceptible _Anopheles gambiae_ Kisumu and pyrethroid-resistant _An. gambiae_ s.l. Cove strains exposed to Olyset Plus and Permaket 3.0 in tunnel tests. Error bars represent 95% CIs. Both pyrethroid-PBO nets were compared to pyrethroid-only nets (Olyset Net and Permaket 2.0). Permaket 3.0 contains PBO only on the roof of the net. With both strains, 80–120 mosquitoes were exposed overnight to metting pieces cut from whole nets in 2–3 replicate tunnel tests.\n", - "\n", - "\n", - "was remarkably similar between the two brands of pyrethroid-PBO ITNs tested across both hut trials indicating that the negative interaction of the combination on mosquito mortality was less affected by the design and specifications of the pyrethroid-PBO ITN. Wild vector mosquitoes which entered the huts with the combined treatment may have contacted the pirimphos-methyl IRS on the hut wall only after picking up PBO from the ITN while attempting to blood-feed on the sheeper under the net. This pre-exposure to PBO on the ITN could have prevented the metabolic activation of the IRS insecticide in these mosquitoes, resulting in lower mortality rates relative to the IRS alone. This finding supports WHO's recommendation against the deployment of pyrethroid-PBO ITNs in areas that have already been programmed for IRS with pirimphos-methyl IRS. This is mostly important from a programmatic perspective where a vector control programme is faced with multiple choice of ITN types to deploy as an additional intervention to enhance vector control impact in an area that is already dedicated to IRS with pirimphos-methyl. In such a scenario, other types of ITNs like pyrethroid-only nets that were recently shown to complement pirimphos-methyl IRS when applied together23, should be considered.\n", - "\n", - "These findings should however not be interpreted to mean that pirimphos-methyl IRS must not be deployed to complement pyrethroid-PBO ITNs. Though pyrethroid-PBO ITNs have consistently shown improved performance in experimental hut trials against pyrethroid-resistant malaria vectors compared to pyrethroid-only nets34, the margin appears to vary depending on the intensity and mechanisms of pyrethroid-resistance encountered. In our study, the pyrethroid-PBO ITNs when applied alone in a hut induced low vector mosquito mortality (22-26%) compared to what has been observed in hut trials against the same vector population with another type of novel dual ITN (71-76%)35,40. Low levels of mosquito mortality in huts with pyrethroid-PBO ITNs and failure of PBO to fully restore pyrethroid susceptibility in bioassays have also been reported from studies in Burkina Faso37, Cameroon38, Cote d'Ivoire39 and Senegal40. This may indicate the presence of complex resistance mechanisms in the West African region unaffected by PBO. Compared to East Africa, West Africa has shown historically higher intensity of pyrethroid resistance in malaria vectors which continues to increase over time41, yet the public health value of pyrethroid-PBO ITNs has not been assessed in the region. It is therefore unclear whether these nets will provide the same improved epidemiological impact over pyrethroid-only nets in West Africa as observed in the East African community trials which have been the basis of their endorsement for malaria control. Our results showed a significant improvement in mosquito mortality when pirimphos-methyl IRS was combined with the pyrethroid-PBO ITNs (55-59%) compared to the pyrethroid-PBO ITNs alone (22-26%). Mosquito entry and feeding rates were also significantly lower with the combination compared to the pyrethroid-PBO ITNs alone. This provides some justification for deploying pirimphos-methyl IRS to complement pyrethroid-PBO nets in an area of high and complex pyrethroid-resistance where local vectors are less susceptible to the synergistic effect of PBO. Due to the limited choice of insecticides available for IRS, where a beneficial effect of the combination compared to the pyrethroid-PBO ITN alone has been established, pirimphos-methyl IRS should continue to be used even in the presence of high coverage with pyrethroid-PBO ITNs, preferably as part of an IRS rotational strategy. In line with WHO recommendations for insecticide resistance management42, the sustained rotation of multiple insecticide modes of action for IRS may help preserve efficacy to insecticides approved for IRS.\n", - "\n", - "Footnote 3: [https://doi.org/10.1038/s41598-022-10953-y](https://doi.org/10.1038/s41598-022-10953-y)\n", - "\n", - "Footnote 4: [https://doi.org/10.1038/s41598-022-10953-y](https://doi.org/10.1038/s41598-022-10953-y)\n", - "\n", - "Footnote 5: [https://doi.org/10.1038/s41598-022-10953-y](https://doi.org/10.1038/s41598-022-10953-y)\n", - "\n", - "Footnote 6: [https://doi.org/10.1038/s41598-022-10953-](https://doi.org/10.1038/s41598-022-10953-)\n", - "\n", - "y\n", - "\n", - "Footnote 7: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 8: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 9: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 10: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 11: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 12: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 13: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 14: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 15: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 16: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 17: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 18: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 19: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 20: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 21: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 22: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 23: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 24: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 25: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 26: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 27: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 28: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 29: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 30: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 31: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 32: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 333: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 34: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 35: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 36: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 37: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 38: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 39: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 40: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 41: https://doi.org/10.1038/s41598-022-10953-y\n", - "\n", - "Footnote 42: https://doi.org/10.1038/s415\n", - "\n", - "\n", - "following pre-exposure to PBO, restoration of susceptibility to permethrin--the pyrethroid insecticide used on the pyrethroid-PBO ITN tested in the Tanzanian trial (Olvest Plus)--was high in the vector population from the study area (from 18 to 94%)15. Hence, the level of control achieved with pyrethroid-PBO ITN alone in the Tanzanian trial may have been optimal making the addition of pirimphos-methyl IRS unnecessary. This may not be the case in many communities in West Africa considering the afore-mentioned low levels of pyrethroid-PBO synergism reported in susceptibility bioassays and hut trials conducted across the region; in contrast, the addition of pirimphos-methyl IRS to pyrethroid-PBO ITNs in these communities could be more beneficial for control of clinical malaria compared to the ITN alone. As the range of vector control products available to vector control programmes expands, the choice of interventions and product brands must be aligned to local contexts and guided by local evidence. To help guide vector control policy, epidemiological trials and/or other empirical studies investigating the impact and cost-effectiveness of pyrethroid-PBO nets in communities in the West African region as well as their combination with IRS using pro-insectiles like pirimphos-methyl will be necessary.\n", - "\n", - "Although the inhibitory effect of PBO on mosquito cytochrome P450 enzymes formed the basis of our hypothesis for the antagonism observed between pirimphos-methyl IRS and pyrethroid-PBO ITNs in the experimental huts, behavioural interactions could also have contributed. In both trials, mosquito exiting rates into the veranda traps and blood-feeding inhibition were consistently higher in the combinations compared to the IRS insecticides alone. This could be attributed to the excitro-replenent property of the pyrethroid in the ITN stimulating directed movement of mosquitoes away from their source44. This early exiting effect was however significantly higher in the combination with pirimphos-methyl IRS compared to the combination with bendo-carb IRS suggesting a behavioural interaction in the presence of pirimphos-methyl that may have driven more mosquitoes to exit into the veranda, thus reducing mosquitoes' contact with pirimphos-methyl IRS treated walls. This may have compromised the impact of the pirimphos-methyl IRS in the combination compared to when applied alone and to the combination with bendoicarb. Further studies to assess mosquito flight behaviour, in the presence of the combinations would provide useful insight into behavioural interactions between the treatments. Controlled laboratory assays which minimise behavioural responses and assess P450 enzyme activity in exposed mosquitoes, could also elucidate the potential role of P450 enzyme inhibition in the antagonism observed in the experimental huts.\n", - "\n", - "While our trial focused on investigating the impact of combining pyrethroid-PBO ITNs with pirimphos-methyl IRS in the same households, there is a paucity of information on the interactions between these nets and other newly developed vector control products which contain new public health insecticides such as the neonciotohal, clothidinium and the pyrrole chlorfenapxy. Chlorfenapxy, an insecticide used on ITNs13 and being considered for IRS6,46, also requires activation by mosquito P450 enzymes6. Laboratory experiments have indicated the potential of PBO to antagonise the toxicity of chlorfenapxy against mosquitoes in bioassays29,30. Studies investigating the impact of co-deploying pyrethroid-PBO ITNs together with pyrethroid-chlorfenapxy ITNs or chlorfenapxy IRS in the same household will be essential to help inform optimal co-deployment policy.\n", - "\n", - "header: Abbreviations\n", - "\n", - "IRS Indoor residual spraying\n", - "\n", - "WHO World Health Organization\n", - "\n", - "PQ Prenqualification team\n", - "\n", - "PBO Piperonyl butoxide\n", - "\n", - "ITN Insecticide treated net\n", - "\n", - "LLIN Long-lasting insecticidal net\n", - "\n", - "GPIRM Global plan for insecticide resistance management\n", - "\n", - "WHOPES WHO pesticide evaluation scheme\n", - "\n", - "CREC Centre de Recherche Entomologique de Cotonou\n", - "\n", - "LSHTTM London School of Hygiene & Tropical Medicine\n", - "\n", - "Kdr Knockdown resistance\n", - "\n", - "PAMVERC Pan African Malaria Vector Research Consortium\n", - "\n", - "The large-scale implementation of long-lasting insecticidal nets (LLINs), and indoor residual spraying (IRS) has resulted in profound reductions in malaria-associated morbidity and mortality across sub-Saharan Africa, over the last two decades1. Unfortunately, resistance to the insecticides applied through these interventions, especially the pyrethroids, is now pervasive in vector populations in malaria-endemic countries', threatening to undermine their impact. In response, a new generation of novel LLINs and IRS based on new active ingredients with the potential to sustain vector control impact in the face of increasing resistance, have been developed3. This includes dual insecticide-treated nets containing a pyrethroid and an alternative effective new compound as well as new IRS insecticides with novel modes of action or improved formulations that have shown potential to provide enhanced control of insecticide-resistant malaria vector populations.\n", - "\n", - "Insecticide-treated nets (ITNs) combining a pyrethroid and piperonyl butoxido (PBO) were the first novel class of ITNs to be developed for malaria vector control. PBO is a synergism that can enhance the impact of pyrethroids and other insecticides by inhibiting metabolic detoxification enzymes associated with resistance, notably cytochrome P450 monooxygenases3. These nets received a conditional endorsement from the World Health Organisation (WHO) in 2017 based on results from a cluster-randomised controlled trial (CRT) in Tanzania demonstrating a reduction in malaria prevalence in communities allocated to pyrethroid-PBO ITNs relative to pyrethroid-only ITNs4. A full policy recommendation is now expected after results from a second CRT in Uganda also showed that two brands of pyrethroid-PBO ITNs reduced malaria prevalence relative to pyrethroid-only nets4. The WHO endorsement and expanding evidence base for the public health value of pyrethroid-PBO ITNs has prompted mass procurement of these nets by international malaria control agencies4,5. The proportion of pyrethroid-PBO ITNs of all ITNs delivered in sub-Saharan Africa has consequently risen from 3% in 2018 to 35% in 202112; pyrethroid-PBO ITNs are therefore replacing pyrethroid-only nets in many malaria-endemic countries.\n", - "\n", - "The increasing distribution and intensity of pyrethroid resistance has also affected malaria control policy regarding insecticide choice for IRS over the last decade. To improve vector control impact and preserve pyrethroids for ITNs, African IRS programmes partly suspended the use of pyrethroids and organochlorines in favour of carbamates and organophosphates5,12. Whilst both insecticides showed high toxicity against malaria vectors, the short residual duration of the initial formulations approved for IRS proved prohibitive, necessitating the development of longer-lasting formulations13. A new microencapsulated formulation of pirimphos-methyl was later developed (Actellic 300CS) demonstrating prolonged activity against pyrethroid-resistant malaria vector mosquitoes, lasting up to 9 months14,15. This formulation subsequently served as the insecticide of choice for the majority of IRS programmes in sub-Saharan Africa1 providing substantial control of mosquito vectors and malaria across distinct eco-epidemiological settings6,16-22.\n", - "\n", - "[MISSING_PAGE_POST]\n", - "\n", - "header: Susceptibility of wild vector mosquitoes at Cove to insecticides.\n", - "\n", - "WHO susceptibility bioassays were conducted in parallel to the experimental hut trial to determine the susceptibility of the vector population at the Cove hit site to the constituent insecticides of the experimental hut treatments. Mortality rates of F1 progeny of field-collected _An. gambiae_ s.l. from the Cove hit station following exposure to discriminating doses of deltamethrin and permethrin in WHO cylinder bioassays were low (42% and 11% respectively), confirming a high frequency of pyrethroid resistance in the Cove vector population (Table 1). Pre-exposure to PBO significantly improved mortality with deltamethrin (42% vs. 72%) but not with permethrin (11% vs. 8%). Mortality rates with the discriminating doses of bendiocarb and pirimiphos-methyl were 98% and 99% respectively. This demonstrated susceptibility to pirimiphos-methyl and bendiocarb. All insecticides induced 100% mortality with the laboratory-maintained, insecticide-susceptible _An. gambiae_ s.s. Kisumu strain. No mortality was recorded in the control with either strain.\n", - "\n", - "header: Wall cone bioassays\n", - "\n", - "The laboratory-maintained, susceptible _An. gambiae_ s.s. Kisumu strain and wild pyrethroid-resistant _An. gambiae_ s.l. Cove mosquitoes (F1) derived from breeding sites at the hut station were used for this purpose. At each time point, five cones were attached to the walls and ceiling of the IRS-treated huts. Approximately 50, 3-5-day old mosquitoes were transferred into cones in 5 batches of 10 and exposed to the treated surfaces for 30 min. As a control, mosquitoes were exposed in cones attached to the walls and ceiling of an unsprayed hut. At the end of exposure, mosquitoes were transferred to netted, plastic cups. Mosquitoes were provided access to 10% (w/v) glucose solution and delayed mortality after 24 h for all treatments.\n", - "\n", - "\n", - "Ethical considerations.Ethical approval for the conduct of the study was obtained from the ethics review boards of the Beninese Ministry of Health (No. 34) and the London School of Hygiene & Tropical Medicine (Ref: 16969). All human volunteer sleepers gave informed written consent prior to their participation; where necessary, the consent form and information sheet were explained in their local language. They were offered a free course of chemoprophylaxis spanning the duration of the trial and up to 3 weeks following its completion. A stand-by nurse was available for the duration of the trial to assess any cases of fever or adverse reactions to test items. Any confirmed cases of malaria were treated free of charge at a local health facility. Animals used as baits in tunnel test were maintained following institutional standard operating procedures (SOPs) designed to improve care and protect animals used for experimentation. All studies were performed according to relevant national and international guidelines.\n", - "\n", - "header: Experimental hut trial procedure\n", - "\n", - "During the hut trials, volunteer sleepers were rotated between experimental huts daily to mitigate the impact of individual attractiveness whilst bed nets were rotated weekly between the huts to reduce the impact of hut position on mosquito entry. Three (3) replicate bed nets were used per treatment and rotated within the treatment every 2 days. IRS treatments cannot be rotated and thus remained fixed throughout the trial. Consenting human volunteer sleepers alert in experimental huts between 21:00 and 06:00 to attract free-flying mosquitoes. Each morning, volunteer sleepers collected all live and dead mosquitoes from the different compartments of the hut (under the net, room, veranda) using a torch and aspirator and placed them in correspondingly labelled plastic cups. Mosquito collections were then transferred to the field laboratory for morphological identification using taxonomic keys and scoring of immediate mortality and blood-feeding. All live, female _An. gambiae_ s.l. were provided access to 10% glucose (w/v) solution and held at ambient conditions in the field laboratory. Delayed mortality was recorded after 24 h for all treatments. Mosquito collections were performed 6 nights per week and on the 7th day, huts were cleaned and aired in preparation for the next rotation cycle.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `EntomologicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `EntomologicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `EntomologicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}, \"Start_month\": {\"title\": \"Start Month\", \"description\": \"Numerical start month of the reporting period (some studies may report multiple time periods)\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Hut trial\",\"Country\":\"Benin\",\"Site\":\"Cov\\u00e9\",\"Start_month\":4,\"Start_year\":2020,\"End_month\":7,\"End_year\":2020}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Concentration_initial\": {\"title\": \"Insecticide concentration (initial)\", \"description\": \"Enter the initial concentration of the insecticide(s) for net type at the time of distribution.\"}, \"Net_washed\": {\"title\": \"Net Washed\", \"description\": \"Numerical count of number of net washes - 0 if none and NA if not reported.\"}, \"Net_holed\": {\"title\": \"Net Holed\", \"description\": \"Numerical count of the number of holes a net has - 0 if new and NA if not reported\\nNote - for tunnel tests there are holes that allow the mosquitoes the option of passing through to feed on the guinea pig.\"}, \"pHI_category\": {\"title\": \"Phi Category\", \"description\": \"Classification of the nets holed surface area, as one of \\\"Good\\\", \\\"Damaged\\\", \\\"Torn\\\", \\\"Serviceable\\\", or \\\"All\\\", as proposed by WHO\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"Untreated net\",\"Insecticide\":null,\"Concentration_initial\":null,\"Net_washed\":null,\"Net_holed\":null,\"pHI_category\":null},\"N02\":{\"Net_type\":\"PermaNet 3.0\",\"Insecticide\":\"Deltamethrin, PBO\",\"Concentration_initial\":\"2.1 g\\/kg, 4.0 g\\/kg, 25 g\\/kg\",\"Net_washed\":0.0,\"Net_holed\":9.0,\"pHI_category\":\"Good\"},\"N03\":{\"Net_type\":\"Olyset Plus\",\"Insecticide\":\"Permethrin, PBO\",\"Concentration_initial\":\"20 g\\/kg, 10 g\\/kg\",\"Net_washed\":0.0,\"Net_holed\":9.0,\"pHI_category\":\"Good\"}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Table 1: Treatment arms and descriptions of longlasting insecticide-treated nets.\n", - "footer: PermaNet is a registered trademark of Vestergaard Frandsen Holding SA. Olyset is a registered trademark of Sumitomo Chemical Co. Ltd. DawaPlusis a registered trademark of Tana Netting Co. Ltd.PBO, piperonyl butoxide.\n", - "columns: ['Treatment arm', 'Description', 'Manufacturer']\n", - "\n", - "{\"0\":{\"Treatment arm\":\"Untreated net\",\"Description\":\"Net manufactured manually using netting material from market\",\"Manufacturer\":\"Local market\"},\"1\":{\"Treatment arm\":\"Olyset\\u00ae Net\",\"Description\":\"8.6 x 10-4 kg\\/m2 of permethrin incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"2\":{\"Treatment arm\":\"Olyset\\u00ae Plus\",\"Description\":\"8.6 x 10-4 kg\\/m2 of permethrin and 4.3 x 10-4 kg\\/m2 of PBO incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"3\":{\"Treatment arm\":\"PermaNet\\u00ae 2.0\",\"Description\":\"5.5 x 10-5 kg\\/m2 of deltamethrin coated on polyester\",\"Manufacturer\":\"Vestergaard Frandsen\"},\"4\":{\"Treatment arm\":\"PermaNet\\u00ae 3.0\",\"Description\":\"Combination of 2.8 g\\/kg of deltamethrin coated on polyester with strengthened border (side panels) and deltamethrin (4.0 g\\/kg) and PBO (25 g\\/kg)\",\"Manufacturer\":\"Vestergaard Frandsen\"},\"5\":{\"Treatment arm\":\"Dawa\\u00ae Plus 2.0\",\"Description\":\"8.0 x 10-5 kg\\/m2 of deltamethrin coated on polyester\",\"Manufacturer\":\"TANA Netting\"}}\n", - "\n", - "header: Supporting Information\n", - "\n", - "Additional supporting information may be found online in the Supporting Information section at the end of the article.\n", - "\n", - "Fig. 5: Outcome measures comparing piperonyl butoxide (PBO)-treated and non-PBO-treated nets from the same manufacturers. Deterrence, the ratio of mosquitoes entering a hit relative to the control hit. Exophily, the odds ratio (OR) for a mosquito being found in the veranda trap. Blood feeding inhibition, the OR for a mosquito being blood-fed. Mortality, the OR for a mosquito being dead in the morning (immediate mortality) or after being caught alive and held for 24 h (delayed mortality). [Colour figure can be viewed at wileyonlinelibrary.com].\n", - "\n", - "header: Entry rate and deterrence: Exit rates and induced exophily\n", - "\n", - "Exit rates refer here to the proportion of mosquitoes present in the veranda trap. As with entrance rates, exit rates varied throughout the study (Fig. 4). On average, the induced exophily rates were between 26.4% (control net) and 48.5% (Olyset Net) (Table S4). The odds of finding a mosquito in the veranda trap were significantly increased in the huts with treated nets, with the exception of the DawaPlus, although even for the DawaPlus a tendency to induce exophily was observed (Fig. 4, Table S4).\n", - "\n", - "header: Molecular analysis\n", - "\n", - "DNA was extracted from mosquito legs by heating at 90*C for 30 min. Species were identified using the SINE200 protocol (Santolamazza _et al._, 2008) and then screened for the voltage gated sodium channel (VGSC) 1014F and 1575Y alleles using Taqman assays (Bass _et al._, 2007; Jones _et al._, 2012).\n", - "\n", - "Total RNA was extracted from six pools of 10 5-day-old non-blood-fed female _An. coluzzii_ from larval collections from Tengrela and VK5 using the RNAqueous(r)4PCR Kit for isolation of DNA-free RNA (Ambion, Inc., Austin, TX, U.S.A.) according to the manufacturer's procedures. The RNA was eluted in 50 mL of elution solution and treated with DNase. The quality and quantity of all the RNA used were assessed \n", - "using a NanoDrop ND1000 (Thermo Fisher Scientific UK Ltd, Renfrew, U.K.).\n", - "\n", - "The expression profiles of five P450 genes (_CYP6M2_, _CYP6Z2_, _CYP6Z3_, _CYP6P3_, _CYP6P4_), previously found to be over-expressed in pyrethroid-resistant field populations from Burkina Faso (Toe _et al._, 2015) and/or known to metabolize pyrethroids (Muller _et al._, 2008; Mitchell _et al._, 2012) were quantified using reverse-transcription quantitative polymerase chain reaction (RT-qPCR). The qPCR analysis was conducted at the LSTM and used the following mosquito populations: Ngousso, an insecticide-susceptible strain originating from Ngousso in Cameroon in 2006 and maintained in the insectary at LSTM; Tengrela specimens reared from larval collections in October-November 2014, and VK5 specimens reared from larval collections in October-November 2014. Approximately 600 ng of RNA was reverse-transcribed to first-strand cDNA using SuperScript(tm) III reverse transcriptase (Invitrogen, Inc., Carlsbad, CA, U.S.A.) according to the manufacturer's procedures. Samples were then purified using the Qiagen Easy Purification Kit (Qiagen Benelux BV, Venlo, the Netherlands) before proceeding to qPCR. Each of the six pool replicates were run in triplicate using 2X SYBR Brilliant III (Agilent Technologies, Inc., Palo Alto, CA, U.S.A.), forward and reverse primers (300 nM) [sequence available in Toe _et al._ (2015)] on the Mx3005p qPCR system (Agilent Technologies, Inc., Palo Alto, California) with the following cycling protocol: 95 degC for 3 min, followed by 40 cycles of 95 degC for 10 s and 60 degC for 10 s. The qPCR data were analysed using the delta Ct values method, taking into account the PCR efficiency (Pfaffi, 2001). The candidate Ct values were normalized against three housekeeping genes, encoding ribosomal protein L40 (ubiquitin) (_AGAP007927_), an elongation factor (_AGAP005128_) and the S7 ribosomal protein (_AGAP010592_). The normalized Ct values of each gene were then compared with the normalized Ct values of the susceptible Ngousso strain.\n", - "\n", - "header: Results\n", - "\n", - "In VK5, very low levels of mortality were observed after exposure to the discriminating dose of deltamethrin and permethrin, but pre-exposure to PBO significantly increased mortality rates from 2.5% (_n_ = 163) to 45% (_n_ = 158) and from 5% (_n_ = 153) to 26% (_n_ = 156) for deltamethrin and permethrin, respectively (Fisher's exact test, \\(P\\) < 0.0001) (Fig. 1). In Tengrela, mortality rates of 34% (_n_ = 85) and 14% (_n_ = 101) were recorded for deltamethrin and permethrin, respectively. When PBO was used, mortality rates increased significantly to 63% (_n_ = 84) and 42% (_n_ = 104), respectively (Fisher's exact test, \\(P\\) < 0.0001) (Fig.1). Although there was evidence of synergism, pre-exposure to PBO did not fully restore susceptibility in either site to either pyrethroid.\n", - "\n", - "_Anopheles coluzzi_ was the only species of the _An. gambiae_ complex identified by PCR of a subset of 80 specimens from Tengrela and VK5. High frequencies of the 1014F allele of the VGSC were recorded in Tengrela (0.819, 95% CI 0.750-0.875) and VK5 (0.885, 95% CI 0.824-0.930) with the 1575Y allele present at lower frequencies of 0.169 (95% CI 0.114-0.236) and 0.221 (95% CI 0.158-0.295), respectively. Samples were not genotyped for the 1014S allele as previous extensive surveys have not detected this allele in _An. coluzzi_ from these sites (Toe _et al._, 2015). There was no statistically significant difference in the frequency of either the 1014F or 1575Y allele between the two sites (Table 2).\n", - "\n", - "Several cytochrome P450 genes previously associated with pyrethroid resistance showed elevated expression levels in the Tengrela and the VK5 _An. coluzzi_ populations compared with the susceptible laboratory Ngousso strain (Fig. 2). _CYP6P3_, _CYP6M2_, _CYP6Z3_, _CYP6P4_ and _CYP6Z2_ were found to be\n", - "\n", - "Fig. 1: Mortality rates (with binomial confidence intervals) after exposure to deltamethrin and permethrin in World Health Organization discriminating dose assays with or without pre-exposure to piperonyl butoxide (PBO) in (A) Vallée du Kou 5 and (B) Tengrela (October 2014). *Significant differences in mortality: \\(P\\) < 0.0001. Numbers in brackets are the total numbers of mosquitoes tested. [Colour figure can be viewed at wileyonlinelibrary.com].\n", - "\n", - "\n", - "overexpressed in both field strains compared with the susceptible laboratory colony (fold change: > 2) with the most highly overexpressed genes in both populations being _CYP6Z2_ and _CYP6Z3_ (Fig. 2).\n", - "\n", - "header: Discussion\n", - "\n", - "Very low mortality rates were obtained for both permethrin and deltamethrin in the two study sites following an hour of exposure to WHO diagnostic doses. Southwestern Burkina Faso is known as a hotspot of pyrethroid resistance (Dabire _et al._, 2012; Namountougou _et al._, 2012). Rapid changes in the prevalence of pyrethroid resistance have been observed since the first national LLIN distribution programme in 2010: in 2009, mosquito mortality following deltamethrin exposure was 25% (Dabire _et al._, 2012), in VK has since fallen to just 2.5%. The frequency of the 1014F _kdr_ mutation also increased from 0.28 in 2006 (Dabire _et al._, 2009) to 0.88 in the current study. Similar increases in the prevalence of pyrethroid resistance have been witnessed in Tengrela. Mortality rates of 93% and 46% for deltamethrin and permethrin, respectively, were recorded in 2011 (Namountougou _et al._, 2012; K. H. Toe, unpublished data 2011), but these mortality rates had reduced to 33% and 13% in 2014, the year of the current study (Toe _et al._, 2015). In the present study, pyrethroid mortality was significantly increased by pre-exposure to PBO. This, together with the qPCR data showing elevated expression of multiple P450s in both field populations compared with a susceptible laboratory strain, indicate that oxidases are an important resistance mechanism in _An. coluzzi_ in southwestern Burkina Faso. It is noted that resistance was not fully restored by PBO pre-exposure, indicating that additional resistance mechanisms, such as target site resistance and possibly cuticular modifications (Toe _et al._, 2015), may contribute to the pyrethroid resistance phenotype in these populations.\n", - "\n", - "header: Abstract\n", - "\n", - "Do bednets including piperonyl butoxide offer additional protection against populations of _Anopheles gambiae s.l._ that are highly resistant to pyrethroids? An experimental hut evaluation in Burkina Faso\n", - "\n", - "K. H. T oe\n", - "\n", - "1Departement des Sciences Biomedicales, Centre National de Recherche et de Formation sur le Paludisme, Ouagadougou, Burkina Faso, 2Epidemiology and Public Health Department, Swiss Tropical and Public Health Institute, Basel, Switzerland, 3University of Basel, Basel, Switzerland, 4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " P. Muller\n", - "\n", - "2H233\n", - "\n", - "33Departement des Sciences Biomedicales, Centre National de Recherche et de Formation sur le Paludisme, Ouagadougou, Burkina Faso, 2Epidemiology and Public Health Department, Swiss Tropical and Public Health Institute, Basel, Switzerland, 3University of Basel, Basel, Switzerland, 4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " A. Badlo\n", - "\n", - "1Departement des Sciences Biomedicales, Centre National de Recherche et de Formation sur le Paludisme, Ouagadougou, Burkina Faso, 2Epidemiology and Public Health Department, Swiss Tropical and Public Health Institute, Basel, Switzerland, 3University of Basel, Basel, Basel, Switzerland, 4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " A. Traore\n", - "\n", - "1Departement des Sciences Biomedicales, Centre National de Recherche et de Formation sur le Paludisme, Ouagadougou, Burkina Faso, 2Epidemiology and Public Health Department, Swiss Tropical and Public Health Institute, Basel, Switzerland, 3University of Basel, Basel, Basel, Switzerland, 4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " N. Sagnon\n", - "\n", - "1Departement des Sciences Biomedicales, Centre National de Recherche et de Formation sur le Paludisme, Ouagadougou, Burkina Faso, 2Epidemiology and Public Health Department, Swiss Tropical and Public Health Institute, Basel, Switzerland, 3University of Basel, Basel, Basel, Switzerland, 4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " R. K. Dabi Irene\n", - "\n", - "4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " H. Ransons\n", - "\n", - "5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - "\n", - "Malaria control is dependent on the use of longlasting insecticidal nets (LLINs) containing pyrethroids. A new generation of LLINs containing both pyrethroids and the synergist piperonyl butoxide (PBO) has been developed in response to increasing pyrethroid resistance in African malaria vectors, but questions remain about the performance of these nets in areas where levels of pyrethroid resistance are very high. This study was conducted in two settings in southwest Burkina Faso, Vallee du Kou 5 and Tengrela, where _Anopheles gambiae s.l._ (Diptera: Culicidae) mortality rates in World Health Organization (WHO) discriminating dose assays were \\(<\\) 14% for permethrin and \\(<\\) 33% for delatamethrin. When mosquitoes were pre-exposed to PBO in WHO tube assays, mortality rates increased substantially but full susceptibility was not restored. Molecular characterization revealed high levels of _kdr_ alleles and elevated levels of P450s previously implicated in pyrethroid resistance. In cone bioassays and experimental huts, PBO LLINs outperformed the pyrethroid-only equivalents from the same manufacturers. Blood feeding rates were 1.6-2.2-fold lower and mortality rates were 1.69-1.78-fold greater in huts with PBO LLINs vs. non-PBO LLINs. This study indicates that PBO LLINs provide greater personal and community-level protection than standard LLINs against highly pyrethroid-resistant mosquito populations.\n", - "\n", - " insecticide resistance, insecticide resistance management, longlasting insecticidal nets, PBO.\n", - "\n", - "header: Table 2: Frequencies of 1014F and 1575Y kdr alleles in Anopheles coluzzili, in Tengrela and Vallée du Kou 5 (VK5).\n", - "footer: Chi-squared test (http://vassarstats.net/) for the comparison of the frequency of the 1014F and 1575Y mutations in Anopheles coluzzili populations from Tengrela and VK5 (October 2014). No statistical difference was observed in the frequencies of the kdr alleles in the two sites.\n", - "columns: ['1014F mutation - Unnamed: 0_level_1', '1014F mutation - Total n', '1014F mutation - LL', '1014F mutation - LF', '1014F mutation - FF', '1014F mutation - f (1014F)', '1014F mutation - P-value']\n", - "\n", - "{\"0\":{\"1014F mutation - Unnamed: 0_level_1\":\"Tengrela\",\"1014F mutation - Total n\":\"80\",\"1014F mutation - LL\":\"2\",\"1014F mutation - LF\":\"25\",\"1014F mutation - FF\":\"53\",\"1014F mutation - f (1014F)\":\"0.819\",\"1014F mutation - P-value\":\"0.26\"},\"1\":{\"1014F mutation - Unnamed: 0_level_1\":\"VK5\",\"1014F mutation - Total n\":\"78\",\"1014F mutation - LL\":\"0\",\"1014F mutation - LF\":\"18\",\"1014F mutation - FF\":\"60\",\"1014F mutation - f (1014F)\":\"0.885\",\"1014F mutation - P-value\":null},\"2\":{\"1014F mutation - Unnamed: 0_level_1\":\"1575Y mutation\",\"1014F mutation - Total n\":\"1575Y mutation\",\"1014F mutation - LL\":\"1575Y mutation\",\"1014F mutation - LF\":\"1575Y mutation\",\"1014F mutation - FF\":\"1575Y mutation\",\"1014F mutation - f (1014F)\":\"1575Y mutation\",\"1014F mutation - P-value\":\"1575Y mutation\"},\"3\":{\"1014F mutation - Unnamed: 0_level_1\":null,\"1014F mutation - Total n\":\"Total n\",\"1014F mutation - LL\":\"NN\",\"1014F mutation - LF\":\"NY\",\"1014F mutation - FF\":\"YY\",\"1014F mutation - f (1014F)\":\"f (A575Y)\",\"1014F mutation - P-value\":\"P-value\"},\"4\":{\"1014F mutation - Unnamed: 0_level_1\":\"Tengrela\",\"1014F mutation - Total n\":\"80\",\"1014F mutation - LL\":\"57\",\"1014F mutation - LF\":\"19\",\"1014F mutation - FF\":\"4\",\"1014F mutation - f (1014F)\":\"0.169\",\"1014F mutation - P-value\":\"0.39\"},\"5\":{\"1014F mutation - Unnamed: 0_level_1\":\"VK5\",\"1014F mutation - Total n\":\"77\",\"1014F mutation - LL\":\"49\",\"1014F mutation - LF\":\"22\",\"1014F mutation - FF\":\"6\",\"1014F mutation - f (1014F)\":\"0.221\",\"1014F mutation - P-value\":null}}\n", - "\n", - "header: Performance of PBO LLINs in experimental hut studies\n", - "\n", - "The enhanced performance of PBO-containing LLINs over conventional LLINs was further supported by the experimental hut results. Both blood feeding inhibition and mortality rates were significantly higher in huts containing PBO LLINs than in those containing conventional LLINs from the same manufacturers. An improved performance of the PermaNet 3.0, which contains both higher concentrations of deltamethrin compared with the PermaNet 2.0, plus PBO on the roof of the net, has also been reported in pyrethroid-resistant populations of malaria vectors in Ivory Coast (Koudou _et al._, 2011), Benin (N'Guessan _et al._, 2010) and Burkina Faso (Corbel _et al._, 2010).\n", - "\n", - "Fig. 4: Primary outcomes measured in the experimental hut trials in Tengrela and Vallée du Kou 5 (VK5). (A–D) Crude data for the measured outcomes. (A) Entry, number of mosquitoes per night entering a hut. (B) Exit, proportion of mosquitoes collected from the veranda trap. (C) Blood feeding, proportion of mosquitoes found blood-fed. (D) Mortality, proportion of mosquitoes dead at 24 h post-collection. (E–H) These outcomes measured relative to the control (i.e. untreated mosquito net) for both sites combined. (E) Deterrence, the ratio of mosquitoes entering a hut relative to the control hut. (F) Exophily, the odds ratio (OR) for a mosquito being found in the veranda trap. (G) Blood feeding inhibition, the OR for a mosquito being blood-fed. (H) Mortality, the OR for a mosquito being dead in the morning (immediate mortality) or after being caught alive and held for 24 h (delayed mortality). Symbols show the average and whiskers show the limits of the 95% confidence intervals around the average. The dashed line shows the ratio or OR of 1, indicating no association of the outcome with the treatment. The data used to produce the plot together with the \\(P\\)-values are provided in Table S3. [Colour figure can be viewed at wileyonlinelibrary.com].\n", - "\n", - "\n", - "The magnitude of this effect differs among studies, with previous studies reporting increases in mortality rates of 1.3-1.8-fold, whereas the current study reports an OR of 2.45, which corresponds to a 1.78-fold increase. Only one experimental hit study comparing the Olyset Plus with the Olyset Net has been published to date (Pennetier _et al._, 2013). This study, conducted in Benin in 2013, reported mortality rates 1.9-fold higher in the PBO arm than in the conventional LLIN arm (Pennetier _et al._, 2013), which is in line with the findings of the current study, which found a 1.89-fold (OR 2.1) elevation in mortality rates in the Olyset Plus arm.\n", - "\n", - "In addition to increased mortality rates, the current study, plus two of the previous experimental hit studies, reported significantly higher rates of blood feeding inhibition for PBO vs. conventional LLINs (Corbel _et al._, 2010; N'Guessan _et al._, 2010), indicating that PBO LLINs afford an enhanced level of personal protection in areas where vectors are resistant to pyrethroids. It should be noted that the current study was performed using unwashed nets only. Previous studies have found that the efficacy of PBO LLINS against resistant mosquitoes decreases substantially after the nets have been washed 20 times according to WHO protocols (Corbel _et al._, 2010; Tungu _et al._, 2010; Koudou _et al._, 2011). Thus further studies on the durability of the bio-efficacy of PBO LLINS under field conditions are urgently needed.\n", - "\n", - "header: Blood feeding rates and inhibition\n", - "\n", - "Average blood feeding rates were between 17.0% (PermaNet 3.0) and 56.4% (control net) (Table S4). With the exception of the DawaPlus, all treated nets reduced blood feeding (Fig. 4, Table S4), and the effect was most prominent with the PBO nets PermaNet 3.0 and Olyset Plus (Fig. 4, Table S4), for which the odds ratios (ORs) of blood feeding relative to control nets were 0.19 (95% CI 01.3-0.26) and 0.16 (95% CI 0.11-0.23), respectively.\n", - "\n", - "header: Mortality rates and induced mortality\n", - "\n", - "Average mortality rates ranged from 9.5% in the control arm to 46.1% in the PermaNet 3.0 arm (Table S4). Mortality was statistically higher in all treated net conditions than in the control huts. As with blood feeding inhibition, the PBO nets showed the largest effects in increasing mortality (Fig. 5, Table S4); the ORs for mortality relative to control nets were 5.56 (95% CI 3.92-7.89) and 8.14\n", - "Fig. 2: Expression levels of candidate genes previously associated with pyrethroid resistance in Tengrela and Vallée du Kou 5. The analysis was performed using the 2−\n", - "\n", - "\n", - "\n", - "\n", - "(95% CI 5.64-11.75) for the Olyset Plus and PermaNet 3.0, respectively, compared with 2.65 (95% CI 1.87-3.75) and 3.33 (95% CI 2.35-4.74) for the Olyset Net and PermaNet 2.0, respectively.\n", - "\n", - "header: Impact of PBO on LLIN efficacy in pyrethroid-resistant mosquitoes\n", - "\n", - "The performance of nets containing PBO as compared with pyrethroid-only nets from the same manufacturer is shown in Fig. 5. The PermaNet 3.0 deterred more mosquitoes than the PermaNet 2.0 (OR = 0.67, \\(P\\) < 0.01) (Fig. 5, Table S5), but there was no significant difference between the Olyset Plus and Olyset Net (_P_ = 0.412). The Olyset Net induced more exophily than the Olyset Plus (OR = 0.76, \\(P\\) < 0.05), but there was no significant difference in exophily between the PermaNet 2.0 and 3.0 (_P_ = 0.727) (Table S5). The PBO nets from both manufacturers considerably reduced blood feeding compared with non-PBO nets with ORs of 0.34 (_P_ < 0.001) and 0.55 (_P_ < 0.01) for the PermaNet 3.0 and Olyset Plus, respectively (Fig. 5, Table S4). In addition, the PBO nets killed significantly more _An. gambiae s.l._ than the non-PBO nets. The ORs for mortality were 2.45 (_P_ < 0.001) for the PermaNet 3.0 and 2.1 (_P_ < 0.001) for the Olyset Plus (Fig. 5, Table S5).\n", - "\n", - "header: Experimental hut results\n", - "\n", - "In total, 12 915 specimens from four different mosquito genera were collected inside the huts (sleeping rooms and veranda traps) over the 6-week trial (Tengrela, \\(n\\) = 5808; VK5, \\(n\\) = 7107). Most specimens collected from the huts belonged to the _An. gambiae s.l._ species complex, accounting for 75.4% (_n_ = 4379) in Tengrela and 98.8% (_n_ = 7020) in VK5. The second most frequently collected _Anopheles_ species was _An. rhinorensis_, of which 49 and 19 specimens were collected in Tengrela and VK5, respectively. Other _Anopheles_ mosquito species, including _An. funestus_ (_n_ = 3), _An. nili_ (_n_ = 2) and _An. coustani_ (_n_ = 3), were collected in Tengrela. Additional mosquito taxa were also collected, including _Mansonia_ sp. (_n_ = 1330 in Tengrela and \\(n\\) = 45 in VK5), _Culex_ sp. (_n_ = 41 in Tengrela and \\(n\\) = 23 in VK5) and _Aedes_ sp. (_n_ = 1 in Tengrela) (all: Diptera: Culicidae). Because of the low numbers of other genera, only data for _An. gambiae s.l._ were included in the analysis.\n", - "\n", - "Within the total of 11 399 _An. gambiae s.l._ caught at both field sites, there was considerable variation between weeks and treatments in the numbers of mosquitoes entering the huts in both study locations (Fig. 4). The average number of mosquitoes caught per night/per hut was between 13 (PermaNet 3.0) and 20.7 (Olyset Net) mosquitoes (Table S3) and induced deterrence was found only for the Olyset Net, albeit at a low ratio of 1.31 (95% CI 1.02-1.66; \\(P\\) < 0.05) (Fig. 4).\n", - "\n", - "header: Introduction\n", - "\n", - "Use of the longlasting insecticidal net (LLIN) is pivotal in the fight against malaria in Africa. A massive scaling up of the distribution of this commodity has occurred over the past 15 years, with 178 million LLINs delivered for use in sub-Saharan Africa (SSA) in 2015 alone [World Health Organization (WHO), 2016]. Although reliable estimates of LLIN usage are very hard to obtain, the WHO estimates that 53% of the population at risk in SSA slept under an LLIN in 2015 [WHO, 2016]. The results have been dramatic: an estimated 450 million clinical cases of malaria were averted in the last 15 years by the use of LLINs [Bhatt _et al._, 2015].\n", - "\n", - "All LLINs in current use contain pyrethroid insecticides, but there is growing recognition that increases in the prevalence and intensity of pyrethroid resistance, driven at least in part by the scale-up in the use of LLINs, could jeopardize recent gains in malaria control [WHO, 2012]. Direct evidence that pyrethroid\n", - "resistance is reducing either the personal or community-level protection provided by LLINS is challenging to obtain (Kleinschmidt _et al._, 2015; Ranson & Lissenden, 2016), but models of malaria transmission predict that even relatively low levels of resistance can substantially reduce the public health benefits of LILINS (Churcher _et al._, 2016). In countries that rely on the LLIN as the primary malaria prevention tool, the only currently available alternatives to conventional pyrethroid-only LLINS are nets in which the synerigent piperonyl butoxide (PBO) has been included in the fibres making up all, or part, of the net. Piperonyl butoxide inhibits cytochrome P450s, which comprise one of the most important enzyme families involved in pyrethroid resistance, and exposure to PBO has been shown to reduce resistance and sometimes to restore susceptibility to pyrethroids in malaria vectors (Jones _et al._, 2013; Edi _et al._, 2014).\n", - "\n", - "Four brands of LLIN containing PBO have received interim approval from the WHO as conventional LLINS. These are the PermaNet(r) 3.0 (deltamethrin+PBO) (Vestergaard Frandsen Holding SA, Lausanne, Switzerland), the Olvest(r) Plus (permethrin+PBO) (Sumitomo Chemical Asia Pte Ltd, Health and Crop Sciences Sector, Tokyo, Japan), the Veeralin(r) (alpha cypermethrin+PBO) (VKA Polymers Pte Ltd, Karur, India) and the DawaPlus(r) (deltamethrin+PBO) (Tana Netting Co. Ltd, Dubai, U.A.E.). The benefit of the addition of PBO is only expected to manifest in areas in which mosquito populations are resistant to pyrethroids and experimental hut trials of PBO LLINS in areas of resistance have supported this prediction. Increased mosquito mortality was observed in experimental huts containing PBO LLINS compared with conventional LLINS in Ivory Coast, Benin and Burkina Faso (Corbel _et al._, 2010; Ngousso _et al._, 2010; Koudou _et al._, 2011; Pennetier _et al._, 2013) and reductions in blood feeding rates were also reported in trials in the latter two countries. All of these sites reported high levels of pyrethroid resistance.\n", - "\n", - "There has been a dramatic escalation in the strength of pyrethroid resistance in southwestern Burkina Faso since earlier trials of PBO LLINS in 2007. World Health Organization cone bioassays performed in 2012 revealed that none of the conventional LLINS were effective in killing local vector populations and that the performance of the PBO LLIN PermaNet(r) 3.0 was also compromised in these assays (Toe _et al._, 2014). Although the numbers of malaria deaths in Burkina Faso have fallen over the past 10 years, numbers of malaria cases have risen year on year despite countywide LLIN distribution campaigns [National Malaria Control Programme (NMCP), personal communication; K.H.Toe, 2017]. In order to advise the NMCP on whether a switch to PBO LLINS may be warranted to target these highly resistant populations, an experimental hut trial was undertaken in two rice-growing areas in the southwestern region of Burkina Faso.\n", - "\n", - "header: Conclusions\n", - "\n", - "The results of these experimental hit studies with entomological endpoints suggest that substituting conventional LLINs with PBO LLINs in areas where there is a high prevalence of pyrethroid resistance in local vectors may be an effective strategy to maintain the efficacy of malaria vector control. The public health benefit of this would depend on a wide range of factors, including the level of malaria endemicity, LLIN coverage rates and the predominant mosquito vectors present, but a recent modelling exercise predicts that in some settings, a switch to PBO LLINs could aver up to 0.5 clinical cases per person per year (Churcher _et al._, 2016). These predictions from models are now being evaluated in large-scale field trials. A recent study in Tanzania reported a 33% protective efficacy of PBO LLINs over conventional LLINs after 2 years of use (Protopopoff _et al._, 2018). A larger trial, involving the distribution of over 10.7 million nets in Uganda, is evaluating whether PBO nets reduce malaria prevalence under programmatic conditions ([https://www.againstmalaria.com](https://www.againstmalaria.com), [https://www.pmi.gov](https://www.pmi.gov)).\n", - "\n", - "In light of the results from experimental hit studies, including the current study, and after reviewing data from the first clinical trial of a PBO LLIN, the WHO recently made a policy recommendation that national malaria control programmes should consider deployment of PBO LLINs in areas with pyrethroid-resistant vectors (WHO, 2017). If deployed at scale, PBO LLINs may play an important role in reducing the immediate threat of pyrethroid resistance to malaria control.\n", - "\n", - "header: Experimental hut trials\n", - "\n", - "Each station consisted of six experimental huts built according to the West African style (WHO, 2013). The study had six arms that used, respectively, five different LLINs and one net with no insecticide treatment as a negative control (Table 1). The nets were obtained from the manufacturers and were unpacked and kept in the shade for 24 h, but not washed prior to testing. Two of the nets, the OlysetPlus and PermaNet 3.0, contain PBO, whereas the other three LLINs contain only pyrethroids. The LLINs were holed according to WHO standard procedures (WHO, 2013). A total of six holes (4 cm x 4 cm) per net were cut, two on each of the long sides and one on each of the short sides.\n", - "\n", - "Study participants (male sleepers) spent 6 nights per week under a net in an experimental hut from 20.00 hours to 05.00 hours, followed by 1 day of break. The sleepers were rotated through the six huts so that each sleeper spent 1 night per week under each net type. To complete a full Latin square rotation with all combinations of sleeper, net type and hut, the study ran over 36 days from 8 September to 22 October 2014.\n", - "\n", - "Each morning at 05.00 hours, mosquitoes were collected manually by the sleepers, with supervision, from under the net, inside the hut and on the exit veranda. The collected specimens were morphologically identified to genus and, where possible, to species level (Gillies & Coetzee, 1987), grouped according to their gonotrophic stage (blood-fed, unfed or gravid), and scored as dead or alive. Live mosquitoes were transferred to paper cups, provided with 10% sugar water and kept in the insectary described above for 24 h, after which delayed mortality was recorded. All specimens were stored on silica gel for further molecular analysis.\n", - "\n", - "Data analysis was performed in the open-source statistical software R Version 3.3.2 (R Development Core Team, 2011) using the libraries 'lme4' (Bates _et al._, 2012) and 'glmADMB' (Skaug _et al._, 2012) for generalized linear mixed models (GLMMs). Plots were then generated with the package 'ggplot2' (Wickham, 2009).\n", - "\n", - "In the statistical analysis of hut trial data, in order to increase the number of replicates, give more power and increase confidence in the analysis, data collected from both sites (Tengrela and VK5) were pooled and the following four outcomes for _An. coluzzii_ were compared between the LLINs and the untreated control net, as well as between the PBO and non-PBO nets from the same manufacturer: (a) deterrence (i.e. the reduction in hut entry relative to the control or non-PBO net); (b) induced exophily (i.e. the ratio of the odds of a mosquito being found in the veranda trap compared with the hut); (c) blood feeding inhibition (i.e. the ratio of the odds of blood\n", - "\n", - "fed vs. unfed mosquitoes), and (d) induced mortality [i.e. the ratio of the odds of dead vs. alive mosquitoes] (The original dataset for _An. gambiae s.l._ is supplied in Table S2.) Immediate mortality and mortality at 24 h post-collection were combined for the analysis. Deterrence was analysed as the ratio in total numbers between the treatment arms (or PBO net) vs. the control arm (or non-PBO net). The numbers of mosquitoes in the room and the veranda were combined and analysed using a GLMM with a negative binomial distribution and a log link function using the R function 'glmandmdb()' in the 'glmmADMB' package. In the model, the net type was the fixed effect term and random intercepts were introduced for the sleeper and the hut, and a random slope for the day depending on the location. For proportional outcomes of induced exophily, blood feeding inhibition and induced mortality, the negative binomial model was replaced by a GLMM with a binomial distribution and logit link function using the R function 'glmer()' in the 'lme4' package. In the models, in addition to the terms listed above, a random intercept was introduced for each observation to account for unexplained overdispersion. For statistical testing, the level of significance was set at \\(a\\) = 0.05.\n", - "\n", - "In addition to the ratios described above, averages (i.e. the modes) and 95% confidence intervals (CIs) of the crude values underlying the outcomes were computed by the same models as above but using the individual nets as the intercept. These corresponding crude values were: (a) entry rate (i.e. the number of mosquitoes entering a hut); (b) exit rate (i.e. the number of mosquitoes collected from the veranda trap; (c) blood feeding rate (i.e. the proportion of blood-fed mosquitoes), and (d) mortality rate (i.e. the proportion of dead mosquitoes at 24 h post-collection).\n", - "\n", - "The study participants were recruited from the local communities and gave informed consent. Ethical approval was obtained from the Ethical Committee for Health Research of the Ministry of Health and Ministry of Research in Burkina Faso (Deliberation No. 2013-07-057, 11 July 2013). Malaria chemotherapy was not offered to study participants in line with Ministry of Health recommendations. However, medical supervision was provided throughout the study and any malaria case was treated according to national requirements.\n", - "\n", - "header: Study sites: Characterization of mosquito populations\n", - "\n", - "_Anopheles gambiae s.l._ larvae were collected in Tengrela and VK5 and reared to adults in local insectaries (mean relative humidity: 75+- 10%; mean temperature: 27+- 2*C). To assess susceptibility to pyrethroids, batches of approximately 25 non-blood-fed _An. gambiae s.l._ females aged 3-5 days were exposed to papers treated with 0.75% permethrin or 0.05% deltamethrin. The papers and susceptibility test kits were purchased from the Universiti Sains Malaysia (Penang, Malaysia). In parallel bioassays, mosquitoes were exposed to papers treated with 4% PBO [prepared by the Liverpool School of Tropical Medicine (LSTM)] for 1 h before they were transferred to tubes containing either insecticide-treated papers or insecticide-free papers and exposed for a further 1 h. Knock-down was recorded at the end of exposure and mortality was recorded 24 h later.\n", - "\n", - "The bio-efficacy of the LLINS was tested using non-blood-fed mosquitoes aged 3-5 days from local larval collections, and from the Kisumu susceptible laboratory strain, using the WHO cone bioassay procedure (WHO, 2013). For each LLIN type, two unwashed nets were tested under insectary conditions. Ten mosquitoes per cone were exposed for 3 min to 30 cm x 30 cm net pieces sampled from the top, the short and the long sides of the net. During exposure, the set-up was kept at an angle of 45 degrees as recommended (Owusu & Muller, 2016). Knock-down and mortality were recorded at 60 min and 24 h after exposure, respectively. Conventional LLINs were compared with PBO LLINS using Fisher's exact test (2x2 contingency table, significance level of 0.05) (http://wwwgraphpadcom/quickcales/contingency2) (Roberts & Andre, 1994).\n", - "\n", - "header: Pyrethroid resistance in southwest Burkina Faso: Bio-efficacy of LLINs in cone bioassays\n", - "\n", - "The low levels of mortality observed in cone bioassays in this study are similar to those reported previously in VK7, a neighbouring village to VK5, in the Vallee du Kou rice-growing region. However, whereas the current study found that exposure to the tops of the PermaNet 3.0 nets resulted in mortality levels exceeding the WHO threshold of 80%, equivalent bioassays conducted in the VK7 population in 2012 showed mortality of only 43%. Cone bioassays are not a reliable method of comparing the performance of LLINs containing different pyrethroids because of the inherent differences in extico-repellency within this class, which can affect exposure time (Siegert _et al._, 2009). In particular, cone tests may underestimate the performance of permethrin LLINs; this is indicated by comparison of the cone bioassay results in Fig. 3, in which the Olyset Net was found to induce considerably lower mortality than the PermaNet 2.0, although experimental hut results showed similar levels of mortality in huts with these two net types (Table S3).\n", - "\n", - "Fig. 3: Mean mortality rates with binomial confidence intervals for mosquitoes collected from (A) Tengrela and (B) Vallée du Kou 5 after exposure to longlasting insecticidal nets (LLINs) for 3 min. Significant differences in mortality between pyrethroid-only and pyrethroid plus piperonyl butoxide-treated LLINs are indicated by * (_P_ < 0.001), † (_P_ < 0.0001), n.s. (non-significant, \\(\\frac{1}{2}\\) (_P_ < 0.0001) for the comparison between the sides and top of the PermaNet 3.0. Numbers in brackets are the total numbers of mosquitoes tested. [Colour figure can be viewed at wicyclonlinelibrary.com].\n", - "\n", - "\n", - "Nevertheless, the results of these cone bioassays provide further evidence that resistance can be at least partially ameliorated by exposure to PBO.\n", - "\n", - "header: _Pyrethroid resistance in Tengrela and VK5 and associated mechanisms_: Efficacy of LLINs under laboratory conditions\n", - "\n", - "All LLINs tested showed good bio-efficacy in cone bioassays against the susceptible laboratory Kisumu strain with 60 min knock-down and 24 h mortality rates of all LLINs above the 98% and 80% WHO thresholds (WHO, 2005) (Table S1). By contrast, in tests using the field-caught mosquitoes, the mortality threshold was met only by the top panels of the PermaNet 3.0 (Fig. 3). Knock-down rates exceeded the 98% threshold for the PermaNet 3.0 in VK5 only (Table S1).\n", - "\n", - "header: Materials and methods\n", - "\n", - "The experimental hut studies were carried out at two field stations in southwest Burkina Faso: the first is located in the Vallee du Kou.5 (VK5) near Bobo-Dioulasso (11*39' N, 04*41' W) and belongs to the Institut de Recherche en Science de la Sante (IRSS)/Centre MURAZ, and the second is located at Tengrela (10*40' N, 04*50' W) near Banfora and is maintained by the Centre National de Recherche et de Formation sur le Paludisme (CNRFP). These two sites are separated by approximately 120 km. Previous surveys revealed _Anopheles coluzzii_ (formerly _Anopheles gambiae s.s._ M molecular form) to be the predominant _Anopheles_ species at both sites. High levels of resistance to both DDT and pyrethroids have been reported previously at both sites (Ngufor _et al._, 2014; Toe _et al._, 2015).\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ITNCondition` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Supporting Information\n", - "\n", - "Additional supporting information may be found online in the Supporting Information section at the end of the article.\n", - "\n", - "Fig. 5: Outcome measures comparing piperonyl butoxide (PBO)-treated and non-PBO-treated nets from the same manufacturers. Deterrence, the ratio of mosquitoes entering a hit relative to the control hit. Exophily, the odds ratio (OR) for a mosquito being found in the veranda trap. Blood feeding inhibition, the OR for a mosquito being blood-fed. Mortality, the OR for a mosquito being dead in the morning (immediate mortality) or after being caught alive and held for 24 h (delayed mortality). [Colour figure can be viewed at wileyonlinelibrary.com].\n", - "\n", - "header: Table 1: Treatment arms and descriptions of longlasting insecticide-treated nets.\n", - "footer: PermaNet is a registered trademark of Vestergaard Frandsen Holding SA. Olyset is a registered trademark of Sumitomo Chemical Co. Ltd. DawaPlusis a registered trademark of Tana Netting Co. Ltd.PBO, piperonyl butoxide.\n", - "columns: ['Treatment arm', 'Description', 'Manufacturer']\n", - "\n", - "{\"0\":{\"Treatment arm\":\"Untreated net\",\"Description\":\"Net manufactured manually using netting material from market\",\"Manufacturer\":\"Local market\"},\"1\":{\"Treatment arm\":\"Olyset\\u00ae Net\",\"Description\":\"8.6 x 10-4 kg\\/m2 of permethrin incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"2\":{\"Treatment arm\":\"Olyset\\u00ae Plus\",\"Description\":\"8.6 x 10-4 kg\\/m2 of permethrin and 4.3 x 10-4 kg\\/m2 of PBO incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"3\":{\"Treatment arm\":\"PermaNet\\u00ae 2.0\",\"Description\":\"5.5 x 10-5 kg\\/m2 of deltamethrin coated on polyester\",\"Manufacturer\":\"Vestergaard Frandsen\"},\"4\":{\"Treatment arm\":\"PermaNet\\u00ae 3.0\",\"Description\":\"Combination of 2.8 g\\/kg of deltamethrin coated on polyester with strengthened border (side panels) and deltamethrin (4.0 g\\/kg) and PBO (25 g\\/kg)\",\"Manufacturer\":\"Vestergaard Frandsen\"},\"5\":{\"Treatment arm\":\"Dawa\\u00ae Plus 2.0\",\"Description\":\"8.0 x 10-5 kg\\/m2 of deltamethrin coated on polyester\",\"Manufacturer\":\"TANA Netting\"}}\n", - "\n", - "header: Entry rate and deterrence: Exit rates and induced exophily\n", - "\n", - "Exit rates refer here to the proportion of mosquitoes present in the veranda trap. As with entrance rates, exit rates varied throughout the study (Fig. 4). On average, the induced exophily rates were between 26.4% (control net) and 48.5% (Olyset Net) (Table S4). The odds of finding a mosquito in the veranda trap were significantly increased in the huts with treated nets, with the exception of the DawaPlus, although even for the DawaPlus a tendency to induce exophily was observed (Fig. 4, Table S4).\n", - "\n", - "header: Discussion\n", - "\n", - "Very low mortality rates were obtained for both permethrin and deltamethrin in the two study sites following an hour of exposure to WHO diagnostic doses. Southwestern Burkina Faso is known as a hotspot of pyrethroid resistance (Dabire _et al._, 2012; Namountougou _et al._, 2012). Rapid changes in the prevalence of pyrethroid resistance have been observed since the first national LLIN distribution programme in 2010: in 2009, mosquito mortality following deltamethrin exposure was 25% (Dabire _et al._, 2012), in VK has since fallen to just 2.5%. The frequency of the 1014F _kdr_ mutation also increased from 0.28 in 2006 (Dabire _et al._, 2009) to 0.88 in the current study. Similar increases in the prevalence of pyrethroid resistance have been witnessed in Tengrela. Mortality rates of 93% and 46% for deltamethrin and permethrin, respectively, were recorded in 2011 (Namountougou _et al._, 2012; K. H. Toe, unpublished data 2011), but these mortality rates had reduced to 33% and 13% in 2014, the year of the current study (Toe _et al._, 2015). In the present study, pyrethroid mortality was significantly increased by pre-exposure to PBO. This, together with the qPCR data showing elevated expression of multiple P450s in both field populations compared with a susceptible laboratory strain, indicate that oxidases are an important resistance mechanism in _An. coluzzi_ in southwestern Burkina Faso. It is noted that resistance was not fully restored by PBO pre-exposure, indicating that additional resistance mechanisms, such as target site resistance and possibly cuticular modifications (Toe _et al._, 2015), may contribute to the pyrethroid resistance phenotype in these populations.\n", - "\n", - "header: Abstract\n", - "\n", - "Do bednets including piperonyl butoxide offer additional protection against populations of _Anopheles gambiae s.l._ that are highly resistant to pyrethroids? An experimental hut evaluation in Burkina Faso\n", - "\n", - "K. H. T oe\n", - "\n", - "1Departement des Sciences Biomedicales, Centre National de Recherche et de Formation sur le Paludisme, Ouagadougou, Burkina Faso, 2Epidemiology and Public Health Department, Swiss Tropical and Public Health Institute, Basel, Switzerland, 3University of Basel, Basel, Switzerland, 4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " P. Muller\n", - "\n", - "2H233\n", - "\n", - "33Departement des Sciences Biomedicales, Centre National de Recherche et de Formation sur le Paludisme, Ouagadougou, Burkina Faso, 2Epidemiology and Public Health Department, Swiss Tropical and Public Health Institute, Basel, Switzerland, 3University of Basel, Basel, Switzerland, 4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " A. Badlo\n", - "\n", - "1Departement des Sciences Biomedicales, Centre National de Recherche et de Formation sur le Paludisme, Ouagadougou, Burkina Faso, 2Epidemiology and Public Health Department, Swiss Tropical and Public Health Institute, Basel, Switzerland, 3University of Basel, Basel, Basel, Switzerland, 4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " A. Traore\n", - "\n", - "1Departement des Sciences Biomedicales, Centre National de Recherche et de Formation sur le Paludisme, Ouagadougou, Burkina Faso, 2Epidemiology and Public Health Department, Swiss Tropical and Public Health Institute, Basel, Switzerland, 3University of Basel, Basel, Basel, Switzerland, 4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " N. Sagnon\n", - "\n", - "1Departement des Sciences Biomedicales, Centre National de Recherche et de Formation sur le Paludisme, Ouagadougou, Burkina Faso, 2Epidemiology and Public Health Department, Swiss Tropical and Public Health Institute, Basel, Switzerland, 3University of Basel, Basel, Basel, Switzerland, 4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " R. K. Dabi Irene\n", - "\n", - "4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " H. Ransons\n", - "\n", - "5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - "\n", - "Malaria control is dependent on the use of longlasting insecticidal nets (LLINs) containing pyrethroids. A new generation of LLINs containing both pyrethroids and the synergist piperonyl butoxide (PBO) has been developed in response to increasing pyrethroid resistance in African malaria vectors, but questions remain about the performance of these nets in areas where levels of pyrethroid resistance are very high. This study was conducted in two settings in southwest Burkina Faso, Vallee du Kou 5 and Tengrela, where _Anopheles gambiae s.l._ (Diptera: Culicidae) mortality rates in World Health Organization (WHO) discriminating dose assays were \\(<\\) 14% for permethrin and \\(<\\) 33% for delatamethrin. When mosquitoes were pre-exposed to PBO in WHO tube assays, mortality rates increased substantially but full susceptibility was not restored. Molecular characterization revealed high levels of _kdr_ alleles and elevated levels of P450s previously implicated in pyrethroid resistance. In cone bioassays and experimental huts, PBO LLINs outperformed the pyrethroid-only equivalents from the same manufacturers. Blood feeding rates were 1.6-2.2-fold lower and mortality rates were 1.69-1.78-fold greater in huts with PBO LLINs vs. non-PBO LLINs. This study indicates that PBO LLINs provide greater personal and community-level protection than standard LLINs against highly pyrethroid-resistant mosquito populations.\n", - "\n", - " insecticide resistance, insecticide resistance management, longlasting insecticidal nets, PBO.\n", - "\n", - "header: Performance of PBO LLINs in experimental hut studies\n", - "\n", - "The enhanced performance of PBO-containing LLINs over conventional LLINs was further supported by the experimental hut results. Both blood feeding inhibition and mortality rates were significantly higher in huts containing PBO LLINs than in those containing conventional LLINs from the same manufacturers. An improved performance of the PermaNet 3.0, which contains both higher concentrations of deltamethrin compared with the PermaNet 2.0, plus PBO on the roof of the net, has also been reported in pyrethroid-resistant populations of malaria vectors in Ivory Coast (Koudou _et al._, 2011), Benin (N'Guessan _et al._, 2010) and Burkina Faso (Corbel _et al._, 2010).\n", - "\n", - "Fig. 4: Primary outcomes measured in the experimental hut trials in Tengrela and Vallée du Kou 5 (VK5). (A–D) Crude data for the measured outcomes. (A) Entry, number of mosquitoes per night entering a hut. (B) Exit, proportion of mosquitoes collected from the veranda trap. (C) Blood feeding, proportion of mosquitoes found blood-fed. (D) Mortality, proportion of mosquitoes dead at 24 h post-collection. (E–H) These outcomes measured relative to the control (i.e. untreated mosquito net) for both sites combined. (E) Deterrence, the ratio of mosquitoes entering a hut relative to the control hut. (F) Exophily, the odds ratio (OR) for a mosquito being found in the veranda trap. (G) Blood feeding inhibition, the OR for a mosquito being blood-fed. (H) Mortality, the OR for a mosquito being dead in the morning (immediate mortality) or after being caught alive and held for 24 h (delayed mortality). Symbols show the average and whiskers show the limits of the 95% confidence intervals around the average. The dashed line shows the ratio or OR of 1, indicating no association of the outcome with the treatment. The data used to produce the plot together with the \\(P\\)-values are provided in Table S3. [Colour figure can be viewed at wileyonlinelibrary.com].\n", - "\n", - "\n", - "The magnitude of this effect differs among studies, with previous studies reporting increases in mortality rates of 1.3-1.8-fold, whereas the current study reports an OR of 2.45, which corresponds to a 1.78-fold increase. Only one experimental hit study comparing the Olyset Plus with the Olyset Net has been published to date (Pennetier _et al._, 2013). This study, conducted in Benin in 2013, reported mortality rates 1.9-fold higher in the PBO arm than in the conventional LLIN arm (Pennetier _et al._, 2013), which is in line with the findings of the current study, which found a 1.89-fold (OR 2.1) elevation in mortality rates in the Olyset Plus arm.\n", - "\n", - "In addition to increased mortality rates, the current study, plus two of the previous experimental hit studies, reported significantly higher rates of blood feeding inhibition for PBO vs. conventional LLINs (Corbel _et al._, 2010; N'Guessan _et al._, 2010), indicating that PBO LLINs afford an enhanced level of personal protection in areas where vectors are resistant to pyrethroids. It should be noted that the current study was performed using unwashed nets only. Previous studies have found that the efficacy of PBO LLINS against resistant mosquitoes decreases substantially after the nets have been washed 20 times according to WHO protocols (Corbel _et al._, 2010; Tungu _et al._, 2010; Koudou _et al._, 2011). Thus further studies on the durability of the bio-efficacy of PBO LLINS under field conditions are urgently needed.\n", - "\n", - "header: Blood feeding rates and inhibition\n", - "\n", - "Average blood feeding rates were between 17.0% (PermaNet 3.0) and 56.4% (control net) (Table S4). With the exception of the DawaPlus, all treated nets reduced blood feeding (Fig. 4, Table S4), and the effect was most prominent with the PBO nets PermaNet 3.0 and Olyset Plus (Fig. 4, Table S4), for which the odds ratios (ORs) of blood feeding relative to control nets were 0.19 (95% CI 01.3-0.26) and 0.16 (95% CI 0.11-0.23), respectively.\n", - "\n", - "header: Results\n", - "\n", - "In VK5, very low levels of mortality were observed after exposure to the discriminating dose of deltamethrin and permethrin, but pre-exposure to PBO significantly increased mortality rates from 2.5% (_n_ = 163) to 45% (_n_ = 158) and from 5% (_n_ = 153) to 26% (_n_ = 156) for deltamethrin and permethrin, respectively (Fisher's exact test, \\(P\\) < 0.0001) (Fig. 1). In Tengrela, mortality rates of 34% (_n_ = 85) and 14% (_n_ = 101) were recorded for deltamethrin and permethrin, respectively. When PBO was used, mortality rates increased significantly to 63% (_n_ = 84) and 42% (_n_ = 104), respectively (Fisher's exact test, \\(P\\) < 0.0001) (Fig.1). Although there was evidence of synergism, pre-exposure to PBO did not fully restore susceptibility in either site to either pyrethroid.\n", - "\n", - "_Anopheles coluzzi_ was the only species of the _An. gambiae_ complex identified by PCR of a subset of 80 specimens from Tengrela and VK5. High frequencies of the 1014F allele of the VGSC were recorded in Tengrela (0.819, 95% CI 0.750-0.875) and VK5 (0.885, 95% CI 0.824-0.930) with the 1575Y allele present at lower frequencies of 0.169 (95% CI 0.114-0.236) and 0.221 (95% CI 0.158-0.295), respectively. Samples were not genotyped for the 1014S allele as previous extensive surveys have not detected this allele in _An. coluzzi_ from these sites (Toe _et al._, 2015). There was no statistically significant difference in the frequency of either the 1014F or 1575Y allele between the two sites (Table 2).\n", - "\n", - "Several cytochrome P450 genes previously associated with pyrethroid resistance showed elevated expression levels in the Tengrela and the VK5 _An. coluzzi_ populations compared with the susceptible laboratory Ngousso strain (Fig. 2). _CYP6P3_, _CYP6M2_, _CYP6Z3_, _CYP6P4_ and _CYP6Z2_ were found to be\n", - "\n", - "Fig. 1: Mortality rates (with binomial confidence intervals) after exposure to deltamethrin and permethrin in World Health Organization discriminating dose assays with or without pre-exposure to piperonyl butoxide (PBO) in (A) Vallée du Kou 5 and (B) Tengrela (October 2014). *Significant differences in mortality: \\(P\\) < 0.0001. Numbers in brackets are the total numbers of mosquitoes tested. [Colour figure can be viewed at wileyonlinelibrary.com].\n", - "\n", - "\n", - "overexpressed in both field strains compared with the susceptible laboratory colony (fold change: > 2) with the most highly overexpressed genes in both populations being _CYP6Z2_ and _CYP6Z3_ (Fig. 2).\n", - "\n", - "header: Mortality rates and induced mortality\n", - "\n", - "Average mortality rates ranged from 9.5% in the control arm to 46.1% in the PermaNet 3.0 arm (Table S4). Mortality was statistically higher in all treated net conditions than in the control huts. As with blood feeding inhibition, the PBO nets showed the largest effects in increasing mortality (Fig. 5, Table S4); the ORs for mortality relative to control nets were 5.56 (95% CI 3.92-7.89) and 8.14\n", - "Fig. 2: Expression levels of candidate genes previously associated with pyrethroid resistance in Tengrela and Vallée du Kou 5. The analysis was performed using the 2−\n", - "\n", - "\n", - "\n", - "\n", - "(95% CI 5.64-11.75) for the Olyset Plus and PermaNet 3.0, respectively, compared with 2.65 (95% CI 1.87-3.75) and 3.33 (95% CI 2.35-4.74) for the Olyset Net and PermaNet 2.0, respectively.\n", - "\n", - "header: Molecular analysis\n", - "\n", - "DNA was extracted from mosquito legs by heating at 90*C for 30 min. Species were identified using the SINE200 protocol (Santolamazza _et al._, 2008) and then screened for the voltage gated sodium channel (VGSC) 1014F and 1575Y alleles using Taqman assays (Bass _et al._, 2007; Jones _et al._, 2012).\n", - "\n", - "Total RNA was extracted from six pools of 10 5-day-old non-blood-fed female _An. coluzzii_ from larval collections from Tengrela and VK5 using the RNAqueous(r)4PCR Kit for isolation of DNA-free RNA (Ambion, Inc., Austin, TX, U.S.A.) according to the manufacturer's procedures. The RNA was eluted in 50 mL of elution solution and treated with DNase. The quality and quantity of all the RNA used were assessed \n", - "using a NanoDrop ND1000 (Thermo Fisher Scientific UK Ltd, Renfrew, U.K.).\n", - "\n", - "The expression profiles of five P450 genes (_CYP6M2_, _CYP6Z2_, _CYP6Z3_, _CYP6P3_, _CYP6P4_), previously found to be over-expressed in pyrethroid-resistant field populations from Burkina Faso (Toe _et al._, 2015) and/or known to metabolize pyrethroids (Muller _et al._, 2008; Mitchell _et al._, 2012) were quantified using reverse-transcription quantitative polymerase chain reaction (RT-qPCR). The qPCR analysis was conducted at the LSTM and used the following mosquito populations: Ngousso, an insecticide-susceptible strain originating from Ngousso in Cameroon in 2006 and maintained in the insectary at LSTM; Tengrela specimens reared from larval collections in October-November 2014, and VK5 specimens reared from larval collections in October-November 2014. Approximately 600 ng of RNA was reverse-transcribed to first-strand cDNA using SuperScript(tm) III reverse transcriptase (Invitrogen, Inc., Carlsbad, CA, U.S.A.) according to the manufacturer's procedures. Samples were then purified using the Qiagen Easy Purification Kit (Qiagen Benelux BV, Venlo, the Netherlands) before proceeding to qPCR. Each of the six pool replicates were run in triplicate using 2X SYBR Brilliant III (Agilent Technologies, Inc., Palo Alto, CA, U.S.A.), forward and reverse primers (300 nM) [sequence available in Toe _et al._ (2015)] on the Mx3005p qPCR system (Agilent Technologies, Inc., Palo Alto, California) with the following cycling protocol: 95 degC for 3 min, followed by 40 cycles of 95 degC for 10 s and 60 degC for 10 s. The qPCR data were analysed using the delta Ct values method, taking into account the PCR efficiency (Pfaffi, 2001). The candidate Ct values were normalized against three housekeeping genes, encoding ribosomal protein L40 (ubiquitin) (_AGAP007927_), an elongation factor (_AGAP005128_) and the S7 ribosomal protein (_AGAP010592_). The normalized Ct values of each gene were then compared with the normalized Ct values of the susceptible Ngousso strain.\n", - "\n", - "header: Conclusions\n", - "\n", - "The results of these experimental hit studies with entomological endpoints suggest that substituting conventional LLINs with PBO LLINs in areas where there is a high prevalence of pyrethroid resistance in local vectors may be an effective strategy to maintain the efficacy of malaria vector control. The public health benefit of this would depend on a wide range of factors, including the level of malaria endemicity, LLIN coverage rates and the predominant mosquito vectors present, but a recent modelling exercise predicts that in some settings, a switch to PBO LLINs could aver up to 0.5 clinical cases per person per year (Churcher _et al._, 2016). These predictions from models are now being evaluated in large-scale field trials. A recent study in Tanzania reported a 33% protective efficacy of PBO LLINs over conventional LLINs after 2 years of use (Protopopoff _et al._, 2018). A larger trial, involving the distribution of over 10.7 million nets in Uganda, is evaluating whether PBO nets reduce malaria prevalence under programmatic conditions ([https://www.againstmalaria.com](https://www.againstmalaria.com), [https://www.pmi.gov](https://www.pmi.gov)).\n", - "\n", - "In light of the results from experimental hit studies, including the current study, and after reviewing data from the first clinical trial of a PBO LLIN, the WHO recently made a policy recommendation that national malaria control programmes should consider deployment of PBO LLINs in areas with pyrethroid-resistant vectors (WHO, 2017). If deployed at scale, PBO LLINs may play an important role in reducing the immediate threat of pyrethroid resistance to malaria control.\n", - "\n", - "header: Impact of PBO on LLIN efficacy in pyrethroid-resistant mosquitoes\n", - "\n", - "The performance of nets containing PBO as compared with pyrethroid-only nets from the same manufacturer is shown in Fig. 5. The PermaNet 3.0 deterred more mosquitoes than the PermaNet 2.0 (OR = 0.67, \\(P\\) < 0.01) (Fig. 5, Table S5), but there was no significant difference between the Olyset Plus and Olyset Net (_P_ = 0.412). The Olyset Net induced more exophily than the Olyset Plus (OR = 0.76, \\(P\\) < 0.05), but there was no significant difference in exophily between the PermaNet 2.0 and 3.0 (_P_ = 0.727) (Table S5). The PBO nets from both manufacturers considerably reduced blood feeding compared with non-PBO nets with ORs of 0.34 (_P_ < 0.001) and 0.55 (_P_ < 0.01) for the PermaNet 3.0 and Olyset Plus, respectively (Fig. 5, Table S4). In addition, the PBO nets killed significantly more _An. gambiae s.l._ than the non-PBO nets. The ORs for mortality were 2.45 (_P_ < 0.001) for the PermaNet 3.0 and 2.1 (_P_ < 0.001) for the Olyset Plus (Fig. 5, Table S5).\n", - "\n", - "header: Introduction\n", - "\n", - "Use of the longlasting insecticidal net (LLIN) is pivotal in the fight against malaria in Africa. A massive scaling up of the distribution of this commodity has occurred over the past 15 years, with 178 million LLINs delivered for use in sub-Saharan Africa (SSA) in 2015 alone [World Health Organization (WHO), 2016]. Although reliable estimates of LLIN usage are very hard to obtain, the WHO estimates that 53% of the population at risk in SSA slept under an LLIN in 2015 [WHO, 2016]. The results have been dramatic: an estimated 450 million clinical cases of malaria were averted in the last 15 years by the use of LLINs [Bhatt _et al._, 2015].\n", - "\n", - "All LLINs in current use contain pyrethroid insecticides, but there is growing recognition that increases in the prevalence and intensity of pyrethroid resistance, driven at least in part by the scale-up in the use of LLINs, could jeopardize recent gains in malaria control [WHO, 2012]. Direct evidence that pyrethroid\n", - "resistance is reducing either the personal or community-level protection provided by LLINS is challenging to obtain (Kleinschmidt _et al._, 2015; Ranson & Lissenden, 2016), but models of malaria transmission predict that even relatively low levels of resistance can substantially reduce the public health benefits of LILINS (Churcher _et al._, 2016). In countries that rely on the LLIN as the primary malaria prevention tool, the only currently available alternatives to conventional pyrethroid-only LLINS are nets in which the synerigent piperonyl butoxide (PBO) has been included in the fibres making up all, or part, of the net. Piperonyl butoxide inhibits cytochrome P450s, which comprise one of the most important enzyme families involved in pyrethroid resistance, and exposure to PBO has been shown to reduce resistance and sometimes to restore susceptibility to pyrethroids in malaria vectors (Jones _et al._, 2013; Edi _et al._, 2014).\n", - "\n", - "Four brands of LLIN containing PBO have received interim approval from the WHO as conventional LLINS. These are the PermaNet(r) 3.0 (deltamethrin+PBO) (Vestergaard Frandsen Holding SA, Lausanne, Switzerland), the Olvest(r) Plus (permethrin+PBO) (Sumitomo Chemical Asia Pte Ltd, Health and Crop Sciences Sector, Tokyo, Japan), the Veeralin(r) (alpha cypermethrin+PBO) (VKA Polymers Pte Ltd, Karur, India) and the DawaPlus(r) (deltamethrin+PBO) (Tana Netting Co. Ltd, Dubai, U.A.E.). The benefit of the addition of PBO is only expected to manifest in areas in which mosquito populations are resistant to pyrethroids and experimental hut trials of PBO LLINS in areas of resistance have supported this prediction. Increased mosquito mortality was observed in experimental huts containing PBO LLINS compared with conventional LLINS in Ivory Coast, Benin and Burkina Faso (Corbel _et al._, 2010; Ngousso _et al._, 2010; Koudou _et al._, 2011; Pennetier _et al._, 2013) and reductions in blood feeding rates were also reported in trials in the latter two countries. All of these sites reported high levels of pyrethroid resistance.\n", - "\n", - "There has been a dramatic escalation in the strength of pyrethroid resistance in southwestern Burkina Faso since earlier trials of PBO LLINS in 2007. World Health Organization cone bioassays performed in 2012 revealed that none of the conventional LLINS were effective in killing local vector populations and that the performance of the PBO LLIN PermaNet(r) 3.0 was also compromised in these assays (Toe _et al._, 2014). Although the numbers of malaria deaths in Burkina Faso have fallen over the past 10 years, numbers of malaria cases have risen year on year despite countywide LLIN distribution campaigns [National Malaria Control Programme (NMCP), personal communication; K.H.Toe, 2017]. In order to advise the NMCP on whether a switch to PBO LLINS may be warranted to target these highly resistant populations, an experimental hut trial was undertaken in two rice-growing areas in the southwestern region of Burkina Faso.\n", - "\n", - "header: Pyrethroid resistance in southwest Burkina Faso: Bio-efficacy of LLINs in cone bioassays\n", - "\n", - "The low levels of mortality observed in cone bioassays in this study are similar to those reported previously in VK7, a neighbouring village to VK5, in the Vallee du Kou rice-growing region. However, whereas the current study found that exposure to the tops of the PermaNet 3.0 nets resulted in mortality levels exceeding the WHO threshold of 80%, equivalent bioassays conducted in the VK7 population in 2012 showed mortality of only 43%. Cone bioassays are not a reliable method of comparing the performance of LLINs containing different pyrethroids because of the inherent differences in extico-repellency within this class, which can affect exposure time (Siegert _et al._, 2009). In particular, cone tests may underestimate the performance of permethrin LLINs; this is indicated by comparison of the cone bioassay results in Fig. 3, in which the Olyset Net was found to induce considerably lower mortality than the PermaNet 2.0, although experimental hut results showed similar levels of mortality in huts with these two net types (Table S3).\n", - "\n", - "Fig. 3: Mean mortality rates with binomial confidence intervals for mosquitoes collected from (A) Tengrela and (B) Vallée du Kou 5 after exposure to longlasting insecticidal nets (LLINs) for 3 min. Significant differences in mortality between pyrethroid-only and pyrethroid plus piperonyl butoxide-treated LLINs are indicated by * (_P_ < 0.001), † (_P_ < 0.0001), n.s. (non-significant, \\(\\frac{1}{2}\\) (_P_ < 0.0001) for the comparison between the sides and top of the PermaNet 3.0. Numbers in brackets are the total numbers of mosquitoes tested. [Colour figure can be viewed at wicyclonlinelibrary.com].\n", - "\n", - "\n", - "Nevertheless, the results of these cone bioassays provide further evidence that resistance can be at least partially ameliorated by exposure to PBO.\n", - "\n", - "header: Experimental hut trials\n", - "\n", - "Each station consisted of six experimental huts built according to the West African style (WHO, 2013). The study had six arms that used, respectively, five different LLINs and one net with no insecticide treatment as a negative control (Table 1). The nets were obtained from the manufacturers and were unpacked and kept in the shade for 24 h, but not washed prior to testing. Two of the nets, the OlysetPlus and PermaNet 3.0, contain PBO, whereas the other three LLINs contain only pyrethroids. The LLINs were holed according to WHO standard procedures (WHO, 2013). A total of six holes (4 cm x 4 cm) per net were cut, two on each of the long sides and one on each of the short sides.\n", - "\n", - "Study participants (male sleepers) spent 6 nights per week under a net in an experimental hut from 20.00 hours to 05.00 hours, followed by 1 day of break. The sleepers were rotated through the six huts so that each sleeper spent 1 night per week under each net type. To complete a full Latin square rotation with all combinations of sleeper, net type and hut, the study ran over 36 days from 8 September to 22 October 2014.\n", - "\n", - "Each morning at 05.00 hours, mosquitoes were collected manually by the sleepers, with supervision, from under the net, inside the hut and on the exit veranda. The collected specimens were morphologically identified to genus and, where possible, to species level (Gillies & Coetzee, 1987), grouped according to their gonotrophic stage (blood-fed, unfed or gravid), and scored as dead or alive. Live mosquitoes were transferred to paper cups, provided with 10% sugar water and kept in the insectary described above for 24 h, after which delayed mortality was recorded. All specimens were stored on silica gel for further molecular analysis.\n", - "\n", - "Data analysis was performed in the open-source statistical software R Version 3.3.2 (R Development Core Team, 2011) using the libraries 'lme4' (Bates _et al._, 2012) and 'glmADMB' (Skaug _et al._, 2012) for generalized linear mixed models (GLMMs). Plots were then generated with the package 'ggplot2' (Wickham, 2009).\n", - "\n", - "In the statistical analysis of hut trial data, in order to increase the number of replicates, give more power and increase confidence in the analysis, data collected from both sites (Tengrela and VK5) were pooled and the following four outcomes for _An. coluzzii_ were compared between the LLINs and the untreated control net, as well as between the PBO and non-PBO nets from the same manufacturer: (a) deterrence (i.e. the reduction in hut entry relative to the control or non-PBO net); (b) induced exophily (i.e. the ratio of the odds of a mosquito being found in the veranda trap compared with the hut); (c) blood feeding inhibition (i.e. the ratio of the odds of blood\n", - "\n", - "fed vs. unfed mosquitoes), and (d) induced mortality [i.e. the ratio of the odds of dead vs. alive mosquitoes] (The original dataset for _An. gambiae s.l._ is supplied in Table S2.) Immediate mortality and mortality at 24 h post-collection were combined for the analysis. Deterrence was analysed as the ratio in total numbers between the treatment arms (or PBO net) vs. the control arm (or non-PBO net). The numbers of mosquitoes in the room and the veranda were combined and analysed using a GLMM with a negative binomial distribution and a log link function using the R function 'glmandmdb()' in the 'glmmADMB' package. In the model, the net type was the fixed effect term and random intercepts were introduced for the sleeper and the hut, and a random slope for the day depending on the location. For proportional outcomes of induced exophily, blood feeding inhibition and induced mortality, the negative binomial model was replaced by a GLMM with a binomial distribution and logit link function using the R function 'glmer()' in the 'lme4' package. In the models, in addition to the terms listed above, a random intercept was introduced for each observation to account for unexplained overdispersion. For statistical testing, the level of significance was set at \\(a\\) = 0.05.\n", - "\n", - "In addition to the ratios described above, averages (i.e. the modes) and 95% confidence intervals (CIs) of the crude values underlying the outcomes were computed by the same models as above but using the individual nets as the intercept. These corresponding crude values were: (a) entry rate (i.e. the number of mosquitoes entering a hut); (b) exit rate (i.e. the number of mosquitoes collected from the veranda trap; (c) blood feeding rate (i.e. the proportion of blood-fed mosquitoes), and (d) mortality rate (i.e. the proportion of dead mosquitoes at 24 h post-collection).\n", - "\n", - "The study participants were recruited from the local communities and gave informed consent. Ethical approval was obtained from the Ethical Committee for Health Research of the Ministry of Health and Ministry of Research in Burkina Faso (Deliberation No. 2013-07-057, 11 July 2013). Malaria chemotherapy was not offered to study participants in line with Ministry of Health recommendations. However, medical supervision was provided throughout the study and any malaria case was treated according to national requirements.\n", - "\n", - "header: _Pyrethroid resistance in Tengrela and VK5 and associated mechanisms_: Efficacy of LLINs under laboratory conditions\n", - "\n", - "All LLINs tested showed good bio-efficacy in cone bioassays against the susceptible laboratory Kisumu strain with 60 min knock-down and 24 h mortality rates of all LLINs above the 98% and 80% WHO thresholds (WHO, 2005) (Table S1). By contrast, in tests using the field-caught mosquitoes, the mortality threshold was met only by the top panels of the PermaNet 3.0 (Fig. 3). Knock-down rates exceeded the 98% threshold for the PermaNet 3.0 in VK5 only (Table S1).\n", - "\n", - "header: Experimental hut results\n", - "\n", - "In total, 12 915 specimens from four different mosquito genera were collected inside the huts (sleeping rooms and veranda traps) over the 6-week trial (Tengrela, \\(n\\) = 5808; VK5, \\(n\\) = 7107). Most specimens collected from the huts belonged to the _An. gambiae s.l._ species complex, accounting for 75.4% (_n_ = 4379) in Tengrela and 98.8% (_n_ = 7020) in VK5. The second most frequently collected _Anopheles_ species was _An. rhinorensis_, of which 49 and 19 specimens were collected in Tengrela and VK5, respectively. Other _Anopheles_ mosquito species, including _An. funestus_ (_n_ = 3), _An. nili_ (_n_ = 2) and _An. coustani_ (_n_ = 3), were collected in Tengrela. Additional mosquito taxa were also collected, including _Mansonia_ sp. (_n_ = 1330 in Tengrela and \\(n\\) = 45 in VK5), _Culex_ sp. (_n_ = 41 in Tengrela and \\(n\\) = 23 in VK5) and _Aedes_ sp. (_n_ = 1 in Tengrela) (all: Diptera: Culicidae). Because of the low numbers of other genera, only data for _An. gambiae s.l._ were included in the analysis.\n", - "\n", - "Within the total of 11 399 _An. gambiae s.l._ caught at both field sites, there was considerable variation between weeks and treatments in the numbers of mosquitoes entering the huts in both study locations (Fig. 4). The average number of mosquitoes caught per night/per hut was between 13 (PermaNet 3.0) and 20.7 (Olyset Net) mosquitoes (Table S3) and induced deterrence was found only for the Olyset Net, albeit at a low ratio of 1.31 (95% CI 1.02-1.66; \\(P\\) < 0.05) (Fig. 4).\n", - "\n", - "header: Table 2: Frequencies of 1014F and 1575Y kdr alleles in Anopheles coluzzili, in Tengrela and Vallée du Kou 5 (VK5).\n", - "footer: Chi-squared test (http://vassarstats.net/) for the comparison of the frequency of the 1014F and 1575Y mutations in Anopheles coluzzili populations from Tengrela and VK5 (October 2014). No statistical difference was observed in the frequencies of the kdr alleles in the two sites.\n", - "columns: ['1014F mutation - Unnamed: 0_level_1', '1014F mutation - Total n', '1014F mutation - LL', '1014F mutation - LF', '1014F mutation - FF', '1014F mutation - f (1014F)', '1014F mutation - P-value']\n", - "\n", - "{\"0\":{\"1014F mutation - Unnamed: 0_level_1\":\"Tengrela\",\"1014F mutation - Total n\":\"80\",\"1014F mutation - LL\":\"2\",\"1014F mutation - LF\":\"25\",\"1014F mutation - FF\":\"53\",\"1014F mutation - f (1014F)\":\"0.819\",\"1014F mutation - P-value\":\"0.26\"},\"1\":{\"1014F mutation - Unnamed: 0_level_1\":\"VK5\",\"1014F mutation - Total n\":\"78\",\"1014F mutation - LL\":\"0\",\"1014F mutation - LF\":\"18\",\"1014F mutation - FF\":\"60\",\"1014F mutation - f (1014F)\":\"0.885\",\"1014F mutation - P-value\":null},\"2\":{\"1014F mutation - Unnamed: 0_level_1\":\"1575Y mutation\",\"1014F mutation - Total n\":\"1575Y mutation\",\"1014F mutation - LL\":\"1575Y mutation\",\"1014F mutation - LF\":\"1575Y mutation\",\"1014F mutation - FF\":\"1575Y mutation\",\"1014F mutation - f (1014F)\":\"1575Y mutation\",\"1014F mutation - P-value\":\"1575Y mutation\"},\"3\":{\"1014F mutation - Unnamed: 0_level_1\":null,\"1014F mutation - Total n\":\"Total n\",\"1014F mutation - LL\":\"NN\",\"1014F mutation - LF\":\"NY\",\"1014F mutation - FF\":\"YY\",\"1014F mutation - f (1014F)\":\"f (A575Y)\",\"1014F mutation - P-value\":\"P-value\"},\"4\":{\"1014F mutation - Unnamed: 0_level_1\":\"Tengrela\",\"1014F mutation - Total n\":\"80\",\"1014F mutation - LL\":\"57\",\"1014F mutation - LF\":\"19\",\"1014F mutation - FF\":\"4\",\"1014F mutation - f (1014F)\":\"0.169\",\"1014F mutation - P-value\":\"0.39\"},\"5\":{\"1014F mutation - Unnamed: 0_level_1\":\"VK5\",\"1014F mutation - Total n\":\"77\",\"1014F mutation - LL\":\"49\",\"1014F mutation - LF\":\"22\",\"1014F mutation - FF\":\"6\",\"1014F mutation - f (1014F)\":\"0.221\",\"1014F mutation - P-value\":null}}\n", - "\n", - "header: Study sites: Characterization of mosquito populations\n", - "\n", - "_Anopheles gambiae s.l._ larvae were collected in Tengrela and VK5 and reared to adults in local insectaries (mean relative humidity: 75+- 10%; mean temperature: 27+- 2*C). To assess susceptibility to pyrethroids, batches of approximately 25 non-blood-fed _An. gambiae s.l._ females aged 3-5 days were exposed to papers treated with 0.75% permethrin or 0.05% deltamethrin. The papers and susceptibility test kits were purchased from the Universiti Sains Malaysia (Penang, Malaysia). In parallel bioassays, mosquitoes were exposed to papers treated with 4% PBO [prepared by the Liverpool School of Tropical Medicine (LSTM)] for 1 h before they were transferred to tubes containing either insecticide-treated papers or insecticide-free papers and exposed for a further 1 h. Knock-down was recorded at the end of exposure and mortality was recorded 24 h later.\n", - "\n", - "The bio-efficacy of the LLINS was tested using non-blood-fed mosquitoes aged 3-5 days from local larval collections, and from the Kisumu susceptible laboratory strain, using the WHO cone bioassay procedure (WHO, 2013). For each LLIN type, two unwashed nets were tested under insectary conditions. Ten mosquitoes per cone were exposed for 3 min to 30 cm x 30 cm net pieces sampled from the top, the short and the long sides of the net. During exposure, the set-up was kept at an angle of 45 degrees as recommended (Owusu & Muller, 2016). Knock-down and mortality were recorded at 60 min and 24 h after exposure, respectively. Conventional LLINs were compared with PBO LLINS using Fisher's exact test (2x2 contingency table, significance level of 0.05) (http://wwwgraphpadcom/quickcales/contingency2) (Roberts & Andre, 1994).\n", - "\n", - "header: Materials and methods\n", - "\n", - "The experimental hut studies were carried out at two field stations in southwest Burkina Faso: the first is located in the Vallee du Kou.5 (VK5) near Bobo-Dioulasso (11*39' N, 04*41' W) and belongs to the Institut de Recherche en Science de la Sante (IRSS)/Centre MURAZ, and the second is located at Tengrela (10*40' N, 04*50' W) near Banfora and is maintained by the Centre National de Recherche et de Formation sur le Paludisme (CNRFP). These two sites are separated by approximately 120 km. Previous surveys revealed _Anopheles coluzzii_ (formerly _Anopheles gambiae s.s._ M molecular form) to be the predominant _Anopheles_ species at both sites. High levels of resistance to both DDT and pyrethroids have been reported previously at both sites (Ngufor _et al._, 2014; Toe _et al._, 2015).\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `Observation` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Supporting Information\n", - "\n", - "Additional supporting information may be found online in the Supporting Information section at the end of the article.\n", - "\n", - "Fig. 5: Outcome measures comparing piperonyl butoxide (PBO)-treated and non-PBO-treated nets from the same manufacturers. Deterrence, the ratio of mosquitoes entering a hit relative to the control hit. Exophily, the odds ratio (OR) for a mosquito being found in the veranda trap. Blood feeding inhibition, the OR for a mosquito being blood-fed. Mortality, the OR for a mosquito being dead in the morning (immediate mortality) or after being caught alive and held for 24 h (delayed mortality). [Colour figure can be viewed at wileyonlinelibrary.com].\n", - "\n", - "header: Entry rate and deterrence: Exit rates and induced exophily\n", - "\n", - "Exit rates refer here to the proportion of mosquitoes present in the veranda trap. As with entrance rates, exit rates varied throughout the study (Fig. 4). On average, the induced exophily rates were between 26.4% (control net) and 48.5% (Olyset Net) (Table S4). The odds of finding a mosquito in the veranda trap were significantly increased in the huts with treated nets, with the exception of the DawaPlus, although even for the DawaPlus a tendency to induce exophily was observed (Fig. 4, Table S4).\n", - "\n", - "header: Table 1: Treatment arms and descriptions of longlasting insecticide-treated nets.\n", - "footer: PermaNet is a registered trademark of Vestergaard Frandsen Holding SA. Olyset is a registered trademark of Sumitomo Chemical Co. Ltd. DawaPlusis a registered trademark of Tana Netting Co. Ltd.PBO, piperonyl butoxide.\n", - "columns: ['Treatment arm', 'Description', 'Manufacturer']\n", - "\n", - "{\"0\":{\"Treatment arm\":\"Untreated net\",\"Description\":\"Net manufactured manually using netting material from market\",\"Manufacturer\":\"Local market\"},\"1\":{\"Treatment arm\":\"Olyset\\u00ae Net\",\"Description\":\"8.6 x 10-4 kg\\/m2 of permethrin incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"2\":{\"Treatment arm\":\"Olyset\\u00ae Plus\",\"Description\":\"8.6 x 10-4 kg\\/m2 of permethrin and 4.3 x 10-4 kg\\/m2 of PBO incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"3\":{\"Treatment arm\":\"PermaNet\\u00ae 2.0\",\"Description\":\"5.5 x 10-5 kg\\/m2 of deltamethrin coated on polyester\",\"Manufacturer\":\"Vestergaard Frandsen\"},\"4\":{\"Treatment arm\":\"PermaNet\\u00ae 3.0\",\"Description\":\"Combination of 2.8 g\\/kg of deltamethrin coated on polyester with strengthened border (side panels) and deltamethrin (4.0 g\\/kg) and PBO (25 g\\/kg)\",\"Manufacturer\":\"Vestergaard Frandsen\"},\"5\":{\"Treatment arm\":\"Dawa\\u00ae Plus 2.0\",\"Description\":\"8.0 x 10-5 kg\\/m2 of deltamethrin coated on polyester\",\"Manufacturer\":\"TANA Netting\"}}\n", - "\n", - "header: Discussion\n", - "\n", - "Very low mortality rates were obtained for both permethrin and deltamethrin in the two study sites following an hour of exposure to WHO diagnostic doses. Southwestern Burkina Faso is known as a hotspot of pyrethroid resistance (Dabire _et al._, 2012; Namountougou _et al._, 2012). Rapid changes in the prevalence of pyrethroid resistance have been observed since the first national LLIN distribution programme in 2010: in 2009, mosquito mortality following deltamethrin exposure was 25% (Dabire _et al._, 2012), in VK has since fallen to just 2.5%. The frequency of the 1014F _kdr_ mutation also increased from 0.28 in 2006 (Dabire _et al._, 2009) to 0.88 in the current study. Similar increases in the prevalence of pyrethroid resistance have been witnessed in Tengrela. Mortality rates of 93% and 46% for deltamethrin and permethrin, respectively, were recorded in 2011 (Namountougou _et al._, 2012; K. H. Toe, unpublished data 2011), but these mortality rates had reduced to 33% and 13% in 2014, the year of the current study (Toe _et al._, 2015). In the present study, pyrethroid mortality was significantly increased by pre-exposure to PBO. This, together with the qPCR data showing elevated expression of multiple P450s in both field populations compared with a susceptible laboratory strain, indicate that oxidases are an important resistance mechanism in _An. coluzzi_ in southwestern Burkina Faso. It is noted that resistance was not fully restored by PBO pre-exposure, indicating that additional resistance mechanisms, such as target site resistance and possibly cuticular modifications (Toe _et al._, 2015), may contribute to the pyrethroid resistance phenotype in these populations.\n", - "\n", - "header: Molecular analysis\n", - "\n", - "DNA was extracted from mosquito legs by heating at 90*C for 30 min. Species were identified using the SINE200 protocol (Santolamazza _et al._, 2008) and then screened for the voltage gated sodium channel (VGSC) 1014F and 1575Y alleles using Taqman assays (Bass _et al._, 2007; Jones _et al._, 2012).\n", - "\n", - "Total RNA was extracted from six pools of 10 5-day-old non-blood-fed female _An. coluzzii_ from larval collections from Tengrela and VK5 using the RNAqueous(r)4PCR Kit for isolation of DNA-free RNA (Ambion, Inc., Austin, TX, U.S.A.) according to the manufacturer's procedures. The RNA was eluted in 50 mL of elution solution and treated with DNase. The quality and quantity of all the RNA used were assessed \n", - "using a NanoDrop ND1000 (Thermo Fisher Scientific UK Ltd, Renfrew, U.K.).\n", - "\n", - "The expression profiles of five P450 genes (_CYP6M2_, _CYP6Z2_, _CYP6Z3_, _CYP6P3_, _CYP6P4_), previously found to be over-expressed in pyrethroid-resistant field populations from Burkina Faso (Toe _et al._, 2015) and/or known to metabolize pyrethroids (Muller _et al._, 2008; Mitchell _et al._, 2012) were quantified using reverse-transcription quantitative polymerase chain reaction (RT-qPCR). The qPCR analysis was conducted at the LSTM and used the following mosquito populations: Ngousso, an insecticide-susceptible strain originating from Ngousso in Cameroon in 2006 and maintained in the insectary at LSTM; Tengrela specimens reared from larval collections in October-November 2014, and VK5 specimens reared from larval collections in October-November 2014. Approximately 600 ng of RNA was reverse-transcribed to first-strand cDNA using SuperScript(tm) III reverse transcriptase (Invitrogen, Inc., Carlsbad, CA, U.S.A.) according to the manufacturer's procedures. Samples were then purified using the Qiagen Easy Purification Kit (Qiagen Benelux BV, Venlo, the Netherlands) before proceeding to qPCR. Each of the six pool replicates were run in triplicate using 2X SYBR Brilliant III (Agilent Technologies, Inc., Palo Alto, CA, U.S.A.), forward and reverse primers (300 nM) [sequence available in Toe _et al._ (2015)] on the Mx3005p qPCR system (Agilent Technologies, Inc., Palo Alto, California) with the following cycling protocol: 95 degC for 3 min, followed by 40 cycles of 95 degC for 10 s and 60 degC for 10 s. The qPCR data were analysed using the delta Ct values method, taking into account the PCR efficiency (Pfaffi, 2001). The candidate Ct values were normalized against three housekeeping genes, encoding ribosomal protein L40 (ubiquitin) (_AGAP007927_), an elongation factor (_AGAP005128_) and the S7 ribosomal protein (_AGAP010592_). The normalized Ct values of each gene were then compared with the normalized Ct values of the susceptible Ngousso strain.\n", - "\n", - "header: Results\n", - "\n", - "In VK5, very low levels of mortality were observed after exposure to the discriminating dose of deltamethrin and permethrin, but pre-exposure to PBO significantly increased mortality rates from 2.5% (_n_ = 163) to 45% (_n_ = 158) and from 5% (_n_ = 153) to 26% (_n_ = 156) for deltamethrin and permethrin, respectively (Fisher's exact test, \\(P\\) < 0.0001) (Fig. 1). In Tengrela, mortality rates of 34% (_n_ = 85) and 14% (_n_ = 101) were recorded for deltamethrin and permethrin, respectively. When PBO was used, mortality rates increased significantly to 63% (_n_ = 84) and 42% (_n_ = 104), respectively (Fisher's exact test, \\(P\\) < 0.0001) (Fig.1). Although there was evidence of synergism, pre-exposure to PBO did not fully restore susceptibility in either site to either pyrethroid.\n", - "\n", - "_Anopheles coluzzi_ was the only species of the _An. gambiae_ complex identified by PCR of a subset of 80 specimens from Tengrela and VK5. High frequencies of the 1014F allele of the VGSC were recorded in Tengrela (0.819, 95% CI 0.750-0.875) and VK5 (0.885, 95% CI 0.824-0.930) with the 1575Y allele present at lower frequencies of 0.169 (95% CI 0.114-0.236) and 0.221 (95% CI 0.158-0.295), respectively. Samples were not genotyped for the 1014S allele as previous extensive surveys have not detected this allele in _An. coluzzi_ from these sites (Toe _et al._, 2015). There was no statistically significant difference in the frequency of either the 1014F or 1575Y allele between the two sites (Table 2).\n", - "\n", - "Several cytochrome P450 genes previously associated with pyrethroid resistance showed elevated expression levels in the Tengrela and the VK5 _An. coluzzi_ populations compared with the susceptible laboratory Ngousso strain (Fig. 2). _CYP6P3_, _CYP6M2_, _CYP6Z3_, _CYP6P4_ and _CYP6Z2_ were found to be\n", - "\n", - "Fig. 1: Mortality rates (with binomial confidence intervals) after exposure to deltamethrin and permethrin in World Health Organization discriminating dose assays with or without pre-exposure to piperonyl butoxide (PBO) in (A) Vallée du Kou 5 and (B) Tengrela (October 2014). *Significant differences in mortality: \\(P\\) < 0.0001. Numbers in brackets are the total numbers of mosquitoes tested. [Colour figure can be viewed at wileyonlinelibrary.com].\n", - "\n", - "\n", - "overexpressed in both field strains compared with the susceptible laboratory colony (fold change: > 2) with the most highly overexpressed genes in both populations being _CYP6Z2_ and _CYP6Z3_ (Fig. 2).\n", - "\n", - "header: Blood feeding rates and inhibition\n", - "\n", - "Average blood feeding rates were between 17.0% (PermaNet 3.0) and 56.4% (control net) (Table S4). With the exception of the DawaPlus, all treated nets reduced blood feeding (Fig. 4, Table S4), and the effect was most prominent with the PBO nets PermaNet 3.0 and Olyset Plus (Fig. 4, Table S4), for which the odds ratios (ORs) of blood feeding relative to control nets were 0.19 (95% CI 01.3-0.26) and 0.16 (95% CI 0.11-0.23), respectively.\n", - "\n", - "header: Performance of PBO LLINs in experimental hut studies\n", - "\n", - "The enhanced performance of PBO-containing LLINs over conventional LLINs was further supported by the experimental hut results. Both blood feeding inhibition and mortality rates were significantly higher in huts containing PBO LLINs than in those containing conventional LLINs from the same manufacturers. An improved performance of the PermaNet 3.0, which contains both higher concentrations of deltamethrin compared with the PermaNet 2.0, plus PBO on the roof of the net, has also been reported in pyrethroid-resistant populations of malaria vectors in Ivory Coast (Koudou _et al._, 2011), Benin (N'Guessan _et al._, 2010) and Burkina Faso (Corbel _et al._, 2010).\n", - "\n", - "Fig. 4: Primary outcomes measured in the experimental hut trials in Tengrela and Vallée du Kou 5 (VK5). (A–D) Crude data for the measured outcomes. (A) Entry, number of mosquitoes per night entering a hut. (B) Exit, proportion of mosquitoes collected from the veranda trap. (C) Blood feeding, proportion of mosquitoes found blood-fed. (D) Mortality, proportion of mosquitoes dead at 24 h post-collection. (E–H) These outcomes measured relative to the control (i.e. untreated mosquito net) for both sites combined. (E) Deterrence, the ratio of mosquitoes entering a hut relative to the control hut. (F) Exophily, the odds ratio (OR) for a mosquito being found in the veranda trap. (G) Blood feeding inhibition, the OR for a mosquito being blood-fed. (H) Mortality, the OR for a mosquito being dead in the morning (immediate mortality) or after being caught alive and held for 24 h (delayed mortality). Symbols show the average and whiskers show the limits of the 95% confidence intervals around the average. The dashed line shows the ratio or OR of 1, indicating no association of the outcome with the treatment. The data used to produce the plot together with the \\(P\\)-values are provided in Table S3. [Colour figure can be viewed at wileyonlinelibrary.com].\n", - "\n", - "\n", - "The magnitude of this effect differs among studies, with previous studies reporting increases in mortality rates of 1.3-1.8-fold, whereas the current study reports an OR of 2.45, which corresponds to a 1.78-fold increase. Only one experimental hit study comparing the Olyset Plus with the Olyset Net has been published to date (Pennetier _et al._, 2013). This study, conducted in Benin in 2013, reported mortality rates 1.9-fold higher in the PBO arm than in the conventional LLIN arm (Pennetier _et al._, 2013), which is in line with the findings of the current study, which found a 1.89-fold (OR 2.1) elevation in mortality rates in the Olyset Plus arm.\n", - "\n", - "In addition to increased mortality rates, the current study, plus two of the previous experimental hit studies, reported significantly higher rates of blood feeding inhibition for PBO vs. conventional LLINs (Corbel _et al._, 2010; N'Guessan _et al._, 2010), indicating that PBO LLINs afford an enhanced level of personal protection in areas where vectors are resistant to pyrethroids. It should be noted that the current study was performed using unwashed nets only. Previous studies have found that the efficacy of PBO LLINS against resistant mosquitoes decreases substantially after the nets have been washed 20 times according to WHO protocols (Corbel _et al._, 2010; Tungu _et al._, 2010; Koudou _et al._, 2011). Thus further studies on the durability of the bio-efficacy of PBO LLINS under field conditions are urgently needed.\n", - "\n", - "header: Abstract\n", - "\n", - "Do bednets including piperonyl butoxide offer additional protection against populations of _Anopheles gambiae s.l._ that are highly resistant to pyrethroids? An experimental hut evaluation in Burkina Faso\n", - "\n", - "K. H. T oe\n", - "\n", - "1Departement des Sciences Biomedicales, Centre National de Recherche et de Formation sur le Paludisme, Ouagadougou, Burkina Faso, 2Epidemiology and Public Health Department, Swiss Tropical and Public Health Institute, Basel, Switzerland, 3University of Basel, Basel, Switzerland, 4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " P. Muller\n", - "\n", - "2H233\n", - "\n", - "33Departement des Sciences Biomedicales, Centre National de Recherche et de Formation sur le Paludisme, Ouagadougou, Burkina Faso, 2Epidemiology and Public Health Department, Swiss Tropical and Public Health Institute, Basel, Switzerland, 3University of Basel, Basel, Switzerland, 4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " A. Badlo\n", - "\n", - "1Departement des Sciences Biomedicales, Centre National de Recherche et de Formation sur le Paludisme, Ouagadougou, Burkina Faso, 2Epidemiology and Public Health Department, Swiss Tropical and Public Health Institute, Basel, Switzerland, 3University of Basel, Basel, Basel, Switzerland, 4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " A. Traore\n", - "\n", - "1Departement des Sciences Biomedicales, Centre National de Recherche et de Formation sur le Paludisme, Ouagadougou, Burkina Faso, 2Epidemiology and Public Health Department, Swiss Tropical and Public Health Institute, Basel, Switzerland, 3University of Basel, Basel, Basel, Switzerland, 4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " N. Sagnon\n", - "\n", - "1Departement des Sciences Biomedicales, Centre National de Recherche et de Formation sur le Paludisme, Ouagadougou, Burkina Faso, 2Epidemiology and Public Health Department, Swiss Tropical and Public Health Institute, Basel, Switzerland, 3University of Basel, Basel, Basel, Switzerland, 4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " R. K. Dabi Irene\n", - "\n", - "4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " H. Ransons\n", - "\n", - "5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - "\n", - "Malaria control is dependent on the use of longlasting insecticidal nets (LLINs) containing pyrethroids. A new generation of LLINs containing both pyrethroids and the synergist piperonyl butoxide (PBO) has been developed in response to increasing pyrethroid resistance in African malaria vectors, but questions remain about the performance of these nets in areas where levels of pyrethroid resistance are very high. This study was conducted in two settings in southwest Burkina Faso, Vallee du Kou 5 and Tengrela, where _Anopheles gambiae s.l._ (Diptera: Culicidae) mortality rates in World Health Organization (WHO) discriminating dose assays were \\(<\\) 14% for permethrin and \\(<\\) 33% for delatamethrin. When mosquitoes were pre-exposed to PBO in WHO tube assays, mortality rates increased substantially but full susceptibility was not restored. Molecular characterization revealed high levels of _kdr_ alleles and elevated levels of P450s previously implicated in pyrethroid resistance. In cone bioassays and experimental huts, PBO LLINs outperformed the pyrethroid-only equivalents from the same manufacturers. Blood feeding rates were 1.6-2.2-fold lower and mortality rates were 1.69-1.78-fold greater in huts with PBO LLINs vs. non-PBO LLINs. This study indicates that PBO LLINs provide greater personal and community-level protection than standard LLINs against highly pyrethroid-resistant mosquito populations.\n", - "\n", - " insecticide resistance, insecticide resistance management, longlasting insecticidal nets, PBO.\n", - "\n", - "header: Mortality rates and induced mortality\n", - "\n", - "Average mortality rates ranged from 9.5% in the control arm to 46.1% in the PermaNet 3.0 arm (Table S4). Mortality was statistically higher in all treated net conditions than in the control huts. As with blood feeding inhibition, the PBO nets showed the largest effects in increasing mortality (Fig. 5, Table S4); the ORs for mortality relative to control nets were 5.56 (95% CI 3.92-7.89) and 8.14\n", - "Fig. 2: Expression levels of candidate genes previously associated with pyrethroid resistance in Tengrela and Vallée du Kou 5. The analysis was performed using the 2−\n", - "\n", - "\n", - "\n", - "\n", - "(95% CI 5.64-11.75) for the Olyset Plus and PermaNet 3.0, respectively, compared with 2.65 (95% CI 1.87-3.75) and 3.33 (95% CI 2.35-4.74) for the Olyset Net and PermaNet 2.0, respectively.\n", - "\n", - "header: Table 2: Frequencies of 1014F and 1575Y kdr alleles in Anopheles coluzzili, in Tengrela and Vallée du Kou 5 (VK5).\n", - "footer: Chi-squared test (http://vassarstats.net/) for the comparison of the frequency of the 1014F and 1575Y mutations in Anopheles coluzzili populations from Tengrela and VK5 (October 2014). No statistical difference was observed in the frequencies of the kdr alleles in the two sites.\n", - "columns: ['1014F mutation - Unnamed: 0_level_1', '1014F mutation - Total n', '1014F mutation - LL', '1014F mutation - LF', '1014F mutation - FF', '1014F mutation - f (1014F)', '1014F mutation - P-value']\n", - "\n", - "{\"0\":{\"1014F mutation - Unnamed: 0_level_1\":\"Tengrela\",\"1014F mutation - Total n\":\"80\",\"1014F mutation - LL\":\"2\",\"1014F mutation - LF\":\"25\",\"1014F mutation - FF\":\"53\",\"1014F mutation - f (1014F)\":\"0.819\",\"1014F mutation - P-value\":\"0.26\"},\"1\":{\"1014F mutation - Unnamed: 0_level_1\":\"VK5\",\"1014F mutation - Total n\":\"78\",\"1014F mutation - LL\":\"0\",\"1014F mutation - LF\":\"18\",\"1014F mutation - FF\":\"60\",\"1014F mutation - f (1014F)\":\"0.885\",\"1014F mutation - P-value\":null},\"2\":{\"1014F mutation - Unnamed: 0_level_1\":\"1575Y mutation\",\"1014F mutation - Total n\":\"1575Y mutation\",\"1014F mutation - LL\":\"1575Y mutation\",\"1014F mutation - LF\":\"1575Y mutation\",\"1014F mutation - FF\":\"1575Y mutation\",\"1014F mutation - f (1014F)\":\"1575Y mutation\",\"1014F mutation - P-value\":\"1575Y mutation\"},\"3\":{\"1014F mutation - Unnamed: 0_level_1\":null,\"1014F mutation - Total n\":\"Total n\",\"1014F mutation - LL\":\"NN\",\"1014F mutation - LF\":\"NY\",\"1014F mutation - FF\":\"YY\",\"1014F mutation - f (1014F)\":\"f (A575Y)\",\"1014F mutation - P-value\":\"P-value\"},\"4\":{\"1014F mutation - Unnamed: 0_level_1\":\"Tengrela\",\"1014F mutation - Total n\":\"80\",\"1014F mutation - LL\":\"57\",\"1014F mutation - LF\":\"19\",\"1014F mutation - FF\":\"4\",\"1014F mutation - f (1014F)\":\"0.169\",\"1014F mutation - P-value\":\"0.39\"},\"5\":{\"1014F mutation - Unnamed: 0_level_1\":\"VK5\",\"1014F mutation - Total n\":\"77\",\"1014F mutation - LL\":\"49\",\"1014F mutation - LF\":\"22\",\"1014F mutation - FF\":\"6\",\"1014F mutation - f (1014F)\":\"0.221\",\"1014F mutation - P-value\":null}}\n", - "\n", - "header: Impact of PBO on LLIN efficacy in pyrethroid-resistant mosquitoes\n", - "\n", - "The performance of nets containing PBO as compared with pyrethroid-only nets from the same manufacturer is shown in Fig. 5. The PermaNet 3.0 deterred more mosquitoes than the PermaNet 2.0 (OR = 0.67, \\(P\\) < 0.01) (Fig. 5, Table S5), but there was no significant difference between the Olyset Plus and Olyset Net (_P_ = 0.412). The Olyset Net induced more exophily than the Olyset Plus (OR = 0.76, \\(P\\) < 0.05), but there was no significant difference in exophily between the PermaNet 2.0 and 3.0 (_P_ = 0.727) (Table S5). The PBO nets from both manufacturers considerably reduced blood feeding compared with non-PBO nets with ORs of 0.34 (_P_ < 0.001) and 0.55 (_P_ < 0.01) for the PermaNet 3.0 and Olyset Plus, respectively (Fig. 5, Table S4). In addition, the PBO nets killed significantly more _An. gambiae s.l._ than the non-PBO nets. The ORs for mortality were 2.45 (_P_ < 0.001) for the PermaNet 3.0 and 2.1 (_P_ < 0.001) for the Olyset Plus (Fig. 5, Table S5).\n", - "\n", - "header: Introduction\n", - "\n", - "Use of the longlasting insecticidal net (LLIN) is pivotal in the fight against malaria in Africa. A massive scaling up of the distribution of this commodity has occurred over the past 15 years, with 178 million LLINs delivered for use in sub-Saharan Africa (SSA) in 2015 alone [World Health Organization (WHO), 2016]. Although reliable estimates of LLIN usage are very hard to obtain, the WHO estimates that 53% of the population at risk in SSA slept under an LLIN in 2015 [WHO, 2016]. The results have been dramatic: an estimated 450 million clinical cases of malaria were averted in the last 15 years by the use of LLINs [Bhatt _et al._, 2015].\n", - "\n", - "All LLINs in current use contain pyrethroid insecticides, but there is growing recognition that increases in the prevalence and intensity of pyrethroid resistance, driven at least in part by the scale-up in the use of LLINs, could jeopardize recent gains in malaria control [WHO, 2012]. Direct evidence that pyrethroid\n", - "resistance is reducing either the personal or community-level protection provided by LLINS is challenging to obtain (Kleinschmidt _et al._, 2015; Ranson & Lissenden, 2016), but models of malaria transmission predict that even relatively low levels of resistance can substantially reduce the public health benefits of LILINS (Churcher _et al._, 2016). In countries that rely on the LLIN as the primary malaria prevention tool, the only currently available alternatives to conventional pyrethroid-only LLINS are nets in which the synerigent piperonyl butoxide (PBO) has been included in the fibres making up all, or part, of the net. Piperonyl butoxide inhibits cytochrome P450s, which comprise one of the most important enzyme families involved in pyrethroid resistance, and exposure to PBO has been shown to reduce resistance and sometimes to restore susceptibility to pyrethroids in malaria vectors (Jones _et al._, 2013; Edi _et al._, 2014).\n", - "\n", - "Four brands of LLIN containing PBO have received interim approval from the WHO as conventional LLINS. These are the PermaNet(r) 3.0 (deltamethrin+PBO) (Vestergaard Frandsen Holding SA, Lausanne, Switzerland), the Olvest(r) Plus (permethrin+PBO) (Sumitomo Chemical Asia Pte Ltd, Health and Crop Sciences Sector, Tokyo, Japan), the Veeralin(r) (alpha cypermethrin+PBO) (VKA Polymers Pte Ltd, Karur, India) and the DawaPlus(r) (deltamethrin+PBO) (Tana Netting Co. Ltd, Dubai, U.A.E.). The benefit of the addition of PBO is only expected to manifest in areas in which mosquito populations are resistant to pyrethroids and experimental hut trials of PBO LLINS in areas of resistance have supported this prediction. Increased mosquito mortality was observed in experimental huts containing PBO LLINS compared with conventional LLINS in Ivory Coast, Benin and Burkina Faso (Corbel _et al._, 2010; Ngousso _et al._, 2010; Koudou _et al._, 2011; Pennetier _et al._, 2013) and reductions in blood feeding rates were also reported in trials in the latter two countries. All of these sites reported high levels of pyrethroid resistance.\n", - "\n", - "There has been a dramatic escalation in the strength of pyrethroid resistance in southwestern Burkina Faso since earlier trials of PBO LLINS in 2007. World Health Organization cone bioassays performed in 2012 revealed that none of the conventional LLINS were effective in killing local vector populations and that the performance of the PBO LLIN PermaNet(r) 3.0 was also compromised in these assays (Toe _et al._, 2014). Although the numbers of malaria deaths in Burkina Faso have fallen over the past 10 years, numbers of malaria cases have risen year on year despite countywide LLIN distribution campaigns [National Malaria Control Programme (NMCP), personal communication; K.H.Toe, 2017]. In order to advise the NMCP on whether a switch to PBO LLINS may be warranted to target these highly resistant populations, an experimental hut trial was undertaken in two rice-growing areas in the southwestern region of Burkina Faso.\n", - "\n", - "header: Conclusions\n", - "\n", - "The results of these experimental hit studies with entomological endpoints suggest that substituting conventional LLINs with PBO LLINs in areas where there is a high prevalence of pyrethroid resistance in local vectors may be an effective strategy to maintain the efficacy of malaria vector control. The public health benefit of this would depend on a wide range of factors, including the level of malaria endemicity, LLIN coverage rates and the predominant mosquito vectors present, but a recent modelling exercise predicts that in some settings, a switch to PBO LLINs could aver up to 0.5 clinical cases per person per year (Churcher _et al._, 2016). These predictions from models are now being evaluated in large-scale field trials. A recent study in Tanzania reported a 33% protective efficacy of PBO LLINs over conventional LLINs after 2 years of use (Protopopoff _et al._, 2018). A larger trial, involving the distribution of over 10.7 million nets in Uganda, is evaluating whether PBO nets reduce malaria prevalence under programmatic conditions ([https://www.againstmalaria.com](https://www.againstmalaria.com), [https://www.pmi.gov](https://www.pmi.gov)).\n", - "\n", - "In light of the results from experimental hit studies, including the current study, and after reviewing data from the first clinical trial of a PBO LLIN, the WHO recently made a policy recommendation that national malaria control programmes should consider deployment of PBO LLINs in areas with pyrethroid-resistant vectors (WHO, 2017). If deployed at scale, PBO LLINs may play an important role in reducing the immediate threat of pyrethroid resistance to malaria control.\n", - "\n", - "header: _Pyrethroid resistance in Tengrela and VK5 and associated mechanisms_: Efficacy of LLINs under laboratory conditions\n", - "\n", - "All LLINs tested showed good bio-efficacy in cone bioassays against the susceptible laboratory Kisumu strain with 60 min knock-down and 24 h mortality rates of all LLINs above the 98% and 80% WHO thresholds (WHO, 2005) (Table S1). By contrast, in tests using the field-caught mosquitoes, the mortality threshold was met only by the top panels of the PermaNet 3.0 (Fig. 3). Knock-down rates exceeded the 98% threshold for the PermaNet 3.0 in VK5 only (Table S1).\n", - "\n", - "header: Experimental hut results\n", - "\n", - "In total, 12 915 specimens from four different mosquito genera were collected inside the huts (sleeping rooms and veranda traps) over the 6-week trial (Tengrela, \\(n\\) = 5808; VK5, \\(n\\) = 7107). Most specimens collected from the huts belonged to the _An. gambiae s.l._ species complex, accounting for 75.4% (_n_ = 4379) in Tengrela and 98.8% (_n_ = 7020) in VK5. The second most frequently collected _Anopheles_ species was _An. rhinorensis_, of which 49 and 19 specimens were collected in Tengrela and VK5, respectively. Other _Anopheles_ mosquito species, including _An. funestus_ (_n_ = 3), _An. nili_ (_n_ = 2) and _An. coustani_ (_n_ = 3), were collected in Tengrela. Additional mosquito taxa were also collected, including _Mansonia_ sp. (_n_ = 1330 in Tengrela and \\(n\\) = 45 in VK5), _Culex_ sp. (_n_ = 41 in Tengrela and \\(n\\) = 23 in VK5) and _Aedes_ sp. (_n_ = 1 in Tengrela) (all: Diptera: Culicidae). Because of the low numbers of other genera, only data for _An. gambiae s.l._ were included in the analysis.\n", - "\n", - "Within the total of 11 399 _An. gambiae s.l._ caught at both field sites, there was considerable variation between weeks and treatments in the numbers of mosquitoes entering the huts in both study locations (Fig. 4). The average number of mosquitoes caught per night/per hut was between 13 (PermaNet 3.0) and 20.7 (Olyset Net) mosquitoes (Table S3) and induced deterrence was found only for the Olyset Net, albeit at a low ratio of 1.31 (95% CI 1.02-1.66; \\(P\\) < 0.05) (Fig. 4).\n", - "\n", - "header: Pyrethroid resistance in southwest Burkina Faso: Bio-efficacy of LLINs in cone bioassays\n", - "\n", - "The low levels of mortality observed in cone bioassays in this study are similar to those reported previously in VK7, a neighbouring village to VK5, in the Vallee du Kou rice-growing region. However, whereas the current study found that exposure to the tops of the PermaNet 3.0 nets resulted in mortality levels exceeding the WHO threshold of 80%, equivalent bioassays conducted in the VK7 population in 2012 showed mortality of only 43%. Cone bioassays are not a reliable method of comparing the performance of LLINs containing different pyrethroids because of the inherent differences in extico-repellency within this class, which can affect exposure time (Siegert _et al._, 2009). In particular, cone tests may underestimate the performance of permethrin LLINs; this is indicated by comparison of the cone bioassay results in Fig. 3, in which the Olyset Net was found to induce considerably lower mortality than the PermaNet 2.0, although experimental hut results showed similar levels of mortality in huts with these two net types (Table S3).\n", - "\n", - "Fig. 3: Mean mortality rates with binomial confidence intervals for mosquitoes collected from (A) Tengrela and (B) Vallée du Kou 5 after exposure to longlasting insecticidal nets (LLINs) for 3 min. Significant differences in mortality between pyrethroid-only and pyrethroid plus piperonyl butoxide-treated LLINs are indicated by * (_P_ < 0.001), † (_P_ < 0.0001), n.s. (non-significant, \\(\\frac{1}{2}\\) (_P_ < 0.0001) for the comparison between the sides and top of the PermaNet 3.0. Numbers in brackets are the total numbers of mosquitoes tested. [Colour figure can be viewed at wicyclonlinelibrary.com].\n", - "\n", - "\n", - "Nevertheless, the results of these cone bioassays provide further evidence that resistance can be at least partially ameliorated by exposure to PBO.\n", - "\n", - "header: Experimental hut trials\n", - "\n", - "Each station consisted of six experimental huts built according to the West African style (WHO, 2013). The study had six arms that used, respectively, five different LLINs and one net with no insecticide treatment as a negative control (Table 1). The nets were obtained from the manufacturers and were unpacked and kept in the shade for 24 h, but not washed prior to testing. Two of the nets, the OlysetPlus and PermaNet 3.0, contain PBO, whereas the other three LLINs contain only pyrethroids. The LLINs were holed according to WHO standard procedures (WHO, 2013). A total of six holes (4 cm x 4 cm) per net were cut, two on each of the long sides and one on each of the short sides.\n", - "\n", - "Study participants (male sleepers) spent 6 nights per week under a net in an experimental hut from 20.00 hours to 05.00 hours, followed by 1 day of break. The sleepers were rotated through the six huts so that each sleeper spent 1 night per week under each net type. To complete a full Latin square rotation with all combinations of sleeper, net type and hut, the study ran over 36 days from 8 September to 22 October 2014.\n", - "\n", - "Each morning at 05.00 hours, mosquitoes were collected manually by the sleepers, with supervision, from under the net, inside the hut and on the exit veranda. The collected specimens were morphologically identified to genus and, where possible, to species level (Gillies & Coetzee, 1987), grouped according to their gonotrophic stage (blood-fed, unfed or gravid), and scored as dead or alive. Live mosquitoes were transferred to paper cups, provided with 10% sugar water and kept in the insectary described above for 24 h, after which delayed mortality was recorded. All specimens were stored on silica gel for further molecular analysis.\n", - "\n", - "Data analysis was performed in the open-source statistical software R Version 3.3.2 (R Development Core Team, 2011) using the libraries 'lme4' (Bates _et al._, 2012) and 'glmADMB' (Skaug _et al._, 2012) for generalized linear mixed models (GLMMs). Plots were then generated with the package 'ggplot2' (Wickham, 2009).\n", - "\n", - "In the statistical analysis of hut trial data, in order to increase the number of replicates, give more power and increase confidence in the analysis, data collected from both sites (Tengrela and VK5) were pooled and the following four outcomes for _An. coluzzii_ were compared between the LLINs and the untreated control net, as well as between the PBO and non-PBO nets from the same manufacturer: (a) deterrence (i.e. the reduction in hut entry relative to the control or non-PBO net); (b) induced exophily (i.e. the ratio of the odds of a mosquito being found in the veranda trap compared with the hut); (c) blood feeding inhibition (i.e. the ratio of the odds of blood\n", - "\n", - "fed vs. unfed mosquitoes), and (d) induced mortality [i.e. the ratio of the odds of dead vs. alive mosquitoes] (The original dataset for _An. gambiae s.l._ is supplied in Table S2.) Immediate mortality and mortality at 24 h post-collection were combined for the analysis. Deterrence was analysed as the ratio in total numbers between the treatment arms (or PBO net) vs. the control arm (or non-PBO net). The numbers of mosquitoes in the room and the veranda were combined and analysed using a GLMM with a negative binomial distribution and a log link function using the R function 'glmandmdb()' in the 'glmmADMB' package. In the model, the net type was the fixed effect term and random intercepts were introduced for the sleeper and the hut, and a random slope for the day depending on the location. For proportional outcomes of induced exophily, blood feeding inhibition and induced mortality, the negative binomial model was replaced by a GLMM with a binomial distribution and logit link function using the R function 'glmer()' in the 'lme4' package. In the models, in addition to the terms listed above, a random intercept was introduced for each observation to account for unexplained overdispersion. For statistical testing, the level of significance was set at \\(a\\) = 0.05.\n", - "\n", - "In addition to the ratios described above, averages (i.e. the modes) and 95% confidence intervals (CIs) of the crude values underlying the outcomes were computed by the same models as above but using the individual nets as the intercept. These corresponding crude values were: (a) entry rate (i.e. the number of mosquitoes entering a hut); (b) exit rate (i.e. the number of mosquitoes collected from the veranda trap; (c) blood feeding rate (i.e. the proportion of blood-fed mosquitoes), and (d) mortality rate (i.e. the proportion of dead mosquitoes at 24 h post-collection).\n", - "\n", - "The study participants were recruited from the local communities and gave informed consent. Ethical approval was obtained from the Ethical Committee for Health Research of the Ministry of Health and Ministry of Research in Burkina Faso (Deliberation No. 2013-07-057, 11 July 2013). Malaria chemotherapy was not offered to study participants in line with Ministry of Health recommendations. However, medical supervision was provided throughout the study and any malaria case was treated according to national requirements.\n", - "\n", - "header: Study sites: Characterization of mosquito populations\n", - "\n", - "_Anopheles gambiae s.l._ larvae were collected in Tengrela and VK5 and reared to adults in local insectaries (mean relative humidity: 75+- 10%; mean temperature: 27+- 2*C). To assess susceptibility to pyrethroids, batches of approximately 25 non-blood-fed _An. gambiae s.l._ females aged 3-5 days were exposed to papers treated with 0.75% permethrin or 0.05% deltamethrin. The papers and susceptibility test kits were purchased from the Universiti Sains Malaysia (Penang, Malaysia). In parallel bioassays, mosquitoes were exposed to papers treated with 4% PBO [prepared by the Liverpool School of Tropical Medicine (LSTM)] for 1 h before they were transferred to tubes containing either insecticide-treated papers or insecticide-free papers and exposed for a further 1 h. Knock-down was recorded at the end of exposure and mortality was recorded 24 h later.\n", - "\n", - "The bio-efficacy of the LLINS was tested using non-blood-fed mosquitoes aged 3-5 days from local larval collections, and from the Kisumu susceptible laboratory strain, using the WHO cone bioassay procedure (WHO, 2013). For each LLIN type, two unwashed nets were tested under insectary conditions. Ten mosquitoes per cone were exposed for 3 min to 30 cm x 30 cm net pieces sampled from the top, the short and the long sides of the net. During exposure, the set-up was kept at an angle of 45 degrees as recommended (Owusu & Muller, 2016). Knock-down and mortality were recorded at 60 min and 24 h after exposure, respectively. Conventional LLINs were compared with PBO LLINS using Fisher's exact test (2x2 contingency table, significance level of 0.05) (http://wwwgraphpadcom/quickcales/contingency2) (Roberts & Andre, 1994).\n", - "\n", - "header: Materials and methods\n", - "\n", - "The experimental hut studies were carried out at two field stations in southwest Burkina Faso: the first is located in the Vallee du Kou.5 (VK5) near Bobo-Dioulasso (11*39' N, 04*41' W) and belongs to the Institut de Recherche en Science de la Sante (IRSS)/Centre MURAZ, and the second is located at Tengrela (10*40' N, 04*50' W) near Banfora and is maintained by the Centre National de Recherche et de Formation sur le Paludisme (CNRFP). These two sites are separated by approximately 120 km. Previous surveys revealed _Anopheles coluzzii_ (formerly _Anopheles gambiae s.s._ M molecular form) to be the predominant _Anopheles_ species at both sites. High levels of resistance to both DDT and pyrethroids have been reported previously at both sites (Ngufor _et al._, 2014; Toe _et al._, 2015).\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ClinicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `ClinicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `ClinicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}, \"Start_month\": {\"title\": \"Start Month\", \"description\": \"Numerical start month of the reporting period (some studies may report multiple time periods)\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Hut trial\",\"Country\":\"Burkina Faso\",\"Site\":\"Vallee du Kou 5\",\"Start_month\":9,\"Start_year\":2014,\"End_month\":10,\"End_year\":2014},\"S02\":{\"Study_type\":\"Hut trial\",\"Country\":\"Burkina Faso\",\"Site\":\"Tengrela\",\"Start_month\":9,\"Start_year\":2014,\"End_month\":10,\"End_year\":2014}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Concentration_initial\": {\"title\": \"Insecticide concentration (initial)\", \"description\": \"Enter the initial concentration of the insecticide(s) for net type at the time of distribution.\"}, \"Net_holed\": {\"title\": \"Net Holed\", \"description\": \"Numerical count of the number of holes a net has - 0 if new and NA if not reported\\nNote - for tunnel tests there are holes that allow the mosquitoes the option of passing through to feed on the guinea pig.\"}, \"Net_age\": {\"title\": \"Net Age\", \"description\": \"Age of the net in months - if reported (some studies return to villages with nets given 1-2 years prior). When a range of net age's are given, use the midpoint in the range or the median in a distribution.\"}, \"pHI_category\": {\"title\": \"Phi Category\", \"description\": \"Classification of the nets holed surface area, as one of \\\"Good\\\", \\\"Damaged\\\", \\\"Torn\\\", \\\"Serviceable\\\", or \\\"All\\\", as proposed by WHO\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"Untreated net\",\"Net_holed\":0.0,\"Net_age\":\"NA\",\"pHI_category\":\"Good\",\"Insecticide\":null,\"Concentration_initial\":null},\"N02\":{\"Net_type\":\"Olyset Net\",\"Net_holed\":6.0,\"Net_age\":\"NA\",\"pHI_category\":\"Good\",\"Insecticide\":\"permethrin\",\"Concentration_initial\":\"8.6 x 10-4 kg\\/m2\"},\"N03\":{\"Net_type\":\"Olyset Plus\",\"Net_holed\":6.0,\"Net_age\":\"NA\",\"pHI_category\":\"Good\",\"Insecticide\":\"permethrin, PBO\",\"Concentration_initial\":\"8.6 x 10-4 kg\\/m2, 4.3 x 10-4 kg\\/m2\"},\"N04\":{\"Net_type\":\"PermaNet 2.0\",\"Net_holed\":6.0,\"Net_age\":\"NA\",\"pHI_category\":\"Good\",\"Insecticide\":\"deltamethrin\",\"Concentration_initial\":\"5.5 x 10-5 kg\\/m2\"},\"N05\":{\"Net_type\":\"PermaNet 3.0\",\"Net_holed\":6.0,\"Net_age\":\"NA\",\"pHI_category\":\"Good\",\"Insecticide\":\"deltamethrin, PBO\",\"Concentration_initial\":\"2.8 g\\/kg, 4.0 g\\/kg, 25 g\\/kg\"},\"N06\":{\"Net_type\":\"Dawa Plus 2.0\",\"Net_holed\":6.0,\"Net_age\":\"NA\",\"pHI_category\":\"Good\",\"Insecticide\":\"deltamethrin\",\"Concentration_initial\":\"8.0 x 10-5 kg\\/m2\"}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Supporting Information\n", - "\n", - "Additional supporting information may be found online in the Supporting Information section at the end of the article.\n", - "\n", - "Fig. 5: Outcome measures comparing piperonyl butoxide (PBO)-treated and non-PBO-treated nets from the same manufacturers. Deterrence, the ratio of mosquitoes entering a hit relative to the control hit. Exophily, the odds ratio (OR) for a mosquito being found in the veranda trap. Blood feeding inhibition, the OR for a mosquito being blood-fed. Mortality, the OR for a mosquito being dead in the morning (immediate mortality) or after being caught alive and held for 24 h (delayed mortality). [Colour figure can be viewed at wileyonlinelibrary.com].\n", - "\n", - "header: Entry rate and deterrence: Exit rates and induced exophily\n", - "\n", - "Exit rates refer here to the proportion of mosquitoes present in the veranda trap. As with entrance rates, exit rates varied throughout the study (Fig. 4). On average, the induced exophily rates were between 26.4% (control net) and 48.5% (Olyset Net) (Table S4). The odds of finding a mosquito in the veranda trap were significantly increased in the huts with treated nets, with the exception of the DawaPlus, although even for the DawaPlus a tendency to induce exophily was observed (Fig. 4, Table S4).\n", - "\n", - "header: Table 1: Treatment arms and descriptions of longlasting insecticide-treated nets.\n", - "footer: PermaNet is a registered trademark of Vestergaard Frandsen Holding SA. Olyset is a registered trademark of Sumitomo Chemical Co. Ltd. DawaPlusis a registered trademark of Tana Netting Co. Ltd.PBO, piperonyl butoxide.\n", - "columns: ['Treatment arm', 'Description', 'Manufacturer']\n", - "\n", - "{\"0\":{\"Treatment arm\":\"Untreated net\",\"Description\":\"Net manufactured manually using netting material from market\",\"Manufacturer\":\"Local market\"},\"1\":{\"Treatment arm\":\"Olyset\\u00ae Net\",\"Description\":\"8.6 x 10-4 kg\\/m2 of permethrin incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"2\":{\"Treatment arm\":\"Olyset\\u00ae Plus\",\"Description\":\"8.6 x 10-4 kg\\/m2 of permethrin and 4.3 x 10-4 kg\\/m2 of PBO incorporated into polyethylene\",\"Manufacturer\":\"Sumitomo Chemical\"},\"3\":{\"Treatment arm\":\"PermaNet\\u00ae 2.0\",\"Description\":\"5.5 x 10-5 kg\\/m2 of deltamethrin coated on polyester\",\"Manufacturer\":\"Vestergaard Frandsen\"},\"4\":{\"Treatment arm\":\"PermaNet\\u00ae 3.0\",\"Description\":\"Combination of 2.8 g\\/kg of deltamethrin coated on polyester with strengthened border (side panels) and deltamethrin (4.0 g\\/kg) and PBO (25 g\\/kg)\",\"Manufacturer\":\"Vestergaard Frandsen\"},\"5\":{\"Treatment arm\":\"Dawa\\u00ae Plus 2.0\",\"Description\":\"8.0 x 10-5 kg\\/m2 of deltamethrin coated on polyester\",\"Manufacturer\":\"TANA Netting\"}}\n", - "\n", - "header: Discussion\n", - "\n", - "Very low mortality rates were obtained for both permethrin and deltamethrin in the two study sites following an hour of exposure to WHO diagnostic doses. Southwestern Burkina Faso is known as a hotspot of pyrethroid resistance (Dabire _et al._, 2012; Namountougou _et al._, 2012). Rapid changes in the prevalence of pyrethroid resistance have been observed since the first national LLIN distribution programme in 2010: in 2009, mosquito mortality following deltamethrin exposure was 25% (Dabire _et al._, 2012), in VK has since fallen to just 2.5%. The frequency of the 1014F _kdr_ mutation also increased from 0.28 in 2006 (Dabire _et al._, 2009) to 0.88 in the current study. Similar increases in the prevalence of pyrethroid resistance have been witnessed in Tengrela. Mortality rates of 93% and 46% for deltamethrin and permethrin, respectively, were recorded in 2011 (Namountougou _et al._, 2012; K. H. Toe, unpublished data 2011), but these mortality rates had reduced to 33% and 13% in 2014, the year of the current study (Toe _et al._, 2015). In the present study, pyrethroid mortality was significantly increased by pre-exposure to PBO. This, together with the qPCR data showing elevated expression of multiple P450s in both field populations compared with a susceptible laboratory strain, indicate that oxidases are an important resistance mechanism in _An. coluzzi_ in southwestern Burkina Faso. It is noted that resistance was not fully restored by PBO pre-exposure, indicating that additional resistance mechanisms, such as target site resistance and possibly cuticular modifications (Toe _et al._, 2015), may contribute to the pyrethroid resistance phenotype in these populations.\n", - "\n", - "header: Molecular analysis\n", - "\n", - "DNA was extracted from mosquito legs by heating at 90*C for 30 min. Species were identified using the SINE200 protocol (Santolamazza _et al._, 2008) and then screened for the voltage gated sodium channel (VGSC) 1014F and 1575Y alleles using Taqman assays (Bass _et al._, 2007; Jones _et al._, 2012).\n", - "\n", - "Total RNA was extracted from six pools of 10 5-day-old non-blood-fed female _An. coluzzii_ from larval collections from Tengrela and VK5 using the RNAqueous(r)4PCR Kit for isolation of DNA-free RNA (Ambion, Inc., Austin, TX, U.S.A.) according to the manufacturer's procedures. The RNA was eluted in 50 mL of elution solution and treated with DNase. The quality and quantity of all the RNA used were assessed \n", - "using a NanoDrop ND1000 (Thermo Fisher Scientific UK Ltd, Renfrew, U.K.).\n", - "\n", - "The expression profiles of five P450 genes (_CYP6M2_, _CYP6Z2_, _CYP6Z3_, _CYP6P3_, _CYP6P4_), previously found to be over-expressed in pyrethroid-resistant field populations from Burkina Faso (Toe _et al._, 2015) and/or known to metabolize pyrethroids (Muller _et al._, 2008; Mitchell _et al._, 2012) were quantified using reverse-transcription quantitative polymerase chain reaction (RT-qPCR). The qPCR analysis was conducted at the LSTM and used the following mosquito populations: Ngousso, an insecticide-susceptible strain originating from Ngousso in Cameroon in 2006 and maintained in the insectary at LSTM; Tengrela specimens reared from larval collections in October-November 2014, and VK5 specimens reared from larval collections in October-November 2014. Approximately 600 ng of RNA was reverse-transcribed to first-strand cDNA using SuperScript(tm) III reverse transcriptase (Invitrogen, Inc., Carlsbad, CA, U.S.A.) according to the manufacturer's procedures. Samples were then purified using the Qiagen Easy Purification Kit (Qiagen Benelux BV, Venlo, the Netherlands) before proceeding to qPCR. Each of the six pool replicates were run in triplicate using 2X SYBR Brilliant III (Agilent Technologies, Inc., Palo Alto, CA, U.S.A.), forward and reverse primers (300 nM) [sequence available in Toe _et al._ (2015)] on the Mx3005p qPCR system (Agilent Technologies, Inc., Palo Alto, California) with the following cycling protocol: 95 degC for 3 min, followed by 40 cycles of 95 degC for 10 s and 60 degC for 10 s. The qPCR data were analysed using the delta Ct values method, taking into account the PCR efficiency (Pfaffi, 2001). The candidate Ct values were normalized against three housekeeping genes, encoding ribosomal protein L40 (ubiquitin) (_AGAP007927_), an elongation factor (_AGAP005128_) and the S7 ribosomal protein (_AGAP010592_). The normalized Ct values of each gene were then compared with the normalized Ct values of the susceptible Ngousso strain.\n", - "\n", - "header: Results\n", - "\n", - "In VK5, very low levels of mortality were observed after exposure to the discriminating dose of deltamethrin and permethrin, but pre-exposure to PBO significantly increased mortality rates from 2.5% (_n_ = 163) to 45% (_n_ = 158) and from 5% (_n_ = 153) to 26% (_n_ = 156) for deltamethrin and permethrin, respectively (Fisher's exact test, \\(P\\) < 0.0001) (Fig. 1). In Tengrela, mortality rates of 34% (_n_ = 85) and 14% (_n_ = 101) were recorded for deltamethrin and permethrin, respectively. When PBO was used, mortality rates increased significantly to 63% (_n_ = 84) and 42% (_n_ = 104), respectively (Fisher's exact test, \\(P\\) < 0.0001) (Fig.1). Although there was evidence of synergism, pre-exposure to PBO did not fully restore susceptibility in either site to either pyrethroid.\n", - "\n", - "_Anopheles coluzzi_ was the only species of the _An. gambiae_ complex identified by PCR of a subset of 80 specimens from Tengrela and VK5. High frequencies of the 1014F allele of the VGSC were recorded in Tengrela (0.819, 95% CI 0.750-0.875) and VK5 (0.885, 95% CI 0.824-0.930) with the 1575Y allele present at lower frequencies of 0.169 (95% CI 0.114-0.236) and 0.221 (95% CI 0.158-0.295), respectively. Samples were not genotyped for the 1014S allele as previous extensive surveys have not detected this allele in _An. coluzzi_ from these sites (Toe _et al._, 2015). There was no statistically significant difference in the frequency of either the 1014F or 1575Y allele between the two sites (Table 2).\n", - "\n", - "Several cytochrome P450 genes previously associated with pyrethroid resistance showed elevated expression levels in the Tengrela and the VK5 _An. coluzzi_ populations compared with the susceptible laboratory Ngousso strain (Fig. 2). _CYP6P3_, _CYP6M2_, _CYP6Z3_, _CYP6P4_ and _CYP6Z2_ were found to be\n", - "\n", - "Fig. 1: Mortality rates (with binomial confidence intervals) after exposure to deltamethrin and permethrin in World Health Organization discriminating dose assays with or without pre-exposure to piperonyl butoxide (PBO) in (A) Vallée du Kou 5 and (B) Tengrela (October 2014). *Significant differences in mortality: \\(P\\) < 0.0001. Numbers in brackets are the total numbers of mosquitoes tested. [Colour figure can be viewed at wileyonlinelibrary.com].\n", - "\n", - "\n", - "overexpressed in both field strains compared with the susceptible laboratory colony (fold change: > 2) with the most highly overexpressed genes in both populations being _CYP6Z2_ and _CYP6Z3_ (Fig. 2).\n", - "\n", - "header: Blood feeding rates and inhibition\n", - "\n", - "Average blood feeding rates were between 17.0% (PermaNet 3.0) and 56.4% (control net) (Table S4). With the exception of the DawaPlus, all treated nets reduced blood feeding (Fig. 4, Table S4), and the effect was most prominent with the PBO nets PermaNet 3.0 and Olyset Plus (Fig. 4, Table S4), for which the odds ratios (ORs) of blood feeding relative to control nets were 0.19 (95% CI 01.3-0.26) and 0.16 (95% CI 0.11-0.23), respectively.\n", - "\n", - "header: Performance of PBO LLINs in experimental hut studies\n", - "\n", - "The enhanced performance of PBO-containing LLINs over conventional LLINs was further supported by the experimental hut results. Both blood feeding inhibition and mortality rates were significantly higher in huts containing PBO LLINs than in those containing conventional LLINs from the same manufacturers. An improved performance of the PermaNet 3.0, which contains both higher concentrations of deltamethrin compared with the PermaNet 2.0, plus PBO on the roof of the net, has also been reported in pyrethroid-resistant populations of malaria vectors in Ivory Coast (Koudou _et al._, 2011), Benin (N'Guessan _et al._, 2010) and Burkina Faso (Corbel _et al._, 2010).\n", - "\n", - "Fig. 4: Primary outcomes measured in the experimental hut trials in Tengrela and Vallée du Kou 5 (VK5). (A–D) Crude data for the measured outcomes. (A) Entry, number of mosquitoes per night entering a hut. (B) Exit, proportion of mosquitoes collected from the veranda trap. (C) Blood feeding, proportion of mosquitoes found blood-fed. (D) Mortality, proportion of mosquitoes dead at 24 h post-collection. (E–H) These outcomes measured relative to the control (i.e. untreated mosquito net) for both sites combined. (E) Deterrence, the ratio of mosquitoes entering a hut relative to the control hut. (F) Exophily, the odds ratio (OR) for a mosquito being found in the veranda trap. (G) Blood feeding inhibition, the OR for a mosquito being blood-fed. (H) Mortality, the OR for a mosquito being dead in the morning (immediate mortality) or after being caught alive and held for 24 h (delayed mortality). Symbols show the average and whiskers show the limits of the 95% confidence intervals around the average. The dashed line shows the ratio or OR of 1, indicating no association of the outcome with the treatment. The data used to produce the plot together with the \\(P\\)-values are provided in Table S3. [Colour figure can be viewed at wileyonlinelibrary.com].\n", - "\n", - "\n", - "The magnitude of this effect differs among studies, with previous studies reporting increases in mortality rates of 1.3-1.8-fold, whereas the current study reports an OR of 2.45, which corresponds to a 1.78-fold increase. Only one experimental hit study comparing the Olyset Plus with the Olyset Net has been published to date (Pennetier _et al._, 2013). This study, conducted in Benin in 2013, reported mortality rates 1.9-fold higher in the PBO arm than in the conventional LLIN arm (Pennetier _et al._, 2013), which is in line with the findings of the current study, which found a 1.89-fold (OR 2.1) elevation in mortality rates in the Olyset Plus arm.\n", - "\n", - "In addition to increased mortality rates, the current study, plus two of the previous experimental hit studies, reported significantly higher rates of blood feeding inhibition for PBO vs. conventional LLINs (Corbel _et al._, 2010; N'Guessan _et al._, 2010), indicating that PBO LLINs afford an enhanced level of personal protection in areas where vectors are resistant to pyrethroids. It should be noted that the current study was performed using unwashed nets only. Previous studies have found that the efficacy of PBO LLINS against resistant mosquitoes decreases substantially after the nets have been washed 20 times according to WHO protocols (Corbel _et al._, 2010; Tungu _et al._, 2010; Koudou _et al._, 2011). Thus further studies on the durability of the bio-efficacy of PBO LLINS under field conditions are urgently needed.\n", - "\n", - "header: Abstract\n", - "\n", - "Do bednets including piperonyl butoxide offer additional protection against populations of _Anopheles gambiae s.l._ that are highly resistant to pyrethroids? An experimental hut evaluation in Burkina Faso\n", - "\n", - "K. H. T oe\n", - "\n", - "1Departement des Sciences Biomedicales, Centre National de Recherche et de Formation sur le Paludisme, Ouagadougou, Burkina Faso, 2Epidemiology and Public Health Department, Swiss Tropical and Public Health Institute, Basel, Switzerland, 3University of Basel, Basel, Switzerland, 4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " P. Muller\n", - "\n", - "2H233\n", - "\n", - "33Departement des Sciences Biomedicales, Centre National de Recherche et de Formation sur le Paludisme, Ouagadougou, Burkina Faso, 2Epidemiology and Public Health Department, Swiss Tropical and Public Health Institute, Basel, Switzerland, 3University of Basel, Basel, Switzerland, 4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " A. Badlo\n", - "\n", - "1Departement des Sciences Biomedicales, Centre National de Recherche et de Formation sur le Paludisme, Ouagadougou, Burkina Faso, 2Epidemiology and Public Health Department, Swiss Tropical and Public Health Institute, Basel, Switzerland, 3University of Basel, Basel, Basel, Switzerland, 4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " A. Traore\n", - "\n", - "1Departement des Sciences Biomedicales, Centre National de Recherche et de Formation sur le Paludisme, Ouagadougou, Burkina Faso, 2Epidemiology and Public Health Department, Swiss Tropical and Public Health Institute, Basel, Switzerland, 3University of Basel, Basel, Basel, Switzerland, 4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " N. Sagnon\n", - "\n", - "1Departement des Sciences Biomedicales, Centre National de Recherche et de Formation sur le Paludisme, Ouagadougou, Burkina Faso, 2Epidemiology and Public Health Department, Swiss Tropical and Public Health Institute, Basel, Switzerland, 3University of Basel, Basel, Basel, Switzerland, 4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " R. K. Dabi Irene\n", - "\n", - "4Department of Medical Biology and Public Health, Institut de Recherche en Science de la Sante, Bobo-Dioulasso, Burkina Faso and 5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - " H. Ransons\n", - "\n", - "5Department of Vector Biology, Liverpool School of Tropical Medicine, Liverpool, U.K.\n", - "\n", - "\n", - "Malaria control is dependent on the use of longlasting insecticidal nets (LLINs) containing pyrethroids. A new generation of LLINs containing both pyrethroids and the synergist piperonyl butoxide (PBO) has been developed in response to increasing pyrethroid resistance in African malaria vectors, but questions remain about the performance of these nets in areas where levels of pyrethroid resistance are very high. This study was conducted in two settings in southwest Burkina Faso, Vallee du Kou 5 and Tengrela, where _Anopheles gambiae s.l._ (Diptera: Culicidae) mortality rates in World Health Organization (WHO) discriminating dose assays were \\(<\\) 14% for permethrin and \\(<\\) 33% for delatamethrin. When mosquitoes were pre-exposed to PBO in WHO tube assays, mortality rates increased substantially but full susceptibility was not restored. Molecular characterization revealed high levels of _kdr_ alleles and elevated levels of P450s previously implicated in pyrethroid resistance. In cone bioassays and experimental huts, PBO LLINs outperformed the pyrethroid-only equivalents from the same manufacturers. Blood feeding rates were 1.6-2.2-fold lower and mortality rates were 1.69-1.78-fold greater in huts with PBO LLINs vs. non-PBO LLINs. This study indicates that PBO LLINs provide greater personal and community-level protection than standard LLINs against highly pyrethroid-resistant mosquito populations.\n", - "\n", - " insecticide resistance, insecticide resistance management, longlasting insecticidal nets, PBO.\n", - "\n", - "header: Mortality rates and induced mortality\n", - "\n", - "Average mortality rates ranged from 9.5% in the control arm to 46.1% in the PermaNet 3.0 arm (Table S4). Mortality was statistically higher in all treated net conditions than in the control huts. As with blood feeding inhibition, the PBO nets showed the largest effects in increasing mortality (Fig. 5, Table S4); the ORs for mortality relative to control nets were 5.56 (95% CI 3.92-7.89) and 8.14\n", - "Fig. 2: Expression levels of candidate genes previously associated with pyrethroid resistance in Tengrela and Vallée du Kou 5. The analysis was performed using the 2−\n", - "\n", - "\n", - "\n", - "\n", - "(95% CI 5.64-11.75) for the Olyset Plus and PermaNet 3.0, respectively, compared with 2.65 (95% CI 1.87-3.75) and 3.33 (95% CI 2.35-4.74) for the Olyset Net and PermaNet 2.0, respectively.\n", - "\n", - "header: Impact of PBO on LLIN efficacy in pyrethroid-resistant mosquitoes\n", - "\n", - "The performance of nets containing PBO as compared with pyrethroid-only nets from the same manufacturer is shown in Fig. 5. The PermaNet 3.0 deterred more mosquitoes than the PermaNet 2.0 (OR = 0.67, \\(P\\) < 0.01) (Fig. 5, Table S5), but there was no significant difference between the Olyset Plus and Olyset Net (_P_ = 0.412). The Olyset Net induced more exophily than the Olyset Plus (OR = 0.76, \\(P\\) < 0.05), but there was no significant difference in exophily between the PermaNet 2.0 and 3.0 (_P_ = 0.727) (Table S5). The PBO nets from both manufacturers considerably reduced blood feeding compared with non-PBO nets with ORs of 0.34 (_P_ < 0.001) and 0.55 (_P_ < 0.01) for the PermaNet 3.0 and Olyset Plus, respectively (Fig. 5, Table S4). In addition, the PBO nets killed significantly more _An. gambiae s.l._ than the non-PBO nets. The ORs for mortality were 2.45 (_P_ < 0.001) for the PermaNet 3.0 and 2.1 (_P_ < 0.001) for the Olyset Plus (Fig. 5, Table S5).\n", - "\n", - "header: Table 2: Frequencies of 1014F and 1575Y kdr alleles in Anopheles coluzzili, in Tengrela and Vallée du Kou 5 (VK5).\n", - "footer: Chi-squared test (http://vassarstats.net/) for the comparison of the frequency of the 1014F and 1575Y mutations in Anopheles coluzzili populations from Tengrela and VK5 (October 2014). No statistical difference was observed in the frequencies of the kdr alleles in the two sites.\n", - "columns: ['1014F mutation - Unnamed: 0_level_1', '1014F mutation - Total n', '1014F mutation - LL', '1014F mutation - LF', '1014F mutation - FF', '1014F mutation - f (1014F)', '1014F mutation - P-value']\n", - "\n", - "{\"0\":{\"1014F mutation - Unnamed: 0_level_1\":\"Tengrela\",\"1014F mutation - Total n\":\"80\",\"1014F mutation - LL\":\"2\",\"1014F mutation - LF\":\"25\",\"1014F mutation - FF\":\"53\",\"1014F mutation - f (1014F)\":\"0.819\",\"1014F mutation - P-value\":\"0.26\"},\"1\":{\"1014F mutation - Unnamed: 0_level_1\":\"VK5\",\"1014F mutation - Total n\":\"78\",\"1014F mutation - LL\":\"0\",\"1014F mutation - LF\":\"18\",\"1014F mutation - FF\":\"60\",\"1014F mutation - f (1014F)\":\"0.885\",\"1014F mutation - P-value\":null},\"2\":{\"1014F mutation - Unnamed: 0_level_1\":\"1575Y mutation\",\"1014F mutation - Total n\":\"1575Y mutation\",\"1014F mutation - LL\":\"1575Y mutation\",\"1014F mutation - LF\":\"1575Y mutation\",\"1014F mutation - FF\":\"1575Y mutation\",\"1014F mutation - f (1014F)\":\"1575Y mutation\",\"1014F mutation - P-value\":\"1575Y mutation\"},\"3\":{\"1014F mutation - Unnamed: 0_level_1\":null,\"1014F mutation - Total n\":\"Total n\",\"1014F mutation - LL\":\"NN\",\"1014F mutation - LF\":\"NY\",\"1014F mutation - FF\":\"YY\",\"1014F mutation - f (1014F)\":\"f (A575Y)\",\"1014F mutation - P-value\":\"P-value\"},\"4\":{\"1014F mutation - Unnamed: 0_level_1\":\"Tengrela\",\"1014F mutation - Total n\":\"80\",\"1014F mutation - LL\":\"57\",\"1014F mutation - LF\":\"19\",\"1014F mutation - FF\":\"4\",\"1014F mutation - f (1014F)\":\"0.169\",\"1014F mutation - P-value\":\"0.39\"},\"5\":{\"1014F mutation - Unnamed: 0_level_1\":\"VK5\",\"1014F mutation - Total n\":\"77\",\"1014F mutation - LL\":\"49\",\"1014F mutation - LF\":\"22\",\"1014F mutation - FF\":\"6\",\"1014F mutation - f (1014F)\":\"0.221\",\"1014F mutation - P-value\":null}}\n", - "\n", - "header: Introduction\n", - "\n", - "Use of the longlasting insecticidal net (LLIN) is pivotal in the fight against malaria in Africa. A massive scaling up of the distribution of this commodity has occurred over the past 15 years, with 178 million LLINs delivered for use in sub-Saharan Africa (SSA) in 2015 alone [World Health Organization (WHO), 2016]. Although reliable estimates of LLIN usage are very hard to obtain, the WHO estimates that 53% of the population at risk in SSA slept under an LLIN in 2015 [WHO, 2016]. The results have been dramatic: an estimated 450 million clinical cases of malaria were averted in the last 15 years by the use of LLINs [Bhatt _et al._, 2015].\n", - "\n", - "All LLINs in current use contain pyrethroid insecticides, but there is growing recognition that increases in the prevalence and intensity of pyrethroid resistance, driven at least in part by the scale-up in the use of LLINs, could jeopardize recent gains in malaria control [WHO, 2012]. Direct evidence that pyrethroid\n", - "resistance is reducing either the personal or community-level protection provided by LLINS is challenging to obtain (Kleinschmidt _et al._, 2015; Ranson & Lissenden, 2016), but models of malaria transmission predict that even relatively low levels of resistance can substantially reduce the public health benefits of LILINS (Churcher _et al._, 2016). In countries that rely on the LLIN as the primary malaria prevention tool, the only currently available alternatives to conventional pyrethroid-only LLINS are nets in which the synerigent piperonyl butoxide (PBO) has been included in the fibres making up all, or part, of the net. Piperonyl butoxide inhibits cytochrome P450s, which comprise one of the most important enzyme families involved in pyrethroid resistance, and exposure to PBO has been shown to reduce resistance and sometimes to restore susceptibility to pyrethroids in malaria vectors (Jones _et al._, 2013; Edi _et al._, 2014).\n", - "\n", - "Four brands of LLIN containing PBO have received interim approval from the WHO as conventional LLINS. These are the PermaNet(r) 3.0 (deltamethrin+PBO) (Vestergaard Frandsen Holding SA, Lausanne, Switzerland), the Olvest(r) Plus (permethrin+PBO) (Sumitomo Chemical Asia Pte Ltd, Health and Crop Sciences Sector, Tokyo, Japan), the Veeralin(r) (alpha cypermethrin+PBO) (VKA Polymers Pte Ltd, Karur, India) and the DawaPlus(r) (deltamethrin+PBO) (Tana Netting Co. Ltd, Dubai, U.A.E.). The benefit of the addition of PBO is only expected to manifest in areas in which mosquito populations are resistant to pyrethroids and experimental hut trials of PBO LLINS in areas of resistance have supported this prediction. Increased mosquito mortality was observed in experimental huts containing PBO LLINS compared with conventional LLINS in Ivory Coast, Benin and Burkina Faso (Corbel _et al._, 2010; Ngousso _et al._, 2010; Koudou _et al._, 2011; Pennetier _et al._, 2013) and reductions in blood feeding rates were also reported in trials in the latter two countries. All of these sites reported high levels of pyrethroid resistance.\n", - "\n", - "There has been a dramatic escalation in the strength of pyrethroid resistance in southwestern Burkina Faso since earlier trials of PBO LLINS in 2007. World Health Organization cone bioassays performed in 2012 revealed that none of the conventional LLINS were effective in killing local vector populations and that the performance of the PBO LLIN PermaNet(r) 3.0 was also compromised in these assays (Toe _et al._, 2014). Although the numbers of malaria deaths in Burkina Faso have fallen over the past 10 years, numbers of malaria cases have risen year on year despite countywide LLIN distribution campaigns [National Malaria Control Programme (NMCP), personal communication; K.H.Toe, 2017]. In order to advise the NMCP on whether a switch to PBO LLINS may be warranted to target these highly resistant populations, an experimental hut trial was undertaken in two rice-growing areas in the southwestern region of Burkina Faso.\n", - "\n", - "header: Conclusions\n", - "\n", - "The results of these experimental hit studies with entomological endpoints suggest that substituting conventional LLINs with PBO LLINs in areas where there is a high prevalence of pyrethroid resistance in local vectors may be an effective strategy to maintain the efficacy of malaria vector control. The public health benefit of this would depend on a wide range of factors, including the level of malaria endemicity, LLIN coverage rates and the predominant mosquito vectors present, but a recent modelling exercise predicts that in some settings, a switch to PBO LLINs could aver up to 0.5 clinical cases per person per year (Churcher _et al._, 2016). These predictions from models are now being evaluated in large-scale field trials. A recent study in Tanzania reported a 33% protective efficacy of PBO LLINs over conventional LLINs after 2 years of use (Protopopoff _et al._, 2018). A larger trial, involving the distribution of over 10.7 million nets in Uganda, is evaluating whether PBO nets reduce malaria prevalence under programmatic conditions ([https://www.againstmalaria.com](https://www.againstmalaria.com), [https://www.pmi.gov](https://www.pmi.gov)).\n", - "\n", - "In light of the results from experimental hit studies, including the current study, and after reviewing data from the first clinical trial of a PBO LLIN, the WHO recently made a policy recommendation that national malaria control programmes should consider deployment of PBO LLINs in areas with pyrethroid-resistant vectors (WHO, 2017). If deployed at scale, PBO LLINs may play an important role in reducing the immediate threat of pyrethroid resistance to malaria control.\n", - "\n", - "header: Experimental hut results\n", - "\n", - "In total, 12 915 specimens from four different mosquito genera were collected inside the huts (sleeping rooms and veranda traps) over the 6-week trial (Tengrela, \\(n\\) = 5808; VK5, \\(n\\) = 7107). Most specimens collected from the huts belonged to the _An. gambiae s.l._ species complex, accounting for 75.4% (_n_ = 4379) in Tengrela and 98.8% (_n_ = 7020) in VK5. The second most frequently collected _Anopheles_ species was _An. rhinorensis_, of which 49 and 19 specimens were collected in Tengrela and VK5, respectively. Other _Anopheles_ mosquito species, including _An. funestus_ (_n_ = 3), _An. nili_ (_n_ = 2) and _An. coustani_ (_n_ = 3), were collected in Tengrela. Additional mosquito taxa were also collected, including _Mansonia_ sp. (_n_ = 1330 in Tengrela and \\(n\\) = 45 in VK5), _Culex_ sp. (_n_ = 41 in Tengrela and \\(n\\) = 23 in VK5) and _Aedes_ sp. (_n_ = 1 in Tengrela) (all: Diptera: Culicidae). Because of the low numbers of other genera, only data for _An. gambiae s.l._ were included in the analysis.\n", - "\n", - "Within the total of 11 399 _An. gambiae s.l._ caught at both field sites, there was considerable variation between weeks and treatments in the numbers of mosquitoes entering the huts in both study locations (Fig. 4). The average number of mosquitoes caught per night/per hut was between 13 (PermaNet 3.0) and 20.7 (Olyset Net) mosquitoes (Table S3) and induced deterrence was found only for the Olyset Net, albeit at a low ratio of 1.31 (95% CI 1.02-1.66; \\(P\\) < 0.05) (Fig. 4).\n", - "\n", - "header: _Pyrethroid resistance in Tengrela and VK5 and associated mechanisms_: Efficacy of LLINs under laboratory conditions\n", - "\n", - "All LLINs tested showed good bio-efficacy in cone bioassays against the susceptible laboratory Kisumu strain with 60 min knock-down and 24 h mortality rates of all LLINs above the 98% and 80% WHO thresholds (WHO, 2005) (Table S1). By contrast, in tests using the field-caught mosquitoes, the mortality threshold was met only by the top panels of the PermaNet 3.0 (Fig. 3). Knock-down rates exceeded the 98% threshold for the PermaNet 3.0 in VK5 only (Table S1).\n", - "\n", - "header: Pyrethroid resistance in southwest Burkina Faso: Bio-efficacy of LLINs in cone bioassays\n", - "\n", - "The low levels of mortality observed in cone bioassays in this study are similar to those reported previously in VK7, a neighbouring village to VK5, in the Vallee du Kou rice-growing region. However, whereas the current study found that exposure to the tops of the PermaNet 3.0 nets resulted in mortality levels exceeding the WHO threshold of 80%, equivalent bioassays conducted in the VK7 population in 2012 showed mortality of only 43%. Cone bioassays are not a reliable method of comparing the performance of LLINs containing different pyrethroids because of the inherent differences in extico-repellency within this class, which can affect exposure time (Siegert _et al._, 2009). In particular, cone tests may underestimate the performance of permethrin LLINs; this is indicated by comparison of the cone bioassay results in Fig. 3, in which the Olyset Net was found to induce considerably lower mortality than the PermaNet 2.0, although experimental hut results showed similar levels of mortality in huts with these two net types (Table S3).\n", - "\n", - "Fig. 3: Mean mortality rates with binomial confidence intervals for mosquitoes collected from (A) Tengrela and (B) Vallée du Kou 5 after exposure to longlasting insecticidal nets (LLINs) for 3 min. Significant differences in mortality between pyrethroid-only and pyrethroid plus piperonyl butoxide-treated LLINs are indicated by * (_P_ < 0.001), † (_P_ < 0.0001), n.s. (non-significant, \\(\\frac{1}{2}\\) (_P_ < 0.0001) for the comparison between the sides and top of the PermaNet 3.0. Numbers in brackets are the total numbers of mosquitoes tested. [Colour figure can be viewed at wicyclonlinelibrary.com].\n", - "\n", - "\n", - "Nevertheless, the results of these cone bioassays provide further evidence that resistance can be at least partially ameliorated by exposure to PBO.\n", - "\n", - "header: Experimental hut trials\n", - "\n", - "Each station consisted of six experimental huts built according to the West African style (WHO, 2013). The study had six arms that used, respectively, five different LLINs and one net with no insecticide treatment as a negative control (Table 1). The nets were obtained from the manufacturers and were unpacked and kept in the shade for 24 h, but not washed prior to testing. Two of the nets, the OlysetPlus and PermaNet 3.0, contain PBO, whereas the other three LLINs contain only pyrethroids. The LLINs were holed according to WHO standard procedures (WHO, 2013). A total of six holes (4 cm x 4 cm) per net were cut, two on each of the long sides and one on each of the short sides.\n", - "\n", - "Study participants (male sleepers) spent 6 nights per week under a net in an experimental hut from 20.00 hours to 05.00 hours, followed by 1 day of break. The sleepers were rotated through the six huts so that each sleeper spent 1 night per week under each net type. To complete a full Latin square rotation with all combinations of sleeper, net type and hut, the study ran over 36 days from 8 September to 22 October 2014.\n", - "\n", - "Each morning at 05.00 hours, mosquitoes were collected manually by the sleepers, with supervision, from under the net, inside the hut and on the exit veranda. The collected specimens were morphologically identified to genus and, where possible, to species level (Gillies & Coetzee, 1987), grouped according to their gonotrophic stage (blood-fed, unfed or gravid), and scored as dead or alive. Live mosquitoes were transferred to paper cups, provided with 10% sugar water and kept in the insectary described above for 24 h, after which delayed mortality was recorded. All specimens were stored on silica gel for further molecular analysis.\n", - "\n", - "Data analysis was performed in the open-source statistical software R Version 3.3.2 (R Development Core Team, 2011) using the libraries 'lme4' (Bates _et al._, 2012) and 'glmADMB' (Skaug _et al._, 2012) for generalized linear mixed models (GLMMs). Plots were then generated with the package 'ggplot2' (Wickham, 2009).\n", - "\n", - "In the statistical analysis of hut trial data, in order to increase the number of replicates, give more power and increase confidence in the analysis, data collected from both sites (Tengrela and VK5) were pooled and the following four outcomes for _An. coluzzii_ were compared between the LLINs and the untreated control net, as well as between the PBO and non-PBO nets from the same manufacturer: (a) deterrence (i.e. the reduction in hut entry relative to the control or non-PBO net); (b) induced exophily (i.e. the ratio of the odds of a mosquito being found in the veranda trap compared with the hut); (c) blood feeding inhibition (i.e. the ratio of the odds of blood\n", - "\n", - "fed vs. unfed mosquitoes), and (d) induced mortality [i.e. the ratio of the odds of dead vs. alive mosquitoes] (The original dataset for _An. gambiae s.l._ is supplied in Table S2.) Immediate mortality and mortality at 24 h post-collection were combined for the analysis. Deterrence was analysed as the ratio in total numbers between the treatment arms (or PBO net) vs. the control arm (or non-PBO net). The numbers of mosquitoes in the room and the veranda were combined and analysed using a GLMM with a negative binomial distribution and a log link function using the R function 'glmandmdb()' in the 'glmmADMB' package. In the model, the net type was the fixed effect term and random intercepts were introduced for the sleeper and the hut, and a random slope for the day depending on the location. For proportional outcomes of induced exophily, blood feeding inhibition and induced mortality, the negative binomial model was replaced by a GLMM with a binomial distribution and logit link function using the R function 'glmer()' in the 'lme4' package. In the models, in addition to the terms listed above, a random intercept was introduced for each observation to account for unexplained overdispersion. For statistical testing, the level of significance was set at \\(a\\) = 0.05.\n", - "\n", - "In addition to the ratios described above, averages (i.e. the modes) and 95% confidence intervals (CIs) of the crude values underlying the outcomes were computed by the same models as above but using the individual nets as the intercept. These corresponding crude values were: (a) entry rate (i.e. the number of mosquitoes entering a hut); (b) exit rate (i.e. the number of mosquitoes collected from the veranda trap; (c) blood feeding rate (i.e. the proportion of blood-fed mosquitoes), and (d) mortality rate (i.e. the proportion of dead mosquitoes at 24 h post-collection).\n", - "\n", - "The study participants were recruited from the local communities and gave informed consent. Ethical approval was obtained from the Ethical Committee for Health Research of the Ministry of Health and Ministry of Research in Burkina Faso (Deliberation No. 2013-07-057, 11 July 2013). Malaria chemotherapy was not offered to study participants in line with Ministry of Health recommendations. However, medical supervision was provided throughout the study and any malaria case was treated according to national requirements.\n", - "\n", - "header: Materials and methods\n", - "\n", - "The experimental hut studies were carried out at two field stations in southwest Burkina Faso: the first is located in the Vallee du Kou.5 (VK5) near Bobo-Dioulasso (11*39' N, 04*41' W) and belongs to the Institut de Recherche en Science de la Sante (IRSS)/Centre MURAZ, and the second is located at Tengrela (10*40' N, 04*50' W) near Banfora and is maintained by the Centre National de Recherche et de Formation sur le Paludisme (CNRFP). These two sites are separated by approximately 120 km. Previous surveys revealed _Anopheles coluzzii_ (formerly _Anopheles gambiae s.s._ M molecular form) to be the predominant _Anopheles_ species at both sites. High levels of resistance to both DDT and pyrethroids have been reported previously at both sites (Ngufor _et al._, 2014; Toe _et al._, 2015).\n", - "\n", - "header: Study sites: Characterization of mosquito populations\n", - "\n", - "_Anopheles gambiae s.l._ larvae were collected in Tengrela and VK5 and reared to adults in local insectaries (mean relative humidity: 75+- 10%; mean temperature: 27+- 2*C). To assess susceptibility to pyrethroids, batches of approximately 25 non-blood-fed _An. gambiae s.l._ females aged 3-5 days were exposed to papers treated with 0.75% permethrin or 0.05% deltamethrin. The papers and susceptibility test kits were purchased from the Universiti Sains Malaysia (Penang, Malaysia). In parallel bioassays, mosquitoes were exposed to papers treated with 4% PBO [prepared by the Liverpool School of Tropical Medicine (LSTM)] for 1 h before they were transferred to tubes containing either insecticide-treated papers or insecticide-free papers and exposed for a further 1 h. Knock-down was recorded at the end of exposure and mortality was recorded 24 h later.\n", - "\n", - "The bio-efficacy of the LLINS was tested using non-blood-fed mosquitoes aged 3-5 days from local larval collections, and from the Kisumu susceptible laboratory strain, using the WHO cone bioassay procedure (WHO, 2013). For each LLIN type, two unwashed nets were tested under insectary conditions. Ten mosquitoes per cone were exposed for 3 min to 30 cm x 30 cm net pieces sampled from the top, the short and the long sides of the net. During exposure, the set-up was kept at an angle of 45 degrees as recommended (Owusu & Muller, 2016). Knock-down and mortality were recorded at 60 min and 24 h after exposure, respectively. Conventional LLINs were compared with PBO LLINS using Fisher's exact test (2x2 contingency table, significance level of 0.05) (http://wwwgraphpadcom/quickcales/contingency2) (Roberts & Andre, 1994).\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `EntomologicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `EntomologicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `EntomologicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}, \"Start_month\": {\"title\": \"Start Month\", \"description\": \"Numerical start month of the reporting period (some studies may report multiple time periods)\"}, \"Start_year\": {\"title\": \"Start Year\", \"description\": \"Reporting period start year (some studies may report on multiple time periods)\"}, \"End_month\": {\"title\": \"End Month\", \"description\": \"Numerical end month of the reporting period\"}, \"End_year\": {\"title\": \"End Year\", \"description\": \"Reporting period end year\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Hut trial\",\"Country\":\"Burkina Faso\",\"Site\":\"Vallee du Kou 5\",\"Start_month\":9,\"Start_year\":2014,\"End_month\":10,\"End_year\":2014},\"S02\":{\"Study_type\":\"Hut trial\",\"Country\":\"Burkina Faso\",\"Site\":\"Tengrela\",\"Start_month\":9,\"Start_year\":2014,\"End_month\":10,\"End_year\":2014}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Concentration_initial\": {\"title\": \"Insecticide concentration (initial)\", \"description\": \"Enter the initial concentration of the insecticide(s) for net type at the time of distribution.\"}, \"Net_holed\": {\"title\": \"Net Holed\", \"description\": \"Numerical count of the number of holes a net has - 0 if new and NA if not reported\\nNote - for tunnel tests there are holes that allow the mosquitoes the option of passing through to feed on the guinea pig.\"}, \"Net_age\": {\"title\": \"Net Age\", \"description\": \"Age of the net in months - if reported (some studies return to villages with nets given 1-2 years prior). When a range of net age's are given, use the midpoint in the range or the median in a distribution.\"}, \"pHI_category\": {\"title\": \"Phi Category\", \"description\": \"Classification of the nets holed surface area, as one of \\\"Good\\\", \\\"Damaged\\\", \\\"Torn\\\", \\\"Serviceable\\\", or \\\"All\\\", as proposed by WHO\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"Untreated net\",\"Net_holed\":0.0,\"Net_age\":\"NA\",\"pHI_category\":\"Good\",\"Insecticide\":null,\"Concentration_initial\":null},\"N02\":{\"Net_type\":\"Olyset Net\",\"Net_holed\":6.0,\"Net_age\":\"NA\",\"pHI_category\":\"Good\",\"Insecticide\":\"permethrin\",\"Concentration_initial\":\"8.6 x 10-4 kg\\/m2\"},\"N03\":{\"Net_type\":\"Olyset Plus\",\"Net_holed\":6.0,\"Net_age\":\"NA\",\"pHI_category\":\"Good\",\"Insecticide\":\"permethrin, PBO\",\"Concentration_initial\":\"8.6 x 10-4 kg\\/m2, 4.3 x 10-4 kg\\/m2\"},\"N04\":{\"Net_type\":\"PermaNet 2.0\",\"Net_holed\":6.0,\"Net_age\":\"NA\",\"pHI_category\":\"Good\",\"Insecticide\":\"deltamethrin\",\"Concentration_initial\":\"5.5 x 10-5 kg\\/m2\"},\"N05\":{\"Net_type\":\"PermaNet 3.0\",\"Net_holed\":6.0,\"Net_age\":\"NA\",\"pHI_category\":\"Good\",\"Insecticide\":\"deltamethrin, PBO\",\"Concentration_initial\":\"2.8 g\\/kg, 4.0 g\\/kg, 25 g\\/kg\"},\"N06\":{\"Net_type\":\"Dawa Plus 2.0\",\"Net_holed\":6.0,\"Net_age\":\"NA\",\"pHI_category\":\"Good\",\"Insecticide\":\"deltamethrin\",\"Concentration_initial\":\"8.0 x 10-5 kg\\/m2\"}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Disclaimer\n", - "\n", - "The findings and conclusions in this manuscript are those of the authors and do not necessarily represent the views of the CDC. Use of trade names is for identification only and does not imply endorsement by the Centers for Disease Control and Prevention, the Public Health Service, or the US Department of Health and Human Services.\n", - "\n", - "header: Availability of data and materials\n", - "\n", - "Data supporting the conclusions of this article are included within the article.\n", - "\n", - "header: Abbreviations\n", - "\n", - "DDT: Dichroo-diphenyl-trichloroethane; ELISA: Enzyme-linked immunosorbent Assay; IRS: Indoor residual spray; ITS: Insecticide-treated net; PBO: Piperonyl butoxide; PCR Polymerase chain reaction; WHO: World Health Organization; WHORES: World Health Organization Pesticide Evaluation Scheme.\n", - "\n", - "header: Use of nets for the study\n", - "\n", - "During the study, two types of nets (PermaNet(r) 2.0 and PermaNet(r) 3.0) with and without IRS were assessed. Moreover, an untreated net was used with IRS and untreated net without IRS was used as a negative control. Both PermaNet(r) 2.0 and PermaNet(r) 3.0 nets are treated with the pyrethroid deltamethrin, but PermaNet 3.0 has also PBO synergist. During the study, each ITN in each hut was replaced by a new replicate net every 3 weeks since the trial had no replicate huts. Eighteen holes (4 cm x 4 cm) were cut in each net purposefully to simulate a torn net [11].\n", - "\n", - "header: Indoor residual spraying (IRS)\n", - "\n", - "Actcllic(r) 300CS, a pirimiphos-methyl-based IRS insecticide, was applied to the three IRS treatment huts 1 week before the start of the trial. Pirimiphos-methyl is an organophosphate insecticide being used for IRS by the malaria elimination program of Ethiopia. During the spraying, filter papers were affixed to the wall surfaces at three heights (high, middle and low) to ensure the application was properly and uniformly applied and determine the concentration of the applied insecticide. The spray operators were trained on the spraying techniques and the wall surfaces of huts were lined with chalk to properly maintain the swath and avoid overlap following the WHO protocol.\n", - "\n", - "header: Abstract\n", - "\n", - "An experimental hut study evaluating the impact of pyrethroid-only and PBO nets alone and in combination with pirrimiphos-methyl-based IRS in Ethiopia\n", - "\n", - "Delenasaw Yevhalaw, Meshesha Balkew, Endalew Zermene, Sheleme Chibsa, Peter Mumba, Cecilia Flatley, Akiliu Seyoum, Melissa Yoshimizu, Sarah Zohdy, Dereje Dengela\n", - "\n", - "\n", - "\n", - "Pyrethroid resistance observed in populations of malaria vectors is widespread in Ethiopia and could potentially compromise the effectiveness of insecticide-based malaria vector control interventions. In this study, the impact of combining indoor residual spraying (IRS) and insecticide-treated nets (ITNs) on mosquito behaviour and mortality was evaluated using experimental huts.\n", - "\n", - "header: Wall bioassay\n", - "\n", - "Cone bioassays were conducted twice during the trial period to assess the bio-efficacy of Actclic 300CS. At each time point, three cones were fixed to the wall surfaces at three heights from the ground (high 160 cm, medium 100 cm and low 40 cm) of each hut and ten mosquitoes were used per cone with a total of 30 mosquitoes per hut, for each of the three sprayed huts and a control hut (120 mosquitoes in total). Mosquitoes were exposed for 30 min after which immediate knockdown was recorded and mortality was recorded after a 24 h holding period. Non-blood-fed, 3-5 day old adult female _Anopheles gambiae_ sensu lato (s.l.) were used for bioassays.\n", - "\n", - "The first cone bioassay was conducted 3 weeks after spray using a confirmed susceptible _An. arabiensis_ strain from Sekoru Insectary without pre-exposure to PBO synergist. The second bioassay was conducted at the end of the trial (10 weeks after spray). In the second bioassay, both susceptible _An. arabiensis_ laboratory strain from Sekoru Insectary and wild _An. gambiae_ s.l. were used. The assay was carried out with and without PBO pre-exposure for both strains. Wild populations of _An. gambiae_ s.l. used for the bioassays were raised from larvae and pupae collected from semi-permanent and permanent breeding habitats around Wolfkite area, central Ethiopia. They were reared to adults at Asendabo Field Insectary. Mosquitoes were exposed to papers treated with PBO (2%) in a WHO cylinder for 1 h.\n", - "\n", - "header: Ethics approval and consent to participate: Consent for publication\n", - "\n", - "Not applicable.\n", - "\n", - "header: Background\n", - "\n", - "Malaria is an important public health and socio-economic problem in Ethiopia. The main malaria vector in Ethiopia is _Anopheles arabiensis,_ while _Anopheles pharoetiss, Anopheles funestus_ and _Anopheles nili_ play a secondary role in malaria transmission. _Anopheles stephensi,_ a common and efficient urban malaria vector in Southeast Asia and the Mediterranean Region, has also recently been reported in Ethiopia and neighboring countries including Djibouti and Sudan [1]. There is widespread resistance to dichloro-diphenyl-trichloroethane (DDT) and pyrethroids in _An. arabiensis_ and resistance has also been detected to organophosphates in some populations. _Anopheles pharoensis_ was also reported to be highly resistant to DDT [2]. The _kdr_ mutation (L1014F) has been detected in _An. arabiensis_ from many sites, while _ace-1R_ and _kdr_ (L1014S) were not detected in all populations [3, 4, 5]. Bottle bioassay tests with _An. arabiensis_ populations from all surveyed areas of Ethiopia found resistance to both permethrin and deltamethrin. However, susceptibility to permethrin and deltamethrin was restored following pre-exposure of mosquitoes to the synergist piperonyl butoxide (PBO), indicating involvement of P450-based metabolic resistance mechanisms in the Ethiopian populations of _An. arabiensis_[6].\n", - "\n", - "Indoor residual spraying (IRS) and insecticide-treated nets (ITNs) are the main vector control interventions in Ethiopia. Ethiopia has a long history of IRS. It began spraying DDT in the late 1950s during the Malaria Eradication Programme and malathion was also used for IRS in a few areas until 2010. Deltamethrin, a pyrethroid insecticide, was used for IRS from 2009 to 2013, and since then, bendiocarb and propoxur (carbamate insecticides) and pirimihos-methyl (organophosphate insecticide) have been used for IRS in Ethiopia. The PMI VectorLink Ethiopia Project piloted the clothianidin (neonicotinoid)-based insecticides, SumiShield(r) 50WG and Fludora Fusion WP-SB, in 2020 in Menge District in the Benishangul Gumuz Region. Insecticide-treated nets have been widely distributed to households in malaria risk areas every 3 years mainly through the health extension programme [7].\n", - "\n", - "Recent studies in Tanzania showed that the impact of PBO nets could be comparable to the impact of pyrethroid-only nets when combined with IRS, and that there was no significant difference in malaria prevalence between the pyrethroid-only net + IRS and PBO net + IRS study arms [8]. This is of interest for malaria control operations in Ethiopia, as such data can inform future decisions on ITN procurements and strategic\n", - "distribution, as well as insecticide choices for IRS, which may reduce overall malaria vector control costs. In addition, it is also important to understand possible antagonistic effects of PBO and pirimiphos-methyl, as suggested by the World Health Organization (WHO), before recommending the combined use of PBO nets and pirimiphos methyl IRS for malaria control in Ethiopia.\n", - "\n", - "This study aimed at assessing the impact of the combination of currently available vector control tools (IRS, pyrethroid-only nets, and PBO nets) on mosquito behaviour, mortality and the possible antagonistic effect of PBO and pirimiphos-methyl using experimental hurts in Asendabo, Ethiopia. The hypothesis for the Ethiopia context was that the use of PBO nets in combination with IRS would better control malaria vectors than PBO nets alone and that the use of IRS in combination with pyrethroid-only nets would better control malaria vectors than pyrethroid-only nets alone.\n", - "\n", - "header: Competing interests\n", - "\n", - "We declare that we have no competing interests.\n", - "\n", - "header: Results\n", - "\n", - "The personal protection rate of huts with PermaNet(r) 2.0 alone and PermaNet(r) 3.0 alone was 33.3% and 50%, respectively. The mean killing effect of huts with PermaNet(r) 2.0 alone and PermaNet(r) 3.0 alone was 2% and 49%, respectively. Huts with PermaNet(r) 2.0 alone and PermaNet(r) 3.0 alone demonstrated significantly higher excito-repellency than the control hut. However, mosquito mortality in the hut with IRS + untreated net, hut with IRS + PermaNet(r) 2.0 and hut with IRS + PermaNet(r) 3.0 were not significantly different from each other (p > 0.05). Additionally, pre-exposure of both the susceptible _Anopheles arabiensis_ laboratory strain and wild _Anopheles gambiae_ sensu late to PBO in the cone bioassay tests of Actellite 300CS sprayed surfaces did not reduce mosquito mortality when compared to mortality without pre-exposure to PBO.\n", - "\n", - "header: Conclusion\n", - "\n", - "Mosquito mortality rates from the huts with IRS alone were similar to mosquito mortality rates from the huts with the combination of vector control intervention tools (IRS + ITNs) and mosquito mortality rates from huts with PBO nets alone were significantly higher than huts with pyrethroid-only nets. The findings of this study help inform studies to be conducted under field condition for decision-making for future selection of cost-effective vector control intervention tools.\n", - "\n", - "header: Background: Methods\n", - "\n", - "A Latin Square Design was employed using six experimental huts to collect entomological data. Human volunteers slept in huts with different types of nets (pyrethroid-only net, PBO net, and untreated net) either with or without IRS (Actallic 300CS). The hut with no IRS and an untreated net served as a negative control. The study was conducted for a total of 54 nights. Both alive and dead mosquitoes were collected from inside nets, in the central rooms and verandah the following morning. Data were analysed using Stata/SE 14.0 software package (College Station, TX, USA).\n", - "\n", - "header: Conclusion\n", - "\n", - "In this study, significantly higher mosquito mortality rates were recorded from treatment huts with IRS than huts with ITNs alone, regardless of net type. Interestingly, the hut with IRS + untreated net had similar mosquito mortality rates as huts with combinations of vector control tools (IRS + pyrethroid-only nets and IRS + PBO nets). Moreover, immediate mortality rate of mosquitoes in IRS + untreated net was significantly higher than PermaNet 2.0 and PermaNet 3.0 nets. These suggest that IRS alone provides the greatest vector control impact. Indoor residual spraying alone or in combination with ITNs offered significantly higher personal protection against mosquito bites than the control hut. Moreover, the proportion of mosquito mortality was significantly higher in huts with PBO nets than huts with pyrethroid-only nets, but remained significantly lower than the huts that received IRS. In general, the findings of this study revealed that IRS alone was as efficacious as combinations of vector tools (IRS + ITNs) for malaria vector control at least over the 9-week study period. Field studies to further assess the impact of combinations of vector tools on malaria vector control in different eco-epidemiological settings are also warranted. This study \n", - "provides additional data for considering future selection of the most appropriate vector control tools for improved malaria vector control and management of insecticide resistance. This study also indicated that there was no antagonistic effect between PBO and IRS with pirimib-phos-methyl. However, further studies may be needed to determine if there are antagonistic effects in large scale IRS applications to evaluate the efficacy of PBO vs. IRS against different resistant vector populations in Ethiopia for decision-making to deploy either PBO nets or pirimib-phos-based IRS intervention.\n", - "\n", - "header: Results\n", - "\n", - "Overall, a total of 386 mosquitoes, comprising 235 _Anopheles_ spp. (60.9%) and 151 _Culex_ spp. (39.1%), were collected during the study. Of the _Anopheles_ mosquitoes, _An. gambiae_ s.l, _An. pharoensis_ and _Anopheles__custani_ accounted for 228 (97.0%), 6 (2.6%) and 1 (0.4%), respectively. The proportion of the total _Anopheles_ mosquitoes collected from each hut is presented in Fig. 1. There were no significant differences in mean percentage of _Anopheles_ mosquitoes between the different treatment and control huts (p > 0.05).\n", - "\n", - "An immediate mosquito mortality of 100% was recorded from all three huts with IRS throughout the study period. The mean immediate mosquito mortality rates from the control, PermaNet(r) 2.0 and PermaNet(r) 3.0 huts were 13.3% (95% CI 3-23%), 20.0% (95% CI 6-33%) and 70.0% (95% CI 55-84%), respectively (Fig. 2). The immediate mosquito mortality rate from the hut with IRS + untreated net was significantly higher than the PermaNet(r) 3.0 hut (p < 0.001). Similarly, the immediate mosquito mortality rate from the hut with PermaNet(r) 3.0 was significantly higher than that from the control hut (p < 0.001) as well as the PermaNet(r) 2.0 (p < 0.001) hut. The mosquito mortality rate from the PermaNet(r) 2.0 hut was not significantly different from that of the control hut (p = 0.4). On average the killing effect of PermaNet(r) 2.0 and PermaNet(r) 3.0 compared to the untreated net were 2.2% and 48.9%, respectively. The killing effects in the huts with PermaNet(r) 2.0 and PermaNet(r) 3.0 increased to 60.0% and 75.5% when combined with IRS. Delayed mosquito mortality rates of 14.3% and 41.7% were recorded from huts with PermaNet(r) 2.0 and PermaNet(r) 3.0, respectively.\n", - "\n", - "Of the 50 sub-samples of _An. gambiae_ s.l. analysed using species-specific PCR, 46 (92%) were identified as _An. arabiensis_ and four mosquito samples failed to amplify. The blood-feeding rate of the _Anopheles_\n", - "\n", - "Fig. 1: Proportion of mosquitoes collected that were _Anopheles_ spp. in each experimental hut, Asendabo, Ethiopia. Control is no IRS and untreated net \n", - "collected from each of the huts is presented in Fig. 3. Overall, 26 of the _Anopheles_ (11.1%) were blood-fed upon collection. Of the fed mosquitoes, human, bovine and mixed human/bovine blood were detected in 14 (53.9%), 2 (7.7%), 5 (19.2%) of the specimens, respectively. Blood meals from the remaining 5 (19.2%) of the specimens were unidentified. The overall proportion of human blood-fed _Anopheles_ was 73.1% (n = 19). The personal protection rates of PermaNet(r) 2.0 and PermaNet(r) 3.0 nets were 33.3% and 50%, respectively. When combined with IRS, the personal protection rate of PermaNet(r) 2.0 increased to 83.3% while the personal protection rate of PermaNet(r) 2.0 decreased to 83.3%.\n", - "\n", - "\n", - "\n", - "The personal protection rate of PermaNet(r)\n", - "\n", - "\n", - "PernaNet(r) 3.0 remained the same (50%). The proportions of human blood-fed _Anopheles_ collected from the control, PernaNet(r) 2.0, PernaNet(r) 3.0 and combined IRS-treated huts were 13.3% (95% CI 3.4-23.3), 11.4% (95% CI 0.9-22.0), 7.5% (95% CI 0.0-15.7) and 5.2% (95% CI 1.2-9.3), respectively.\n", - "\n", - "Overall, the majority of _Anopheles_ were collected from the rooms of the huts. The proportions of _Anopheles_ collected from the verandah of the IRS-treated and the control huts were 16.5% and 13.3%, respectively (Fig. 4). The proportion of _Anopheles_ collected from verandah of a hut with PernaNet(r) 2.0 was significantly higher than the proportion of _Anopheles_ collected from the control hut (p = 0.02).\n", - "\n", - "The mean knockdown rates of the susceptible _An. arabiensis_ laboratory strain in the bioassays conducted 3 weeks post-spray were 20.2% and 2.9% in the IRS-treated and control huts, respectively. The mean 24 h mortality rates from IRS-treated and control huts were 100% and 2.9%, respectively (Fig. 5).\n", - "\n", - "The combined mean 30 min knockdown rate of the _An. arabiensis_ laboratory strain and wild population of _An. gambiae_ s.l. exposed to IRS-treated huts 10 weeks post-spray, with and without pre-exposure to PBO, was 1.1% (Fig. 6). The 24 h mortality rate of the _An. arabiensis_ laboratory strain and wild population of _An. gambiae_ s.l. at 10 weeks post-spray which were exposed to IRS-treated hut wall surfaces were 100%, irrespective of pre-exposure of mosquitoes to PBO.\n", - "\n", - "header: Blood meal host source analysis and mosquito identification\n", - "\n", - "All the fed mosquitoes collected from the different huts were assayed to determine the blood meal host source using direct ELISA [13]. Moreover, a sub-sample of _An. gambiae_ s.l. was also molecularly identified to species using species-specific PCR following established protocol [14].\n", - "\n", - "header: Data analysis\n", - "\n", - "Data from the five treatment huts were compared with data from the control hut to determine the insecticidal effects on the variables listed above.\n", - "\n", - "Personal protection, killing effect, and exophily were estimated using the following formulas [9, 11].\n", - "\n", - "\\[\\text{Personal protection }(\\%) = 100 \\times (B_{u} - B_{t} )/B_{u} ;\\]\n", - "\n", - "where \\(B_{t}\\) is the total number of freshly blood-fed mosquitoes in the huts with treated nets. \\(B_{u}\\) is the total number of freshly blood-fed mosquitoes in the huts with untreated nets.\n", - "\n", - "\\[\\text{Killing effect }(\\%) = 100 \\times (K_{t} - K_{u} )/T_{u} ;\\]\n", - "\n", - "where \\(K_{t}\\) is number of mosquitoes killed (immediate) in the huts with treated nets. \\(K_{u}\\) is number of mosquitoes killed (immediate) in the huts with untreated nets. \\(T_{u}\\) is the total number of mosquitoes collected from the huts with untreated nets.\n", - "\n", - "\n", - "Exophily (%) = (E_v/Et) x 100;\n", - "\n", - "where Ev is the number of mosquitoes found in verandah. Et is the total number of mosquitoes found inside the hut and verandah\n", - "\n", - "For all three parameters, mosquito entry was estimated by adding the number of dead and alive mosquitoes observed inside the hut and the verandah. Estimates of personal protection and killing effect were determined using mosquitoes from all collection nights.\n", - "\n", - "To test differences in mean mosquito density in each of the treatment huts, ANOVA was employed after log-transformation of non-normal distributed mosquito count data. T-tests were employed to determine the differences in mean proportions of blood-fed mosquitoes and mosquitoes exiting early from the different test huts and control hut.\n", - "\n", - "In all analyses, the hut with the untreated net and without IRS was used as a negative control, but comparisons were made between all treatment groups. In all analyses, individual huts and sleepers were included in the models as random effects.\n", - "\n", - "header: Discussion\n", - "\n", - "Malaria vector control interventions have been intensified over the last decade in Ethiopia resulting in remarkable progress, with a reduction in children under-five mortality rates from 123 deaths per 1000 live births in 2005 to 55 deaths per 1000 live births in 2019 [15]. The vector control activities including mass-distribution/replacement of ITNs every 3 years in accordance with WHO recommendations and deployment of IRS in targeted areas appear to have played vital roles in the successes obtained in malaria control in Ethiopia [16]. However, malaria still remains a public health challenge in the country, where an estimated 52% of the population lives in areas at risk of malaria. With the successes gained in malaria control, a national malaria elimination goal is set for 2030 [17]. This study evaluated the impact of combining currently available vector control tools on mosquito behaviour and mortality.\n", - "\n", - "Compared to PernaNet(r) 2.0, PernaNet(r) 3.0 is impregnated with a higher concentration of deltamethrin and the roof panel is treated with both deltamethrin and PBO. The higher killing effect of PernaNet(r) 3.0 compared to PernaNet(r) 2.0 in this study could be attributed to the presence of the PBO synergist on the roof panel of the net and/or higher dosage of deltamethrin in the net. The synergist PBO works to inhibit P450 detoxification of pyrethroid insecticides and can result in partial or complete restoration of susceptibility to certain pyrethroids, such as deltamethrin, hence enhancing efficacy of the insecticides [18]. The role of PBO in affecting susceptibility in both wild and laboratory strain mosquitoes exposed to Actellite(r) 300CS\n", - "\n", - "Fig. 4: Proportion of _Anopheles_ collected from inside nets, rooms and verandahs of different experimental huts, Asendabo, Ethiopia \n", - "sprayed walls could not be determined as mortality rates in all IRS treatment huts were 100%. PBO nets have been shown to provide high levels of protection against _An. gambiae_ in a recent experimental hut trial in Cote d'Ivoire [19]. Moreover, the improved protective role of PBO nets on malaria prevalence was also documented in Uganda [20]. Personal protective efficacy of PBO nets may also last longer compared to the standard nets [21]. PBO nets are particularly important as a malaria control tool in areas where the protection against PBO is not a viable alternative to the standard nets.\n", - "\n", - "Fig. 5: Mean 30 min knockdown and 24 h mortality rates of the susceptible _An. arabiensis_ laboratory strain following wall bioassays 3 weeks after ActeIlic 300CS spraying, Asendabo, Ethiopia\n", - "\n", - "Fig. 6: Mean 30 min knockdown and 24 h mortality rates of the susceptible _An. arabiensis_ laboratory strain and wild _An. gambiae_ s.l. (with and without pre-exposure to PBO) following wall bioassays 10 weeks after IRS using ActeIlic 300CS, Asendabo, Ethiopia \n", - "pyrethroid resistance is high in the vector populations [22] and is, therefore, under consideration for more widespread distribution in Ethiopia. Despite these added advantages of PBO nets, the cost is currently higher than pyrethroid nets which may limit their wider use in malaria vector control in malaria endemic areas. Additionally, this study provides an example of a setting with high levels of pyrethroid resistance where PBO nets may not be sufficient.\n", - "\n", - "The proportion of _Anopheles_ retrieved from the verandah of huts with both PermaNet 2.0 and PermaNet 3.0 was higher than those from the verandah of the control hut. Huts with PermaNet 2.0 induced significantly higher exito-repellency compared to control huts. Insecticides often induce toxicity to mosquitoes. However, the non-toxic 'exito-repellent' effects of insecticides are often less understood. Pyrethroid and organophosphate insecticides are also known to have these non-killing effects. The impact of the non-killing effects of the insecticides on the risk of malaria is not clearly understood. Though exito-repellency appears to reduce indoor human-vector contact, it may on the contrary enhance risk of outdoor mosquito biting [23].\n", - "\n", - "The role of IRS as a key malaria vector control intervention tool is evident. Immediate mortality was observed in mosquitoes collected from the three huts sprayed with Actellic(r) 300CS up to the end of the study at 10 weeks post-spray. The proportion of blood-fed _Anopheles_ was significantly lower in the IRS-treated huts compared to the control hut. This could be due to the fast-acting nature of Actellic(r) 300CS insecticide with both contact and fumigant effects. This shows the potential of Actellic(r) 300CS as an insecticide of choice for IRS in areas where the local vector population is susceptible to the insecticide. _Anopheles arabiensis_ is susceptible to pirimibos-methyl in most parts of Ethiopia [10, 24]. Some earlier studies conducted in Ethiopia showed the effectiveness of combining IRS with ITNs compared to ITNs alone in suppressing vector populations [25]. Added benefits of combining IRS and ITNs in malaria prevention was also reported from other areas in sub-Saharan Africa [26-28]. In contrast, limited or no added benefit of combining IRS with ITNs as compared to ITNs alone has been reported elsewhere [29, 30]. This inconsistency could be attributed to differences in the intensity of malaria transmission and insecticide resistance of the local vector populations. The impact of the combined use of available vector control interventions appears to be more pronounced when applied in high transmission areas, and where the local vector populations are susceptible to the insecticide used for the IRS component [25].\n", - "\n", - "The importance of combining IRS and ITNs for malaria vector control is believed partly to come from the low or inconsistent utilization of ITNs by users and short residual efficacy of IRS insecticides [31, 32]. In Ethiopia, household surveys have shown approximately 50% of children under five and pregnant women use their nets with geographic variation [33]. The gap often created as a result of low utilization of ITNs may be complemented with IRS. ITN utilization and care depends on personal decisions and behavior [34]. However, once properly implemented, IRS rapidly suppresses local vector populations with no additional behaviors required from the residents, hence reducing malaria incidence [35]. However, effectiveness of IRS for malaria vector control is highly affected by both physiological and behavioral resistance of the local vector population to the insecticide [36], apart from operational factors and higher costs.\n", - "\n", - "As the study was conducted during the dry season of the year, the mosquito population density was not high and, therefore, limits the generalizability of the results. However, the findings of this study could provide preliminary information for vector control programs for the rational choice of future vector control intervention tools. In addition, combining indoor residual spraying using pirimibos-methyl with PBO nets has been reported to be antagonistic in some studies, but a negative interaction or antagonism between PBO and pirimibos-methyl was not detected in this study.\n", - "\n", - "header: Variables\n", - "\n", - "Four study outcomes measured were:\n", - "\n", - "1. Deterrence--the reduction in hut entry by mosquitoes in treatment huts relative to the control hut (hut with untreated net and no IRS).\n", - "2. Exophily--the proportion of mosquitoes found resting on the walls of the verandah.\n", - "3. Blood-feeding inhibition--the reduction in blood-feeding in treatment huts in comparison with control hut (hut with untreated net and no IRS).\n", - "4. Immediate and delayed mortality--the proportion of mosquitoes entering the hut that were dead in the morning (immediate mortality) or after being caught alive and held for 24 h with access to a sugar solution (delayed mortality).\n", - "\n", - "header: Methods\n", - "\n", - "The study was conducted using six experimental huts located at Asendabo, Jimma Zone, Oromia Regional State, Ethiopia, located between latitudes 7\" 42' 50\" N and 07\" 53' 50\" N and longitudes 37\" 11' 22\" E and 37\" 20' 36\" E, at altitudes ranging from 1672 to 1864 m above sea level. The huts were used previously for evaluation of vector control tools [9], but the roofs, walls, floors, ceilings and verandahs of each hut were completely renovated for use in this study. The huts are located approximately 0.3 km from the reservoir shore of Gilgel Gibe hydroelectric power dam in Nada District, Oromia Regional State, Ethiopia. Earlier work showed that _An. arabiensis_ population from the study area was resistant to DDT, pyrethroids and malathion, while they were susceptible to primiphos-methyl and some of the carbamates used in malaria vector control [10].\n", - "\n", - "The six treatments in this study included:\n", - "\n", - "1. Control hut (no IRS, untreated net only).\n", - "2. Hut with PermaNet(r) 2.0 (deltamethrin) only (no IRS).\n", - "3. Hut with PermaNet(r) 3.0 (deltamethrin with PBO) only (no IRS).\n", - "4. Hut sprayed with Actcllic 300CS (1 g/m2) and untreated net.\n", - "5. Hut sprayed with Actcllic 300CS (1 g/m2) and PermaNet(r) 2.0.\n", - "6. Hut sprayed with Actcllic 300CS (1 g/m2) and PermaNet(r) 3.0.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ITNCondition` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Disclaimer\n", - "\n", - "The findings and conclusions in this manuscript are those of the authors and do not necessarily represent the views of the CDC. Use of trade names is for identification only and does not imply endorsement by the Centers for Disease Control and Prevention, the Public Health Service, or the US Department of Health and Human Services.\n", - "\n", - "header: Availability of data and materials\n", - "\n", - "Data supporting the conclusions of this article are included within the article.\n", - "\n", - "header: Indoor residual spraying (IRS)\n", - "\n", - "Actcllic(r) 300CS, a pirimiphos-methyl-based IRS insecticide, was applied to the three IRS treatment huts 1 week before the start of the trial. Pirimiphos-methyl is an organophosphate insecticide being used for IRS by the malaria elimination program of Ethiopia. During the spraying, filter papers were affixed to the wall surfaces at three heights (high, middle and low) to ensure the application was properly and uniformly applied and determine the concentration of the applied insecticide. The spray operators were trained on the spraying techniques and the wall surfaces of huts were lined with chalk to properly maintain the swath and avoid overlap following the WHO protocol.\n", - "\n", - "header: Wall bioassay\n", - "\n", - "Cone bioassays were conducted twice during the trial period to assess the bio-efficacy of Actclic 300CS. At each time point, three cones were fixed to the wall surfaces at three heights from the ground (high 160 cm, medium 100 cm and low 40 cm) of each hut and ten mosquitoes were used per cone with a total of 30 mosquitoes per hut, for each of the three sprayed huts and a control hut (120 mosquitoes in total). Mosquitoes were exposed for 30 min after which immediate knockdown was recorded and mortality was recorded after a 24 h holding period. Non-blood-fed, 3-5 day old adult female _Anopheles gambiae_ sensu lato (s.l.) were used for bioassays.\n", - "\n", - "The first cone bioassay was conducted 3 weeks after spray using a confirmed susceptible _An. arabiensis_ strain from Sekoru Insectary without pre-exposure to PBO synergist. The second bioassay was conducted at the end of the trial (10 weeks after spray). In the second bioassay, both susceptible _An. arabiensis_ laboratory strain from Sekoru Insectary and wild _An. gambiae_ s.l. were used. The assay was carried out with and without PBO pre-exposure for both strains. Wild populations of _An. gambiae_ s.l. used for the bioassays were raised from larvae and pupae collected from semi-permanent and permanent breeding habitats around Wolfkite area, central Ethiopia. They were reared to adults at Asendabo Field Insectary. Mosquitoes were exposed to papers treated with PBO (2%) in a WHO cylinder for 1 h.\n", - "\n", - "header: Ethics approval and consent to participate: Consent for publication\n", - "\n", - "Not applicable.\n", - "\n", - "header: Abbreviations\n", - "\n", - "DDT: Dichroo-diphenyl-trichloroethane; ELISA: Enzyme-linked immunosorbent Assay; IRS: Indoor residual spray; ITS: Insecticide-treated net; PBO: Piperonyl butoxide; PCR Polymerase chain reaction; WHO: World Health Organization; WHORES: World Health Organization Pesticide Evaluation Scheme.\n", - "\n", - "header: Background\n", - "\n", - "Malaria is an important public health and socio-economic problem in Ethiopia. The main malaria vector in Ethiopia is _Anopheles arabiensis,_ while _Anopheles pharoetiss, Anopheles funestus_ and _Anopheles nili_ play a secondary role in malaria transmission. _Anopheles stephensi,_ a common and efficient urban malaria vector in Southeast Asia and the Mediterranean Region, has also recently been reported in Ethiopia and neighboring countries including Djibouti and Sudan [1]. There is widespread resistance to dichloro-diphenyl-trichloroethane (DDT) and pyrethroids in _An. arabiensis_ and resistance has also been detected to organophosphates in some populations. _Anopheles pharoensis_ was also reported to be highly resistant to DDT [2]. The _kdr_ mutation (L1014F) has been detected in _An. arabiensis_ from many sites, while _ace-1R_ and _kdr_ (L1014S) were not detected in all populations [3, 4, 5]. Bottle bioassay tests with _An. arabiensis_ populations from all surveyed areas of Ethiopia found resistance to both permethrin and deltamethrin. However, susceptibility to permethrin and deltamethrin was restored following pre-exposure of mosquitoes to the synergist piperonyl butoxide (PBO), indicating involvement of P450-based metabolic resistance mechanisms in the Ethiopian populations of _An. arabiensis_[6].\n", - "\n", - "Indoor residual spraying (IRS) and insecticide-treated nets (ITNs) are the main vector control interventions in Ethiopia. Ethiopia has a long history of IRS. It began spraying DDT in the late 1950s during the Malaria Eradication Programme and malathion was also used for IRS in a few areas until 2010. Deltamethrin, a pyrethroid insecticide, was used for IRS from 2009 to 2013, and since then, bendiocarb and propoxur (carbamate insecticides) and pirimihos-methyl (organophosphate insecticide) have been used for IRS in Ethiopia. The PMI VectorLink Ethiopia Project piloted the clothianidin (neonicotinoid)-based insecticides, SumiShield(r) 50WG and Fludora Fusion WP-SB, in 2020 in Menge District in the Benishangul Gumuz Region. Insecticide-treated nets have been widely distributed to households in malaria risk areas every 3 years mainly through the health extension programme [7].\n", - "\n", - "Recent studies in Tanzania showed that the impact of PBO nets could be comparable to the impact of pyrethroid-only nets when combined with IRS, and that there was no significant difference in malaria prevalence between the pyrethroid-only net + IRS and PBO net + IRS study arms [8]. This is of interest for malaria control operations in Ethiopia, as such data can inform future decisions on ITN procurements and strategic\n", - "distribution, as well as insecticide choices for IRS, which may reduce overall malaria vector control costs. In addition, it is also important to understand possible antagonistic effects of PBO and pirimiphos-methyl, as suggested by the World Health Organization (WHO), before recommending the combined use of PBO nets and pirimiphos methyl IRS for malaria control in Ethiopia.\n", - "\n", - "This study aimed at assessing the impact of the combination of currently available vector control tools (IRS, pyrethroid-only nets, and PBO nets) on mosquito behaviour, mortality and the possible antagonistic effect of PBO and pirimiphos-methyl using experimental hurts in Asendabo, Ethiopia. The hypothesis for the Ethiopia context was that the use of PBO nets in combination with IRS would better control malaria vectors than PBO nets alone and that the use of IRS in combination with pyrethroid-only nets would better control malaria vectors than pyrethroid-only nets alone.\n", - "\n", - "header: Abstract\n", - "\n", - "An experimental hut study evaluating the impact of pyrethroid-only and PBO nets alone and in combination with pirrimiphos-methyl-based IRS in Ethiopia\n", - "\n", - "Delenasaw Yevhalaw, Meshesha Balkew, Endalew Zermene, Sheleme Chibsa, Peter Mumba, Cecilia Flatley, Akiliu Seyoum, Melissa Yoshimizu, Sarah Zohdy, Dereje Dengela\n", - "\n", - "\n", - "\n", - "Pyrethroid resistance observed in populations of malaria vectors is widespread in Ethiopia and could potentially compromise the effectiveness of insecticide-based malaria vector control interventions. In this study, the impact of combining indoor residual spraying (IRS) and insecticide-treated nets (ITNs) on mosquito behaviour and mortality was evaluated using experimental huts.\n", - "\n", - "header: Use of nets for the study\n", - "\n", - "During the study, two types of nets (PermaNet(r) 2.0 and PermaNet(r) 3.0) with and without IRS were assessed. Moreover, an untreated net was used with IRS and untreated net without IRS was used as a negative control. Both PermaNet(r) 2.0 and PermaNet(r) 3.0 nets are treated with the pyrethroid deltamethrin, but PermaNet 3.0 has also PBO synergist. During the study, each ITN in each hut was replaced by a new replicate net every 3 weeks since the trial had no replicate huts. Eighteen holes (4 cm x 4 cm) were cut in each net purposefully to simulate a torn net [11].\n", - "\n", - "header: Results\n", - "\n", - "The personal protection rate of huts with PermaNet(r) 2.0 alone and PermaNet(r) 3.0 alone was 33.3% and 50%, respectively. The mean killing effect of huts with PermaNet(r) 2.0 alone and PermaNet(r) 3.0 alone was 2% and 49%, respectively. Huts with PermaNet(r) 2.0 alone and PermaNet(r) 3.0 alone demonstrated significantly higher excito-repellency than the control hut. However, mosquito mortality in the hut with IRS + untreated net, hut with IRS + PermaNet(r) 2.0 and hut with IRS + PermaNet(r) 3.0 were not significantly different from each other (p > 0.05). Additionally, pre-exposure of both the susceptible _Anopheles arabiensis_ laboratory strain and wild _Anopheles gambiae_ sensu late to PBO in the cone bioassay tests of Actellite 300CS sprayed surfaces did not reduce mosquito mortality when compared to mortality without pre-exposure to PBO.\n", - "\n", - "header: Conclusion\n", - "\n", - "In this study, significantly higher mosquito mortality rates were recorded from treatment huts with IRS than huts with ITNs alone, regardless of net type. Interestingly, the hut with IRS + untreated net had similar mosquito mortality rates as huts with combinations of vector control tools (IRS + pyrethroid-only nets and IRS + PBO nets). Moreover, immediate mortality rate of mosquitoes in IRS + untreated net was significantly higher than PermaNet 2.0 and PermaNet 3.0 nets. These suggest that IRS alone provides the greatest vector control impact. Indoor residual spraying alone or in combination with ITNs offered significantly higher personal protection against mosquito bites than the control hut. Moreover, the proportion of mosquito mortality was significantly higher in huts with PBO nets than huts with pyrethroid-only nets, but remained significantly lower than the huts that received IRS. In general, the findings of this study revealed that IRS alone was as efficacious as combinations of vector tools (IRS + ITNs) for malaria vector control at least over the 9-week study period. Field studies to further assess the impact of combinations of vector tools on malaria vector control in different eco-epidemiological settings are also warranted. This study \n", - "provides additional data for considering future selection of the most appropriate vector control tools for improved malaria vector control and management of insecticide resistance. This study also indicated that there was no antagonistic effect between PBO and IRS with pirimib-phos-methyl. However, further studies may be needed to determine if there are antagonistic effects in large scale IRS applications to evaluate the efficacy of PBO vs. IRS against different resistant vector populations in Ethiopia for decision-making to deploy either PBO nets or pirimib-phos-based IRS intervention.\n", - "\n", - "header: Conclusion\n", - "\n", - "Mosquito mortality rates from the huts with IRS alone were similar to mosquito mortality rates from the huts with the combination of vector control intervention tools (IRS + ITNs) and mosquito mortality rates from huts with PBO nets alone were significantly higher than huts with pyrethroid-only nets. The findings of this study help inform studies to be conducted under field condition for decision-making for future selection of cost-effective vector control intervention tools.\n", - "\n", - "header: Competing interests\n", - "\n", - "We declare that we have no competing interests.\n", - "\n", - "header: Blood meal host source analysis and mosquito identification\n", - "\n", - "All the fed mosquitoes collected from the different huts were assayed to determine the blood meal host source using direct ELISA [13]. Moreover, a sub-sample of _An. gambiae_ s.l. was also molecularly identified to species using species-specific PCR following established protocol [14].\n", - "\n", - "header: Results\n", - "\n", - "Overall, a total of 386 mosquitoes, comprising 235 _Anopheles_ spp. (60.9%) and 151 _Culex_ spp. (39.1%), were collected during the study. Of the _Anopheles_ mosquitoes, _An. gambiae_ s.l, _An. pharoensis_ and _Anopheles__custani_ accounted for 228 (97.0%), 6 (2.6%) and 1 (0.4%), respectively. The proportion of the total _Anopheles_ mosquitoes collected from each hut is presented in Fig. 1. There were no significant differences in mean percentage of _Anopheles_ mosquitoes between the different treatment and control huts (p > 0.05).\n", - "\n", - "An immediate mosquito mortality of 100% was recorded from all three huts with IRS throughout the study period. The mean immediate mosquito mortality rates from the control, PermaNet(r) 2.0 and PermaNet(r) 3.0 huts were 13.3% (95% CI 3-23%), 20.0% (95% CI 6-33%) and 70.0% (95% CI 55-84%), respectively (Fig. 2). The immediate mosquito mortality rate from the hut with IRS + untreated net was significantly higher than the PermaNet(r) 3.0 hut (p < 0.001). Similarly, the immediate mosquito mortality rate from the hut with PermaNet(r) 3.0 was significantly higher than that from the control hut (p < 0.001) as well as the PermaNet(r) 2.0 (p < 0.001) hut. The mosquito mortality rate from the PermaNet(r) 2.0 hut was not significantly different from that of the control hut (p = 0.4). On average the killing effect of PermaNet(r) 2.0 and PermaNet(r) 3.0 compared to the untreated net were 2.2% and 48.9%, respectively. The killing effects in the huts with PermaNet(r) 2.0 and PermaNet(r) 3.0 increased to 60.0% and 75.5% when combined with IRS. Delayed mosquito mortality rates of 14.3% and 41.7% were recorded from huts with PermaNet(r) 2.0 and PermaNet(r) 3.0, respectively.\n", - "\n", - "Of the 50 sub-samples of _An. gambiae_ s.l. analysed using species-specific PCR, 46 (92%) were identified as _An. arabiensis_ and four mosquito samples failed to amplify. The blood-feeding rate of the _Anopheles_\n", - "\n", - "Fig. 1: Proportion of mosquitoes collected that were _Anopheles_ spp. in each experimental hut, Asendabo, Ethiopia. Control is no IRS and untreated net \n", - "collected from each of the huts is presented in Fig. 3. Overall, 26 of the _Anopheles_ (11.1%) were blood-fed upon collection. Of the fed mosquitoes, human, bovine and mixed human/bovine blood were detected in 14 (53.9%), 2 (7.7%), 5 (19.2%) of the specimens, respectively. Blood meals from the remaining 5 (19.2%) of the specimens were unidentified. The overall proportion of human blood-fed _Anopheles_ was 73.1% (n = 19). The personal protection rates of PermaNet(r) 2.0 and PermaNet(r) 3.0 nets were 33.3% and 50%, respectively. When combined with IRS, the personal protection rate of PermaNet(r) 2.0 increased to 83.3% while the personal protection rate of PermaNet(r) 2.0 decreased to 83.3%.\n", - "\n", - "\n", - "\n", - "The personal protection rate of PermaNet(r)\n", - "\n", - "\n", - "PernaNet(r) 3.0 remained the same (50%). The proportions of human blood-fed _Anopheles_ collected from the control, PernaNet(r) 2.0, PernaNet(r) 3.0 and combined IRS-treated huts were 13.3% (95% CI 3.4-23.3), 11.4% (95% CI 0.9-22.0), 7.5% (95% CI 0.0-15.7) and 5.2% (95% CI 1.2-9.3), respectively.\n", - "\n", - "Overall, the majority of _Anopheles_ were collected from the rooms of the huts. The proportions of _Anopheles_ collected from the verandah of the IRS-treated and the control huts were 16.5% and 13.3%, respectively (Fig. 4). The proportion of _Anopheles_ collected from verandah of a hut with PernaNet(r) 2.0 was significantly higher than the proportion of _Anopheles_ collected from the control hut (p = 0.02).\n", - "\n", - "The mean knockdown rates of the susceptible _An. arabiensis_ laboratory strain in the bioassays conducted 3 weeks post-spray were 20.2% and 2.9% in the IRS-treated and control huts, respectively. The mean 24 h mortality rates from IRS-treated and control huts were 100% and 2.9%, respectively (Fig. 5).\n", - "\n", - "The combined mean 30 min knockdown rate of the _An. arabiensis_ laboratory strain and wild population of _An. gambiae_ s.l. exposed to IRS-treated huts 10 weeks post-spray, with and without pre-exposure to PBO, was 1.1% (Fig. 6). The 24 h mortality rate of the _An. arabiensis_ laboratory strain and wild population of _An. gambiae_ s.l. at 10 weeks post-spray which were exposed to IRS-treated hut wall surfaces were 100%, irrespective of pre-exposure of mosquitoes to PBO.\n", - "\n", - "header: Variables\n", - "\n", - "Four study outcomes measured were:\n", - "\n", - "1. Deterrence--the reduction in hut entry by mosquitoes in treatment huts relative to the control hut (hut with untreated net and no IRS).\n", - "2. Exophily--the proportion of mosquitoes found resting on the walls of the verandah.\n", - "3. Blood-feeding inhibition--the reduction in blood-feeding in treatment huts in comparison with control hut (hut with untreated net and no IRS).\n", - "4. Immediate and delayed mortality--the proportion of mosquitoes entering the hut that were dead in the morning (immediate mortality) or after being caught alive and held for 24 h with access to a sugar solution (delayed mortality).\n", - "\n", - "header: Background: Methods\n", - "\n", - "A Latin Square Design was employed using six experimental huts to collect entomological data. Human volunteers slept in huts with different types of nets (pyrethroid-only net, PBO net, and untreated net) either with or without IRS (Actallic 300CS). The hut with no IRS and an untreated net served as a negative control. The study was conducted for a total of 54 nights. Both alive and dead mosquitoes were collected from inside nets, in the central rooms and verandah the following morning. Data were analysed using Stata/SE 14.0 software package (College Station, TX, USA).\n", - "\n", - "header: Data analysis\n", - "\n", - "Data from the five treatment huts were compared with data from the control hut to determine the insecticidal effects on the variables listed above.\n", - "\n", - "Personal protection, killing effect, and exophily were estimated using the following formulas [9, 11].\n", - "\n", - "\\[\\text{Personal protection }(\\%) = 100 \\times (B_{u} - B_{t} )/B_{u} ;\\]\n", - "\n", - "where \\(B_{t}\\) is the total number of freshly blood-fed mosquitoes in the huts with treated nets. \\(B_{u}\\) is the total number of freshly blood-fed mosquitoes in the huts with untreated nets.\n", - "\n", - "\\[\\text{Killing effect }(\\%) = 100 \\times (K_{t} - K_{u} )/T_{u} ;\\]\n", - "\n", - "where \\(K_{t}\\) is number of mosquitoes killed (immediate) in the huts with treated nets. \\(K_{u}\\) is number of mosquitoes killed (immediate) in the huts with untreated nets. \\(T_{u}\\) is the total number of mosquitoes collected from the huts with untreated nets.\n", - "\n", - "\n", - "Exophily (%) = (E_v/Et) x 100;\n", - "\n", - "where Ev is the number of mosquitoes found in verandah. Et is the total number of mosquitoes found inside the hut and verandah\n", - "\n", - "For all three parameters, mosquito entry was estimated by adding the number of dead and alive mosquitoes observed inside the hut and the verandah. Estimates of personal protection and killing effect were determined using mosquitoes from all collection nights.\n", - "\n", - "To test differences in mean mosquito density in each of the treatment huts, ANOVA was employed after log-transformation of non-normal distributed mosquito count data. T-tests were employed to determine the differences in mean proportions of blood-fed mosquitoes and mosquitoes exiting early from the different test huts and control hut.\n", - "\n", - "In all analyses, the hut with the untreated net and without IRS was used as a negative control, but comparisons were made between all treatment groups. In all analyses, individual huts and sleepers were included in the models as random effects.\n", - "\n", - "header: Discussion\n", - "\n", - "Malaria vector control interventions have been intensified over the last decade in Ethiopia resulting in remarkable progress, with a reduction in children under-five mortality rates from 123 deaths per 1000 live births in 2005 to 55 deaths per 1000 live births in 2019 [15]. The vector control activities including mass-distribution/replacement of ITNs every 3 years in accordance with WHO recommendations and deployment of IRS in targeted areas appear to have played vital roles in the successes obtained in malaria control in Ethiopia [16]. However, malaria still remains a public health challenge in the country, where an estimated 52% of the population lives in areas at risk of malaria. With the successes gained in malaria control, a national malaria elimination goal is set for 2030 [17]. This study evaluated the impact of combining currently available vector control tools on mosquito behaviour and mortality.\n", - "\n", - "Compared to PernaNet(r) 2.0, PernaNet(r) 3.0 is impregnated with a higher concentration of deltamethrin and the roof panel is treated with both deltamethrin and PBO. The higher killing effect of PernaNet(r) 3.0 compared to PernaNet(r) 2.0 in this study could be attributed to the presence of the PBO synergist on the roof panel of the net and/or higher dosage of deltamethrin in the net. The synergist PBO works to inhibit P450 detoxification of pyrethroid insecticides and can result in partial or complete restoration of susceptibility to certain pyrethroids, such as deltamethrin, hence enhancing efficacy of the insecticides [18]. The role of PBO in affecting susceptibility in both wild and laboratory strain mosquitoes exposed to Actellite(r) 300CS\n", - "\n", - "Fig. 4: Proportion of _Anopheles_ collected from inside nets, rooms and verandahs of different experimental huts, Asendabo, Ethiopia \n", - "sprayed walls could not be determined as mortality rates in all IRS treatment huts were 100%. PBO nets have been shown to provide high levels of protection against _An. gambiae_ in a recent experimental hut trial in Cote d'Ivoire [19]. Moreover, the improved protective role of PBO nets on malaria prevalence was also documented in Uganda [20]. Personal protective efficacy of PBO nets may also last longer compared to the standard nets [21]. PBO nets are particularly important as a malaria control tool in areas where the protection against PBO is not a viable alternative to the standard nets.\n", - "\n", - "Fig. 5: Mean 30 min knockdown and 24 h mortality rates of the susceptible _An. arabiensis_ laboratory strain following wall bioassays 3 weeks after ActeIlic 300CS spraying, Asendabo, Ethiopia\n", - "\n", - "Fig. 6: Mean 30 min knockdown and 24 h mortality rates of the susceptible _An. arabiensis_ laboratory strain and wild _An. gambiae_ s.l. (with and without pre-exposure to PBO) following wall bioassays 10 weeks after IRS using ActeIlic 300CS, Asendabo, Ethiopia \n", - "pyrethroid resistance is high in the vector populations [22] and is, therefore, under consideration for more widespread distribution in Ethiopia. Despite these added advantages of PBO nets, the cost is currently higher than pyrethroid nets which may limit their wider use in malaria vector control in malaria endemic areas. Additionally, this study provides an example of a setting with high levels of pyrethroid resistance where PBO nets may not be sufficient.\n", - "\n", - "The proportion of _Anopheles_ retrieved from the verandah of huts with both PermaNet 2.0 and PermaNet 3.0 was higher than those from the verandah of the control hut. Huts with PermaNet 2.0 induced significantly higher exito-repellency compared to control huts. Insecticides often induce toxicity to mosquitoes. However, the non-toxic 'exito-repellent' effects of insecticides are often less understood. Pyrethroid and organophosphate insecticides are also known to have these non-killing effects. The impact of the non-killing effects of the insecticides on the risk of malaria is not clearly understood. Though exito-repellency appears to reduce indoor human-vector contact, it may on the contrary enhance risk of outdoor mosquito biting [23].\n", - "\n", - "The role of IRS as a key malaria vector control intervention tool is evident. Immediate mortality was observed in mosquitoes collected from the three huts sprayed with Actellic(r) 300CS up to the end of the study at 10 weeks post-spray. The proportion of blood-fed _Anopheles_ was significantly lower in the IRS-treated huts compared to the control hut. This could be due to the fast-acting nature of Actellic(r) 300CS insecticide with both contact and fumigant effects. This shows the potential of Actellic(r) 300CS as an insecticide of choice for IRS in areas where the local vector population is susceptible to the insecticide. _Anopheles arabiensis_ is susceptible to pirimibos-methyl in most parts of Ethiopia [10, 24]. Some earlier studies conducted in Ethiopia showed the effectiveness of combining IRS with ITNs compared to ITNs alone in suppressing vector populations [25]. Added benefits of combining IRS and ITNs in malaria prevention was also reported from other areas in sub-Saharan Africa [26-28]. In contrast, limited or no added benefit of combining IRS with ITNs as compared to ITNs alone has been reported elsewhere [29, 30]. This inconsistency could be attributed to differences in the intensity of malaria transmission and insecticide resistance of the local vector populations. The impact of the combined use of available vector control interventions appears to be more pronounced when applied in high transmission areas, and where the local vector populations are susceptible to the insecticide used for the IRS component [25].\n", - "\n", - "The importance of combining IRS and ITNs for malaria vector control is believed partly to come from the low or inconsistent utilization of ITNs by users and short residual efficacy of IRS insecticides [31, 32]. In Ethiopia, household surveys have shown approximately 50% of children under five and pregnant women use their nets with geographic variation [33]. The gap often created as a result of low utilization of ITNs may be complemented with IRS. ITN utilization and care depends on personal decisions and behavior [34]. However, once properly implemented, IRS rapidly suppresses local vector populations with no additional behaviors required from the residents, hence reducing malaria incidence [35]. However, effectiveness of IRS for malaria vector control is highly affected by both physiological and behavioral resistance of the local vector population to the insecticide [36], apart from operational factors and higher costs.\n", - "\n", - "As the study was conducted during the dry season of the year, the mosquito population density was not high and, therefore, limits the generalizability of the results. However, the findings of this study could provide preliminary information for vector control programs for the rational choice of future vector control intervention tools. In addition, combining indoor residual spraying using pirimibos-methyl with PBO nets has been reported to be antagonistic in some studies, but a negative interaction or antagonism between PBO and pirimibos-methyl was not detected in this study.\n", - "\n", - "header: Funding\n", - "\n", - "This work was funded by the US President's Malaria initiative.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `Observation` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Abbreviations\n", - "\n", - "DDT: Dichroo-diphenyl-trichloroethane; ELISA: Enzyme-linked immunosorbent Assay; IRS: Indoor residual spray; ITS: Insecticide-treated net; PBO: Piperonyl butoxide; PCR Polymerase chain reaction; WHO: World Health Organization; WHORES: World Health Organization Pesticide Evaluation Scheme.\n", - "\n", - "header: Disclaimer\n", - "\n", - "The findings and conclusions in this manuscript are those of the authors and do not necessarily represent the views of the CDC. Use of trade names is for identification only and does not imply endorsement by the Centers for Disease Control and Prevention, the Public Health Service, or the US Department of Health and Human Services.\n", - "\n", - "header: Indoor residual spraying (IRS)\n", - "\n", - "Actcllic(r) 300CS, a pirimiphos-methyl-based IRS insecticide, was applied to the three IRS treatment huts 1 week before the start of the trial. Pirimiphos-methyl is an organophosphate insecticide being used for IRS by the malaria elimination program of Ethiopia. During the spraying, filter papers were affixed to the wall surfaces at three heights (high, middle and low) to ensure the application was properly and uniformly applied and determine the concentration of the applied insecticide. The spray operators were trained on the spraying techniques and the wall surfaces of huts were lined with chalk to properly maintain the swath and avoid overlap following the WHO protocol.\n", - "\n", - "header: Availability of data and materials\n", - "\n", - "Data supporting the conclusions of this article are included within the article.\n", - "\n", - "header: Ethics approval and consent to participate: Consent for publication\n", - "\n", - "Not applicable.\n", - "\n", - "header: Abstract\n", - "\n", - "An experimental hut study evaluating the impact of pyrethroid-only and PBO nets alone and in combination with pirrimiphos-methyl-based IRS in Ethiopia\n", - "\n", - "Delenasaw Yevhalaw, Meshesha Balkew, Endalew Zermene, Sheleme Chibsa, Peter Mumba, Cecilia Flatley, Akiliu Seyoum, Melissa Yoshimizu, Sarah Zohdy, Dereje Dengela\n", - "\n", - "\n", - "\n", - "Pyrethroid resistance observed in populations of malaria vectors is widespread in Ethiopia and could potentially compromise the effectiveness of insecticide-based malaria vector control interventions. In this study, the impact of combining indoor residual spraying (IRS) and insecticide-treated nets (ITNs) on mosquito behaviour and mortality was evaluated using experimental huts.\n", - "\n", - "header: Wall bioassay\n", - "\n", - "Cone bioassays were conducted twice during the trial period to assess the bio-efficacy of Actclic 300CS. At each time point, three cones were fixed to the wall surfaces at three heights from the ground (high 160 cm, medium 100 cm and low 40 cm) of each hut and ten mosquitoes were used per cone with a total of 30 mosquitoes per hut, for each of the three sprayed huts and a control hut (120 mosquitoes in total). Mosquitoes were exposed for 30 min after which immediate knockdown was recorded and mortality was recorded after a 24 h holding period. Non-blood-fed, 3-5 day old adult female _Anopheles gambiae_ sensu lato (s.l.) were used for bioassays.\n", - "\n", - "The first cone bioassay was conducted 3 weeks after spray using a confirmed susceptible _An. arabiensis_ strain from Sekoru Insectary without pre-exposure to PBO synergist. The second bioassay was conducted at the end of the trial (10 weeks after spray). In the second bioassay, both susceptible _An. arabiensis_ laboratory strain from Sekoru Insectary and wild _An. gambiae_ s.l. were used. The assay was carried out with and without PBO pre-exposure for both strains. Wild populations of _An. gambiae_ s.l. used for the bioassays were raised from larvae and pupae collected from semi-permanent and permanent breeding habitats around Wolfkite area, central Ethiopia. They were reared to adults at Asendabo Field Insectary. Mosquitoes were exposed to papers treated with PBO (2%) in a WHO cylinder for 1 h.\n", - "\n", - "header: Background\n", - "\n", - "Malaria is an important public health and socio-economic problem in Ethiopia. The main malaria vector in Ethiopia is _Anopheles arabiensis,_ while _Anopheles pharoetiss, Anopheles funestus_ and _Anopheles nili_ play a secondary role in malaria transmission. _Anopheles stephensi,_ a common and efficient urban malaria vector in Southeast Asia and the Mediterranean Region, has also recently been reported in Ethiopia and neighboring countries including Djibouti and Sudan [1]. There is widespread resistance to dichloro-diphenyl-trichloroethane (DDT) and pyrethroids in _An. arabiensis_ and resistance has also been detected to organophosphates in some populations. _Anopheles pharoensis_ was also reported to be highly resistant to DDT [2]. The _kdr_ mutation (L1014F) has been detected in _An. arabiensis_ from many sites, while _ace-1R_ and _kdr_ (L1014S) were not detected in all populations [3, 4, 5]. Bottle bioassay tests with _An. arabiensis_ populations from all surveyed areas of Ethiopia found resistance to both permethrin and deltamethrin. However, susceptibility to permethrin and deltamethrin was restored following pre-exposure of mosquitoes to the synergist piperonyl butoxide (PBO), indicating involvement of P450-based metabolic resistance mechanisms in the Ethiopian populations of _An. arabiensis_[6].\n", - "\n", - "Indoor residual spraying (IRS) and insecticide-treated nets (ITNs) are the main vector control interventions in Ethiopia. Ethiopia has a long history of IRS. It began spraying DDT in the late 1950s during the Malaria Eradication Programme and malathion was also used for IRS in a few areas until 2010. Deltamethrin, a pyrethroid insecticide, was used for IRS from 2009 to 2013, and since then, bendiocarb and propoxur (carbamate insecticides) and pirimihos-methyl (organophosphate insecticide) have been used for IRS in Ethiopia. The PMI VectorLink Ethiopia Project piloted the clothianidin (neonicotinoid)-based insecticides, SumiShield(r) 50WG and Fludora Fusion WP-SB, in 2020 in Menge District in the Benishangul Gumuz Region. Insecticide-treated nets have been widely distributed to households in malaria risk areas every 3 years mainly through the health extension programme [7].\n", - "\n", - "Recent studies in Tanzania showed that the impact of PBO nets could be comparable to the impact of pyrethroid-only nets when combined with IRS, and that there was no significant difference in malaria prevalence between the pyrethroid-only net + IRS and PBO net + IRS study arms [8]. This is of interest for malaria control operations in Ethiopia, as such data can inform future decisions on ITN procurements and strategic\n", - "distribution, as well as insecticide choices for IRS, which may reduce overall malaria vector control costs. In addition, it is also important to understand possible antagonistic effects of PBO and pirimiphos-methyl, as suggested by the World Health Organization (WHO), before recommending the combined use of PBO nets and pirimiphos methyl IRS for malaria control in Ethiopia.\n", - "\n", - "This study aimed at assessing the impact of the combination of currently available vector control tools (IRS, pyrethroid-only nets, and PBO nets) on mosquito behaviour, mortality and the possible antagonistic effect of PBO and pirimiphos-methyl using experimental hurts in Asendabo, Ethiopia. The hypothesis for the Ethiopia context was that the use of PBO nets in combination with IRS would better control malaria vectors than PBO nets alone and that the use of IRS in combination with pyrethroid-only nets would better control malaria vectors than pyrethroid-only nets alone.\n", - "\n", - "header: Competing interests\n", - "\n", - "We declare that we have no competing interests.\n", - "\n", - "header: Results\n", - "\n", - "The personal protection rate of huts with PermaNet(r) 2.0 alone and PermaNet(r) 3.0 alone was 33.3% and 50%, respectively. The mean killing effect of huts with PermaNet(r) 2.0 alone and PermaNet(r) 3.0 alone was 2% and 49%, respectively. Huts with PermaNet(r) 2.0 alone and PermaNet(r) 3.0 alone demonstrated significantly higher excito-repellency than the control hut. However, mosquito mortality in the hut with IRS + untreated net, hut with IRS + PermaNet(r) 2.0 and hut with IRS + PermaNet(r) 3.0 were not significantly different from each other (p > 0.05). Additionally, pre-exposure of both the susceptible _Anopheles arabiensis_ laboratory strain and wild _Anopheles gambiae_ sensu late to PBO in the cone bioassay tests of Actellite 300CS sprayed surfaces did not reduce mosquito mortality when compared to mortality without pre-exposure to PBO.\n", - "\n", - "header: Use of nets for the study\n", - "\n", - "During the study, two types of nets (PermaNet(r) 2.0 and PermaNet(r) 3.0) with and without IRS were assessed. Moreover, an untreated net was used with IRS and untreated net without IRS was used as a negative control. Both PermaNet(r) 2.0 and PermaNet(r) 3.0 nets are treated with the pyrethroid deltamethrin, but PermaNet 3.0 has also PBO synergist. During the study, each ITN in each hut was replaced by a new replicate net every 3 weeks since the trial had no replicate huts. Eighteen holes (4 cm x 4 cm) were cut in each net purposefully to simulate a torn net [11].\n", - "\n", - "header: Conclusion\n", - "\n", - "Mosquito mortality rates from the huts with IRS alone were similar to mosquito mortality rates from the huts with the combination of vector control intervention tools (IRS + ITNs) and mosquito mortality rates from huts with PBO nets alone were significantly higher than huts with pyrethroid-only nets. The findings of this study help inform studies to be conducted under field condition for decision-making for future selection of cost-effective vector control intervention tools.\n", - "\n", - "header: Conclusion\n", - "\n", - "In this study, significantly higher mosquito mortality rates were recorded from treatment huts with IRS than huts with ITNs alone, regardless of net type. Interestingly, the hut with IRS + untreated net had similar mosquito mortality rates as huts with combinations of vector control tools (IRS + pyrethroid-only nets and IRS + PBO nets). Moreover, immediate mortality rate of mosquitoes in IRS + untreated net was significantly higher than PermaNet 2.0 and PermaNet 3.0 nets. These suggest that IRS alone provides the greatest vector control impact. Indoor residual spraying alone or in combination with ITNs offered significantly higher personal protection against mosquito bites than the control hut. Moreover, the proportion of mosquito mortality was significantly higher in huts with PBO nets than huts with pyrethroid-only nets, but remained significantly lower than the huts that received IRS. In general, the findings of this study revealed that IRS alone was as efficacious as combinations of vector tools (IRS + ITNs) for malaria vector control at least over the 9-week study period. Field studies to further assess the impact of combinations of vector tools on malaria vector control in different eco-epidemiological settings are also warranted. This study \n", - "provides additional data for considering future selection of the most appropriate vector control tools for improved malaria vector control and management of insecticide resistance. This study also indicated that there was no antagonistic effect between PBO and IRS with pirimib-phos-methyl. However, further studies may be needed to determine if there are antagonistic effects in large scale IRS applications to evaluate the efficacy of PBO vs. IRS against different resistant vector populations in Ethiopia for decision-making to deploy either PBO nets or pirimib-phos-based IRS intervention.\n", - "\n", - "header: Results\n", - "\n", - "Overall, a total of 386 mosquitoes, comprising 235 _Anopheles_ spp. (60.9%) and 151 _Culex_ spp. (39.1%), were collected during the study. Of the _Anopheles_ mosquitoes, _An. gambiae_ s.l, _An. pharoensis_ and _Anopheles__custani_ accounted for 228 (97.0%), 6 (2.6%) and 1 (0.4%), respectively. The proportion of the total _Anopheles_ mosquitoes collected from each hut is presented in Fig. 1. There were no significant differences in mean percentage of _Anopheles_ mosquitoes between the different treatment and control huts (p > 0.05).\n", - "\n", - "An immediate mosquito mortality of 100% was recorded from all three huts with IRS throughout the study period. The mean immediate mosquito mortality rates from the control, PermaNet(r) 2.0 and PermaNet(r) 3.0 huts were 13.3% (95% CI 3-23%), 20.0% (95% CI 6-33%) and 70.0% (95% CI 55-84%), respectively (Fig. 2). The immediate mosquito mortality rate from the hut with IRS + untreated net was significantly higher than the PermaNet(r) 3.0 hut (p < 0.001). Similarly, the immediate mosquito mortality rate from the hut with PermaNet(r) 3.0 was significantly higher than that from the control hut (p < 0.001) as well as the PermaNet(r) 2.0 (p < 0.001) hut. The mosquito mortality rate from the PermaNet(r) 2.0 hut was not significantly different from that of the control hut (p = 0.4). On average the killing effect of PermaNet(r) 2.0 and PermaNet(r) 3.0 compared to the untreated net were 2.2% and 48.9%, respectively. The killing effects in the huts with PermaNet(r) 2.0 and PermaNet(r) 3.0 increased to 60.0% and 75.5% when combined with IRS. Delayed mosquito mortality rates of 14.3% and 41.7% were recorded from huts with PermaNet(r) 2.0 and PermaNet(r) 3.0, respectively.\n", - "\n", - "Of the 50 sub-samples of _An. gambiae_ s.l. analysed using species-specific PCR, 46 (92%) were identified as _An. arabiensis_ and four mosquito samples failed to amplify. The blood-feeding rate of the _Anopheles_\n", - "\n", - "Fig. 1: Proportion of mosquitoes collected that were _Anopheles_ spp. in each experimental hut, Asendabo, Ethiopia. Control is no IRS and untreated net \n", - "collected from each of the huts is presented in Fig. 3. Overall, 26 of the _Anopheles_ (11.1%) were blood-fed upon collection. Of the fed mosquitoes, human, bovine and mixed human/bovine blood were detected in 14 (53.9%), 2 (7.7%), 5 (19.2%) of the specimens, respectively. Blood meals from the remaining 5 (19.2%) of the specimens were unidentified. The overall proportion of human blood-fed _Anopheles_ was 73.1% (n = 19). The personal protection rates of PermaNet(r) 2.0 and PermaNet(r) 3.0 nets were 33.3% and 50%, respectively. When combined with IRS, the personal protection rate of PermaNet(r) 2.0 increased to 83.3% while the personal protection rate of PermaNet(r) 2.0 decreased to 83.3%.\n", - "\n", - "\n", - "\n", - "The personal protection rate of PermaNet(r)\n", - "\n", - "\n", - "PernaNet(r) 3.0 remained the same (50%). The proportions of human blood-fed _Anopheles_ collected from the control, PernaNet(r) 2.0, PernaNet(r) 3.0 and combined IRS-treated huts were 13.3% (95% CI 3.4-23.3), 11.4% (95% CI 0.9-22.0), 7.5% (95% CI 0.0-15.7) and 5.2% (95% CI 1.2-9.3), respectively.\n", - "\n", - "Overall, the majority of _Anopheles_ were collected from the rooms of the huts. The proportions of _Anopheles_ collected from the verandah of the IRS-treated and the control huts were 16.5% and 13.3%, respectively (Fig. 4). The proportion of _Anopheles_ collected from verandah of a hut with PernaNet(r) 2.0 was significantly higher than the proportion of _Anopheles_ collected from the control hut (p = 0.02).\n", - "\n", - "The mean knockdown rates of the susceptible _An. arabiensis_ laboratory strain in the bioassays conducted 3 weeks post-spray were 20.2% and 2.9% in the IRS-treated and control huts, respectively. The mean 24 h mortality rates from IRS-treated and control huts were 100% and 2.9%, respectively (Fig. 5).\n", - "\n", - "The combined mean 30 min knockdown rate of the _An. arabiensis_ laboratory strain and wild population of _An. gambiae_ s.l. exposed to IRS-treated huts 10 weeks post-spray, with and without pre-exposure to PBO, was 1.1% (Fig. 6). The 24 h mortality rate of the _An. arabiensis_ laboratory strain and wild population of _An. gambiae_ s.l. at 10 weeks post-spray which were exposed to IRS-treated hut wall surfaces were 100%, irrespective of pre-exposure of mosquitoes to PBO.\n", - "\n", - "header: Data analysis\n", - "\n", - "Data from the five treatment huts were compared with data from the control hut to determine the insecticidal effects on the variables listed above.\n", - "\n", - "Personal protection, killing effect, and exophily were estimated using the following formulas [9, 11].\n", - "\n", - "\\[\\text{Personal protection }(\\%) = 100 \\times (B_{u} - B_{t} )/B_{u} ;\\]\n", - "\n", - "where \\(B_{t}\\) is the total number of freshly blood-fed mosquitoes in the huts with treated nets. \\(B_{u}\\) is the total number of freshly blood-fed mosquitoes in the huts with untreated nets.\n", - "\n", - "\\[\\text{Killing effect }(\\%) = 100 \\times (K_{t} - K_{u} )/T_{u} ;\\]\n", - "\n", - "where \\(K_{t}\\) is number of mosquitoes killed (immediate) in the huts with treated nets. \\(K_{u}\\) is number of mosquitoes killed (immediate) in the huts with untreated nets. \\(T_{u}\\) is the total number of mosquitoes collected from the huts with untreated nets.\n", - "\n", - "\n", - "Exophily (%) = (E_v/Et) x 100;\n", - "\n", - "where Ev is the number of mosquitoes found in verandah. Et is the total number of mosquitoes found inside the hut and verandah\n", - "\n", - "For all three parameters, mosquito entry was estimated by adding the number of dead and alive mosquitoes observed inside the hut and the verandah. Estimates of personal protection and killing effect were determined using mosquitoes from all collection nights.\n", - "\n", - "To test differences in mean mosquito density in each of the treatment huts, ANOVA was employed after log-transformation of non-normal distributed mosquito count data. T-tests were employed to determine the differences in mean proportions of blood-fed mosquitoes and mosquitoes exiting early from the different test huts and control hut.\n", - "\n", - "In all analyses, the hut with the untreated net and without IRS was used as a negative control, but comparisons were made between all treatment groups. In all analyses, individual huts and sleepers were included in the models as random effects.\n", - "\n", - "header: Author details\n", - "\n", - "1School of Medical Laboratory Sciences, Faculty of Health Sciences, Jimma University, Jimma, Ethiopia. 2Tropical and Infectious Diseases Research Center, Jimma University, Jimma, Ethiopia. 3HAR Associates, PMI VectorLine Project Ethiopia, Addis Ababa, Ethiopia. 4US President's Malaria Initiative, USAID, Washington, DC, USA. 7US President's Malaria Initiative, Center for Disease Control and Prevention, Atlanta, GA, USA.\n", - "\n", - "header: Background: Methods\n", - "\n", - "A Latin Square Design was employed using six experimental huts to collect entomological data. Human volunteers slept in huts with different types of nets (pyrethroid-only net, PBO net, and untreated net) either with or without IRS (Actallic 300CS). The hut with no IRS and an untreated net served as a negative control. The study was conducted for a total of 54 nights. Both alive and dead mosquitoes were collected from inside nets, in the central rooms and verandah the following morning. Data were analysed using Stata/SE 14.0 software package (College Station, TX, USA).\n", - "\n", - "header: Variables\n", - "\n", - "Four study outcomes measured were:\n", - "\n", - "1. Deterrence--the reduction in hut entry by mosquitoes in treatment huts relative to the control hut (hut with untreated net and no IRS).\n", - "2. Exophily--the proportion of mosquitoes found resting on the walls of the verandah.\n", - "3. Blood-feeding inhibition--the reduction in blood-feeding in treatment huts in comparison with control hut (hut with untreated net and no IRS).\n", - "4. Immediate and delayed mortality--the proportion of mosquitoes entering the hut that were dead in the morning (immediate mortality) or after being caught alive and held for 24 h with access to a sugar solution (delayed mortality).\n", - "\n", - "header: Funding\n", - "\n", - "This work was funded by the US President's Malaria initiative.\n", - "\n", - "header: Blood meal host source analysis and mosquito identification\n", - "\n", - "All the fed mosquitoes collected from the different huts were assayed to determine the blood meal host source using direct ELISA [13]. Moreover, a sub-sample of _An. gambiae_ s.l. was also molecularly identified to species using species-specific PCR following established protocol [14].\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ClinicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `ClinicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `ClinicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Hut trial\",\"Country\":\"Ethiopia\",\"Site\":\"Asendabo\"}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Synergist\": {\"title\": \"Synergist\", \"description\": \"Enter the synergist or synergists combination (delimited by comma).\"}, \"Net_holed\": {\"title\": \"Net Holed\", \"description\": \"Numerical count of the number of holes a net has - 0 if new and NA if not reported\\nNote - for tunnel tests there are holes that allow the mosquitoes the option of passing through to feed on the guinea pig.\"}, \"pHI_category\": {\"title\": \"Phi Category\", \"description\": \"Classification of the nets holed surface area, as one of \\\"Good\\\", \\\"Damaged\\\", \\\"Torn\\\", \\\"Serviceable\\\", or \\\"All\\\", as proposed by WHO\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"PermaNet 2.0\",\"Insecticide\":\"deltamethrin\",\"Net_holed\":18.0,\"pHI_category\":\"Torn\",\"Synergist\":null},\"N02\":{\"Net_type\":\"PermaNet 3.0\",\"Insecticide\":\"deltamethrin\",\"Net_holed\":18.0,\"pHI_category\":\"Torn\",\"Synergist\":\"PBO\"}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Abbreviations\n", - "\n", - "DDT: Dichroo-diphenyl-trichloroethane; ELISA: Enzyme-linked immunosorbent Assay; IRS: Indoor residual spray; ITS: Insecticide-treated net; PBO: Piperonyl butoxide; PCR Polymerase chain reaction; WHO: World Health Organization; WHORES: World Health Organization Pesticide Evaluation Scheme.\n", - "\n", - "header: Disclaimer\n", - "\n", - "The findings and conclusions in this manuscript are those of the authors and do not necessarily represent the views of the CDC. Use of trade names is for identification only and does not imply endorsement by the Centers for Disease Control and Prevention, the Public Health Service, or the US Department of Health and Human Services.\n", - "\n", - "header: Indoor residual spraying (IRS)\n", - "\n", - "Actcllic(r) 300CS, a pirimiphos-methyl-based IRS insecticide, was applied to the three IRS treatment huts 1 week before the start of the trial. Pirimiphos-methyl is an organophosphate insecticide being used for IRS by the malaria elimination program of Ethiopia. During the spraying, filter papers were affixed to the wall surfaces at three heights (high, middle and low) to ensure the application was properly and uniformly applied and determine the concentration of the applied insecticide. The spray operators were trained on the spraying techniques and the wall surfaces of huts were lined with chalk to properly maintain the swath and avoid overlap following the WHO protocol.\n", - "\n", - "header: Availability of data and materials\n", - "\n", - "Data supporting the conclusions of this article are included within the article.\n", - "\n", - "header: Abstract\n", - "\n", - "An experimental hut study evaluating the impact of pyrethroid-only and PBO nets alone and in combination with pirrimiphos-methyl-based IRS in Ethiopia\n", - "\n", - "Delenasaw Yevhalaw, Meshesha Balkew, Endalew Zermene, Sheleme Chibsa, Peter Mumba, Cecilia Flatley, Akiliu Seyoum, Melissa Yoshimizu, Sarah Zohdy, Dereje Dengela\n", - "\n", - "\n", - "\n", - "Pyrethroid resistance observed in populations of malaria vectors is widespread in Ethiopia and could potentially compromise the effectiveness of insecticide-based malaria vector control interventions. In this study, the impact of combining indoor residual spraying (IRS) and insecticide-treated nets (ITNs) on mosquito behaviour and mortality was evaluated using experimental huts.\n", - "\n", - "header: Ethics approval and consent to participate: Consent for publication\n", - "\n", - "Not applicable.\n", - "\n", - "header: Background\n", - "\n", - "Malaria is an important public health and socio-economic problem in Ethiopia. The main malaria vector in Ethiopia is _Anopheles arabiensis,_ while _Anopheles pharoetiss, Anopheles funestus_ and _Anopheles nili_ play a secondary role in malaria transmission. _Anopheles stephensi,_ a common and efficient urban malaria vector in Southeast Asia and the Mediterranean Region, has also recently been reported in Ethiopia and neighboring countries including Djibouti and Sudan [1]. There is widespread resistance to dichloro-diphenyl-trichloroethane (DDT) and pyrethroids in _An. arabiensis_ and resistance has also been detected to organophosphates in some populations. _Anopheles pharoensis_ was also reported to be highly resistant to DDT [2]. The _kdr_ mutation (L1014F) has been detected in _An. arabiensis_ from many sites, while _ace-1R_ and _kdr_ (L1014S) were not detected in all populations [3, 4, 5]. Bottle bioassay tests with _An. arabiensis_ populations from all surveyed areas of Ethiopia found resistance to both permethrin and deltamethrin. However, susceptibility to permethrin and deltamethrin was restored following pre-exposure of mosquitoes to the synergist piperonyl butoxide (PBO), indicating involvement of P450-based metabolic resistance mechanisms in the Ethiopian populations of _An. arabiensis_[6].\n", - "\n", - "Indoor residual spraying (IRS) and insecticide-treated nets (ITNs) are the main vector control interventions in Ethiopia. Ethiopia has a long history of IRS. It began spraying DDT in the late 1950s during the Malaria Eradication Programme and malathion was also used for IRS in a few areas until 2010. Deltamethrin, a pyrethroid insecticide, was used for IRS from 2009 to 2013, and since then, bendiocarb and propoxur (carbamate insecticides) and pirimihos-methyl (organophosphate insecticide) have been used for IRS in Ethiopia. The PMI VectorLink Ethiopia Project piloted the clothianidin (neonicotinoid)-based insecticides, SumiShield(r) 50WG and Fludora Fusion WP-SB, in 2020 in Menge District in the Benishangul Gumuz Region. Insecticide-treated nets have been widely distributed to households in malaria risk areas every 3 years mainly through the health extension programme [7].\n", - "\n", - "Recent studies in Tanzania showed that the impact of PBO nets could be comparable to the impact of pyrethroid-only nets when combined with IRS, and that there was no significant difference in malaria prevalence between the pyrethroid-only net + IRS and PBO net + IRS study arms [8]. This is of interest for malaria control operations in Ethiopia, as such data can inform future decisions on ITN procurements and strategic\n", - "distribution, as well as insecticide choices for IRS, which may reduce overall malaria vector control costs. In addition, it is also important to understand possible antagonistic effects of PBO and pirimiphos-methyl, as suggested by the World Health Organization (WHO), before recommending the combined use of PBO nets and pirimiphos methyl IRS for malaria control in Ethiopia.\n", - "\n", - "This study aimed at assessing the impact of the combination of currently available vector control tools (IRS, pyrethroid-only nets, and PBO nets) on mosquito behaviour, mortality and the possible antagonistic effect of PBO and pirimiphos-methyl using experimental hurts in Asendabo, Ethiopia. The hypothesis for the Ethiopia context was that the use of PBO nets in combination with IRS would better control malaria vectors than PBO nets alone and that the use of IRS in combination with pyrethroid-only nets would better control malaria vectors than pyrethroid-only nets alone.\n", - "\n", - "header: Wall bioassay\n", - "\n", - "Cone bioassays were conducted twice during the trial period to assess the bio-efficacy of Actclic 300CS. At each time point, three cones were fixed to the wall surfaces at three heights from the ground (high 160 cm, medium 100 cm and low 40 cm) of each hut and ten mosquitoes were used per cone with a total of 30 mosquitoes per hut, for each of the three sprayed huts and a control hut (120 mosquitoes in total). Mosquitoes were exposed for 30 min after which immediate knockdown was recorded and mortality was recorded after a 24 h holding period. Non-blood-fed, 3-5 day old adult female _Anopheles gambiae_ sensu lato (s.l.) were used for bioassays.\n", - "\n", - "The first cone bioassay was conducted 3 weeks after spray using a confirmed susceptible _An. arabiensis_ strain from Sekoru Insectary without pre-exposure to PBO synergist. The second bioassay was conducted at the end of the trial (10 weeks after spray). In the second bioassay, both susceptible _An. arabiensis_ laboratory strain from Sekoru Insectary and wild _An. gambiae_ s.l. were used. The assay was carried out with and without PBO pre-exposure for both strains. Wild populations of _An. gambiae_ s.l. used for the bioassays were raised from larvae and pupae collected from semi-permanent and permanent breeding habitats around Wolfkite area, central Ethiopia. They were reared to adults at Asendabo Field Insectary. Mosquitoes were exposed to papers treated with PBO (2%) in a WHO cylinder for 1 h.\n", - "\n", - "header: Results\n", - "\n", - "The personal protection rate of huts with PermaNet(r) 2.0 alone and PermaNet(r) 3.0 alone was 33.3% and 50%, respectively. The mean killing effect of huts with PermaNet(r) 2.0 alone and PermaNet(r) 3.0 alone was 2% and 49%, respectively. Huts with PermaNet(r) 2.0 alone and PermaNet(r) 3.0 alone demonstrated significantly higher excito-repellency than the control hut. However, mosquito mortality in the hut with IRS + untreated net, hut with IRS + PermaNet(r) 2.0 and hut with IRS + PermaNet(r) 3.0 were not significantly different from each other (p > 0.05). Additionally, pre-exposure of both the susceptible _Anopheles arabiensis_ laboratory strain and wild _Anopheles gambiae_ sensu late to PBO in the cone bioassay tests of Actellite 300CS sprayed surfaces did not reduce mosquito mortality when compared to mortality without pre-exposure to PBO.\n", - "\n", - "header: Use of nets for the study\n", - "\n", - "During the study, two types of nets (PermaNet(r) 2.0 and PermaNet(r) 3.0) with and without IRS were assessed. Moreover, an untreated net was used with IRS and untreated net without IRS was used as a negative control. Both PermaNet(r) 2.0 and PermaNet(r) 3.0 nets are treated with the pyrethroid deltamethrin, but PermaNet 3.0 has also PBO synergist. During the study, each ITN in each hut was replaced by a new replicate net every 3 weeks since the trial had no replicate huts. Eighteen holes (4 cm x 4 cm) were cut in each net purposefully to simulate a torn net [11].\n", - "\n", - "header: Competing interests\n", - "\n", - "We declare that we have no competing interests.\n", - "\n", - "header: Conclusion\n", - "\n", - "In this study, significantly higher mosquito mortality rates were recorded from treatment huts with IRS than huts with ITNs alone, regardless of net type. Interestingly, the hut with IRS + untreated net had similar mosquito mortality rates as huts with combinations of vector control tools (IRS + pyrethroid-only nets and IRS + PBO nets). Moreover, immediate mortality rate of mosquitoes in IRS + untreated net was significantly higher than PermaNet 2.0 and PermaNet 3.0 nets. These suggest that IRS alone provides the greatest vector control impact. Indoor residual spraying alone or in combination with ITNs offered significantly higher personal protection against mosquito bites than the control hut. Moreover, the proportion of mosquito mortality was significantly higher in huts with PBO nets than huts with pyrethroid-only nets, but remained significantly lower than the huts that received IRS. In general, the findings of this study revealed that IRS alone was as efficacious as combinations of vector tools (IRS + ITNs) for malaria vector control at least over the 9-week study period. Field studies to further assess the impact of combinations of vector tools on malaria vector control in different eco-epidemiological settings are also warranted. This study \n", - "provides additional data for considering future selection of the most appropriate vector control tools for improved malaria vector control and management of insecticide resistance. This study also indicated that there was no antagonistic effect between PBO and IRS with pirimib-phos-methyl. However, further studies may be needed to determine if there are antagonistic effects in large scale IRS applications to evaluate the efficacy of PBO vs. IRS against different resistant vector populations in Ethiopia for decision-making to deploy either PBO nets or pirimib-phos-based IRS intervention.\n", - "\n", - "header: Conclusion\n", - "\n", - "Mosquito mortality rates from the huts with IRS alone were similar to mosquito mortality rates from the huts with the combination of vector control intervention tools (IRS + ITNs) and mosquito mortality rates from huts with PBO nets alone were significantly higher than huts with pyrethroid-only nets. The findings of this study help inform studies to be conducted under field condition for decision-making for future selection of cost-effective vector control intervention tools.\n", - "\n", - "header: Results\n", - "\n", - "Overall, a total of 386 mosquitoes, comprising 235 _Anopheles_ spp. (60.9%) and 151 _Culex_ spp. (39.1%), were collected during the study. Of the _Anopheles_ mosquitoes, _An. gambiae_ s.l, _An. pharoensis_ and _Anopheles__custani_ accounted for 228 (97.0%), 6 (2.6%) and 1 (0.4%), respectively. The proportion of the total _Anopheles_ mosquitoes collected from each hut is presented in Fig. 1. There were no significant differences in mean percentage of _Anopheles_ mosquitoes between the different treatment and control huts (p > 0.05).\n", - "\n", - "An immediate mosquito mortality of 100% was recorded from all three huts with IRS throughout the study period. The mean immediate mosquito mortality rates from the control, PermaNet(r) 2.0 and PermaNet(r) 3.0 huts were 13.3% (95% CI 3-23%), 20.0% (95% CI 6-33%) and 70.0% (95% CI 55-84%), respectively (Fig. 2). The immediate mosquito mortality rate from the hut with IRS + untreated net was significantly higher than the PermaNet(r) 3.0 hut (p < 0.001). Similarly, the immediate mosquito mortality rate from the hut with PermaNet(r) 3.0 was significantly higher than that from the control hut (p < 0.001) as well as the PermaNet(r) 2.0 (p < 0.001) hut. The mosquito mortality rate from the PermaNet(r) 2.0 hut was not significantly different from that of the control hut (p = 0.4). On average the killing effect of PermaNet(r) 2.0 and PermaNet(r) 3.0 compared to the untreated net were 2.2% and 48.9%, respectively. The killing effects in the huts with PermaNet(r) 2.0 and PermaNet(r) 3.0 increased to 60.0% and 75.5% when combined with IRS. Delayed mosquito mortality rates of 14.3% and 41.7% were recorded from huts with PermaNet(r) 2.0 and PermaNet(r) 3.0, respectively.\n", - "\n", - "Of the 50 sub-samples of _An. gambiae_ s.l. analysed using species-specific PCR, 46 (92%) were identified as _An. arabiensis_ and four mosquito samples failed to amplify. The blood-feeding rate of the _Anopheles_\n", - "\n", - "Fig. 1: Proportion of mosquitoes collected that were _Anopheles_ spp. in each experimental hut, Asendabo, Ethiopia. Control is no IRS and untreated net \n", - "collected from each of the huts is presented in Fig. 3. Overall, 26 of the _Anopheles_ (11.1%) were blood-fed upon collection. Of the fed mosquitoes, human, bovine and mixed human/bovine blood were detected in 14 (53.9%), 2 (7.7%), 5 (19.2%) of the specimens, respectively. Blood meals from the remaining 5 (19.2%) of the specimens were unidentified. The overall proportion of human blood-fed _Anopheles_ was 73.1% (n = 19). The personal protection rates of PermaNet(r) 2.0 and PermaNet(r) 3.0 nets were 33.3% and 50%, respectively. When combined with IRS, the personal protection rate of PermaNet(r) 2.0 increased to 83.3% while the personal protection rate of PermaNet(r) 2.0 decreased to 83.3%.\n", - "\n", - "\n", - "\n", - "The personal protection rate of PermaNet(r)\n", - "\n", - "\n", - "PernaNet(r) 3.0 remained the same (50%). The proportions of human blood-fed _Anopheles_ collected from the control, PernaNet(r) 2.0, PernaNet(r) 3.0 and combined IRS-treated huts were 13.3% (95% CI 3.4-23.3), 11.4% (95% CI 0.9-22.0), 7.5% (95% CI 0.0-15.7) and 5.2% (95% CI 1.2-9.3), respectively.\n", - "\n", - "Overall, the majority of _Anopheles_ were collected from the rooms of the huts. The proportions of _Anopheles_ collected from the verandah of the IRS-treated and the control huts were 16.5% and 13.3%, respectively (Fig. 4). The proportion of _Anopheles_ collected from verandah of a hut with PernaNet(r) 2.0 was significantly higher than the proportion of _Anopheles_ collected from the control hut (p = 0.02).\n", - "\n", - "The mean knockdown rates of the susceptible _An. arabiensis_ laboratory strain in the bioassays conducted 3 weeks post-spray were 20.2% and 2.9% in the IRS-treated and control huts, respectively. The mean 24 h mortality rates from IRS-treated and control huts were 100% and 2.9%, respectively (Fig. 5).\n", - "\n", - "The combined mean 30 min knockdown rate of the _An. arabiensis_ laboratory strain and wild population of _An. gambiae_ s.l. exposed to IRS-treated huts 10 weeks post-spray, with and without pre-exposure to PBO, was 1.1% (Fig. 6). The 24 h mortality rate of the _An. arabiensis_ laboratory strain and wild population of _An. gambiae_ s.l. at 10 weeks post-spray which were exposed to IRS-treated hut wall surfaces were 100%, irrespective of pre-exposure of mosquitoes to PBO.\n", - "\n", - "header: Data analysis\n", - "\n", - "Data from the five treatment huts were compared with data from the control hut to determine the insecticidal effects on the variables listed above.\n", - "\n", - "Personal protection, killing effect, and exophily were estimated using the following formulas [9, 11].\n", - "\n", - "\\[\\text{Personal protection }(\\%) = 100 \\times (B_{u} - B_{t} )/B_{u} ;\\]\n", - "\n", - "where \\(B_{t}\\) is the total number of freshly blood-fed mosquitoes in the huts with treated nets. \\(B_{u}\\) is the total number of freshly blood-fed mosquitoes in the huts with untreated nets.\n", - "\n", - "\\[\\text{Killing effect }(\\%) = 100 \\times (K_{t} - K_{u} )/T_{u} ;\\]\n", - "\n", - "where \\(K_{t}\\) is number of mosquitoes killed (immediate) in the huts with treated nets. \\(K_{u}\\) is number of mosquitoes killed (immediate) in the huts with untreated nets. \\(T_{u}\\) is the total number of mosquitoes collected from the huts with untreated nets.\n", - "\n", - "\n", - "Exophily (%) = (E_v/Et) x 100;\n", - "\n", - "where Ev is the number of mosquitoes found in verandah. Et is the total number of mosquitoes found inside the hut and verandah\n", - "\n", - "For all three parameters, mosquito entry was estimated by adding the number of dead and alive mosquitoes observed inside the hut and the verandah. Estimates of personal protection and killing effect were determined using mosquitoes from all collection nights.\n", - "\n", - "To test differences in mean mosquito density in each of the treatment huts, ANOVA was employed after log-transformation of non-normal distributed mosquito count data. T-tests were employed to determine the differences in mean proportions of blood-fed mosquitoes and mosquitoes exiting early from the different test huts and control hut.\n", - "\n", - "In all analyses, the hut with the untreated net and without IRS was used as a negative control, but comparisons were made between all treatment groups. In all analyses, individual huts and sleepers were included in the models as random effects.\n", - "\n", - "header: Background: Methods\n", - "\n", - "A Latin Square Design was employed using six experimental huts to collect entomological data. Human volunteers slept in huts with different types of nets (pyrethroid-only net, PBO net, and untreated net) either with or without IRS (Actallic 300CS). The hut with no IRS and an untreated net served as a negative control. The study was conducted for a total of 54 nights. Both alive and dead mosquitoes were collected from inside nets, in the central rooms and verandah the following morning. Data were analysed using Stata/SE 14.0 software package (College Station, TX, USA).\n", - "\n", - "header: Variables\n", - "\n", - "Four study outcomes measured were:\n", - "\n", - "1. Deterrence--the reduction in hut entry by mosquitoes in treatment huts relative to the control hut (hut with untreated net and no IRS).\n", - "2. Exophily--the proportion of mosquitoes found resting on the walls of the verandah.\n", - "3. Blood-feeding inhibition--the reduction in blood-feeding in treatment huts in comparison with control hut (hut with untreated net and no IRS).\n", - "4. Immediate and delayed mortality--the proportion of mosquitoes entering the hut that were dead in the morning (immediate mortality) or after being caught alive and held for 24 h with access to a sugar solution (delayed mortality).\n", - "\n", - "header: Funding\n", - "\n", - "This work was funded by the US President's Malaria initiative.\n", - "\n", - "header: Discussion\n", - "\n", - "Malaria vector control interventions have been intensified over the last decade in Ethiopia resulting in remarkable progress, with a reduction in children under-five mortality rates from 123 deaths per 1000 live births in 2005 to 55 deaths per 1000 live births in 2019 [15]. The vector control activities including mass-distribution/replacement of ITNs every 3 years in accordance with WHO recommendations and deployment of IRS in targeted areas appear to have played vital roles in the successes obtained in malaria control in Ethiopia [16]. However, malaria still remains a public health challenge in the country, where an estimated 52% of the population lives in areas at risk of malaria. With the successes gained in malaria control, a national malaria elimination goal is set for 2030 [17]. This study evaluated the impact of combining currently available vector control tools on mosquito behaviour and mortality.\n", - "\n", - "Compared to PernaNet(r) 2.0, PernaNet(r) 3.0 is impregnated with a higher concentration of deltamethrin and the roof panel is treated with both deltamethrin and PBO. The higher killing effect of PernaNet(r) 3.0 compared to PernaNet(r) 2.0 in this study could be attributed to the presence of the PBO synergist on the roof panel of the net and/or higher dosage of deltamethrin in the net. The synergist PBO works to inhibit P450 detoxification of pyrethroid insecticides and can result in partial or complete restoration of susceptibility to certain pyrethroids, such as deltamethrin, hence enhancing efficacy of the insecticides [18]. The role of PBO in affecting susceptibility in both wild and laboratory strain mosquitoes exposed to Actellite(r) 300CS\n", - "\n", - "Fig. 4: Proportion of _Anopheles_ collected from inside nets, rooms and verandahs of different experimental huts, Asendabo, Ethiopia \n", - "sprayed walls could not be determined as mortality rates in all IRS treatment huts were 100%. PBO nets have been shown to provide high levels of protection against _An. gambiae_ in a recent experimental hut trial in Cote d'Ivoire [19]. Moreover, the improved protective role of PBO nets on malaria prevalence was also documented in Uganda [20]. Personal protective efficacy of PBO nets may also last longer compared to the standard nets [21]. PBO nets are particularly important as a malaria control tool in areas where the protection against PBO is not a viable alternative to the standard nets.\n", - "\n", - "Fig. 5: Mean 30 min knockdown and 24 h mortality rates of the susceptible _An. arabiensis_ laboratory strain following wall bioassays 3 weeks after ActeIlic 300CS spraying, Asendabo, Ethiopia\n", - "\n", - "Fig. 6: Mean 30 min knockdown and 24 h mortality rates of the susceptible _An. arabiensis_ laboratory strain and wild _An. gambiae_ s.l. (with and without pre-exposure to PBO) following wall bioassays 10 weeks after IRS using ActeIlic 300CS, Asendabo, Ethiopia \n", - "pyrethroid resistance is high in the vector populations [22] and is, therefore, under consideration for more widespread distribution in Ethiopia. Despite these added advantages of PBO nets, the cost is currently higher than pyrethroid nets which may limit their wider use in malaria vector control in malaria endemic areas. Additionally, this study provides an example of a setting with high levels of pyrethroid resistance where PBO nets may not be sufficient.\n", - "\n", - "The proportion of _Anopheles_ retrieved from the verandah of huts with both PermaNet 2.0 and PermaNet 3.0 was higher than those from the verandah of the control hut. Huts with PermaNet 2.0 induced significantly higher exito-repellency compared to control huts. Insecticides often induce toxicity to mosquitoes. However, the non-toxic 'exito-repellent' effects of insecticides are often less understood. Pyrethroid and organophosphate insecticides are also known to have these non-killing effects. The impact of the non-killing effects of the insecticides on the risk of malaria is not clearly understood. Though exito-repellency appears to reduce indoor human-vector contact, it may on the contrary enhance risk of outdoor mosquito biting [23].\n", - "\n", - "The role of IRS as a key malaria vector control intervention tool is evident. Immediate mortality was observed in mosquitoes collected from the three huts sprayed with Actellic(r) 300CS up to the end of the study at 10 weeks post-spray. The proportion of blood-fed _Anopheles_ was significantly lower in the IRS-treated huts compared to the control hut. This could be due to the fast-acting nature of Actellic(r) 300CS insecticide with both contact and fumigant effects. This shows the potential of Actellic(r) 300CS as an insecticide of choice for IRS in areas where the local vector population is susceptible to the insecticide. _Anopheles arabiensis_ is susceptible to pirimibos-methyl in most parts of Ethiopia [10, 24]. Some earlier studies conducted in Ethiopia showed the effectiveness of combining IRS with ITNs compared to ITNs alone in suppressing vector populations [25]. Added benefits of combining IRS and ITNs in malaria prevention was also reported from other areas in sub-Saharan Africa [26-28]. In contrast, limited or no added benefit of combining IRS with ITNs as compared to ITNs alone has been reported elsewhere [29, 30]. This inconsistency could be attributed to differences in the intensity of malaria transmission and insecticide resistance of the local vector populations. The impact of the combined use of available vector control interventions appears to be more pronounced when applied in high transmission areas, and where the local vector populations are susceptible to the insecticide used for the IRS component [25].\n", - "\n", - "The importance of combining IRS and ITNs for malaria vector control is believed partly to come from the low or inconsistent utilization of ITNs by users and short residual efficacy of IRS insecticides [31, 32]. In Ethiopia, household surveys have shown approximately 50% of children under five and pregnant women use their nets with geographic variation [33]. The gap often created as a result of low utilization of ITNs may be complemented with IRS. ITN utilization and care depends on personal decisions and behavior [34]. However, once properly implemented, IRS rapidly suppresses local vector populations with no additional behaviors required from the residents, hence reducing malaria incidence [35]. However, effectiveness of IRS for malaria vector control is highly affected by both physiological and behavioral resistance of the local vector population to the insecticide [36], apart from operational factors and higher costs.\n", - "\n", - "As the study was conducted during the dry season of the year, the mosquito population density was not high and, therefore, limits the generalizability of the results. However, the findings of this study could provide preliminary information for vector control programs for the rational choice of future vector control intervention tools. In addition, combining indoor residual spraying using pirimibos-methyl with PBO nets has been reported to be antagonistic in some studies, but a negative interaction or antagonism between PBO and pirimibos-methyl was not detected in this study.\n", - "\n", - "header: Blood meal host source analysis and mosquito identification\n", - "\n", - "All the fed mosquitoes collected from the different huts were assayed to determine the blood meal host source using direct ELISA [13]. Moreover, a sub-sample of _An. gambiae_ s.l. was also molecularly identified to species using species-specific PCR following established protocol [14].\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `EntomologicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `EntomologicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `EntomologicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Hut trial\",\"Country\":\"Ethiopia\",\"Site\":\"Asendabo\"}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Synergist\": {\"title\": \"Synergist\", \"description\": \"Enter the synergist or synergists combination (delimited by comma).\"}, \"Net_holed\": {\"title\": \"Net Holed\", \"description\": \"Numerical count of the number of holes a net has - 0 if new and NA if not reported\\nNote - for tunnel tests there are holes that allow the mosquitoes the option of passing through to feed on the guinea pig.\"}, \"pHI_category\": {\"title\": \"Phi Category\", \"description\": \"Classification of the nets holed surface area, as one of \\\"Good\\\", \\\"Damaged\\\", \\\"Torn\\\", \\\"Serviceable\\\", or \\\"All\\\", as proposed by WHO\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"PermaNet 2.0\",\"Insecticide\":\"deltamethrin\",\"Net_holed\":18.0,\"pHI_category\":\"Torn\",\"Synergist\":null},\"N02\":{\"Net_type\":\"PermaNet 3.0\",\"Insecticide\":\"deltamethrin\",\"Net_holed\":18.0,\"pHI_category\":\"Torn\",\"Synergist\":\"PBO\"}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Chemical analysis results\n", - "\n", - "For PermaNet 3.0, PBO was only recorded from the roof panel of the nets; for Olyset Plus, PBO was recorded on all 5 panels (Table 6). Compared to the pyrethroid component, much less PBO was retained in both types of pyrethroid-PBO ITNs after 20 washes (58.7% vs. 25% with Olyset Plus and 80.9% vs. 68.8% with PermaNet 3.0, P < 0.05). The decrease in PBO content after washing was more evident in Olyset Plus than in PermaNet 3.0 netting, hence the wash retention index of PBO was higher with PermaNet 3.0 compared to Olyset Plus (98.1% vs. 93.3%).\n", - "\n", - "Figure 4: Tunnel test mortality (%) of susceptible and resistant strains of _Anopheles gambiae_ s.l. exposed to Olyset Plus vs. Olyset Net\n", - "\n", - "Figure 3: Mortality (%) of susceptible and resistant strains of _An. gambiae_ s.l. in cone bioassays with Olyset Plus and Olyset Net. S = susceptible, R = resistant\n", - "\n", - "header: Supplementary laboratory bioassays\n", - "\n", - "To help further explain the results obtained in the experimental huts, WHO cone bioassays and tunnel tests were performed on samples of netting (\\(30\\times 30\\) cm) obtained from Olyset Net and Olyset Plus when unwashed and after 10 and 20 washes. Washing was performed in the laboratory following WHO guidelines [22]. PermaNet 3.0 was not tested in the laboratory bioassays owing to the restricted application of PBO to the roof of the net preventing a realistic direct comparison with Olyset Plus in bioassays especially tunnel tests. Net samples from each ITN type and each wash point were tested against the following strains:\n", - "\n", - "1. _An. gambiae_ sensu lato (s.l.) strains from Cove, Benin (Cove strain) which is highly pyrethroid resistant. It originates from the experimental hut station in Cove and has shown > 200-fold resistance compared to the susceptible Kisumu strain in susceptibility bioassays. Resistance is mediated by elevated levels of P450s and high frequencies of _kdr_ [20].\n", - "2. _An. gambiae_ VKPer strain, which originated from the Kou Valley in Burkina Faso. VKPer has moderate levels of pyrethroid resistance mediated only by high frequencies of _kdr_.\n", - "3. _An. gambiae_ s.s. Kisumu strain, a reference susceptible strain which originated from Kisumu Kenya.\n", - "\n", - "Approximately two hundred 2-5 days old mosquitoes of each strain were exposed for 3 min in cone bioassays to four net samples of each net type in cohorts of 5 mosquitoes per cone. Knock down in cone bioassays was recorded after 1 h and mortality after 24 h.\n", - "\n", - "Two to three hundred 5-8 days old mosquitoes of each strain were also exposed to each net type in tunnel tests in replicates of 50 mosquitoes per net sample. The tunnel test is a laboratory assay designed to simulate natural host-seeking behaviour of mosquitoes at night in the presence of a net. It consists of a square glass cylinder (25 cm high, 25 cm wide, 60 cm in length) divided into two sections by means of a netting frame fitted into a slot across the tunnel. An anesthetized guinea pig was housed unconstrained in a small cage in one section, and mosquitoes were released in the other section at dusk and left overnight. The net samples were holed with nine 1-cm diameter holes to allow host-seeking mosquitoes to penetrate the baited chamber; an untreated net sample served as the control. The tunnels were kept overnight in a dark room at 25-29 degC and 75-85% RH. The next morning, the numbers found alive or dead, fed, or unfed, in each section were recorded. Live mosquitoes were provided with sugar solution and delayed mortality recorded after 24 h. The guinea pigs used in this study were kept in accordance with institutional guidelines for animal care.\n", - "\n", - "header: Experimental hut treatments\n", - "\n", - "Olyset Plus and PermaNet 3.0 were compared in the experimental huts when unwashed and after 20 standardized washes. A WHO-recommended pyrethroid-only long-lasting net (Olyset Net) was included to demonstrate the added effect of PBO on the insecticide-resistant local vector species. Nets were washed using savon de Marseilles and rinsed twice following WHO procedures for washing nets for experimental hut studies [22].\n", - "\n", - "The following seven (7) treatments were thus tested in seven experimental huts:\n", - "\n", - "1. Untreated polyethylene net\n", - "2. Olyset Net unwashed (permethrin only)\n", - "3. Olyset Net washed 20 times.\n", - "4. PermaNet 3.0 unwashed (Roof: deltamethrin plus PBO; sides: deltamethrin only)\n", - "5. PermaNet 3.0 washed 20 times.\n", - "6. Olyset Plus unwashed (permethrin plus PBO on all panels)\n", - "7. Olyset Plus washed 20 times.\n", - "\n", - "header: Background: Methods\n", - "\n", - "An experimental hut trial was performed in Cove, Benin to compare PermaNet 3.0 (deltamethrin plus PBO on roof panel only) to Olyset Plus (permethrin plus PBO on all panels) against wild pyrethroid-resistant _Anopheles gambiae_ sensu lato (s.l) following World Health Organization (WHO) guidelines. Both nets were tested unwashed and after 20 standardized washes compared to Olyset Net. Laboratory bioassays were also performed to help explain findings in the experimental huts.\n", - "\n", - "header: Mosquito blood-feeding rates in experimental huts\n", - "\n", - "The blood-feeding rates of wild pyrethroid-resistant _An. gambiae s.l_ that entered the experimental huts are presented in Fig. 2 with further details on mosquito feeding provided in Table 4. The percentage blood-feeding was lower in huts with the unwashed pyrethroid-PBO ITNs and was lowest of all with unwashed Olyset Plus as compared to unwashed PermaNet 3.0 (8% vs 19%, P < 0.001). For all net types, the data showed an overall increase in blood feeding with washed nets compared to unwashed nets and a decrease in blood-feeding inhibition relative to the untreated net. Percentage blood-feeding when washed 20 times did not differ significantly between the pyrethroid-PBO types (38% with PermaNet 3.0 vs. 35% with Olyset Plus, P = 0.708). The proportions of mosquitoes collected resting in the nets were lowest with the\n", - "\n", - "Fig. 1: Mortality of wild pyrethroid-resistant _Anopheles gambiae_ s.l. in experimental huts in Cove, Benin evaluating different net types. Vertical lines indicate 95% confidence interval estimates whilst bars with the same letter label are not significantly different (P > 0.05)\n", - "unwashed pyrethroid-PBO nets (2-6%), which is consistent with the higher toxicity observed with this type of net. Personal protection with both types of pyrethroid-PBO ITMs were > 80% when unwashed but this declined after 20 washes to 53% with PermaNet 3.0 and 11% with Olyset Plus.\n", - "\n", - "header: Abstract\n", - "\n", - "Comparative efficacy of two pyrethroid-piperonyl butoxide nets (Olyset Plus and PermaNet 3.0) against pyrethroid resistant malaria vectors: a non-inferiority assessment\n", - "\n", - "Corine Ngufor, Josias Fagbohoun, Abel Agbevo, Hanafy Ismail, Joseph D. Challenger, Thomas S. Churcher, Mark Rowland\n", - "\n", - "\n", - "\n", - "Pyrethroid-PBO nets were conditionally recommended for control of malaria transmitted by mosquitoes with oxidase-based pyrethroid-resistance based on epidemiological evidence of additional protective effect with Olyset Plus compared to a pyrethroid-only net (Olyset Net). Entomological studies can be used to assess the comparative performance of other brands of pyrethroid-PBO ITNs to Olyset Plus.\n", - "\n", - "header: Table 4: Blood-feeding rates of wild pyrethroid resistant Anopheles gambiae s.l. in experimental huts in Cove, Benin\n", - "footer: Values along a row bearing the same letter label are not significantly different (P > 0.05) * Value set to zero as more blood fed mosquitoes were caught in washed Olyset Net huts than control hut\n", - "columns: ['Net type', 'Control', 'Olyset Net', 'Olyset Net.1', 'PermaNet 3.0', 'PermaNet 3.0.1', 'Olyset Plus', 'Olyset Plus.1']\n", - "\n", - "{\"0\":{\"Net type\":\"Number of washes\",\"Control\":\"0\",\"Olyset Net\":\"0\",\"Olyset Net.1\":\"20\",\"PermaNet 3.0\":\"0\",\"PermaNet 3.0.1\":\"20\",\"Olyset Plus\":\"0\",\"Olyset Plus.1\":\"20\"},\"1\":{\"Net type\":\"Total collected\",\"Control\":\"962\",\"Olyset Net\":\"1135\",\"Olyset Net.1\":\"1546\",\"PermaNet 3.0\":\"489\",\"PermaNet 3.0.1\":\"616\",\"Olyset Plus\":\"688\",\"Olyset Plus.1\":\"1275\"},\"2\":{\"Net type\":\"Total blood fed\",\"Control\":\"496\",\"Olyset Net\":\"324\",\"Olyset Net.1\":\"807\",\"PermaNet 3.0\":\"95\",\"PermaNet 3.0.1\":\"231\",\"Olyset Plus\":\"56\",\"Olyset Plus.1\":\"442\"},\"3\":{\"Net type\":\"% Blood fed\",\"Control\":\"52a\",\"Olyset Net\":\"29b\",\"Olyset Net.1\":\"52a\",\"PermaNet 3.0\":\"19c\",\"PermaNet 3.0.1\":\"38d\",\"Olyset Plus\":\"8e\",\"Olyset Plus.1\":\"35d\"},\"4\":{\"Net type\":\"95% conf intervals\",\"Control\":\"48.4\\u201354.7\",\"Olyset Net\":\"25.9\\u201331.2\",\"Olyset Net.1\":\"49.7\\u201354.7\",\"PermaNet 3.0\":\"15.9\\u201322.9\",\"PermaNet 3.0.1\":\"33.7\\u201341.3\",\"Olyset Plus\":\"6.1\\u201310.2\",\"Olyset Plus.1\":\"32.1\\u201337.3\"},\"5\":{\"Net type\":\"% Blood-feeding inhibition\",\"Control\":\"-\",\"Olyset Net\":\"44\",\"Olyset Net.1\":\"0\",\"PermaNet 3.0\":\"63\",\"PermaNet 3.0.1\":\"27\",\"Olyset Plus\":\"85\",\"Olyset Plus.1\":\"33\"},\"6\":{\"Net type\":\"inside net\",\"Control\":\"294\",\"Olyset Net\":\"184\",\"Olyset Net.1\":\"542\",\"PermaNet 3.0\":\"28\",\"PermaNet 3.0.1\":\"130\",\"Olyset Plus\":\"17\",\"Olyset Plus.1\":\"241\"},\"7\":{\"Net type\":\"inside net (%)\",\"Control\":\"31a\",\"Olyset Net\":\"16bc\",\"Olyset Net.1\":\"35a\",\"PermaNet 3.0\":\"6d\",\"PermaNet 3.0.1\":\"21b\",\"Olyset Plus\":\"2e\",\"Olyset Plus.1\":\"19c\"},\"8\":{\"Net type\":\"Personal protection (%)\",\"Control\":\"-\",\"Olyset Net\":\"35\",\"Olyset Net.1\":\"0*\",\"PermaNet 3.0\":\"81\",\"PermaNet 3.0.1\":\"53\",\"Olyset Plus\":\"89\",\"Olyset Plus.1\":\"11\"}}\n", - "\n", - "header: Mosquito entry and exiting rates in experimental huts: Mortality of wild pyrethroid-resistant Anopheles gambiae s.l. in experimental huts\n", - "\n", - "Mortality rates of wild pyrethroid resistant mosquitoes that entered the experimental huts are presented in Fig. 1 with further details provided in Table 3. The lowest mortality was achieved with Olyset Net (18% before washing and 12% after 20 washes). Percentage mortality with unwashed pyrethroid-PBO nets was highest with PermaNet 3.0 (41%) but this declined significantly after 20 washes (17%, P < 0.001). Mortality with unwashed Olyset Plus was 28% and while this value was significantly lower than the mortality shown by unwashed PermaNet 3.0 (P < 0.001), it did not decrease significantly after 20 washes (28% vs. 24%, P = 0.433) whereas for PermaNet 3.0 it declined. Hence, Olyset Plus induced higher mortality rates than PermaNet 3.0 after 20 washes (24% vs 17%, P < 0.001). With respect to the pyrethroid-only ITN, both pyrethroid-PBO nets induced significantly higher mortality rates than Olyset Net with nets washed 20 times (P < 0.001) though the difference was higher with Olyset Plus (24% vs. 12%), than with PermaNet 3.0 (17% vs. 12%). After 20 washes, mortality with PermaNet 3.0 declined to the same level as the unwashed Olyset Net, (17% vs. 18%, P = 0.061) but remained significantly higher with Olyset Plus (24% vs. 17%, P = 0.036).\n", - "\n", - "header: Cone bioassay results: Tunnel test results\n", - "\n", - "The results from the tunnel tests comparing Olyset Plus and Olyset Net unwashed and after 10 and 20 washes against all three strains are presented in Figs. 4 and 5 for mortality and blood-feeding inhibition respectively. Mortality rates were generally higher in the tunnels tests compared to the cone bioassays and decreased as the strain become more pyrethroid-resistant (Fig. 4). Mortality rates with the Kisumu strain were very high with Olyset Net and Olyset Plus (> 95%). With the VKPer strain, mortality remained > 80% after 20 washes with both ITN types. With the Cove strain, mortality was significantly higher with Olyset Plus compared to Olyset Net at 0 and 10 washes but about the same after 20 washes. With unwashed nets, blood-feeding inhibition in the tunnel tests was consistently higher with Olyset Plus (> 90%) compared to Olyset Net (27-75%) for all three strains tested (Fig. 5). After 10 and 20 washes, blood-feeding inhibition of the Kisumu and VKPer strain remained > 80% with Olyset Plus and Olyset Net. With Cove strain, blood-feeding inhibition was also higher with Olyset Plus at 0 and 10 washes but declined to about the same level as Olyset Net after 20 washes (56%).\n", - "Mortality in the untreated control tunnel was < 10% with all three strains.\n", - "\n", - "header: Results\n", - "\n", - "Mortality with permethrin and alpha-cypermethrin treated papers was 100% with the laboratory-maintained pyrethroid-susceptible _An. gambiae_ Kisumu strain. With wild pyrethroid resistant _An. gambiae_ s.l. from Cove, mortality rates were <50% with all three pyrethroid insecticides tested (Table 1) thus confirming the high levels of pyrethroid resistance in this vector population. Mortality however increased from 19.2 to 52.5% with permethrin, 41.7% to 69.7% with deltamethrin and 0% to 82.4% with alphacypermethrin after pre-exposure of the Cove strain to PBO synergist (Table 1). This result demonstrated that mixed function oxidases are overexpressed in the wild Cove vector population and their effect can be effectively inhibited by the PBO synergist.\n", - "\n", - "header: Table 2 Entry and exiting rates of wild pyrethroid resistant Anopheles gambiae s.l. in experimental huts in Cove, Benin\n", - "footer: Values along a row bearing the same letter label are not signi\u001d\n", - "cantly different (P>0.05)* Value set to zero as more mosquitoes caught in Olyset Net huts than control huts\n", - "columns: ['Net type', 'Control', 'Olyset Net', 'Olyset Net.1', 'PermaNet 3.0', 'PermaNet 3.0.1', 'Olyset Plus', 'Olyset Plus.1']\n", - "\n", - "{\"0\":{\"Net type\":\"Number of washes\",\"Control\":\"0\",\"Olyset Net\":\"0\",\"Olyset Net.1\":\"20\",\"PermaNet 3.0\":\"0\",\"PermaNet 3.0.1\":\"20\",\"Olyset Plus\":\"0\",\"Olyset Plus.1\":\"20\"},\"1\":{\"Net type\":\"N collected\",\"Control\":\"962\",\"Olyset Net\":\"1135\",\"Olyset Net.1\":\"1546\",\"PermaNet 3.0\":\"489\",\"PermaNet 3.0.1\":\"616\",\"Olyset Plus\":\"688\",\"Olyset Plus.1\":\"1275\"},\"2\":{\"Net type\":\"N females\\/night\",\"Control\":\"23a\",\"Olyset Net\":\"27ab\",\"Olyset Net.1\":\"37b\",\"PermaNet 3.0\":\"12c\",\"PermaNet 3.0.1\":\"15d\",\"Olyset Plus\":\"16d\",\"Olyset Plus.1\":\"30ab\"},\"3\":{\"Net type\":\"% deterrence\",\"Control\":null,\"Olyset Net\":\"0*\",\"Olyset Net.1\":\"0*\",\"PermaNet 3.0\":\"49\",\"PermaNet 3.0.1\":\"36\",\"Olyset Plus\":\"28\",\"Olyset Plus.1\":\"0\"},\"4\":{\"Net type\":\"N exiting\",\"Control\":\"429\",\"Olyset Net\":\"639\",\"Olyset Net.1\":\"669\",\"PermaNet 3.0\":\"319\",\"PermaNet 3.0.1\":\"370\",\"Olyset Plus\":\"468\",\"Olyset Plus.1\":\"712\"},\"5\":{\"Net type\":\"% exiting\",\"Control\":\"45a\",\"Olyset Net\":\"56b\",\"Olyset Net.1\":\"43a\",\"PermaNet 3.0\":\"65cd\",\"PermaNet 3.0.1\":\"60ce\",\"Olyset Plus\":\"68d\",\"Olyset Plus.1\":\"56be\"},\"6\":{\"Net type\":\"95% conf. limits\",\"Control\":\"41.5\\u201347.7\",\"Olyset Net\":\"53.4\\u201359.2\",\"Olyset Net.1\":\"40.8\\u201345.7\",\"PermaNet 3.0\":\"61.0\\u201369.5\",\"PermaNet 3.0.1\":\"56.2\\u201363.9\",\"Olyset Plus\":\"64.4\\u201371.4\",\"Olyset Plus.1\":\"53.1\\u201358.6\"}}\n", - "\n", - "header: Experimental hut site: Insecticide resistance bioassays\n", - "\n", - "To assess the frequency of pyrethroid resistance and presence of mixed function oxidases in the Cove vector population during the trial, adult mosquitoes that emerged from larvae collected from breeding sites close to experimental huts were tested in WHO cylinder bioassays with and without pre-exposure to PBO. A total of ~100 mosquitoes of the pyrethroid resistant _An. gambiae_ s.l. Cove strain and the pyrethroid susceptible _An. gambiae_ Kisumu strain were exposed to treated filter papers in WHO cylinder bioassays in batches of 25. Tests were performed with papers treated with permethrin 0.75%, alpha-cypermethrin 0.05% and deltamethrin 0.05%. To assess presence of MFO, some mosquitoes were also pre-exposed to papers treated with 4% PBO prior to exposure to insecticide-treated papers. Exposure to PBO and to insecticides lasted 1 h, knockdown was recorded after 60 min and mortality after 24 h.\n", - "\n", - "header: Background\n", - "\n", - "Long-lasting insecticidal nets (LLINs) remain one of the most powerful tools to reduce malaria transmission in a community and provide personal protection to the user [1, 2]. They have contributed significantly to recent reductions in malaria burden [3]. Their efficacy is however threatened by increasing resistance to pyrethroids [4, 5]; the insecticide of choice used on bed-nets owing to its safety, low cost and rapid activity on vector mosquitoes [6]. To maintain the effectiveness of insecticide treated nets for malaria control, new types of LLINs treated with alternative insecticides and compounds which can either replace or complement pyrethroids on bed-nets are urgently needed.\n", - "\n", - "A new class of insecticide treated nets (ITNs) combining pyrethroids and piperonyl butoxide (PBO) (pyrethroid-PBO ITNs) have been developed [7]. PBO is a synergist that inhibits specific metabolic enzymes such as mixed-function oxidases within mosquitoes that detoxify or sequester insecticides before they can have a toxic effect on the mosquito. Pyrethroid-PBO nets can therefore induce increased mortality of pyrethroid-resistant malaria vectors that express mixed function oxidase based pyrethroid resistance mechanisms that are inhibited by the PBO in the net. These nets were given an interim endorsement as a new WHO class of vector control products in 2017 based on epidemiological data from a cluster randomized controlled trial in North Eastern Tanzania [8], that demonstrated additional malaria control with one prototype pyrethroid-PBO net (Olyset Plus) compared to a pyrethroid-only net (Olyset Net), against pyrethroid resistant malaria vectors of moderate intensity, partly conferred by monooxygenase-based resistance mechanism. Pyrethroid-PBO ITNs are conditionally recommended for malaria vector control instead of pyrethroid-only ITNs in areas of confirmed intermediate levels of resistance mediated by monooxygenase-based resistance mechanism [9]. This endorsement has been followed by an increasing uptake of pyrethroid-PBO nets worldwide [10]; in sub-Saharan Africa for example, the proportion of pyrethroid-PBO nets of all nets delivered increased from 3% in 2018 to 35% in 2021.\n", - "\n", - "While Olyset Plus was the first in class pyrethroid-PBO net to demonstrate public health value as observed in the Tanzanian trial [8], there are currently five additional types of pyrethroid-PBO ITNs on the World Health Organization (WHO) list of prequalified vector control products: PermaNet 3.0, Veeralin, Tsara Boost, Tsara Plus and very recently DuraNet Plus [7]. These nets have all demonstrated superiority over pyrethroid-only nets in terms of mosquito mortality and blood-feeding inhibition in multiple experimental hut trials across Africa [11, 12, 13, 14, 15, 16, 17]. However, they differ from Olyset Plus in their design and specifications; typically, the location of PBO on the net (i.e., all panels vs. roof panel only), the type and dose of pyrethroid used, bioavailability and retention of PBO after washing and could, therefore, differ in entomological and epidemiological impact. A recent large cluster-randomized trial in Uganda, evaluating the efficacy of Olyset Plus and PermaNet 3.0 compared to pyrethroid-only nets in a setting of high pyrethroid resistance, also demonstrated better protection against malaria with pyrethroid-PBO nets compared to pyrethroid-only nets for up to 18 months confirming the findings of the Tanzanian trial [18]. While the Ugandan trial was not powered to directly compare between the different ITN brands tested, the results showed that the additional protective effect of the pyrethroid-PBO net compared to the pyrethroid-only net was initially large with PermaNet 3.0 at 6 months post-distribution but lasted only up to 12 months whereas additional protective effect with Olyset Plus appeared to have a delayed onset which was not observed at 6 months but became evident at 12 months and lasted up to 18 months. There are major differences in design between Olyset Plus and PermaNet 3.0, which could have implications on their epidemiological impact; Olyset Plus is a polyethylene net incorporated with permethrin and PBO on all panels while PermaNet 3.0 is a polyester net coated with deltamethrin with PBO restricted to the roof of the net.\n", - "\n", - "To generate assurance of comparative performance of new candidate products within an established WHO vector control product class, without the need for epidemiological evidence for each new product, the WHO has developed new experimental hut study guidelines for assessing their non-inferiority to a first in class product for which evidence of public health value has already been generated [19]. These provisional guidelines are to be piloted with pyrethroid-PBO nets by comparing other WHO/PQ-listed pyrethroid-PBO nets with the first in class product, Olyset Plus. This study compared the efficacy and wash resistance of Olyset Plus and PermaNet\n", - "3.0 and assessed the non-inferiority of PermaNet 3.0 to Olyset Plus in experimental huts against wild free-flying pyrethroid resistant malaria vectors in Southern Benin.\n", - "\n", - "header: Supplementary laboratory bioassays results\n", - "\n", - "The 3-min cone bioassay mortality results for all 3 mosquito strains and wash points tested are presented in Fig. 3. Unwashed Olyset Net induced very low mortality rates against the susceptible Kisumu strain (17-20%) and even lower mortality rates against the pyrethroid resistant strains (< 5%). Cone bioassay mortality rates with unwashed Olyset Plus were higher across all 3 strains compared to Olyset Net though mortality decreased as the strain tested became more pyrethroid-resistant. Cone bioassay mortality however dropped significantly with washed net samples. Mortality with the untreated net samples did not exceed 5% with any strain tested.\n", - "\n", - "header: Insecticide resistance in malaria vectors in Cove: Experimental hut trial results\n", - "\n", - "A total of 6711 pyrethroid resistant female _An. gambiae_ s.l. were collected during the experimental hut trial. The entry and exiting rates of wild pyrethroid resistant _An. gambiae_ s.l. from the experimental huts with the different ITN types tested in the trial are presented in Table 2. Compared to the control, Olyset Net did not deter mosquitoes from entering the experimental huts (0% when unwashed and after 20 washes). Mosquito deterrence was significantly higher with PermaNet 3.0 compared to Olyset Plus both unwashed (49% vs. 28%, P < 0.001) and after 20 washes (36% vs. 0%, P < 0.001). Nevertheless, early exiting of mosquitoes from the experimental huts into the veranda trap did not differ significantly between both pyrethroid-PBO net types both when unwashed (65% with PermaNet 3.0 vs 68% with Olyset Plus, P = 0.232) and after 20 washes (60% with PermaNet 3.0 vs. 56% with Olyset Plus, P = 0.053).\n", - "\\begin{table}\n", - "\\begin{tabular}{l c c c c c c}\n", - "**Net type** & **Control** & **Olyset Net** & & **PermNet 3.0** & **Olyset Plus** \\\\ Number of washes & 0 & 0 & 20 & 0 & 20 & 0 & 20 \\\\ N collected & 962 & 1135 & 1546 & 489 & 616 & 688 & 1275 \\\\ N females/night & 233 & 27\\({}^{\\text{hb}}\\) & 37\\({}^{\\text{b}}\\) & 12\\({}^{\\text{c}}\\) & 15\\({}^{\\text{d}}\\) & 16\\({}^{\\text{d}}\\) & 30\\({}^{\\text{hb}}\\) \\\\ \\% deterrence & – & 0\\({}^{\\text{a}}\\) & 0\\({}^{\\text{a}}\\) & 49 & 36 & 28 & 0 \\\\ N eating & 429 & 639 & 669 & 319 & 370 &\n", - "\n", - "header: Table 1: Mortality of pyrethroid resistant Anopheles gambiae s.l. from Cove in WHO cylinder bioassays with and without pre-exposure to PBO\n", - "footer: None\n", - "columns: ['Variable', 'N exposed', 'N dead', '% Dead']\n", - "\n", - "{\"0\":{\"Variable\":\"Control\",\"N exposed\":101,\"N dead\":0,\"% Dead\":0.0},\"1\":{\"Variable\":\"PBO 4% only\",\"N exposed\":103,\"N dead\":3,\"% Dead\":2.9},\"2\":{\"Variable\":\"Permethrin 0.75%\",\"N exposed\":104,\"N dead\":20,\"% Dead\":19.2},\"3\":{\"Variable\":\"Deltamethrin 0.05%\",\"N exposed\":91,\"N dead\":38,\"% Dead\":41.7},\"4\":{\"Variable\":\"Alpha-cypermethrin 0.05%\",\"N exposed\":102,\"N dead\":0,\"% Dead\":0.0},\"5\":{\"Variable\":\"PBO 4% then permethrin 0.75%\",\"N exposed\":99,\"N dead\":52,\"% Dead\":52.5},\"6\":{\"Variable\":\"PBO 4% then deltamethrin 0.05%\",\"N exposed\":99,\"N dead\":69,\"% Dead\":69.7},\"7\":{\"Variable\":\"PBO 4% then alpha-cypermethrin 0.05%\",\"N exposed\":102,\"N dead\":84,\"% Dead\":82.4},\"8\":{\"Variable\":\"PBO 4% then alpha-cypermethrin 0.05%\",\"N exposed\":102,\"N dead\":84,\"% Dead\":82.4}}\n", - "\n", - "header: Chemical analysis\n", - "\n", - "At the end of the experimental hut trial, five pieces of netting (\\(25\\times 25\\) cm) obtained from the panels of replicate nets of each net type (before and after washing) used in the huts were assessed for deltamethrin, permethrin and PBO content using HPLC. Insecticide was extracted from each net piece with an area of 48 sq cm collected from the five net samples (\\(25\\times 25\\) cm) obtained from each whole net. The insecticide content of each sample was determined by injecting ten ul aliquots of the extract on a reverse-phase Hypersil GOLD C18 column (75 A, \\(250\\times 4.6\\) mm, 5-um particle size; Thermo Scientific) at room temperature. A mobile phase of 70% acetonitrile in water was used at a flow rate of 1 ml min\\({}^{-1}\\) to separate the target analyte. Chromatographic peaks of the insecticides and internal standard were detected at a wavelength of 232 nm with the Ultimate 3000 UV detector and analysed with Dionex Chromeleon(tm) 6.8 Chromatography Data System software. Quantities of insecticide were calculated from standard curves established by known concentrations of the insecticide authenticated standards and corrected by internal standard readings in each sample relative to control.\n", - "\n", - "Data from chemical analysis was used to calculate the percentage retention of each active ingredient after 20 washes relative to the unwashed net and the wash retention index. Wash-resistance index was calculated according to WHO guidelines [22] as indicated below:\n", - "\n", - "\\[\\text{Wash resistance index} = 100\\times\\text{n}\\sqrt{(\\text{tn}/\\text{t0})}\\] \\[\\left(\\text{free migration stage behaviour}\\right)\\]\n", - "\n", - "where \\(\\text{tn}=\\text{total active ingredient content after n washing cycles, t0=total active ingredient content before washing, n=number of washes.\n", - "\n", - "header: Results\n", - "\n", - "With unwashed nets, mosquito mortality was higher in huts with PermaNet 3.0 compared to Olyset Plus (41% vs. 28%, P < 0.001). After 20 washes, mortality declined significantly with PermaNet 3.0 (41% unwashed vs. 17% after washing P < 0.001), but not with Olyset Plus (28% unwashed vs. 24% after washing P = 0.433); Olyset Plus induced significantly higher mortality than PermaNet 3.0 and Olyset Net after 20 washes. PermaNet 3.0 showed a higher wash retention of PBO compared to Olyset Plus. A non-inferiority analysis performed with data from unwashed and washed nets together using a margin recommended by the WHO, showed that PermaNet 3.0 was non-inferior to Olyset Plus in terms of mosquito mortality (25% with Olyset Plus vs. 27% with PermaNet 3.0, OR = 1.528, 95%Cl = 1.02-2.29) but not in reducing mosquito feeding (25% with Olyset Plus vs. 30% with PermaNet 3.0, OR = 1.192, 95%Cl = 0.77-1.84). Both pyrethroid-PBO nets were superior to Olyset Net.\n", - "\n", - "header: Table 3 Mortality of wild pyrethroid resistant Anopheles gambiae s.l. in experimental huts in Cove, Benin\n", - "footer: Values along a row bearing the same letter label are not signi\u001d\n", - "cantly di\u001c\n", - "erent (P>0.05)\n", - "columns: ['Net type', 'Control', 'Olyset Net', 'Olyset Net.1', 'PermaNet 3.0', 'PermaNet 3.0.1', 'Olyset Plus', 'Olyset Plus.1']\n", - "\n", - "{\"0\":{\"Net type\":\"Number of washes\",\"Control\":\"0\",\"Olyset Net\":\"0\",\"Olyset Net.1\":\"20\",\"PermaNet 3.0\":\"0\",\"PermaNet 3.0.1\":\"20\",\"Olyset Plus\":\"0\",\"Olyset Plus.1\":\"20\"},\"1\":{\"Net type\":\"Total collected\",\"Control\":\"962\",\"Olyset Net\":\"1135\",\"Olyset Net.1\":\"1546\",\"PermaNet 3.0\":\"489\",\"PermaNet 3.0.1\":\"616\",\"Olyset Plus\":\"688\",\"Olyset Plus.1\":\"1275\"},\"2\":{\"Net type\":\"Total dead\",\"Control\":\"12\",\"Olyset Net\":\"209\",\"Olyset Net.1\":\"284\",\"PermaNet 3.0\":\"198\",\"PermaNet 3.0.1\":\"103\",\"Olyset Plus\":\"190\",\"Olyset Plus.1\":\"297\"},\"3\":{\"Net type\":\"Mortality (%)\",\"Control\":\"1a\",\"Olyset Net\":\"18b\",\"Olyset Net.1\":\"12c\",\"PermaNet 3.0\":\"41d\",\"PermaNet 3.0.1\":\"17b\",\"Olyset Plus\":\"28e\",\"Olyset Plus.1\":\"24e\"},\"4\":{\"Net type\":\"95% conf. limits\",\"Control\":\"0.6\\u20132.0\",\"Olyset Net\":\"16.2\\u201320.1\",\"Olyset Net.1\":\"10.3\\u201313.5\",\"PermaNet 3.0\":\"36.1\\u201344.8\",\"PermaNet 3.0.1\":\"13.8\\u201319.8\",\"Olyset Plus\":\"24.4\\u201331.1\",\"Olyset Plus.1\":\"21.0\\u201325.6\"},\"5\":{\"Net type\":\"Corrected for control (%)\",\"Control\":\"-\",\"Olyset Net\":\"17\",\"Olyset Net.1\":\"11\",\"PermaNet 3.0\":\"41\",\"PermaNet 3.0.1\":\"17\",\"Olyset Plus\":\"27\",\"Olyset Plus.1\":\"22\"}}\n", - "\n", - "header: Discussion\n", - "\n", - "Following the interim endorsement of pyrethroid-PBO nets by the WHO [23], malaria vector control programmes are faced with additional choice of different brands of prequalified pyrethroid-PBO nets [7]. Considering the wide variations in design of the available brands of these nets, studies generating the required assurance of comparative performance to Olyset Plus (the first in class pyrethroid-PBO net to demonstrate empirical evidence of entomological and epidemiological impact) are necessary. This study compared the efficacy and assessed the non-inferiority of PermaNet 3.0 to Olyset Plus in experimental huts against pyrethroid resistant malaria vectors in a highly endemic country of West Africa, following WHO guidelines [19, 22].\n", - "\n", - "The WHO susceptibility bioassays confirmed the high levels of pyrethroid resistance in the vector population at the experimental hut site during the trial, corroborating previous findings [20]. The increased mortality achieved in bioassays with pre-exposure to PBO showed that pyrethroid-resistance was indeed at least partly mediated by increased mono-oxygenase activity. The experimental hut trial demonstrated improved levels of mortality and blood-feeding inhibition with both pyrethroid-PBO ITN types compared to a standard pyrethroid-only LLIN against a vector population that was very resistant to pyrethroids; this was supported by results from the laboratory assays which compared Olyset Plus to Olyset Net against pyrethroid-resistant mosquito strains. These observations are partly attributable to the synergistic effect of the PBO on pyrethroid resistance and are consistent with other experimental hut trials across Africa and epidemiological trials performed in Tanzania [8] and Uganda [18].\n", - "\n", - "Twenty washes in experimental hut studies are indicated by WHO as a proxy for the ability of an ITN to withstand multiple washes under operational use over a 3-year life span [19, 22]. With unwashed nets, the levels of improved mortality relative to the standard pyrethroid-only net were higher with PermaNet 3.0 than with Olyset Plus. However, unlike with Olyset Plus, this effect was lost with PermaNet 3.0 after twenty washes;\n", - "Figure 5: Blood-feeding inhibition (%) of susceptible and resistant strains of _An. gambiae s.l._ in tunnel tests with Olyset Plus and Olyset Net. Blood-feeding inhibition was calculated relative to the control tunnel. 5 = susceptible, R = Resistant\n", - "PermanNet 3.0 killed significantly lower proportions of mosquitoes than Olyset Plus and same proportions as an unwashed pyrethroid-only ITN. Though the RCT in Uganda was not powered to assess differences between the pyrethroid-PBO ITN brands tested (PermanNet 3.0 vs. Olyset Plus) [18], the results from our trial appear consistent with some of the differences in epidemiological effect observed between both brands: (1) The high experimental hut mortality with the unwashed PermaNet 3.0 supports the higher initial protective effect observed with the net in the Ugandan trial at the 6 months epidemiological survey which was not seen with Olyset Plus. (2) The higher rate of decline in experimental hut mortality after washing with PermaNet 3.0 compared to Olyset Plus is consistent with the shorter-lived epidemiological effect in the Ugandan trial with PermaNet 3.0 (up to 12 months) compared to Olyset Plus which remained more protective than the pyrethroid-only net at 18 months. However, care should be taken to not over-interpret the comparisons between results from our hut trial and Ugandan RCT considering the different geographical settings and the lack of sufficient power to differentiate between the epidemiological impact of both pyrethroid-PBO net type in the Ugandan trial.\n", - "\n", - "The difference in hut performance between both pyrethroid-PBO ITNs can be attributed to differences in the retention and movement of PBO across the polymer fibre in Olyset Plus compared to PermaNet 3.0 and/or differences in design and specification. Retention of biofeficacy of pyrethroid-PBO nets is a fine balance between migration and replenishment of PBO from the core to the surface of fibres and the maintenance of an internal reservoir sufficient to last the lifespan of the LLIN, which is typically set at 3 years of use [24]. The chemical analysis results showed a faster release of PBO in the Olyset Plus netting after 20 washes compared to PermaNet 3.0 though it is unclear whether this may have increased the bioavailability of the PBO on the surface of Olyset Plus after washing. Whether sufficient PBO would remain within the fibres of both pyrethroid-PBO nets after 3 years of household use is presently unknown and is the subject of ongoing WHO durability trials of Olyset Plus and PermaNet 3.0 which are not yet completed [18, 25]. Another factor which may contribute to the discrepancies in efficacy of the two pyrethroid-PBO ITNs are differences in design and specification: Olyset Plus is treated with the pyrethroid permethrin while PermaNet 3.0 is treated with deltamethrin, and Olyset Plus contains PBO on every panel whereas in PermaNet 3.0, PBO is available only on the top panel of the net. It is not clear whether the restricted application of PBO to the roof of the net would affect bioefficacy. This would require comparative trials of the PermaNet 3.0 with pyrethroid-PBO restricted to the upper panel and pyrethroid to side panels versus an ITN with all 5 panels treated with pyrethroid-PBO. Behavioural studies of mosquitoes around nets indicate that mosquitoes may first make multiple contacts with the roof panel in response to odour plumes [26]; however, experimental hut trials comparing restricted versus full PBO coverage on nets are too few to be definitive on the question of efficacy.\n", - "\n", - "Despite the differences in performance observed between both pyrethroid-PBO net types with regards to their impact after 20 standardized washes, the non-inferiority analysis performed in accordance with recent WHO guidelines [19] showed that PermaNet 3.0 was non-inferior to Olyset Plus in terms of mosquito mortality but not with blood-feeding inhibition. The higher blood-feeding inhibition observed with Olyset Plus could be due to the high excito-repellency of permethrin in Olyset Plus compared to deltamethrin in PermaNet 3.0 [27]. Alternatively, the study may not have had sufficient power to demonstrate non-inferiority of PermaNet 3.0 to Olyset Plus for both endpoints; further studies are on-going to help guide power calculations for ITN non-inferiority studies. The non-inferiority margin used for the analysis was defined by WHO as an odds ratio of 0.7 in mosquito mortality and feeding between a candidate net and the first in class net considered acceptable for both products to be in the same policy class. According to these guidelines, if non-inferiority is demonstrated in two independent experimental hut trials in different geographical locations representative of where the products will be deployed, then PermaNet 3.0 will be placed in the same WHO vector control product class as Olyset Plus [19]. It is however not clear whether non-inferiority must be demonstrated for both endpoints (mortality and blood-feeding) for a second-in class product to become part of an intervention class. While the guidelines were developed more like a compromise between the risk of accepting an inferior product and the feasibility of conducting epidemiological trials, the findings from our trial show that non-inferiority experimental hut trials are complex, and results must be interpreted with care. Comparative performance between products may also depend on other location-specific factors, such as the intensity of insecticide resistance and behaviour of the target vector population which should be taken into consideration when choosing between products of the same class.\n", - "\n", - "While the present hut trial in Benin and earlier hut trials in Benin, Tanzania, Cameroon, Burkina Faso, Cote d'Ivoire and Vietnam where the vectors were also resistant have shown some additional effect of pyrethroid-PBO nets over a standard pyrethroid net [12, 13, 15-17], the margin appears to vary depending on the level of \n", - "pyrethroid-resistance encountered [28]. The absolute increase in hut trial mortality with Olyset Plus compared to Olyset Net in the present study (24-28% vs. 12-18%) conducted in an area of intense pyrethroid-resistance [20] is lower than what has been previously reported with Olyset Plus in another area in Northern Benin where pyrethroid resistance was less prevalent (67-81% vs. 36-42%) [16]. Compared to East Africa, West Africa has shown historically higher intensity of pyrethroid resistance in malaria vectors [29] mediated by complex and multiple insecticide resistance mechanisms which may not be effectively tackled by the synergistic effects of PBO in pyrethroid-PBO ITNs [4, 23]. It is therefore not clear whether a diminishment in experimental but mortality with pyrethroid-PBO nets due to increasing intensity of pyrethroid-resistance would translate to a reduced epidemiological effect of pyrethroid-PBO ITNs in West Africa compared to East Africa which has been the site of the only epidemiological trials so far.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ITNCondition` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Chemical analysis results\n", - "\n", - "For PermaNet 3.0, PBO was only recorded from the roof panel of the nets; for Olyset Plus, PBO was recorded on all 5 panels (Table 6). Compared to the pyrethroid component, much less PBO was retained in both types of pyrethroid-PBO ITNs after 20 washes (58.7% vs. 25% with Olyset Plus and 80.9% vs. 68.8% with PermaNet 3.0, P < 0.05). The decrease in PBO content after washing was more evident in Olyset Plus than in PermaNet 3.0 netting, hence the wash retention index of PBO was higher with PermaNet 3.0 compared to Olyset Plus (98.1% vs. 93.3%).\n", - "\n", - "Figure 4: Tunnel test mortality (%) of susceptible and resistant strains of _Anopheles gambiae_ s.l. exposed to Olyset Plus vs. Olyset Net\n", - "\n", - "Figure 3: Mortality (%) of susceptible and resistant strains of _An. gambiae_ s.l. in cone bioassays with Olyset Plus and Olyset Net. S = susceptible, R = resistant\n", - "\n", - "header: Abstract\n", - "\n", - "Comparative efficacy of two pyrethroid-piperonyl butoxide nets (Olyset Plus and PermaNet 3.0) against pyrethroid resistant malaria vectors: a non-inferiority assessment\n", - "\n", - "Corine Ngufor, Josias Fagbohoun, Abel Agbevo, Hanafy Ismail, Joseph D. Challenger, Thomas S. Churcher, Mark Rowland\n", - "\n", - "\n", - "\n", - "Pyrethroid-PBO nets were conditionally recommended for control of malaria transmitted by mosquitoes with oxidase-based pyrethroid-resistance based on epidemiological evidence of additional protective effect with Olyset Plus compared to a pyrethroid-only net (Olyset Net). Entomological studies can be used to assess the comparative performance of other brands of pyrethroid-PBO ITNs to Olyset Plus.\n", - "\n", - "header: Results\n", - "\n", - "Mortality with permethrin and alpha-cypermethrin treated papers was 100% with the laboratory-maintained pyrethroid-susceptible _An. gambiae_ Kisumu strain. With wild pyrethroid resistant _An. gambiae_ s.l. from Cove, mortality rates were <50% with all three pyrethroid insecticides tested (Table 1) thus confirming the high levels of pyrethroid resistance in this vector population. Mortality however increased from 19.2 to 52.5% with permethrin, 41.7% to 69.7% with deltamethrin and 0% to 82.4% with alphacypermethrin after pre-exposure of the Cove strain to PBO synergist (Table 1). This result demonstrated that mixed function oxidases are overexpressed in the wild Cove vector population and their effect can be effectively inhibited by the PBO synergist.\n", - "\n", - "header: Background: Methods\n", - "\n", - "An experimental hut trial was performed in Cove, Benin to compare PermaNet 3.0 (deltamethrin plus PBO on roof panel only) to Olyset Plus (permethrin plus PBO on all panels) against wild pyrethroid-resistant _Anopheles gambiae_ sensu lato (s.l) following World Health Organization (WHO) guidelines. Both nets were tested unwashed and after 20 standardized washes compared to Olyset Net. Laboratory bioassays were also performed to help explain findings in the experimental huts.\n", - "\n", - "header: Mosquito blood-feeding rates in experimental huts\n", - "\n", - "The blood-feeding rates of wild pyrethroid-resistant _An. gambiae s.l_ that entered the experimental huts are presented in Fig. 2 with further details on mosquito feeding provided in Table 4. The percentage blood-feeding was lower in huts with the unwashed pyrethroid-PBO ITNs and was lowest of all with unwashed Olyset Plus as compared to unwashed PermaNet 3.0 (8% vs 19%, P < 0.001). For all net types, the data showed an overall increase in blood feeding with washed nets compared to unwashed nets and a decrease in blood-feeding inhibition relative to the untreated net. Percentage blood-feeding when washed 20 times did not differ significantly between the pyrethroid-PBO types (38% with PermaNet 3.0 vs. 35% with Olyset Plus, P = 0.708). The proportions of mosquitoes collected resting in the nets were lowest with the\n", - "\n", - "Fig. 1: Mortality of wild pyrethroid-resistant _Anopheles gambiae_ s.l. in experimental huts in Cove, Benin evaluating different net types. Vertical lines indicate 95% confidence interval estimates whilst bars with the same letter label are not significantly different (P > 0.05)\n", - "unwashed pyrethroid-PBO nets (2-6%), which is consistent with the higher toxicity observed with this type of net. Personal protection with both types of pyrethroid-PBO ITMs were > 80% when unwashed but this declined after 20 washes to 53% with PermaNet 3.0 and 11% with Olyset Plus.\n", - "\n", - "header: Supplementary laboratory bioassays\n", - "\n", - "To help further explain the results obtained in the experimental huts, WHO cone bioassays and tunnel tests were performed on samples of netting (\\(30\\times 30\\) cm) obtained from Olyset Net and Olyset Plus when unwashed and after 10 and 20 washes. Washing was performed in the laboratory following WHO guidelines [22]. PermaNet 3.0 was not tested in the laboratory bioassays owing to the restricted application of PBO to the roof of the net preventing a realistic direct comparison with Olyset Plus in bioassays especially tunnel tests. Net samples from each ITN type and each wash point were tested against the following strains:\n", - "\n", - "1. _An. gambiae_ sensu lato (s.l.) strains from Cove, Benin (Cove strain) which is highly pyrethroid resistant. It originates from the experimental hut station in Cove and has shown > 200-fold resistance compared to the susceptible Kisumu strain in susceptibility bioassays. Resistance is mediated by elevated levels of P450s and high frequencies of _kdr_ [20].\n", - "2. _An. gambiae_ VKPer strain, which originated from the Kou Valley in Burkina Faso. VKPer has moderate levels of pyrethroid resistance mediated only by high frequencies of _kdr_.\n", - "3. _An. gambiae_ s.s. Kisumu strain, a reference susceptible strain which originated from Kisumu Kenya.\n", - "\n", - "Approximately two hundred 2-5 days old mosquitoes of each strain were exposed for 3 min in cone bioassays to four net samples of each net type in cohorts of 5 mosquitoes per cone. Knock down in cone bioassays was recorded after 1 h and mortality after 24 h.\n", - "\n", - "Two to three hundred 5-8 days old mosquitoes of each strain were also exposed to each net type in tunnel tests in replicates of 50 mosquitoes per net sample. The tunnel test is a laboratory assay designed to simulate natural host-seeking behaviour of mosquitoes at night in the presence of a net. It consists of a square glass cylinder (25 cm high, 25 cm wide, 60 cm in length) divided into two sections by means of a netting frame fitted into a slot across the tunnel. An anesthetized guinea pig was housed unconstrained in a small cage in one section, and mosquitoes were released in the other section at dusk and left overnight. The net samples were holed with nine 1-cm diameter holes to allow host-seeking mosquitoes to penetrate the baited chamber; an untreated net sample served as the control. The tunnels were kept overnight in a dark room at 25-29 degC and 75-85% RH. The next morning, the numbers found alive or dead, fed, or unfed, in each section were recorded. Live mosquitoes were provided with sugar solution and delayed mortality recorded after 24 h. The guinea pigs used in this study were kept in accordance with institutional guidelines for animal care.\n", - "\n", - "header: Supplementary laboratory bioassays results\n", - "\n", - "The 3-min cone bioassay mortality results for all 3 mosquito strains and wash points tested are presented in Fig. 3. Unwashed Olyset Net induced very low mortality rates against the susceptible Kisumu strain (17-20%) and even lower mortality rates against the pyrethroid resistant strains (< 5%). Cone bioassay mortality rates with unwashed Olyset Plus were higher across all 3 strains compared to Olyset Net though mortality decreased as the strain tested became more pyrethroid-resistant. Cone bioassay mortality however dropped significantly with washed net samples. Mortality with the untreated net samples did not exceed 5% with any strain tested.\n", - "\n", - "header: Experimental hut treatments\n", - "\n", - "Olyset Plus and PermaNet 3.0 were compared in the experimental huts when unwashed and after 20 standardized washes. A WHO-recommended pyrethroid-only long-lasting net (Olyset Net) was included to demonstrate the added effect of PBO on the insecticide-resistant local vector species. Nets were washed using savon de Marseilles and rinsed twice following WHO procedures for washing nets for experimental hut studies [22].\n", - "\n", - "The following seven (7) treatments were thus tested in seven experimental huts:\n", - "\n", - "1. Untreated polyethylene net\n", - "2. Olyset Net unwashed (permethrin only)\n", - "3. Olyset Net washed 20 times.\n", - "4. PermaNet 3.0 unwashed (Roof: deltamethrin plus PBO; sides: deltamethrin only)\n", - "5. PermaNet 3.0 washed 20 times.\n", - "6. Olyset Plus unwashed (permethrin plus PBO on all panels)\n", - "7. Olyset Plus washed 20 times.\n", - "\n", - "header: Experimental hut site: Insecticide resistance bioassays\n", - "\n", - "To assess the frequency of pyrethroid resistance and presence of mixed function oxidases in the Cove vector population during the trial, adult mosquitoes that emerged from larvae collected from breeding sites close to experimental huts were tested in WHO cylinder bioassays with and without pre-exposure to PBO. A total of ~100 mosquitoes of the pyrethroid resistant _An. gambiae_ s.l. Cove strain and the pyrethroid susceptible _An. gambiae_ Kisumu strain were exposed to treated filter papers in WHO cylinder bioassays in batches of 25. Tests were performed with papers treated with permethrin 0.75%, alpha-cypermethrin 0.05% and deltamethrin 0.05%. To assess presence of MFO, some mosquitoes were also pre-exposed to papers treated with 4% PBO prior to exposure to insecticide-treated papers. Exposure to PBO and to insecticides lasted 1 h, knockdown was recorded after 60 min and mortality after 24 h.\n", - "\n", - "header: Table 1: Mortality of pyrethroid resistant Anopheles gambiae s.l. from Cove in WHO cylinder bioassays with and without pre-exposure to PBO\n", - "footer: None\n", - "columns: ['Variable', 'N exposed', 'N dead', '% Dead']\n", - "\n", - "{\"0\":{\"Variable\":\"Control\",\"N exposed\":101,\"N dead\":0,\"% Dead\":0.0},\"1\":{\"Variable\":\"PBO 4% only\",\"N exposed\":103,\"N dead\":3,\"% Dead\":2.9},\"2\":{\"Variable\":\"Permethrin 0.75%\",\"N exposed\":104,\"N dead\":20,\"% Dead\":19.2},\"3\":{\"Variable\":\"Deltamethrin 0.05%\",\"N exposed\":91,\"N dead\":38,\"% Dead\":41.7},\"4\":{\"Variable\":\"Alpha-cypermethrin 0.05%\",\"N exposed\":102,\"N dead\":0,\"% Dead\":0.0},\"5\":{\"Variable\":\"PBO 4% then permethrin 0.75%\",\"N exposed\":99,\"N dead\":52,\"% Dead\":52.5},\"6\":{\"Variable\":\"PBO 4% then deltamethrin 0.05%\",\"N exposed\":99,\"N dead\":69,\"% Dead\":69.7},\"7\":{\"Variable\":\"PBO 4% then alpha-cypermethrin 0.05%\",\"N exposed\":102,\"N dead\":84,\"% Dead\":82.4},\"8\":{\"Variable\":\"PBO 4% then alpha-cypermethrin 0.05%\",\"N exposed\":102,\"N dead\":84,\"% Dead\":82.4}}\n", - "\n", - "header: Table 4: Blood-feeding rates of wild pyrethroid resistant Anopheles gambiae s.l. in experimental huts in Cove, Benin\n", - "footer: Values along a row bearing the same letter label are not significantly different (P > 0.05) * Value set to zero as more blood fed mosquitoes were caught in washed Olyset Net huts than control hut\n", - "columns: ['Net type', 'Control', 'Olyset Net', 'Olyset Net.1', 'PermaNet 3.0', 'PermaNet 3.0.1', 'Olyset Plus', 'Olyset Plus.1']\n", - "\n", - "{\"0\":{\"Net type\":\"Number of washes\",\"Control\":\"0\",\"Olyset Net\":\"0\",\"Olyset Net.1\":\"20\",\"PermaNet 3.0\":\"0\",\"PermaNet 3.0.1\":\"20\",\"Olyset Plus\":\"0\",\"Olyset Plus.1\":\"20\"},\"1\":{\"Net type\":\"Total collected\",\"Control\":\"962\",\"Olyset Net\":\"1135\",\"Olyset Net.1\":\"1546\",\"PermaNet 3.0\":\"489\",\"PermaNet 3.0.1\":\"616\",\"Olyset Plus\":\"688\",\"Olyset Plus.1\":\"1275\"},\"2\":{\"Net type\":\"Total blood fed\",\"Control\":\"496\",\"Olyset Net\":\"324\",\"Olyset Net.1\":\"807\",\"PermaNet 3.0\":\"95\",\"PermaNet 3.0.1\":\"231\",\"Olyset Plus\":\"56\",\"Olyset Plus.1\":\"442\"},\"3\":{\"Net type\":\"% Blood fed\",\"Control\":\"52a\",\"Olyset Net\":\"29b\",\"Olyset Net.1\":\"52a\",\"PermaNet 3.0\":\"19c\",\"PermaNet 3.0.1\":\"38d\",\"Olyset Plus\":\"8e\",\"Olyset Plus.1\":\"35d\"},\"4\":{\"Net type\":\"95% conf intervals\",\"Control\":\"48.4\\u201354.7\",\"Olyset Net\":\"25.9\\u201331.2\",\"Olyset Net.1\":\"49.7\\u201354.7\",\"PermaNet 3.0\":\"15.9\\u201322.9\",\"PermaNet 3.0.1\":\"33.7\\u201341.3\",\"Olyset Plus\":\"6.1\\u201310.2\",\"Olyset Plus.1\":\"32.1\\u201337.3\"},\"5\":{\"Net type\":\"% Blood-feeding inhibition\",\"Control\":\"-\",\"Olyset Net\":\"44\",\"Olyset Net.1\":\"0\",\"PermaNet 3.0\":\"63\",\"PermaNet 3.0.1\":\"27\",\"Olyset Plus\":\"85\",\"Olyset Plus.1\":\"33\"},\"6\":{\"Net type\":\"inside net\",\"Control\":\"294\",\"Olyset Net\":\"184\",\"Olyset Net.1\":\"542\",\"PermaNet 3.0\":\"28\",\"PermaNet 3.0.1\":\"130\",\"Olyset Plus\":\"17\",\"Olyset Plus.1\":\"241\"},\"7\":{\"Net type\":\"inside net (%)\",\"Control\":\"31a\",\"Olyset Net\":\"16bc\",\"Olyset Net.1\":\"35a\",\"PermaNet 3.0\":\"6d\",\"PermaNet 3.0.1\":\"21b\",\"Olyset Plus\":\"2e\",\"Olyset Plus.1\":\"19c\"},\"8\":{\"Net type\":\"Personal protection (%)\",\"Control\":\"-\",\"Olyset Net\":\"35\",\"Olyset Net.1\":\"0*\",\"PermaNet 3.0\":\"81\",\"PermaNet 3.0.1\":\"53\",\"Olyset Plus\":\"89\",\"Olyset Plus.1\":\"11\"}}\n", - "\n", - "header: Mosquito entry and exiting rates in experimental huts: Mortality of wild pyrethroid-resistant Anopheles gambiae s.l. in experimental huts\n", - "\n", - "Mortality rates of wild pyrethroid resistant mosquitoes that entered the experimental huts are presented in Fig. 1 with further details provided in Table 3. The lowest mortality was achieved with Olyset Net (18% before washing and 12% after 20 washes). Percentage mortality with unwashed pyrethroid-PBO nets was highest with PermaNet 3.0 (41%) but this declined significantly after 20 washes (17%, P < 0.001). Mortality with unwashed Olyset Plus was 28% and while this value was significantly lower than the mortality shown by unwashed PermaNet 3.0 (P < 0.001), it did not decrease significantly after 20 washes (28% vs. 24%, P = 0.433) whereas for PermaNet 3.0 it declined. Hence, Olyset Plus induced higher mortality rates than PermaNet 3.0 after 20 washes (24% vs 17%, P < 0.001). With respect to the pyrethroid-only ITN, both pyrethroid-PBO nets induced significantly higher mortality rates than Olyset Net with nets washed 20 times (P < 0.001) though the difference was higher with Olyset Plus (24% vs. 12%), than with PermaNet 3.0 (17% vs. 12%). After 20 washes, mortality with PermaNet 3.0 declined to the same level as the unwashed Olyset Net, (17% vs. 18%, P = 0.061) but remained significantly higher with Olyset Plus (24% vs. 17%, P = 0.036).\n", - "\n", - "header: Cone bioassay results: Tunnel test results\n", - "\n", - "The results from the tunnel tests comparing Olyset Plus and Olyset Net unwashed and after 10 and 20 washes against all three strains are presented in Figs. 4 and 5 for mortality and blood-feeding inhibition respectively. Mortality rates were generally higher in the tunnels tests compared to the cone bioassays and decreased as the strain become more pyrethroid-resistant (Fig. 4). Mortality rates with the Kisumu strain were very high with Olyset Net and Olyset Plus (> 95%). With the VKPer strain, mortality remained > 80% after 20 washes with both ITN types. With the Cove strain, mortality was significantly higher with Olyset Plus compared to Olyset Net at 0 and 10 washes but about the same after 20 washes. With unwashed nets, blood-feeding inhibition in the tunnel tests was consistently higher with Olyset Plus (> 90%) compared to Olyset Net (27-75%) for all three strains tested (Fig. 5). After 10 and 20 washes, blood-feeding inhibition of the Kisumu and VKPer strain remained > 80% with Olyset Plus and Olyset Net. With Cove strain, blood-feeding inhibition was also higher with Olyset Plus at 0 and 10 washes but declined to about the same level as Olyset Net after 20 washes (56%).\n", - "Mortality in the untreated control tunnel was < 10% with all three strains.\n", - "\n", - "header: Background\n", - "\n", - "Long-lasting insecticidal nets (LLINs) remain one of the most powerful tools to reduce malaria transmission in a community and provide personal protection to the user [1, 2]. They have contributed significantly to recent reductions in malaria burden [3]. Their efficacy is however threatened by increasing resistance to pyrethroids [4, 5]; the insecticide of choice used on bed-nets owing to its safety, low cost and rapid activity on vector mosquitoes [6]. To maintain the effectiveness of insecticide treated nets for malaria control, new types of LLINs treated with alternative insecticides and compounds which can either replace or complement pyrethroids on bed-nets are urgently needed.\n", - "\n", - "A new class of insecticide treated nets (ITNs) combining pyrethroids and piperonyl butoxide (PBO) (pyrethroid-PBO ITNs) have been developed [7]. PBO is a synergist that inhibits specific metabolic enzymes such as mixed-function oxidases within mosquitoes that detoxify or sequester insecticides before they can have a toxic effect on the mosquito. Pyrethroid-PBO nets can therefore induce increased mortality of pyrethroid-resistant malaria vectors that express mixed function oxidase based pyrethroid resistance mechanisms that are inhibited by the PBO in the net. These nets were given an interim endorsement as a new WHO class of vector control products in 2017 based on epidemiological data from a cluster randomized controlled trial in North Eastern Tanzania [8], that demonstrated additional malaria control with one prototype pyrethroid-PBO net (Olyset Plus) compared to a pyrethroid-only net (Olyset Net), against pyrethroid resistant malaria vectors of moderate intensity, partly conferred by monooxygenase-based resistance mechanism. Pyrethroid-PBO ITNs are conditionally recommended for malaria vector control instead of pyrethroid-only ITNs in areas of confirmed intermediate levels of resistance mediated by monooxygenase-based resistance mechanism [9]. This endorsement has been followed by an increasing uptake of pyrethroid-PBO nets worldwide [10]; in sub-Saharan Africa for example, the proportion of pyrethroid-PBO nets of all nets delivered increased from 3% in 2018 to 35% in 2021.\n", - "\n", - "While Olyset Plus was the first in class pyrethroid-PBO net to demonstrate public health value as observed in the Tanzanian trial [8], there are currently five additional types of pyrethroid-PBO ITNs on the World Health Organization (WHO) list of prequalified vector control products: PermaNet 3.0, Veeralin, Tsara Boost, Tsara Plus and very recently DuraNet Plus [7]. These nets have all demonstrated superiority over pyrethroid-only nets in terms of mosquito mortality and blood-feeding inhibition in multiple experimental hut trials across Africa [11, 12, 13, 14, 15, 16, 17]. However, they differ from Olyset Plus in their design and specifications; typically, the location of PBO on the net (i.e., all panels vs. roof panel only), the type and dose of pyrethroid used, bioavailability and retention of PBO after washing and could, therefore, differ in entomological and epidemiological impact. A recent large cluster-randomized trial in Uganda, evaluating the efficacy of Olyset Plus and PermaNet 3.0 compared to pyrethroid-only nets in a setting of high pyrethroid resistance, also demonstrated better protection against malaria with pyrethroid-PBO nets compared to pyrethroid-only nets for up to 18 months confirming the findings of the Tanzanian trial [18]. While the Ugandan trial was not powered to directly compare between the different ITN brands tested, the results showed that the additional protective effect of the pyrethroid-PBO net compared to the pyrethroid-only net was initially large with PermaNet 3.0 at 6 months post-distribution but lasted only up to 12 months whereas additional protective effect with Olyset Plus appeared to have a delayed onset which was not observed at 6 months but became evident at 12 months and lasted up to 18 months. There are major differences in design between Olyset Plus and PermaNet 3.0, which could have implications on their epidemiological impact; Olyset Plus is a polyethylene net incorporated with permethrin and PBO on all panels while PermaNet 3.0 is a polyester net coated with deltamethrin with PBO restricted to the roof of the net.\n", - "\n", - "To generate assurance of comparative performance of new candidate products within an established WHO vector control product class, without the need for epidemiological evidence for each new product, the WHO has developed new experimental hut study guidelines for assessing their non-inferiority to a first in class product for which evidence of public health value has already been generated [19]. These provisional guidelines are to be piloted with pyrethroid-PBO nets by comparing other WHO/PQ-listed pyrethroid-PBO nets with the first in class product, Olyset Plus. This study compared the efficacy and wash resistance of Olyset Plus and PermaNet\n", - "3.0 and assessed the non-inferiority of PermaNet 3.0 to Olyset Plus in experimental huts against wild free-flying pyrethroid resistant malaria vectors in Southern Benin.\n", - "\n", - "header: Conclusion\n", - "\n", - "Olyset Plus outperformed PermaNet 3.0 in terms of its ability to cause greater margins of improved mosquito mortality compared to a standard pyrethroid net, after multiple standardized washes. However, using a margin of non-inferiority defined by the WHO, PermaNet 3.0 was non-inferior to Olyset Plus in inducing mosquito mortality. Considering the low levels of mortality observed and increasing pyrethroid-resistance in West Africa, it is unclear whether either of these nets would demonstrate the same epidemiological impact observed in community trials in East Africa.\n", - "\n", - "header: Discussion\n", - "\n", - "Following the interim endorsement of pyrethroid-PBO nets by the WHO [23], malaria vector control programmes are faced with additional choice of different brands of prequalified pyrethroid-PBO nets [7]. Considering the wide variations in design of the available brands of these nets, studies generating the required assurance of comparative performance to Olyset Plus (the first in class pyrethroid-PBO net to demonstrate empirical evidence of entomological and epidemiological impact) are necessary. This study compared the efficacy and assessed the non-inferiority of PermaNet 3.0 to Olyset Plus in experimental huts against pyrethroid resistant malaria vectors in a highly endemic country of West Africa, following WHO guidelines [19, 22].\n", - "\n", - "The WHO susceptibility bioassays confirmed the high levels of pyrethroid resistance in the vector population at the experimental hut site during the trial, corroborating previous findings [20]. The increased mortality achieved in bioassays with pre-exposure to PBO showed that pyrethroid-resistance was indeed at least partly mediated by increased mono-oxygenase activity. The experimental hut trial demonstrated improved levels of mortality and blood-feeding inhibition with both pyrethroid-PBO ITN types compared to a standard pyrethroid-only LLIN against a vector population that was very resistant to pyrethroids; this was supported by results from the laboratory assays which compared Olyset Plus to Olyset Net against pyrethroid-resistant mosquito strains. These observations are partly attributable to the synergistic effect of the PBO on pyrethroid resistance and are consistent with other experimental hut trials across Africa and epidemiological trials performed in Tanzania [8] and Uganda [18].\n", - "\n", - "Twenty washes in experimental hut studies are indicated by WHO as a proxy for the ability of an ITN to withstand multiple washes under operational use over a 3-year life span [19, 22]. With unwashed nets, the levels of improved mortality relative to the standard pyrethroid-only net were higher with PermaNet 3.0 than with Olyset Plus. However, unlike with Olyset Plus, this effect was lost with PermaNet 3.0 after twenty washes;\n", - "Figure 5: Blood-feeding inhibition (%) of susceptible and resistant strains of _An. gambiae s.l._ in tunnel tests with Olyset Plus and Olyset Net. Blood-feeding inhibition was calculated relative to the control tunnel. 5 = susceptible, R = Resistant\n", - "PermanNet 3.0 killed significantly lower proportions of mosquitoes than Olyset Plus and same proportions as an unwashed pyrethroid-only ITN. Though the RCT in Uganda was not powered to assess differences between the pyrethroid-PBO ITN brands tested (PermanNet 3.0 vs. Olyset Plus) [18], the results from our trial appear consistent with some of the differences in epidemiological effect observed between both brands: (1) The high experimental hut mortality with the unwashed PermaNet 3.0 supports the higher initial protective effect observed with the net in the Ugandan trial at the 6 months epidemiological survey which was not seen with Olyset Plus. (2) The higher rate of decline in experimental hut mortality after washing with PermaNet 3.0 compared to Olyset Plus is consistent with the shorter-lived epidemiological effect in the Ugandan trial with PermaNet 3.0 (up to 12 months) compared to Olyset Plus which remained more protective than the pyrethroid-only net at 18 months. However, care should be taken to not over-interpret the comparisons between results from our hut trial and Ugandan RCT considering the different geographical settings and the lack of sufficient power to differentiate between the epidemiological impact of both pyrethroid-PBO net type in the Ugandan trial.\n", - "\n", - "The difference in hut performance between both pyrethroid-PBO ITNs can be attributed to differences in the retention and movement of PBO across the polymer fibre in Olyset Plus compared to PermaNet 3.0 and/or differences in design and specification. Retention of biofeficacy of pyrethroid-PBO nets is a fine balance between migration and replenishment of PBO from the core to the surface of fibres and the maintenance of an internal reservoir sufficient to last the lifespan of the LLIN, which is typically set at 3 years of use [24]. The chemical analysis results showed a faster release of PBO in the Olyset Plus netting after 20 washes compared to PermaNet 3.0 though it is unclear whether this may have increased the bioavailability of the PBO on the surface of Olyset Plus after washing. Whether sufficient PBO would remain within the fibres of both pyrethroid-PBO nets after 3 years of household use is presently unknown and is the subject of ongoing WHO durability trials of Olyset Plus and PermaNet 3.0 which are not yet completed [18, 25]. Another factor which may contribute to the discrepancies in efficacy of the two pyrethroid-PBO ITNs are differences in design and specification: Olyset Plus is treated with the pyrethroid permethrin while PermaNet 3.0 is treated with deltamethrin, and Olyset Plus contains PBO on every panel whereas in PermaNet 3.0, PBO is available only on the top panel of the net. It is not clear whether the restricted application of PBO to the roof of the net would affect bioefficacy. This would require comparative trials of the PermaNet 3.0 with pyrethroid-PBO restricted to the upper panel and pyrethroid to side panels versus an ITN with all 5 panels treated with pyrethroid-PBO. Behavioural studies of mosquitoes around nets indicate that mosquitoes may first make multiple contacts with the roof panel in response to odour plumes [26]; however, experimental hut trials comparing restricted versus full PBO coverage on nets are too few to be definitive on the question of efficacy.\n", - "\n", - "Despite the differences in performance observed between both pyrethroid-PBO net types with regards to their impact after 20 standardized washes, the non-inferiority analysis performed in accordance with recent WHO guidelines [19] showed that PermaNet 3.0 was non-inferior to Olyset Plus in terms of mosquito mortality but not with blood-feeding inhibition. The higher blood-feeding inhibition observed with Olyset Plus could be due to the high excito-repellency of permethrin in Olyset Plus compared to deltamethrin in PermaNet 3.0 [27]. Alternatively, the study may not have had sufficient power to demonstrate non-inferiority of PermaNet 3.0 to Olyset Plus for both endpoints; further studies are on-going to help guide power calculations for ITN non-inferiority studies. The non-inferiority margin used for the analysis was defined by WHO as an odds ratio of 0.7 in mosquito mortality and feeding between a candidate net and the first in class net considered acceptable for both products to be in the same policy class. According to these guidelines, if non-inferiority is demonstrated in two independent experimental hut trials in different geographical locations representative of where the products will be deployed, then PermaNet 3.0 will be placed in the same WHO vector control product class as Olyset Plus [19]. It is however not clear whether non-inferiority must be demonstrated for both endpoints (mortality and blood-feeding) for a second-in class product to become part of an intervention class. While the guidelines were developed more like a compromise between the risk of accepting an inferior product and the feasibility of conducting epidemiological trials, the findings from our trial show that non-inferiority experimental hut trials are complex, and results must be interpreted with care. Comparative performance between products may also depend on other location-specific factors, such as the intensity of insecticide resistance and behaviour of the target vector population which should be taken into consideration when choosing between products of the same class.\n", - "\n", - "While the present hut trial in Benin and earlier hut trials in Benin, Tanzania, Cameroon, Burkina Faso, Cote d'Ivoire and Vietnam where the vectors were also resistant have shown some additional effect of pyrethroid-PBO nets over a standard pyrethroid net [12, 13, 15-17], the margin appears to vary depending on the level of \n", - "pyrethroid-resistance encountered [28]. The absolute increase in hut trial mortality with Olyset Plus compared to Olyset Net in the present study (24-28% vs. 12-18%) conducted in an area of intense pyrethroid-resistance [20] is lower than what has been previously reported with Olyset Plus in another area in Northern Benin where pyrethroid resistance was less prevalent (67-81% vs. 36-42%) [16]. Compared to East Africa, West Africa has shown historically higher intensity of pyrethroid resistance in malaria vectors [29] mediated by complex and multiple insecticide resistance mechanisms which may not be effectively tackled by the synergistic effects of PBO in pyrethroid-PBO ITNs [4, 23]. It is therefore not clear whether a diminishment in experimental but mortality with pyrethroid-PBO nets due to increasing intensity of pyrethroid-resistance would translate to a reduced epidemiological effect of pyrethroid-PBO ITNs in West Africa compared to East Africa which has been the site of the only epidemiological trials so far.\n", - "\n", - "header: Results\n", - "\n", - "With unwashed nets, mosquito mortality was higher in huts with PermaNet 3.0 compared to Olyset Plus (41% vs. 28%, P < 0.001). After 20 washes, mortality declined significantly with PermaNet 3.0 (41% unwashed vs. 17% after washing P < 0.001), but not with Olyset Plus (28% unwashed vs. 24% after washing P = 0.433); Olyset Plus induced significantly higher mortality than PermaNet 3.0 and Olyset Net after 20 washes. PermaNet 3.0 showed a higher wash retention of PBO compared to Olyset Plus. A non-inferiority analysis performed with data from unwashed and washed nets together using a margin recommended by the WHO, showed that PermaNet 3.0 was non-inferior to Olyset Plus in terms of mosquito mortality (25% with Olyset Plus vs. 27% with PermaNet 3.0, OR = 1.528, 95%Cl = 1.02-2.29) but not in reducing mosquito feeding (25% with Olyset Plus vs. 30% with PermaNet 3.0, OR = 1.192, 95%Cl = 0.77-1.84). Both pyrethroid-PBO nets were superior to Olyset Net.\n", - "\n", - "header: Insecticide resistance in malaria vectors in Cove: Experimental hut trial results\n", - "\n", - "A total of 6711 pyrethroid resistant female _An. gambiae_ s.l. were collected during the experimental hut trial. The entry and exiting rates of wild pyrethroid resistant _An. gambiae_ s.l. from the experimental huts with the different ITN types tested in the trial are presented in Table 2. Compared to the control, Olyset Net did not deter mosquitoes from entering the experimental huts (0% when unwashed and after 20 washes). Mosquito deterrence was significantly higher with PermaNet 3.0 compared to Olyset Plus both unwashed (49% vs. 28%, P < 0.001) and after 20 washes (36% vs. 0%, P < 0.001). Nevertheless, early exiting of mosquitoes from the experimental huts into the veranda trap did not differ significantly between both pyrethroid-PBO net types both when unwashed (65% with PermaNet 3.0 vs 68% with Olyset Plus, P = 0.232) and after 20 washes (60% with PermaNet 3.0 vs. 56% with Olyset Plus, P = 0.053).\n", - "\\begin{table}\n", - "\\begin{tabular}{l c c c c c c}\n", - "**Net type** & **Control** & **Olyset Net** & & **PermNet 3.0** & **Olyset Plus** \\\\ Number of washes & 0 & 0 & 20 & 0 & 20 & 0 & 20 \\\\ N collected & 962 & 1135 & 1546 & 489 & 616 & 688 & 1275 \\\\ N females/night & 233 & 27\\({}^{\\text{hb}}\\) & 37\\({}^{\\text{b}}\\) & 12\\({}^{\\text{c}}\\) & 15\\({}^{\\text{d}}\\) & 16\\({}^{\\text{d}}\\) & 30\\({}^{\\text{hb}}\\) \\\\ \\% deterrence & – & 0\\({}^{\\text{a}}\\) & 0\\({}^{\\text{a}}\\) & 49 & 36 & 28 & 0 \\\\ N eating & 429 & 639 & 669 & 319 & 370 &\n", - "\n", - "header: Non-inferiority assessment\n", - "\n", - "According to recent provisional WHO guidelines [19], for a candidate pyrethroid-PBO ITN product to be included in this new WHO intervention class without the need for epidemiological evidence, it must demonstrate non-inferiority to the first in class product which has already demonstrated public health value (Olyset Plus) and superiority to a pyrethroid-only LLIN in experimental hut trials [19]. Briefly, the candidate pyrethroid-PBO product is deemed non-inferior if: (1) The lower 95% confidence interval estimate of the odds ratio describing the difference in mosquito mortality between the candidate and active comparator product is greater than 0.7. and (2) The upper 95% confidence interval estimate of the odds ratio describing the difference in mosquito blood-feeding between the candidate and active comparator product is less than 1.43. Following the WHO guidelines, both unwashed and washed data of each product were analysed together to generate single estimates of efficacy representative of the overall performance over the lifetime of the product in the field.\n", - "\n", - "Each primary endpoint for non-inferiority (mortality and blood-feeding rate for unwashed and washed nets combined), was assessed using binomial generalized linear mixed models (GLMMs) with a logit link function fitted using the 'lme4' package of R version 3.5.3 for Windows as described earlier. Results from the non-inferiority assessment of PermaNet 3.0 to Olyset Plus are presented in Table 5 below. The odds ratio for\n", - "Fig. 2: Blood-feeding rates of wild pyrethroid-resistant _Anopheles gambiae_ s.l. in experimental huts in Cove, Benin evaluating different net types. Vertical lines indicate 95% confidence interval estimates whilst bars with the same letter label are not significantly different (P > 0.05)\n", - "the difference in mosquito mortality between PermaNet 3.0 and Olyset Plus was 1.528 (95% confidence interval: 1.021-2.289) while the odds ratio for the difference in mosquito blood feeding was 1.192 (95% confidence interval: 0.772-1.841). Following the WHO criteria described above, PermaNet 3.0 was non-inferior to Olyset Plus in terms of its ability to kill wild pyrethroid- resistant _An. gambiae_ s.l. in the experimental hut trial in Cove Benin. In contrast PermaNet 3.0 was not non-inferior to Olyset Plus in terms of proportions of mosquitoes that blood-fed and, therefore, fails to demonstrate non-inferiority for blood feeding inhibition in this trial. The results also showed superiority of both pyrethroid-PBO net types to Olyset Net both in terms of mosquito mortality (25-27% vs. 15%, P < 0.001) and reducing blood-feeding (25%-30% vs. 42%, P < 0.001).\n", - "\n", - "header: Chemical analysis\n", - "\n", - "At the end of the experimental hut trial, five pieces of netting (\\(25\\times 25\\) cm) obtained from the panels of replicate nets of each net type (before and after washing) used in the huts were assessed for deltamethrin, permethrin and PBO content using HPLC. Insecticide was extracted from each net piece with an area of 48 sq cm collected from the five net samples (\\(25\\times 25\\) cm) obtained from each whole net. The insecticide content of each sample was determined by injecting ten ul aliquots of the extract on a reverse-phase Hypersil GOLD C18 column (75 A, \\(250\\times 4.6\\) mm, 5-um particle size; Thermo Scientific) at room temperature. A mobile phase of 70% acetonitrile in water was used at a flow rate of 1 ml min\\({}^{-1}\\) to separate the target analyte. Chromatographic peaks of the insecticides and internal standard were detected at a wavelength of 232 nm with the Ultimate 3000 UV detector and analysed with Dionex Chromeleon(tm) 6.8 Chromatography Data System software. Quantities of insecticide were calculated from standard curves established by known concentrations of the insecticide authenticated standards and corrected by internal standard readings in each sample relative to control.\n", - "\n", - "Data from chemical analysis was used to calculate the percentage retention of each active ingredient after 20 washes relative to the unwashed net and the wash retention index. Wash-resistance index was calculated according to WHO guidelines [22] as indicated below:\n", - "\n", - "\\[\\text{Wash resistance index} = 100\\times\\text{n}\\sqrt{(\\text{tn}/\\text{t0})}\\] \\[\\left(\\text{free migration stage behaviour}\\right)\\]\n", - "\n", - "where \\(\\text{tn}=\\text{total active ingredient content after n washing cycles, t0=total active ingredient content before washing, n=number of washes.\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `Observation` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. \n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Chemical analysis results\n", - "\n", - "For PermaNet 3.0, PBO was only recorded from the roof panel of the nets; for Olyset Plus, PBO was recorded on all 5 panels (Table 6). Compared to the pyrethroid component, much less PBO was retained in both types of pyrethroid-PBO ITNs after 20 washes (58.7% vs. 25% with Olyset Plus and 80.9% vs. 68.8% with PermaNet 3.0, P < 0.05). The decrease in PBO content after washing was more evident in Olyset Plus than in PermaNet 3.0 netting, hence the wash retention index of PBO was higher with PermaNet 3.0 compared to Olyset Plus (98.1% vs. 93.3%).\n", - "\n", - "Figure 4: Tunnel test mortality (%) of susceptible and resistant strains of _Anopheles gambiae_ s.l. exposed to Olyset Plus vs. Olyset Net\n", - "\n", - "Figure 3: Mortality (%) of susceptible and resistant strains of _An. gambiae_ s.l. in cone bioassays with Olyset Plus and Olyset Net. S = susceptible, R = resistant\n", - "\n", - "header: Supplementary laboratory bioassays results\n", - "\n", - "The 3-min cone bioassay mortality results for all 3 mosquito strains and wash points tested are presented in Fig. 3. Unwashed Olyset Net induced very low mortality rates against the susceptible Kisumu strain (17-20%) and even lower mortality rates against the pyrethroid resistant strains (< 5%). Cone bioassay mortality rates with unwashed Olyset Plus were higher across all 3 strains compared to Olyset Net though mortality decreased as the strain tested became more pyrethroid-resistant. Cone bioassay mortality however dropped significantly with washed net samples. Mortality with the untreated net samples did not exceed 5% with any strain tested.\n", - "\n", - "header: Mosquito entry and exiting rates in experimental huts: Mortality of wild pyrethroid-resistant Anopheles gambiae s.l. in experimental huts\n", - "\n", - "Mortality rates of wild pyrethroid resistant mosquitoes that entered the experimental huts are presented in Fig. 1 with further details provided in Table 3. The lowest mortality was achieved with Olyset Net (18% before washing and 12% after 20 washes). Percentage mortality with unwashed pyrethroid-PBO nets was highest with PermaNet 3.0 (41%) but this declined significantly after 20 washes (17%, P < 0.001). Mortality with unwashed Olyset Plus was 28% and while this value was significantly lower than the mortality shown by unwashed PermaNet 3.0 (P < 0.001), it did not decrease significantly after 20 washes (28% vs. 24%, P = 0.433) whereas for PermaNet 3.0 it declined. Hence, Olyset Plus induced higher mortality rates than PermaNet 3.0 after 20 washes (24% vs 17%, P < 0.001). With respect to the pyrethroid-only ITN, both pyrethroid-PBO nets induced significantly higher mortality rates than Olyset Net with nets washed 20 times (P < 0.001) though the difference was higher with Olyset Plus (24% vs. 12%), than with PermaNet 3.0 (17% vs. 12%). After 20 washes, mortality with PermaNet 3.0 declined to the same level as the unwashed Olyset Net, (17% vs. 18%, P = 0.061) but remained significantly higher with Olyset Plus (24% vs. 17%, P = 0.036).\n", - "\n", - "header: Experimental hut treatments\n", - "\n", - "Olyset Plus and PermaNet 3.0 were compared in the experimental huts when unwashed and after 20 standardized washes. A WHO-recommended pyrethroid-only long-lasting net (Olyset Net) was included to demonstrate the added effect of PBO on the insecticide-resistant local vector species. Nets were washed using savon de Marseilles and rinsed twice following WHO procedures for washing nets for experimental hut studies [22].\n", - "\n", - "The following seven (7) treatments were thus tested in seven experimental huts:\n", - "\n", - "1. Untreated polyethylene net\n", - "2. Olyset Net unwashed (permethrin only)\n", - "3. Olyset Net washed 20 times.\n", - "4. PermaNet 3.0 unwashed (Roof: deltamethrin plus PBO; sides: deltamethrin only)\n", - "5. PermaNet 3.0 washed 20 times.\n", - "6. Olyset Plus unwashed (permethrin plus PBO on all panels)\n", - "7. Olyset Plus washed 20 times.\n", - "\n", - "header: Mosquito blood-feeding rates in experimental huts\n", - "\n", - "The blood-feeding rates of wild pyrethroid-resistant _An. gambiae s.l_ that entered the experimental huts are presented in Fig. 2 with further details on mosquito feeding provided in Table 4. The percentage blood-feeding was lower in huts with the unwashed pyrethroid-PBO ITNs and was lowest of all with unwashed Olyset Plus as compared to unwashed PermaNet 3.0 (8% vs 19%, P < 0.001). For all net types, the data showed an overall increase in blood feeding with washed nets compared to unwashed nets and a decrease in blood-feeding inhibition relative to the untreated net. Percentage blood-feeding when washed 20 times did not differ significantly between the pyrethroid-PBO types (38% with PermaNet 3.0 vs. 35% with Olyset Plus, P = 0.708). The proportions of mosquitoes collected resting in the nets were lowest with the\n", - "\n", - "Fig. 1: Mortality of wild pyrethroid-resistant _Anopheles gambiae_ s.l. in experimental huts in Cove, Benin evaluating different net types. Vertical lines indicate 95% confidence interval estimates whilst bars with the same letter label are not significantly different (P > 0.05)\n", - "unwashed pyrethroid-PBO nets (2-6%), which is consistent with the higher toxicity observed with this type of net. Personal protection with both types of pyrethroid-PBO ITMs were > 80% when unwashed but this declined after 20 washes to 53% with PermaNet 3.0 and 11% with Olyset Plus.\n", - "\n", - "header: Background: Methods\n", - "\n", - "An experimental hut trial was performed in Cove, Benin to compare PermaNet 3.0 (deltamethrin plus PBO on roof panel only) to Olyset Plus (permethrin plus PBO on all panels) against wild pyrethroid-resistant _Anopheles gambiae_ sensu lato (s.l) following World Health Organization (WHO) guidelines. Both nets were tested unwashed and after 20 standardized washes compared to Olyset Net. Laboratory bioassays were also performed to help explain findings in the experimental huts.\n", - "\n", - "header: Results\n", - "\n", - "Mortality with permethrin and alpha-cypermethrin treated papers was 100% with the laboratory-maintained pyrethroid-susceptible _An. gambiae_ Kisumu strain. With wild pyrethroid resistant _An. gambiae_ s.l. from Cove, mortality rates were <50% with all three pyrethroid insecticides tested (Table 1) thus confirming the high levels of pyrethroid resistance in this vector population. Mortality however increased from 19.2 to 52.5% with permethrin, 41.7% to 69.7% with deltamethrin and 0% to 82.4% with alphacypermethrin after pre-exposure of the Cove strain to PBO synergist (Table 1). This result demonstrated that mixed function oxidases are overexpressed in the wild Cove vector population and their effect can be effectively inhibited by the PBO synergist.\n", - "\n", - "header: Supplementary laboratory bioassays\n", - "\n", - "To help further explain the results obtained in the experimental huts, WHO cone bioassays and tunnel tests were performed on samples of netting (\\(30\\times 30\\) cm) obtained from Olyset Net and Olyset Plus when unwashed and after 10 and 20 washes. Washing was performed in the laboratory following WHO guidelines [22]. PermaNet 3.0 was not tested in the laboratory bioassays owing to the restricted application of PBO to the roof of the net preventing a realistic direct comparison with Olyset Plus in bioassays especially tunnel tests. Net samples from each ITN type and each wash point were tested against the following strains:\n", - "\n", - "1. _An. gambiae_ sensu lato (s.l.) strains from Cove, Benin (Cove strain) which is highly pyrethroid resistant. It originates from the experimental hut station in Cove and has shown > 200-fold resistance compared to the susceptible Kisumu strain in susceptibility bioassays. Resistance is mediated by elevated levels of P450s and high frequencies of _kdr_ [20].\n", - "2. _An. gambiae_ VKPer strain, which originated from the Kou Valley in Burkina Faso. VKPer has moderate levels of pyrethroid resistance mediated only by high frequencies of _kdr_.\n", - "3. _An. gambiae_ s.s. Kisumu strain, a reference susceptible strain which originated from Kisumu Kenya.\n", - "\n", - "Approximately two hundred 2-5 days old mosquitoes of each strain were exposed for 3 min in cone bioassays to four net samples of each net type in cohorts of 5 mosquitoes per cone. Knock down in cone bioassays was recorded after 1 h and mortality after 24 h.\n", - "\n", - "Two to three hundred 5-8 days old mosquitoes of each strain were also exposed to each net type in tunnel tests in replicates of 50 mosquitoes per net sample. The tunnel test is a laboratory assay designed to simulate natural host-seeking behaviour of mosquitoes at night in the presence of a net. It consists of a square glass cylinder (25 cm high, 25 cm wide, 60 cm in length) divided into two sections by means of a netting frame fitted into a slot across the tunnel. An anesthetized guinea pig was housed unconstrained in a small cage in one section, and mosquitoes were released in the other section at dusk and left overnight. The net samples were holed with nine 1-cm diameter holes to allow host-seeking mosquitoes to penetrate the baited chamber; an untreated net sample served as the control. The tunnels were kept overnight in a dark room at 25-29 degC and 75-85% RH. The next morning, the numbers found alive or dead, fed, or unfed, in each section were recorded. Live mosquitoes were provided with sugar solution and delayed mortality recorded after 24 h. The guinea pigs used in this study were kept in accordance with institutional guidelines for animal care.\n", - "\n", - "header: Cone bioassay results: Tunnel test results\n", - "\n", - "The results from the tunnel tests comparing Olyset Plus and Olyset Net unwashed and after 10 and 20 washes against all three strains are presented in Figs. 4 and 5 for mortality and blood-feeding inhibition respectively. Mortality rates were generally higher in the tunnels tests compared to the cone bioassays and decreased as the strain become more pyrethroid-resistant (Fig. 4). Mortality rates with the Kisumu strain were very high with Olyset Net and Olyset Plus (> 95%). With the VKPer strain, mortality remained > 80% after 20 washes with both ITN types. With the Cove strain, mortality was significantly higher with Olyset Plus compared to Olyset Net at 0 and 10 washes but about the same after 20 washes. With unwashed nets, blood-feeding inhibition in the tunnel tests was consistently higher with Olyset Plus (> 90%) compared to Olyset Net (27-75%) for all three strains tested (Fig. 5). After 10 and 20 washes, blood-feeding inhibition of the Kisumu and VKPer strain remained > 80% with Olyset Plus and Olyset Net. With Cove strain, blood-feeding inhibition was also higher with Olyset Plus at 0 and 10 washes but declined to about the same level as Olyset Net after 20 washes (56%).\n", - "Mortality in the untreated control tunnel was < 10% with all three strains.\n", - "\n", - "header: Abstract\n", - "\n", - "Comparative efficacy of two pyrethroid-piperonyl butoxide nets (Olyset Plus and PermaNet 3.0) against pyrethroid resistant malaria vectors: a non-inferiority assessment\n", - "\n", - "Corine Ngufor, Josias Fagbohoun, Abel Agbevo, Hanafy Ismail, Joseph D. Challenger, Thomas S. Churcher, Mark Rowland\n", - "\n", - "\n", - "\n", - "Pyrethroid-PBO nets were conditionally recommended for control of malaria transmitted by mosquitoes with oxidase-based pyrethroid-resistance based on epidemiological evidence of additional protective effect with Olyset Plus compared to a pyrethroid-only net (Olyset Net). Entomological studies can be used to assess the comparative performance of other brands of pyrethroid-PBO ITNs to Olyset Plus.\n", - "\n", - "header: Table 4: Blood-feeding rates of wild pyrethroid resistant Anopheles gambiae s.l. in experimental huts in Cove, Benin\n", - "footer: Values along a row bearing the same letter label are not significantly different (P > 0.05) * Value set to zero as more blood fed mosquitoes were caught in washed Olyset Net huts than control hut\n", - "columns: ['Net type', 'Control', 'Olyset Net', 'Olyset Net.1', 'PermaNet 3.0', 'PermaNet 3.0.1', 'Olyset Plus', 'Olyset Plus.1']\n", - "\n", - "{\"0\":{\"Net type\":\"Number of washes\",\"Control\":\"0\",\"Olyset Net\":\"0\",\"Olyset Net.1\":\"20\",\"PermaNet 3.0\":\"0\",\"PermaNet 3.0.1\":\"20\",\"Olyset Plus\":\"0\",\"Olyset Plus.1\":\"20\"},\"1\":{\"Net type\":\"Total collected\",\"Control\":\"962\",\"Olyset Net\":\"1135\",\"Olyset Net.1\":\"1546\",\"PermaNet 3.0\":\"489\",\"PermaNet 3.0.1\":\"616\",\"Olyset Plus\":\"688\",\"Olyset Plus.1\":\"1275\"},\"2\":{\"Net type\":\"Total blood fed\",\"Control\":\"496\",\"Olyset Net\":\"324\",\"Olyset Net.1\":\"807\",\"PermaNet 3.0\":\"95\",\"PermaNet 3.0.1\":\"231\",\"Olyset Plus\":\"56\",\"Olyset Plus.1\":\"442\"},\"3\":{\"Net type\":\"% Blood fed\",\"Control\":\"52a\",\"Olyset Net\":\"29b\",\"Olyset Net.1\":\"52a\",\"PermaNet 3.0\":\"19c\",\"PermaNet 3.0.1\":\"38d\",\"Olyset Plus\":\"8e\",\"Olyset Plus.1\":\"35d\"},\"4\":{\"Net type\":\"95% conf intervals\",\"Control\":\"48.4\\u201354.7\",\"Olyset Net\":\"25.9\\u201331.2\",\"Olyset Net.1\":\"49.7\\u201354.7\",\"PermaNet 3.0\":\"15.9\\u201322.9\",\"PermaNet 3.0.1\":\"33.7\\u201341.3\",\"Olyset Plus\":\"6.1\\u201310.2\",\"Olyset Plus.1\":\"32.1\\u201337.3\"},\"5\":{\"Net type\":\"% Blood-feeding inhibition\",\"Control\":\"-\",\"Olyset Net\":\"44\",\"Olyset Net.1\":\"0\",\"PermaNet 3.0\":\"63\",\"PermaNet 3.0.1\":\"27\",\"Olyset Plus\":\"85\",\"Olyset Plus.1\":\"33\"},\"6\":{\"Net type\":\"inside net\",\"Control\":\"294\",\"Olyset Net\":\"184\",\"Olyset Net.1\":\"542\",\"PermaNet 3.0\":\"28\",\"PermaNet 3.0.1\":\"130\",\"Olyset Plus\":\"17\",\"Olyset Plus.1\":\"241\"},\"7\":{\"Net type\":\"inside net (%)\",\"Control\":\"31a\",\"Olyset Net\":\"16bc\",\"Olyset Net.1\":\"35a\",\"PermaNet 3.0\":\"6d\",\"PermaNet 3.0.1\":\"21b\",\"Olyset Plus\":\"2e\",\"Olyset Plus.1\":\"19c\"},\"8\":{\"Net type\":\"Personal protection (%)\",\"Control\":\"-\",\"Olyset Net\":\"35\",\"Olyset Net.1\":\"0*\",\"PermaNet 3.0\":\"81\",\"PermaNet 3.0.1\":\"53\",\"Olyset Plus\":\"89\",\"Olyset Plus.1\":\"11\"}}\n", - "\n", - "header: Results\n", - "\n", - "With unwashed nets, mosquito mortality was higher in huts with PermaNet 3.0 compared to Olyset Plus (41% vs. 28%, P < 0.001). After 20 washes, mortality declined significantly with PermaNet 3.0 (41% unwashed vs. 17% after washing P < 0.001), but not with Olyset Plus (28% unwashed vs. 24% after washing P = 0.433); Olyset Plus induced significantly higher mortality than PermaNet 3.0 and Olyset Net after 20 washes. PermaNet 3.0 showed a higher wash retention of PBO compared to Olyset Plus. A non-inferiority analysis performed with data from unwashed and washed nets together using a margin recommended by the WHO, showed that PermaNet 3.0 was non-inferior to Olyset Plus in terms of mosquito mortality (25% with Olyset Plus vs. 27% with PermaNet 3.0, OR = 1.528, 95%Cl = 1.02-2.29) but not in reducing mosquito feeding (25% with Olyset Plus vs. 30% with PermaNet 3.0, OR = 1.192, 95%Cl = 0.77-1.84). Both pyrethroid-PBO nets were superior to Olyset Net.\n", - "\n", - "header: Chemical analysis\n", - "\n", - "At the end of the experimental hut trial, five pieces of netting (\\(25\\times 25\\) cm) obtained from the panels of replicate nets of each net type (before and after washing) used in the huts were assessed for deltamethrin, permethrin and PBO content using HPLC. Insecticide was extracted from each net piece with an area of 48 sq cm collected from the five net samples (\\(25\\times 25\\) cm) obtained from each whole net. The insecticide content of each sample was determined by injecting ten ul aliquots of the extract on a reverse-phase Hypersil GOLD C18 column (75 A, \\(250\\times 4.6\\) mm, 5-um particle size; Thermo Scientific) at room temperature. A mobile phase of 70% acetonitrile in water was used at a flow rate of 1 ml min\\({}^{-1}\\) to separate the target analyte. Chromatographic peaks of the insecticides and internal standard were detected at a wavelength of 232 nm with the Ultimate 3000 UV detector and analysed with Dionex Chromeleon(tm) 6.8 Chromatography Data System software. Quantities of insecticide were calculated from standard curves established by known concentrations of the insecticide authenticated standards and corrected by internal standard readings in each sample relative to control.\n", - "\n", - "Data from chemical analysis was used to calculate the percentage retention of each active ingredient after 20 washes relative to the unwashed net and the wash retention index. Wash-resistance index was calculated according to WHO guidelines [22] as indicated below:\n", - "\n", - "\\[\\text{Wash resistance index} = 100\\times\\text{n}\\sqrt{(\\text{tn}/\\text{t0})}\\] \\[\\left(\\text{free migration stage behaviour}\\right)\\]\n", - "\n", - "where \\(\\text{tn}=\\text{total active ingredient content after n washing cycles, t0=total active ingredient content before washing, n=number of washes.\n", - "\n", - "header: Table 1: Mortality of pyrethroid resistant Anopheles gambiae s.l. from Cove in WHO cylinder bioassays with and without pre-exposure to PBO\n", - "footer: None\n", - "columns: ['Variable', 'N exposed', 'N dead', '% Dead']\n", - "\n", - "{\"0\":{\"Variable\":\"Control\",\"N exposed\":101,\"N dead\":0,\"% Dead\":0.0},\"1\":{\"Variable\":\"PBO 4% only\",\"N exposed\":103,\"N dead\":3,\"% Dead\":2.9},\"2\":{\"Variable\":\"Permethrin 0.75%\",\"N exposed\":104,\"N dead\":20,\"% Dead\":19.2},\"3\":{\"Variable\":\"Deltamethrin 0.05%\",\"N exposed\":91,\"N dead\":38,\"% Dead\":41.7},\"4\":{\"Variable\":\"Alpha-cypermethrin 0.05%\",\"N exposed\":102,\"N dead\":0,\"% Dead\":0.0},\"5\":{\"Variable\":\"PBO 4% then permethrin 0.75%\",\"N exposed\":99,\"N dead\":52,\"% Dead\":52.5},\"6\":{\"Variable\":\"PBO 4% then deltamethrin 0.05%\",\"N exposed\":99,\"N dead\":69,\"% Dead\":69.7},\"7\":{\"Variable\":\"PBO 4% then alpha-cypermethrin 0.05%\",\"N exposed\":102,\"N dead\":84,\"% Dead\":82.4},\"8\":{\"Variable\":\"PBO 4% then alpha-cypermethrin 0.05%\",\"N exposed\":102,\"N dead\":84,\"% Dead\":82.4}}\n", - "\n", - "header: Background\n", - "\n", - "Long-lasting insecticidal nets (LLINs) remain one of the most powerful tools to reduce malaria transmission in a community and provide personal protection to the user [1, 2]. They have contributed significantly to recent reductions in malaria burden [3]. Their efficacy is however threatened by increasing resistance to pyrethroids [4, 5]; the insecticide of choice used on bed-nets owing to its safety, low cost and rapid activity on vector mosquitoes [6]. To maintain the effectiveness of insecticide treated nets for malaria control, new types of LLINs treated with alternative insecticides and compounds which can either replace or complement pyrethroids on bed-nets are urgently needed.\n", - "\n", - "A new class of insecticide treated nets (ITNs) combining pyrethroids and piperonyl butoxide (PBO) (pyrethroid-PBO ITNs) have been developed [7]. PBO is a synergist that inhibits specific metabolic enzymes such as mixed-function oxidases within mosquitoes that detoxify or sequester insecticides before they can have a toxic effect on the mosquito. Pyrethroid-PBO nets can therefore induce increased mortality of pyrethroid-resistant malaria vectors that express mixed function oxidase based pyrethroid resistance mechanisms that are inhibited by the PBO in the net. These nets were given an interim endorsement as a new WHO class of vector control products in 2017 based on epidemiological data from a cluster randomized controlled trial in North Eastern Tanzania [8], that demonstrated additional malaria control with one prototype pyrethroid-PBO net (Olyset Plus) compared to a pyrethroid-only net (Olyset Net), against pyrethroid resistant malaria vectors of moderate intensity, partly conferred by monooxygenase-based resistance mechanism. Pyrethroid-PBO ITNs are conditionally recommended for malaria vector control instead of pyrethroid-only ITNs in areas of confirmed intermediate levels of resistance mediated by monooxygenase-based resistance mechanism [9]. This endorsement has been followed by an increasing uptake of pyrethroid-PBO nets worldwide [10]; in sub-Saharan Africa for example, the proportion of pyrethroid-PBO nets of all nets delivered increased from 3% in 2018 to 35% in 2021.\n", - "\n", - "While Olyset Plus was the first in class pyrethroid-PBO net to demonstrate public health value as observed in the Tanzanian trial [8], there are currently five additional types of pyrethroid-PBO ITNs on the World Health Organization (WHO) list of prequalified vector control products: PermaNet 3.0, Veeralin, Tsara Boost, Tsara Plus and very recently DuraNet Plus [7]. These nets have all demonstrated superiority over pyrethroid-only nets in terms of mosquito mortality and blood-feeding inhibition in multiple experimental hut trials across Africa [11, 12, 13, 14, 15, 16, 17]. However, they differ from Olyset Plus in their design and specifications; typically, the location of PBO on the net (i.e., all panels vs. roof panel only), the type and dose of pyrethroid used, bioavailability and retention of PBO after washing and could, therefore, differ in entomological and epidemiological impact. A recent large cluster-randomized trial in Uganda, evaluating the efficacy of Olyset Plus and PermaNet 3.0 compared to pyrethroid-only nets in a setting of high pyrethroid resistance, also demonstrated better protection against malaria with pyrethroid-PBO nets compared to pyrethroid-only nets for up to 18 months confirming the findings of the Tanzanian trial [18]. While the Ugandan trial was not powered to directly compare between the different ITN brands tested, the results showed that the additional protective effect of the pyrethroid-PBO net compared to the pyrethroid-only net was initially large with PermaNet 3.0 at 6 months post-distribution but lasted only up to 12 months whereas additional protective effect with Olyset Plus appeared to have a delayed onset which was not observed at 6 months but became evident at 12 months and lasted up to 18 months. There are major differences in design between Olyset Plus and PermaNet 3.0, which could have implications on their epidemiological impact; Olyset Plus is a polyethylene net incorporated with permethrin and PBO on all panels while PermaNet 3.0 is a polyester net coated with deltamethrin with PBO restricted to the roof of the net.\n", - "\n", - "To generate assurance of comparative performance of new candidate products within an established WHO vector control product class, without the need for epidemiological evidence for each new product, the WHO has developed new experimental hut study guidelines for assessing their non-inferiority to a first in class product for which evidence of public health value has already been generated [19]. These provisional guidelines are to be piloted with pyrethroid-PBO nets by comparing other WHO/PQ-listed pyrethroid-PBO nets with the first in class product, Olyset Plus. This study compared the efficacy and wash resistance of Olyset Plus and PermaNet\n", - "3.0 and assessed the non-inferiority of PermaNet 3.0 to Olyset Plus in experimental huts against wild free-flying pyrethroid resistant malaria vectors in Southern Benin.\n", - "\n", - "header: Conclusion\n", - "\n", - "Olyset Plus outperformed PermaNet 3.0 in terms of its ability to cause greater margins of improved mosquito mortality compared to a standard pyrethroid net, after multiple standardized washes. However, using a margin of non-inferiority defined by the WHO, PermaNet 3.0 was non-inferior to Olyset Plus in inducing mosquito mortality. Considering the low levels of mortality observed and increasing pyrethroid-resistance in West Africa, it is unclear whether either of these nets would demonstrate the same epidemiological impact observed in community trials in East Africa.\n", - "\n", - "header: Experimental hut site: Insecticide resistance bioassays\n", - "\n", - "To assess the frequency of pyrethroid resistance and presence of mixed function oxidases in the Cove vector population during the trial, adult mosquitoes that emerged from larvae collected from breeding sites close to experimental huts were tested in WHO cylinder bioassays with and without pre-exposure to PBO. A total of ~100 mosquitoes of the pyrethroid resistant _An. gambiae_ s.l. Cove strain and the pyrethroid susceptible _An. gambiae_ Kisumu strain were exposed to treated filter papers in WHO cylinder bioassays in batches of 25. Tests were performed with papers treated with permethrin 0.75%, alpha-cypermethrin 0.05% and deltamethrin 0.05%. To assess presence of MFO, some mosquitoes were also pre-exposed to papers treated with 4% PBO prior to exposure to insecticide-treated papers. Exposure to PBO and to insecticides lasted 1 h, knockdown was recorded after 60 min and mortality after 24 h.\n", - "\n", - "header: Non-inferiority assessment\n", - "\n", - "According to recent provisional WHO guidelines [19], for a candidate pyrethroid-PBO ITN product to be included in this new WHO intervention class without the need for epidemiological evidence, it must demonstrate non-inferiority to the first in class product which has already demonstrated public health value (Olyset Plus) and superiority to a pyrethroid-only LLIN in experimental hut trials [19]. Briefly, the candidate pyrethroid-PBO product is deemed non-inferior if: (1) The lower 95% confidence interval estimate of the odds ratio describing the difference in mosquito mortality between the candidate and active comparator product is greater than 0.7. and (2) The upper 95% confidence interval estimate of the odds ratio describing the difference in mosquito blood-feeding between the candidate and active comparator product is less than 1.43. Following the WHO guidelines, both unwashed and washed data of each product were analysed together to generate single estimates of efficacy representative of the overall performance over the lifetime of the product in the field.\n", - "\n", - "Each primary endpoint for non-inferiority (mortality and blood-feeding rate for unwashed and washed nets combined), was assessed using binomial generalized linear mixed models (GLMMs) with a logit link function fitted using the 'lme4' package of R version 3.5.3 for Windows as described earlier. Results from the non-inferiority assessment of PermaNet 3.0 to Olyset Plus are presented in Table 5 below. The odds ratio for\n", - "Fig. 2: Blood-feeding rates of wild pyrethroid-resistant _Anopheles gambiae_ s.l. in experimental huts in Cove, Benin evaluating different net types. Vertical lines indicate 95% confidence interval estimates whilst bars with the same letter label are not significantly different (P > 0.05)\n", - "the difference in mosquito mortality between PermaNet 3.0 and Olyset Plus was 1.528 (95% confidence interval: 1.021-2.289) while the odds ratio for the difference in mosquito blood feeding was 1.192 (95% confidence interval: 0.772-1.841). Following the WHO criteria described above, PermaNet 3.0 was non-inferior to Olyset Plus in terms of its ability to kill wild pyrethroid- resistant _An. gambiae_ s.l. in the experimental hut trial in Cove Benin. In contrast PermaNet 3.0 was not non-inferior to Olyset Plus in terms of proportions of mosquitoes that blood-fed and, therefore, fails to demonstrate non-inferiority for blood feeding inhibition in this trial. The results also showed superiority of both pyrethroid-PBO net types to Olyset Net both in terms of mosquito mortality (25-27% vs. 15%, P < 0.001) and reducing blood-feeding (25%-30% vs. 42%, P < 0.001).\n", - "\n", - "header: Table 2 Entry and exiting rates of wild pyrethroid resistant Anopheles gambiae s.l. in experimental huts in Cove, Benin\n", - "footer: Values along a row bearing the same letter label are not signi\u001d\n", - "cantly different (P>0.05)* Value set to zero as more mosquitoes caught in Olyset Net huts than control huts\n", - "columns: ['Net type', 'Control', 'Olyset Net', 'Olyset Net.1', 'PermaNet 3.0', 'PermaNet 3.0.1', 'Olyset Plus', 'Olyset Plus.1']\n", - "\n", - "{\"0\":{\"Net type\":\"Number of washes\",\"Control\":\"0\",\"Olyset Net\":\"0\",\"Olyset Net.1\":\"20\",\"PermaNet 3.0\":\"0\",\"PermaNet 3.0.1\":\"20\",\"Olyset Plus\":\"0\",\"Olyset Plus.1\":\"20\"},\"1\":{\"Net type\":\"N collected\",\"Control\":\"962\",\"Olyset Net\":\"1135\",\"Olyset Net.1\":\"1546\",\"PermaNet 3.0\":\"489\",\"PermaNet 3.0.1\":\"616\",\"Olyset Plus\":\"688\",\"Olyset Plus.1\":\"1275\"},\"2\":{\"Net type\":\"N females\\/night\",\"Control\":\"23a\",\"Olyset Net\":\"27ab\",\"Olyset Net.1\":\"37b\",\"PermaNet 3.0\":\"12c\",\"PermaNet 3.0.1\":\"15d\",\"Olyset Plus\":\"16d\",\"Olyset Plus.1\":\"30ab\"},\"3\":{\"Net type\":\"% deterrence\",\"Control\":null,\"Olyset Net\":\"0*\",\"Olyset Net.1\":\"0*\",\"PermaNet 3.0\":\"49\",\"PermaNet 3.0.1\":\"36\",\"Olyset Plus\":\"28\",\"Olyset Plus.1\":\"0\"},\"4\":{\"Net type\":\"N exiting\",\"Control\":\"429\",\"Olyset Net\":\"639\",\"Olyset Net.1\":\"669\",\"PermaNet 3.0\":\"319\",\"PermaNet 3.0.1\":\"370\",\"Olyset Plus\":\"468\",\"Olyset Plus.1\":\"712\"},\"5\":{\"Net type\":\"% exiting\",\"Control\":\"45a\",\"Olyset Net\":\"56b\",\"Olyset Net.1\":\"43a\",\"PermaNet 3.0\":\"65cd\",\"PermaNet 3.0.1\":\"60ce\",\"Olyset Plus\":\"68d\",\"Olyset Plus.1\":\"56be\"},\"6\":{\"Net type\":\"95% conf. limits\",\"Control\":\"41.5\\u201347.7\",\"Olyset Net\":\"53.4\\u201359.2\",\"Olyset Net.1\":\"40.8\\u201345.7\",\"PermaNet 3.0\":\"61.0\\u201369.5\",\"PermaNet 3.0.1\":\"56.2\\u201363.9\",\"Olyset Plus\":\"64.4\\u201371.4\",\"Olyset Plus.1\":\"53.1\\u201358.6\"}}\n", - "\n", - "header: Table 3 Mortality of wild pyrethroid resistant Anopheles gambiae s.l. in experimental huts in Cove, Benin\n", - "footer: Values along a row bearing the same letter label are not signi\u001d\n", - "cantly di\u001c\n", - "erent (P>0.05)\n", - "columns: ['Net type', 'Control', 'Olyset Net', 'Olyset Net.1', 'PermaNet 3.0', 'PermaNet 3.0.1', 'Olyset Plus', 'Olyset Plus.1']\n", - "\n", - "{\"0\":{\"Net type\":\"Number of washes\",\"Control\":\"0\",\"Olyset Net\":\"0\",\"Olyset Net.1\":\"20\",\"PermaNet 3.0\":\"0\",\"PermaNet 3.0.1\":\"20\",\"Olyset Plus\":\"0\",\"Olyset Plus.1\":\"20\"},\"1\":{\"Net type\":\"Total collected\",\"Control\":\"962\",\"Olyset Net\":\"1135\",\"Olyset Net.1\":\"1546\",\"PermaNet 3.0\":\"489\",\"PermaNet 3.0.1\":\"616\",\"Olyset Plus\":\"688\",\"Olyset Plus.1\":\"1275\"},\"2\":{\"Net type\":\"Total dead\",\"Control\":\"12\",\"Olyset Net\":\"209\",\"Olyset Net.1\":\"284\",\"PermaNet 3.0\":\"198\",\"PermaNet 3.0.1\":\"103\",\"Olyset Plus\":\"190\",\"Olyset Plus.1\":\"297\"},\"3\":{\"Net type\":\"Mortality (%)\",\"Control\":\"1a\",\"Olyset Net\":\"18b\",\"Olyset Net.1\":\"12c\",\"PermaNet 3.0\":\"41d\",\"PermaNet 3.0.1\":\"17b\",\"Olyset Plus\":\"28e\",\"Olyset Plus.1\":\"24e\"},\"4\":{\"Net type\":\"95% conf. limits\",\"Control\":\"0.6\\u20132.0\",\"Olyset Net\":\"16.2\\u201320.1\",\"Olyset Net.1\":\"10.3\\u201313.5\",\"PermaNet 3.0\":\"36.1\\u201344.8\",\"PermaNet 3.0.1\":\"13.8\\u201319.8\",\"Olyset Plus\":\"24.4\\u201331.1\",\"Olyset Plus.1\":\"21.0\\u201325.6\"},\"5\":{\"Net type\":\"Corrected for control (%)\",\"Control\":\"-\",\"Olyset Net\":\"17\",\"Olyset Net.1\":\"11\",\"PermaNet 3.0\":\"41\",\"PermaNet 3.0.1\":\"17\",\"Olyset Plus\":\"27\",\"Olyset Plus.1\":\"22\"}}\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `ClinicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `ClinicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `ClinicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Hut trial\",\"Country\":\"Benin\",\"Site\":\"Cove\"}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Synergist\": {\"title\": \"Synergist\", \"description\": \"Enter the synergist or synergists combination (delimited by comma).\"}, \"Net_washed\": {\"title\": \"Net Washed\", \"description\": \"Numerical count of number of net washes - 0 if none and NA if not reported.\"}, \"pHI_category\": {\"title\": \"Phi Category\", \"description\": \"Classification of the nets holed surface area, as one of \\\"Good\\\", \\\"Damaged\\\", \\\"Torn\\\", \\\"Serviceable\\\", or \\\"All\\\", as proposed by WHO\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"PermaNet 3.0\",\"Insecticide\":\"deltamethrin\",\"Synergist\":\"PBO\",\"Net_washed\":20.0,\"pHI_category\":\"All\"},\"N02\":{\"Net_type\":\"Olyset Plus\",\"Insecticide\":\"permethrin\",\"Synergist\":\"PBO\",\"Net_washed\":20.0,\"pHI_category\":\"All\"},\"N03\":{\"Net_type\":\"Olyset Net\",\"Insecticide\":\"permethrin\",\"Synergist\":null,\"Net_washed\":20.0,\"pHI_category\":\"All\"}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n", - "** Messages: **\n", - "user: Your ability to extract and summarize this context accurately is essential for effective analysis. Pay close attention to the context's language, structure, and any cross-references to ensure a comprehensive and precise extraction of information. Do not use prior knowledge or information from outside the context to answer the questions. Only use the information provided in the context to answer the questions.\n", - "Context information is below.\n", - "---------------------\n", - "header: Chemical analysis results\n", - "\n", - "For PermaNet 3.0, PBO was only recorded from the roof panel of the nets; for Olyset Plus, PBO was recorded on all 5 panels (Table 6). Compared to the pyrethroid component, much less PBO was retained in both types of pyrethroid-PBO ITNs after 20 washes (58.7% vs. 25% with Olyset Plus and 80.9% vs. 68.8% with PermaNet 3.0, P < 0.05). The decrease in PBO content after washing was more evident in Olyset Plus than in PermaNet 3.0 netting, hence the wash retention index of PBO was higher with PermaNet 3.0 compared to Olyset Plus (98.1% vs. 93.3%).\n", - "\n", - "Figure 4: Tunnel test mortality (%) of susceptible and resistant strains of _Anopheles gambiae_ s.l. exposed to Olyset Plus vs. Olyset Net\n", - "\n", - "Figure 3: Mortality (%) of susceptible and resistant strains of _An. gambiae_ s.l. in cone bioassays with Olyset Plus and Olyset Net. S = susceptible, R = resistant\n", - "\n", - "header: Supplementary laboratory bioassays results\n", - "\n", - "The 3-min cone bioassay mortality results for all 3 mosquito strains and wash points tested are presented in Fig. 3. Unwashed Olyset Net induced very low mortality rates against the susceptible Kisumu strain (17-20%) and even lower mortality rates against the pyrethroid resistant strains (< 5%). Cone bioassay mortality rates with unwashed Olyset Plus were higher across all 3 strains compared to Olyset Net though mortality decreased as the strain tested became more pyrethroid-resistant. Cone bioassay mortality however dropped significantly with washed net samples. Mortality with the untreated net samples did not exceed 5% with any strain tested.\n", - "\n", - "header: Experimental hut treatments\n", - "\n", - "Olyset Plus and PermaNet 3.0 were compared in the experimental huts when unwashed and after 20 standardized washes. A WHO-recommended pyrethroid-only long-lasting net (Olyset Net) was included to demonstrate the added effect of PBO on the insecticide-resistant local vector species. Nets were washed using savon de Marseilles and rinsed twice following WHO procedures for washing nets for experimental hut studies [22].\n", - "\n", - "The following seven (7) treatments were thus tested in seven experimental huts:\n", - "\n", - "1. Untreated polyethylene net\n", - "2. Olyset Net unwashed (permethrin only)\n", - "3. Olyset Net washed 20 times.\n", - "4. PermaNet 3.0 unwashed (Roof: deltamethrin plus PBO; sides: deltamethrin only)\n", - "5. PermaNet 3.0 washed 20 times.\n", - "6. Olyset Plus unwashed (permethrin plus PBO on all panels)\n", - "7. Olyset Plus washed 20 times.\n", - "\n", - "header: Background: Methods\n", - "\n", - "An experimental hut trial was performed in Cove, Benin to compare PermaNet 3.0 (deltamethrin plus PBO on roof panel only) to Olyset Plus (permethrin plus PBO on all panels) against wild pyrethroid-resistant _Anopheles gambiae_ sensu lato (s.l) following World Health Organization (WHO) guidelines. Both nets were tested unwashed and after 20 standardized washes compared to Olyset Net. Laboratory bioassays were also performed to help explain findings in the experimental huts.\n", - "\n", - "header: Abstract\n", - "\n", - "Comparative efficacy of two pyrethroid-piperonyl butoxide nets (Olyset Plus and PermaNet 3.0) against pyrethroid resistant malaria vectors: a non-inferiority assessment\n", - "\n", - "Corine Ngufor, Josias Fagbohoun, Abel Agbevo, Hanafy Ismail, Joseph D. Challenger, Thomas S. Churcher, Mark Rowland\n", - "\n", - "\n", - "\n", - "Pyrethroid-PBO nets were conditionally recommended for control of malaria transmitted by mosquitoes with oxidase-based pyrethroid-resistance based on epidemiological evidence of additional protective effect with Olyset Plus compared to a pyrethroid-only net (Olyset Net). Entomological studies can be used to assess the comparative performance of other brands of pyrethroid-PBO ITNs to Olyset Plus.\n", - "\n", - "header: Mosquito entry and exiting rates in experimental huts: Mortality of wild pyrethroid-resistant Anopheles gambiae s.l. in experimental huts\n", - "\n", - "Mortality rates of wild pyrethroid resistant mosquitoes that entered the experimental huts are presented in Fig. 1 with further details provided in Table 3. The lowest mortality was achieved with Olyset Net (18% before washing and 12% after 20 washes). Percentage mortality with unwashed pyrethroid-PBO nets was highest with PermaNet 3.0 (41%) but this declined significantly after 20 washes (17%, P < 0.001). Mortality with unwashed Olyset Plus was 28% and while this value was significantly lower than the mortality shown by unwashed PermaNet 3.0 (P < 0.001), it did not decrease significantly after 20 washes (28% vs. 24%, P = 0.433) whereas for PermaNet 3.0 it declined. Hence, Olyset Plus induced higher mortality rates than PermaNet 3.0 after 20 washes (24% vs 17%, P < 0.001). With respect to the pyrethroid-only ITN, both pyrethroid-PBO nets induced significantly higher mortality rates than Olyset Net with nets washed 20 times (P < 0.001) though the difference was higher with Olyset Plus (24% vs. 12%), than with PermaNet 3.0 (17% vs. 12%). After 20 washes, mortality with PermaNet 3.0 declined to the same level as the unwashed Olyset Net, (17% vs. 18%, P = 0.061) but remained significantly higher with Olyset Plus (24% vs. 17%, P = 0.036).\n", - "\n", - "header: Mosquito blood-feeding rates in experimental huts\n", - "\n", - "The blood-feeding rates of wild pyrethroid-resistant _An. gambiae s.l_ that entered the experimental huts are presented in Fig. 2 with further details on mosquito feeding provided in Table 4. The percentage blood-feeding was lower in huts with the unwashed pyrethroid-PBO ITNs and was lowest of all with unwashed Olyset Plus as compared to unwashed PermaNet 3.0 (8% vs 19%, P < 0.001). For all net types, the data showed an overall increase in blood feeding with washed nets compared to unwashed nets and a decrease in blood-feeding inhibition relative to the untreated net. Percentage blood-feeding when washed 20 times did not differ significantly between the pyrethroid-PBO types (38% with PermaNet 3.0 vs. 35% with Olyset Plus, P = 0.708). The proportions of mosquitoes collected resting in the nets were lowest with the\n", - "\n", - "Fig. 1: Mortality of wild pyrethroid-resistant _Anopheles gambiae_ s.l. in experimental huts in Cove, Benin evaluating different net types. Vertical lines indicate 95% confidence interval estimates whilst bars with the same letter label are not significantly different (P > 0.05)\n", - "unwashed pyrethroid-PBO nets (2-6%), which is consistent with the higher toxicity observed with this type of net. Personal protection with both types of pyrethroid-PBO ITMs were > 80% when unwashed but this declined after 20 washes to 53% with PermaNet 3.0 and 11% with Olyset Plus.\n", - "\n", - "header: Cone bioassay results: Tunnel test results\n", - "\n", - "The results from the tunnel tests comparing Olyset Plus and Olyset Net unwashed and after 10 and 20 washes against all three strains are presented in Figs. 4 and 5 for mortality and blood-feeding inhibition respectively. Mortality rates were generally higher in the tunnels tests compared to the cone bioassays and decreased as the strain become more pyrethroid-resistant (Fig. 4). Mortality rates with the Kisumu strain were very high with Olyset Net and Olyset Plus (> 95%). With the VKPer strain, mortality remained > 80% after 20 washes with both ITN types. With the Cove strain, mortality was significantly higher with Olyset Plus compared to Olyset Net at 0 and 10 washes but about the same after 20 washes. With unwashed nets, blood-feeding inhibition in the tunnel tests was consistently higher with Olyset Plus (> 90%) compared to Olyset Net (27-75%) for all three strains tested (Fig. 5). After 10 and 20 washes, blood-feeding inhibition of the Kisumu and VKPer strain remained > 80% with Olyset Plus and Olyset Net. With Cove strain, blood-feeding inhibition was also higher with Olyset Plus at 0 and 10 washes but declined to about the same level as Olyset Net after 20 washes (56%).\n", - "Mortality in the untreated control tunnel was < 10% with all three strains.\n", - "\n", - "header: Results\n", - "\n", - "Mortality with permethrin and alpha-cypermethrin treated papers was 100% with the laboratory-maintained pyrethroid-susceptible _An. gambiae_ Kisumu strain. With wild pyrethroid resistant _An. gambiae_ s.l. from Cove, mortality rates were <50% with all three pyrethroid insecticides tested (Table 1) thus confirming the high levels of pyrethroid resistance in this vector population. Mortality however increased from 19.2 to 52.5% with permethrin, 41.7% to 69.7% with deltamethrin and 0% to 82.4% with alphacypermethrin after pre-exposure of the Cove strain to PBO synergist (Table 1). This result demonstrated that mixed function oxidases are overexpressed in the wild Cove vector population and their effect can be effectively inhibited by the PBO synergist.\n", - "\n", - "header: Supplementary laboratory bioassays\n", - "\n", - "To help further explain the results obtained in the experimental huts, WHO cone bioassays and tunnel tests were performed on samples of netting (\\(30\\times 30\\) cm) obtained from Olyset Net and Olyset Plus when unwashed and after 10 and 20 washes. Washing was performed in the laboratory following WHO guidelines [22]. PermaNet 3.0 was not tested in the laboratory bioassays owing to the restricted application of PBO to the roof of the net preventing a realistic direct comparison with Olyset Plus in bioassays especially tunnel tests. Net samples from each ITN type and each wash point were tested against the following strains:\n", - "\n", - "1. _An. gambiae_ sensu lato (s.l.) strains from Cove, Benin (Cove strain) which is highly pyrethroid resistant. It originates from the experimental hut station in Cove and has shown > 200-fold resistance compared to the susceptible Kisumu strain in susceptibility bioassays. Resistance is mediated by elevated levels of P450s and high frequencies of _kdr_ [20].\n", - "2. _An. gambiae_ VKPer strain, which originated from the Kou Valley in Burkina Faso. VKPer has moderate levels of pyrethroid resistance mediated only by high frequencies of _kdr_.\n", - "3. _An. gambiae_ s.s. Kisumu strain, a reference susceptible strain which originated from Kisumu Kenya.\n", - "\n", - "Approximately two hundred 2-5 days old mosquitoes of each strain were exposed for 3 min in cone bioassays to four net samples of each net type in cohorts of 5 mosquitoes per cone. Knock down in cone bioassays was recorded after 1 h and mortality after 24 h.\n", - "\n", - "Two to three hundred 5-8 days old mosquitoes of each strain were also exposed to each net type in tunnel tests in replicates of 50 mosquitoes per net sample. The tunnel test is a laboratory assay designed to simulate natural host-seeking behaviour of mosquitoes at night in the presence of a net. It consists of a square glass cylinder (25 cm high, 25 cm wide, 60 cm in length) divided into two sections by means of a netting frame fitted into a slot across the tunnel. An anesthetized guinea pig was housed unconstrained in a small cage in one section, and mosquitoes were released in the other section at dusk and left overnight. The net samples were holed with nine 1-cm diameter holes to allow host-seeking mosquitoes to penetrate the baited chamber; an untreated net sample served as the control. The tunnels were kept overnight in a dark room at 25-29 degC and 75-85% RH. The next morning, the numbers found alive or dead, fed, or unfed, in each section were recorded. Live mosquitoes were provided with sugar solution and delayed mortality recorded after 24 h. The guinea pigs used in this study were kept in accordance with institutional guidelines for animal care.\n", - "\n", - "header: Table 4: Blood-feeding rates of wild pyrethroid resistant Anopheles gambiae s.l. in experimental huts in Cove, Benin\n", - "footer: Values along a row bearing the same letter label are not significantly different (P > 0.05) * Value set to zero as more blood fed mosquitoes were caught in washed Olyset Net huts than control hut\n", - "columns: ['Net type', 'Control', 'Olyset Net', 'Olyset Net.1', 'PermaNet 3.0', 'PermaNet 3.0.1', 'Olyset Plus', 'Olyset Plus.1']\n", - "\n", - "{\"0\":{\"Net type\":\"Number of washes\",\"Control\":\"0\",\"Olyset Net\":\"0\",\"Olyset Net.1\":\"20\",\"PermaNet 3.0\":\"0\",\"PermaNet 3.0.1\":\"20\",\"Olyset Plus\":\"0\",\"Olyset Plus.1\":\"20\"},\"1\":{\"Net type\":\"Total collected\",\"Control\":\"962\",\"Olyset Net\":\"1135\",\"Olyset Net.1\":\"1546\",\"PermaNet 3.0\":\"489\",\"PermaNet 3.0.1\":\"616\",\"Olyset Plus\":\"688\",\"Olyset Plus.1\":\"1275\"},\"2\":{\"Net type\":\"Total blood fed\",\"Control\":\"496\",\"Olyset Net\":\"324\",\"Olyset Net.1\":\"807\",\"PermaNet 3.0\":\"95\",\"PermaNet 3.0.1\":\"231\",\"Olyset Plus\":\"56\",\"Olyset Plus.1\":\"442\"},\"3\":{\"Net type\":\"% Blood fed\",\"Control\":\"52a\",\"Olyset Net\":\"29b\",\"Olyset Net.1\":\"52a\",\"PermaNet 3.0\":\"19c\",\"PermaNet 3.0.1\":\"38d\",\"Olyset Plus\":\"8e\",\"Olyset Plus.1\":\"35d\"},\"4\":{\"Net type\":\"95% conf intervals\",\"Control\":\"48.4\\u201354.7\",\"Olyset Net\":\"25.9\\u201331.2\",\"Olyset Net.1\":\"49.7\\u201354.7\",\"PermaNet 3.0\":\"15.9\\u201322.9\",\"PermaNet 3.0.1\":\"33.7\\u201341.3\",\"Olyset Plus\":\"6.1\\u201310.2\",\"Olyset Plus.1\":\"32.1\\u201337.3\"},\"5\":{\"Net type\":\"% Blood-feeding inhibition\",\"Control\":\"-\",\"Olyset Net\":\"44\",\"Olyset Net.1\":\"0\",\"PermaNet 3.0\":\"63\",\"PermaNet 3.0.1\":\"27\",\"Olyset Plus\":\"85\",\"Olyset Plus.1\":\"33\"},\"6\":{\"Net type\":\"inside net\",\"Control\":\"294\",\"Olyset Net\":\"184\",\"Olyset Net.1\":\"542\",\"PermaNet 3.0\":\"28\",\"PermaNet 3.0.1\":\"130\",\"Olyset Plus\":\"17\",\"Olyset Plus.1\":\"241\"},\"7\":{\"Net type\":\"inside net (%)\",\"Control\":\"31a\",\"Olyset Net\":\"16bc\",\"Olyset Net.1\":\"35a\",\"PermaNet 3.0\":\"6d\",\"PermaNet 3.0.1\":\"21b\",\"Olyset Plus\":\"2e\",\"Olyset Plus.1\":\"19c\"},\"8\":{\"Net type\":\"Personal protection (%)\",\"Control\":\"-\",\"Olyset Net\":\"35\",\"Olyset Net.1\":\"0*\",\"PermaNet 3.0\":\"81\",\"PermaNet 3.0.1\":\"53\",\"Olyset Plus\":\"89\",\"Olyset Plus.1\":\"11\"}}\n", - "\n", - "header: Results\n", - "\n", - "With unwashed nets, mosquito mortality was higher in huts with PermaNet 3.0 compared to Olyset Plus (41% vs. 28%, P < 0.001). After 20 washes, mortality declined significantly with PermaNet 3.0 (41% unwashed vs. 17% after washing P < 0.001), but not with Olyset Plus (28% unwashed vs. 24% after washing P = 0.433); Olyset Plus induced significantly higher mortality than PermaNet 3.0 and Olyset Net after 20 washes. PermaNet 3.0 showed a higher wash retention of PBO compared to Olyset Plus. A non-inferiority analysis performed with data from unwashed and washed nets together using a margin recommended by the WHO, showed that PermaNet 3.0 was non-inferior to Olyset Plus in terms of mosquito mortality (25% with Olyset Plus vs. 27% with PermaNet 3.0, OR = 1.528, 95%Cl = 1.02-2.29) but not in reducing mosquito feeding (25% with Olyset Plus vs. 30% with PermaNet 3.0, OR = 1.192, 95%Cl = 0.77-1.84). Both pyrethroid-PBO nets were superior to Olyset Net.\n", - "\n", - "header: Background\n", - "\n", - "Long-lasting insecticidal nets (LLINs) remain one of the most powerful tools to reduce malaria transmission in a community and provide personal protection to the user [1, 2]. They have contributed significantly to recent reductions in malaria burden [3]. Their efficacy is however threatened by increasing resistance to pyrethroids [4, 5]; the insecticide of choice used on bed-nets owing to its safety, low cost and rapid activity on vector mosquitoes [6]. To maintain the effectiveness of insecticide treated nets for malaria control, new types of LLINs treated with alternative insecticides and compounds which can either replace or complement pyrethroids on bed-nets are urgently needed.\n", - "\n", - "A new class of insecticide treated nets (ITNs) combining pyrethroids and piperonyl butoxide (PBO) (pyrethroid-PBO ITNs) have been developed [7]. PBO is a synergist that inhibits specific metabolic enzymes such as mixed-function oxidases within mosquitoes that detoxify or sequester insecticides before they can have a toxic effect on the mosquito. Pyrethroid-PBO nets can therefore induce increased mortality of pyrethroid-resistant malaria vectors that express mixed function oxidase based pyrethroid resistance mechanisms that are inhibited by the PBO in the net. These nets were given an interim endorsement as a new WHO class of vector control products in 2017 based on epidemiological data from a cluster randomized controlled trial in North Eastern Tanzania [8], that demonstrated additional malaria control with one prototype pyrethroid-PBO net (Olyset Plus) compared to a pyrethroid-only net (Olyset Net), against pyrethroid resistant malaria vectors of moderate intensity, partly conferred by monooxygenase-based resistance mechanism. Pyrethroid-PBO ITNs are conditionally recommended for malaria vector control instead of pyrethroid-only ITNs in areas of confirmed intermediate levels of resistance mediated by monooxygenase-based resistance mechanism [9]. This endorsement has been followed by an increasing uptake of pyrethroid-PBO nets worldwide [10]; in sub-Saharan Africa for example, the proportion of pyrethroid-PBO nets of all nets delivered increased from 3% in 2018 to 35% in 2021.\n", - "\n", - "While Olyset Plus was the first in class pyrethroid-PBO net to demonstrate public health value as observed in the Tanzanian trial [8], there are currently five additional types of pyrethroid-PBO ITNs on the World Health Organization (WHO) list of prequalified vector control products: PermaNet 3.0, Veeralin, Tsara Boost, Tsara Plus and very recently DuraNet Plus [7]. These nets have all demonstrated superiority over pyrethroid-only nets in terms of mosquito mortality and blood-feeding inhibition in multiple experimental hut trials across Africa [11, 12, 13, 14, 15, 16, 17]. However, they differ from Olyset Plus in their design and specifications; typically, the location of PBO on the net (i.e., all panels vs. roof panel only), the type and dose of pyrethroid used, bioavailability and retention of PBO after washing and could, therefore, differ in entomological and epidemiological impact. A recent large cluster-randomized trial in Uganda, evaluating the efficacy of Olyset Plus and PermaNet 3.0 compared to pyrethroid-only nets in a setting of high pyrethroid resistance, also demonstrated better protection against malaria with pyrethroid-PBO nets compared to pyrethroid-only nets for up to 18 months confirming the findings of the Tanzanian trial [18]. While the Ugandan trial was not powered to directly compare between the different ITN brands tested, the results showed that the additional protective effect of the pyrethroid-PBO net compared to the pyrethroid-only net was initially large with PermaNet 3.0 at 6 months post-distribution but lasted only up to 12 months whereas additional protective effect with Olyset Plus appeared to have a delayed onset which was not observed at 6 months but became evident at 12 months and lasted up to 18 months. There are major differences in design between Olyset Plus and PermaNet 3.0, which could have implications on their epidemiological impact; Olyset Plus is a polyethylene net incorporated with permethrin and PBO on all panels while PermaNet 3.0 is a polyester net coated with deltamethrin with PBO restricted to the roof of the net.\n", - "\n", - "To generate assurance of comparative performance of new candidate products within an established WHO vector control product class, without the need for epidemiological evidence for each new product, the WHO has developed new experimental hut study guidelines for assessing their non-inferiority to a first in class product for which evidence of public health value has already been generated [19]. These provisional guidelines are to be piloted with pyrethroid-PBO nets by comparing other WHO/PQ-listed pyrethroid-PBO nets with the first in class product, Olyset Plus. This study compared the efficacy and wash resistance of Olyset Plus and PermaNet\n", - "3.0 and assessed the non-inferiority of PermaNet 3.0 to Olyset Plus in experimental huts against wild free-flying pyrethroid resistant malaria vectors in Southern Benin.\n", - "\n", - "header: Table 1: Mortality of pyrethroid resistant Anopheles gambiae s.l. from Cove in WHO cylinder bioassays with and without pre-exposure to PBO\n", - "footer: None\n", - "columns: ['Variable', 'N exposed', 'N dead', '% Dead']\n", - "\n", - "{\"0\":{\"Variable\":\"Control\",\"N exposed\":101,\"N dead\":0,\"% Dead\":0.0},\"1\":{\"Variable\":\"PBO 4% only\",\"N exposed\":103,\"N dead\":3,\"% Dead\":2.9},\"2\":{\"Variable\":\"Permethrin 0.75%\",\"N exposed\":104,\"N dead\":20,\"% Dead\":19.2},\"3\":{\"Variable\":\"Deltamethrin 0.05%\",\"N exposed\":91,\"N dead\":38,\"% Dead\":41.7},\"4\":{\"Variable\":\"Alpha-cypermethrin 0.05%\",\"N exposed\":102,\"N dead\":0,\"% Dead\":0.0},\"5\":{\"Variable\":\"PBO 4% then permethrin 0.75%\",\"N exposed\":99,\"N dead\":52,\"% Dead\":52.5},\"6\":{\"Variable\":\"PBO 4% then deltamethrin 0.05%\",\"N exposed\":99,\"N dead\":69,\"% Dead\":69.7},\"7\":{\"Variable\":\"PBO 4% then alpha-cypermethrin 0.05%\",\"N exposed\":102,\"N dead\":84,\"% Dead\":82.4},\"8\":{\"Variable\":\"PBO 4% then alpha-cypermethrin 0.05%\",\"N exposed\":102,\"N dead\":84,\"% Dead\":82.4}}\n", - "\n", - "header: Conclusion\n", - "\n", - "Olyset Plus outperformed PermaNet 3.0 in terms of its ability to cause greater margins of improved mosquito mortality compared to a standard pyrethroid net, after multiple standardized washes. However, using a margin of non-inferiority defined by the WHO, PermaNet 3.0 was non-inferior to Olyset Plus in inducing mosquito mortality. Considering the low levels of mortality observed and increasing pyrethroid-resistance in West Africa, it is unclear whether either of these nets would demonstrate the same epidemiological impact observed in community trials in East Africa.\n", - "\n", - "header: Experimental hut site: Insecticide resistance bioassays\n", - "\n", - "To assess the frequency of pyrethroid resistance and presence of mixed function oxidases in the Cove vector population during the trial, adult mosquitoes that emerged from larvae collected from breeding sites close to experimental huts were tested in WHO cylinder bioassays with and without pre-exposure to PBO. A total of ~100 mosquitoes of the pyrethroid resistant _An. gambiae_ s.l. Cove strain and the pyrethroid susceptible _An. gambiae_ Kisumu strain were exposed to treated filter papers in WHO cylinder bioassays in batches of 25. Tests were performed with papers treated with permethrin 0.75%, alpha-cypermethrin 0.05% and deltamethrin 0.05%. To assess presence of MFO, some mosquitoes were also pre-exposed to papers treated with 4% PBO prior to exposure to insecticide-treated papers. Exposure to PBO and to insecticides lasted 1 h, knockdown was recorded after 60 min and mortality after 24 h.\n", - "\n", - "header: Chemical analysis\n", - "\n", - "At the end of the experimental hut trial, five pieces of netting (\\(25\\times 25\\) cm) obtained from the panels of replicate nets of each net type (before and after washing) used in the huts were assessed for deltamethrin, permethrin and PBO content using HPLC. Insecticide was extracted from each net piece with an area of 48 sq cm collected from the five net samples (\\(25\\times 25\\) cm) obtained from each whole net. The insecticide content of each sample was determined by injecting ten ul aliquots of the extract on a reverse-phase Hypersil GOLD C18 column (75 A, \\(250\\times 4.6\\) mm, 5-um particle size; Thermo Scientific) at room temperature. A mobile phase of 70% acetonitrile in water was used at a flow rate of 1 ml min\\({}^{-1}\\) to separate the target analyte. Chromatographic peaks of the insecticides and internal standard were detected at a wavelength of 232 nm with the Ultimate 3000 UV detector and analysed with Dionex Chromeleon(tm) 6.8 Chromatography Data System software. Quantities of insecticide were calculated from standard curves established by known concentrations of the insecticide authenticated standards and corrected by internal standard readings in each sample relative to control.\n", - "\n", - "Data from chemical analysis was used to calculate the percentage retention of each active ingredient after 20 washes relative to the unwashed net and the wash retention index. Wash-resistance index was calculated according to WHO guidelines [22] as indicated below:\n", - "\n", - "\\[\\text{Wash resistance index} = 100\\times\\text{n}\\sqrt{(\\text{tn}/\\text{t0})}\\] \\[\\left(\\text{free migration stage behaviour}\\right)\\]\n", - "\n", - "where \\(\\text{tn}=\\text{total active ingredient content after n washing cycles, t0=total active ingredient content before washing, n=number of washes.\n", - "\n", - "header: Table 2 Entry and exiting rates of wild pyrethroid resistant Anopheles gambiae s.l. in experimental huts in Cove, Benin\n", - "footer: Values along a row bearing the same letter label are not signi\u001d\n", - "cantly different (P>0.05)* Value set to zero as more mosquitoes caught in Olyset Net huts than control huts\n", - "columns: ['Net type', 'Control', 'Olyset Net', 'Olyset Net.1', 'PermaNet 3.0', 'PermaNet 3.0.1', 'Olyset Plus', 'Olyset Plus.1']\n", - "\n", - "{\"0\":{\"Net type\":\"Number of washes\",\"Control\":\"0\",\"Olyset Net\":\"0\",\"Olyset Net.1\":\"20\",\"PermaNet 3.0\":\"0\",\"PermaNet 3.0.1\":\"20\",\"Olyset Plus\":\"0\",\"Olyset Plus.1\":\"20\"},\"1\":{\"Net type\":\"N collected\",\"Control\":\"962\",\"Olyset Net\":\"1135\",\"Olyset Net.1\":\"1546\",\"PermaNet 3.0\":\"489\",\"PermaNet 3.0.1\":\"616\",\"Olyset Plus\":\"688\",\"Olyset Plus.1\":\"1275\"},\"2\":{\"Net type\":\"N females\\/night\",\"Control\":\"23a\",\"Olyset Net\":\"27ab\",\"Olyset Net.1\":\"37b\",\"PermaNet 3.0\":\"12c\",\"PermaNet 3.0.1\":\"15d\",\"Olyset Plus\":\"16d\",\"Olyset Plus.1\":\"30ab\"},\"3\":{\"Net type\":\"% deterrence\",\"Control\":null,\"Olyset Net\":\"0*\",\"Olyset Net.1\":\"0*\",\"PermaNet 3.0\":\"49\",\"PermaNet 3.0.1\":\"36\",\"Olyset Plus\":\"28\",\"Olyset Plus.1\":\"0\"},\"4\":{\"Net type\":\"N exiting\",\"Control\":\"429\",\"Olyset Net\":\"639\",\"Olyset Net.1\":\"669\",\"PermaNet 3.0\":\"319\",\"PermaNet 3.0.1\":\"370\",\"Olyset Plus\":\"468\",\"Olyset Plus.1\":\"712\"},\"5\":{\"Net type\":\"% exiting\",\"Control\":\"45a\",\"Olyset Net\":\"56b\",\"Olyset Net.1\":\"43a\",\"PermaNet 3.0\":\"65cd\",\"PermaNet 3.0.1\":\"60ce\",\"Olyset Plus\":\"68d\",\"Olyset Plus.1\":\"56be\"},\"6\":{\"Net type\":\"95% conf. limits\",\"Control\":\"41.5\\u201347.7\",\"Olyset Net\":\"53.4\\u201359.2\",\"Olyset Net.1\":\"40.8\\u201345.7\",\"PermaNet 3.0\":\"61.0\\u201369.5\",\"PermaNet 3.0.1\":\"56.2\\u201363.9\",\"Olyset Plus\":\"64.4\\u201371.4\",\"Olyset Plus.1\":\"53.1\\u201358.6\"}}\n", - "\n", - "header: Non-inferiority assessment\n", - "\n", - "According to recent provisional WHO guidelines [19], for a candidate pyrethroid-PBO ITN product to be included in this new WHO intervention class without the need for epidemiological evidence, it must demonstrate non-inferiority to the first in class product which has already demonstrated public health value (Olyset Plus) and superiority to a pyrethroid-only LLIN in experimental hut trials [19]. Briefly, the candidate pyrethroid-PBO product is deemed non-inferior if: (1) The lower 95% confidence interval estimate of the odds ratio describing the difference in mosquito mortality between the candidate and active comparator product is greater than 0.7. and (2) The upper 95% confidence interval estimate of the odds ratio describing the difference in mosquito blood-feeding between the candidate and active comparator product is less than 1.43. Following the WHO guidelines, both unwashed and washed data of each product were analysed together to generate single estimates of efficacy representative of the overall performance over the lifetime of the product in the field.\n", - "\n", - "Each primary endpoint for non-inferiority (mortality and blood-feeding rate for unwashed and washed nets combined), was assessed using binomial generalized linear mixed models (GLMMs) with a logit link function fitted using the 'lme4' package of R version 3.5.3 for Windows as described earlier. Results from the non-inferiority assessment of PermaNet 3.0 to Olyset Plus are presented in Table 5 below. The odds ratio for\n", - "Fig. 2: Blood-feeding rates of wild pyrethroid-resistant _Anopheles gambiae_ s.l. in experimental huts in Cove, Benin evaluating different net types. Vertical lines indicate 95% confidence interval estimates whilst bars with the same letter label are not significantly different (P > 0.05)\n", - "the difference in mosquito mortality between PermaNet 3.0 and Olyset Plus was 1.528 (95% confidence interval: 1.021-2.289) while the odds ratio for the difference in mosquito blood feeding was 1.192 (95% confidence interval: 0.772-1.841). Following the WHO criteria described above, PermaNet 3.0 was non-inferior to Olyset Plus in terms of its ability to kill wild pyrethroid- resistant _An. gambiae_ s.l. in the experimental hut trial in Cove Benin. In contrast PermaNet 3.0 was not non-inferior to Olyset Plus in terms of proportions of mosquitoes that blood-fed and, therefore, fails to demonstrate non-inferiority for blood feeding inhibition in this trial. The results also showed superiority of both pyrethroid-PBO net types to Olyset Net both in terms of mosquito mortality (25-27% vs. 15%, P < 0.001) and reducing blood-feeding (25%-30% vs. 42%, P < 0.001).\n", - "\n", - "header: Insecticide resistance in malaria vectors in Cove: Experimental hut trial results\n", - "\n", - "A total of 6711 pyrethroid resistant female _An. gambiae_ s.l. were collected during the experimental hut trial. The entry and exiting rates of wild pyrethroid resistant _An. gambiae_ s.l. from the experimental huts with the different ITN types tested in the trial are presented in Table 2. Compared to the control, Olyset Net did not deter mosquitoes from entering the experimental huts (0% when unwashed and after 20 washes). Mosquito deterrence was significantly higher with PermaNet 3.0 compared to Olyset Plus both unwashed (49% vs. 28%, P < 0.001) and after 20 washes (36% vs. 0%, P < 0.001). Nevertheless, early exiting of mosquitoes from the experimental huts into the veranda trap did not differ significantly between both pyrethroid-PBO net types both when unwashed (65% with PermaNet 3.0 vs 68% with Olyset Plus, P = 0.232) and after 20 washes (60% with PermaNet 3.0 vs. 56% with Olyset Plus, P = 0.053).\n", - "\\begin{table}\n", - "\\begin{tabular}{l c c c c c c}\n", - "**Net type** & **Control** & **Olyset Net** & & **PermNet 3.0** & **Olyset Plus** \\\\ Number of washes & 0 & 0 & 20 & 0 & 20 & 0 & 20 \\\\ N collected & 962 & 1135 & 1546 & 489 & 616 & 688 & 1275 \\\\ N females/night & 233 & 27\\({}^{\\text{hb}}\\) & 37\\({}^{\\text{b}}\\) & 12\\({}^{\\text{c}}\\) & 15\\({}^{\\text{d}}\\) & 16\\({}^{\\text{d}}\\) & 30\\({}^{\\text{hb}}\\) \\\\ \\% deterrence & – & 0\\({}^{\\text{a}}\\) & 0\\({}^{\\text{a}}\\) & 49 & 36 & 28 & 0 \\\\ N eating & 429 & 639 & 669 & 319 & 370 &\n", - "---------------------\n", - "Query: Your task is to extract data from a research paper.\n", - "The `EntomologicalOutcome` details can be split across the provided context. Respond with details by looking at the whole context always.\n", - "If you don't find the information in the given context or you are not sure, omit the key-value in your JSON response. The `EntomologicalOutcome` data you're extracting is dependent on the provided `Observation, ITNCondition` tables containing entities which you need to reference. There can be multiple `EntomologicalOutcome` data entries for each unique combination of these references.Here are the data already extracted from the paper:\n", - "\n", - "###Observation###\n", - "Schema:\n", - "{\"title\": \"Observation\", \"description\": \"A collection of observations from a single publication. Each Observation entity extracted should have unique `Site`, `Start_month`, `End_month`, and `Time_elapsed` (if reported). Country and Site are typically located in Africa.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `observation_ref`\\nSpecifications:\\nstr_startswith: \\\"S\\\"\"}, \"Study_type\": {\"title\": \"Study Type\", \"description\": \"The different study types from a single publication\"}, \"Country\": {\"title\": \"Country\", \"description\": \"Country where the study was conducted\"}, \"Site\": {\"title\": \"Site\", \"description\": \"Specific geographic information (such as district name) where the study was conducted and where the mosquitoes was collected. If mosquitoes were collected from a lab, enter 'Lab facility' here.\"}}}\n", - "Data:\n", - "{\"S01\":{\"Study_type\":\"Hut trial\",\"Country\":\"Benin\",\"Site\":\"Cove\"}}\n", - "\n", - "###ITNCondition###\n", - "Schema:\n", - "{\"title\": \"ITNCondition\", \"description\": \"The paper contains a collection of nets including untreated nets, no nets, and different brands of treated nets, which is used to compare effectiveness in malaria prevention and control.\", \"type\": \"object\", \"properties\": {\"reference\": {\"title\": \"Reference\", \"description\": \"Unique identifier where other tables can reference entries with the key `itncondition_ref`\\nSpecifications:\\nstr_startswith: \\\"N\\\"\"}, \"Net_type\": {\"title\": \"Net Type\", \"description\": \"Name of net brand or type\"}, \"Insecticide\": {\"title\": \"Insecticide\", \"description\": \"Enter the active ingredient insecticide or insecticides combination (in order of concentration, delimited by comma) used in the net type here.\"}, \"Synergist\": {\"title\": \"Synergist\", \"description\": \"Enter the synergist or synergists combination (delimited by comma).\"}, \"Net_washed\": {\"title\": \"Net Washed\", \"description\": \"Numerical count of number of net washes - 0 if none and NA if not reported.\"}, \"pHI_category\": {\"title\": \"Phi Category\", \"description\": \"Classification of the nets holed surface area, as one of \\\"Good\\\", \\\"Damaged\\\", \\\"Torn\\\", \\\"Serviceable\\\", or \\\"All\\\", as proposed by WHO\"}}}\n", - "Data:\n", - "{\"N01\":{\"Net_type\":\"PermaNet 3.0\",\"Insecticide\":\"deltamethrin\",\"Synergist\":\"PBO\",\"Net_washed\":20.0,\"pHI_category\":\"All\"},\"N02\":{\"Net_type\":\"Olyset Plus\",\"Insecticide\":\"permethrin\",\"Synergist\":\"PBO\",\"Net_washed\":20.0,\"pHI_category\":\"All\"},\"N03\":{\"Net_type\":\"Olyset Net\",\"Insecticide\":\"permethrin\",\"Synergist\":null,\"Net_washed\":20.0,\"pHI_category\":\"All\"}}\n", - "\n", - "\n", - "Answer: \n", - "**************************************************\n", - "** Response: **\n", - "assistant: None\n", - "**************************************************\n", - "\n", - "\n" - ] - } - ], - "source": [ - "for ref, paper in tqdm(papers.loc[references].iterrows(), total=len(references)):\n", - " if ref in pred_extractions and pred_extractions[ref]: continue\n", - " \n", - " indexes[paper.name] = load_index(\n", - " paper, llm_model=llm_model, \n", - " embed_model=embed_model, \n", - " weaviate_client=weaviate_client,\n", - " index_name='LlamaIndexDocumentSections',\n", - " )\n", - "\n", - " ### comment out langfuse code \n", - " # global_handler.set_trace_params(\n", - " # name=f\"extract-{ref}\",\n", - " # session_id=ref,\n", - " # user_id='jonnytr',\n", - " # tags=['itn-recalibration', ref, 'complete-extraction']\n", - " # )\n", - "\n", - " pred_extractions[ref], responses[ref] = extract_paper(\n", - " paper, schema_structure=ss,\n", - " index=indexes[paper.name], \n", - " llm_models=[llm_model, 'gpt-4-turbo'], embed_model=embed_model, \n", - " verbose=2,\n", - " )" - ] - }, - { - "cell_type": "markdown", - "id": "38e7de0c-a1d9-460c-a649-6e3da0a7780b", - "metadata": {}, - "source": [ - "### View extraction results" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "44975cd7-5132-4624-8d22-82de44851fb7", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
accrombessi2023efficacymieguim2021insightsgebremariam2021evaluationgichuki2021bioefficacysyme2021whichzahouli2023smalldiouf2022evaluationibrahim2020exploringkibondo2022influencemeiwald2022associationmenze2022experimentalsyme2022pyrethroidtoe2018doyewhalaw2022experimentalngufor2022comparative
ITNCondition(3, 3)(9, 5)(4, 7)(2, 11)(1, 4)(6, 3)(5, 5)(5, 5)(3, 4)(3, 3)(3, 6)(3, 6)(6, 6)(2, 5)(3, 5)
Observation(3, 7)(1, 7)(1, 7)(1, 6)(1, 7)(1, 7)(2, 6)(1, 3)(1, 5)(1, 7)(2, 9)(1, 7)(2, 7)(1, 3)(1, 3)
ClinicalOutcome(3, 12)(1, 3)(1, 3)(2, 7)(1, 3)(1, 1)(1, 7)NaN(4, 4)NaN(3, 3)(3, 3)(2, 1)(2, 3)(2, 3)
EntomologicalOutcome(1, 6)(9, 6)(2, 6)(1, 9)(1, 3)(6, 8)(1, 1)(1, 7)(4, 7)(3, 5)(1, 7)(3, 9)(1, 2)(2, 8)(1, 10)
\n", - "
" - ], - "text/plain": [ - " accrombessi2023efficacy mieguim2021insights \\\n", - "ITNCondition (3, 3) (9, 5) \n", - "Observation (3, 7) (1, 7) \n", - "ClinicalOutcome (3, 12) (1, 3) \n", - "EntomologicalOutcome (1, 6) (9, 6) \n", - "\n", - " gebremariam2021evaluation gichuki2021bioefficacy \\\n", - "ITNCondition (4, 7) (2, 11) \n", - "Observation (1, 7) (1, 6) \n", - "ClinicalOutcome (1, 3) (2, 7) \n", - "EntomologicalOutcome (2, 6) (1, 9) \n", - "\n", - " syme2021which zahouli2023small diouf2022evaluation \\\n", - "ITNCondition (1, 4) (6, 3) (5, 5) \n", - "Observation (1, 7) (1, 7) (2, 6) \n", - "ClinicalOutcome (1, 3) (1, 1) (1, 7) \n", - "EntomologicalOutcome (1, 3) (6, 8) (1, 1) \n", - "\n", - " ibrahim2020exploring kibondo2022influence \\\n", - "ITNCondition (5, 5) (3, 4) \n", - "Observation (1, 3) (1, 5) \n", - "ClinicalOutcome NaN (4, 4) \n", - "EntomologicalOutcome (1, 7) (4, 7) \n", - "\n", - " meiwald2022association menze2022experimental \\\n", - "ITNCondition (3, 3) (3, 6) \n", - "Observation (1, 7) (2, 9) \n", - "ClinicalOutcome NaN (3, 3) \n", - "EntomologicalOutcome (3, 5) (1, 7) \n", - "\n", - " syme2022pyrethroid toe2018do yewhalaw2022experimental \\\n", - "ITNCondition (3, 6) (6, 6) (2, 5) \n", - "Observation (1, 7) (2, 7) (1, 3) \n", - "ClinicalOutcome (3, 3) (2, 1) (2, 3) \n", - "EntomologicalOutcome (3, 9) (1, 2) (2, 8) \n", - "\n", - " ngufor2022comparative \n", - "ITNCondition (3, 5) \n", - "Observation (1, 3) \n", - "ClinicalOutcome (2, 3) \n", - "EntomologicalOutcome (1, 10) " - ] - }, - "execution_count": 22, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "pd.DataFrame({ref: {k: v.dropna(axis=1, how='all').shape \\\n", - " for k,v in ext.items() if v.size} \\\n", - " for ref, ext in pred_extractions.items()})" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "42d68ac2-0b76-4e4f-9b17-068fe62dc7c1", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
accrombessi2023efficacymieguim2021insightsgebremariam2021evaluationgichuki2021bioefficacysyme2021whichzahouli2023smalldiouf2022evaluationibrahim2020exploringkibondo2022influencemeiwald2022associationmenze2022experimentalsyme2022pyrethroidtoe2018doyewhalaw2022experimentalngufor2022comparative
ITNCondition(3, 3)(9, 5)(4, 7)(2, 11)(1, 4)(6, 3)(5, 5)(5, 5)(3, 4)(3, 3)(3, 6)(3, 6)(6, 6)(2, 5)(3, 5)
Observation(3, 7)(1, 7)(1, 7)(1, 6)(1, 7)(1, 7)(2, 6)(1, 3)(1, 5)(1, 7)(2, 9)(1, 7)(2, 7)(1, 3)(1, 3)
ClinicalOutcome(3, 12)(1, 3)(1, 3)(2, 7)(1, 3)(1, 1)(1, 7)NaN(4, 4)NaN(3, 3)(3, 3)(2, 1)(2, 3)(2, 3)
EntomologicalOutcome(1, 6)(9, 6)(2, 6)(1, 9)(1, 3)(6, 8)(1, 1)(1, 7)(4, 7)(3, 5)(1, 7)(3, 9)(1, 2)(2, 8)(1, 10)
\n", - "
" - ], - "text/plain": [ - " accrombessi2023efficacy mieguim2021insights \\\n", - "ITNCondition (3, 3) (9, 5) \n", - "Observation (3, 7) (1, 7) \n", - "ClinicalOutcome (3, 12) (1, 3) \n", - "EntomologicalOutcome (1, 6) (9, 6) \n", - "\n", - " gebremariam2021evaluation gichuki2021bioefficacy \\\n", - "ITNCondition (4, 7) (2, 11) \n", - "Observation (1, 7) (1, 6) \n", - "ClinicalOutcome (1, 3) (2, 7) \n", - "EntomologicalOutcome (2, 6) (1, 9) \n", - "\n", - " syme2021which zahouli2023small diouf2022evaluation \\\n", - "ITNCondition (1, 4) (6, 3) (5, 5) \n", - "Observation (1, 7) (1, 7) (2, 6) \n", - "ClinicalOutcome (1, 3) (1, 1) (1, 7) \n", - "EntomologicalOutcome (1, 3) (6, 8) (1, 1) \n", - "\n", - " ibrahim2020exploring kibondo2022influence \\\n", - "ITNCondition (5, 5) (3, 4) \n", - "Observation (1, 3) (1, 5) \n", - "ClinicalOutcome NaN (4, 4) \n", - "EntomologicalOutcome (1, 7) (4, 7) \n", - "\n", - " meiwald2022association menze2022experimental \\\n", - "ITNCondition (3, 3) (3, 6) \n", - "Observation (1, 7) (2, 9) \n", - "ClinicalOutcome NaN (3, 3) \n", - "EntomologicalOutcome (3, 5) (1, 7) \n", - "\n", - " syme2022pyrethroid toe2018do yewhalaw2022experimental \\\n", - "ITNCondition (3, 6) (6, 6) (2, 5) \n", - "Observation (1, 7) (2, 7) (1, 3) \n", - "ClinicalOutcome (3, 3) (2, 1) (2, 3) \n", - "EntomologicalOutcome (3, 9) (1, 2) (2, 8) \n", - "\n", - " ngufor2022comparative \n", - "ITNCondition (3, 5) \n", - "Observation (1, 3) \n", - "ClinicalOutcome (2, 3) \n", - "EntomologicalOutcome (1, 10) " - ] - }, - "execution_count": 23, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "pd.DataFrame({ref: {k: v.dropna(axis=1, how='all').shape \\\n", - " for k,v in ext.items() if v.size} \\\n", - " for ref, ext in pred_extractions.items()})" - ] - }, - { - "cell_type": "markdown", - "id": "c7c36b44-4dd9-4e9e-b38c-1ceb2f37cd61", - "metadata": { - "jp-MarkdownHeadingCollapsed": true - }, - "source": [ - "# Evaluations" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "f29f23f7-13d1-4f94-a2f0-edd00c099b7a", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[UserModel(id=UUID('6d8ee721-49b7-4d1f-bf4c-d6b0eb187c62'), first_name='Jonny', last_name='Tran', full_name='Jonny Tran', username='jonnytr', role=, workspaces=['jonnytr', 'itn-recalibration', 'gold-standard', 'test-extraction', 'preprocessing'], api_key='a14427ea-9197-11ec-b909-0242ac120002', inserted_at=datetime.datetime(2024, 1, 11, 1, 48, 44, 477722), updated_at=datetime.datetime(2024, 3, 22, 6, 56, 39, 809768)),\n", - " UserModel(id=UUID('e96c9d89-36f4-4240-a592-9734087371d3'), first_name='Amelia', last_name='Bertozzi-Villa', full_name='Amelia Bertozzi-Villa', username='ameliabv', role=, workspaces=['ameliabv', 'itn-recalibration', 'gold-standard', 'test-extraction', 'preprocessing'], api_key='9df5c40e-b5ce-4d19-ac07-50381a5c79aa', inserted_at=datetime.datetime(2024, 1, 11, 1, 48, 44, 549157), updated_at=datetime.datetime(2024, 3, 22, 6, 56, 39, 815293)),\n", - " UserModel(id=UUID('91b12ed4-2aff-46d6-9eb3-c15d44e00e2a'), first_name='Kate', last_name='Battle', full_name='Kate Battle', username='kateb', role=, workspaces=['kateb', 'itn-recalibration', 'gold-standard', 'test-extraction', 'preprocessing'], api_key='27fc2244-e9a0-4e24-adb2-6c85b25b05c2', inserted_at=datetime.datetime(2024, 1, 11, 1, 48, 44, 553978), updated_at=datetime.datetime(2024, 3, 22, 6, 56, 39, 820769))]" - ] - }, - "execution_count": 11, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "users = ex.Workspace.from_name('itn-recalibration').users\n", - "username_to_user = {u.username: u for u in users}\n", - "users" - ] - }, - { - "cell_type": "markdown", - "id": "2b7c2daa-a13a-40f8-99d1-c7555c7e1ea2", - "metadata": {}, - "source": [ - "### LLM v.s. Gold-standard" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "609d3528-89a9-4e97-96bb-cb8e9b39187b", - "metadata": { - "editable": true, - "scrolled": true, - "slideshow": { - "slide_type": "" - }, - "tags": [] - }, - "outputs": [ - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "c4e2940893be4da38738edd2833e1235", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "0it [00:00, ?it/s]" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "true_extractions = {}\n", - "for ref, paper in tqdm(papers.loc[references].iterrows()):\n", - " true_extractions[paper.name] = get_paper_extractions(\n", - " paper, extraction_dataset, field='extraction', answer='extraction-correction', schemas=ss, users=username_to_user['jonnytr'])" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "ee696003-5b24-4a0b-9d75-3e861bdde993", - "metadata": { - "editable": true, - "scrolled": true, - "slideshow": { - "slide_type": "" - }, - "tags": [] - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:67: FutureWarning: Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - " return true_df, pred_df\n" - ] - }, - { - "data": { - "text/html": [ - "
[05/20/24 14:31:26] WARNING  WARNING:extralit.metrics.utils:                                            utils.py:97\n",
-                            "                             Column Net_age has different dtypes: float64 and object                               \n",
-                            "
\n" - ], - "text/plain": [ - "\u001b[2;36m[05/20/24 14:31:26]\u001b[0m\u001b[2;36m \u001b[0m\u001b[31mWARNING \u001b[0m WARNING:extralit.metrics.utils: \u001b]8;id=313994;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py\u001b\\\u001b[2mutils.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=281588;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py#97\u001b\\\u001b[2m97\u001b[0m\u001b]8;;\u001b\\\n", - "\u001b[2;36m \u001b[0m Column Net_age has different dtypes: float64 and object \u001b[2m \u001b[0m\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
                    WARNING  WARNING:extralit.metrics.utils:                                            utils.py:97\n",
-                            "                             Column Net_age has different dtypes: float64 and object                               \n",
-                            "
\n" - ], - "text/plain": [ - "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[31mWARNING \u001b[0m WARNING:extralit.metrics.utils: \u001b]8;id=556840;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py\u001b\\\u001b[2mutils.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=355166;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py#97\u001b\\\u001b[2m97\u001b[0m\u001b]8;;\u001b\\\n", - "\u001b[2;36m \u001b[0m Column Net_age has different dtypes: float64 and object \u001b[2m \u001b[0m\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
                    WARNING  WARNING:extralit.metrics.utils:                                            utils.py:97\n",
-                            "                             Column Net_age has different dtypes: float64 and object                               \n",
-                            "
\n" - ], - "text/plain": [ - "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[31mWARNING \u001b[0m WARNING:extralit.metrics.utils: \u001b]8;id=959376;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py\u001b\\\u001b[2mutils.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=421327;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py#97\u001b\\\u001b[2m97\u001b[0m\u001b]8;;\u001b\\\n", - "\u001b[2;36m \u001b[0m Column Net_age has different dtypes: float64 and object \u001b[2m \u001b[0m\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:67: FutureWarning: Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - " return true_df, pred_df\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:67: FutureWarning: Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - " return true_df, pred_df\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:67: FutureWarning: Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - " return true_df, pred_df\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:67: FutureWarning: Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - " return true_df, pred_df\n" - ] - }, - { - "data": { - "text/html": [ - "
[05/20/24 14:31:27] WARNING  WARNING:extralit.metrics.utils:                                            utils.py:97\n",
-                            "                             Column Start_month has different dtypes: int64 and float64                            \n",
-                            "
\n" - ], - "text/plain": [ - "\u001b[2;36m[05/20/24 14:31:27]\u001b[0m\u001b[2;36m \u001b[0m\u001b[31mWARNING \u001b[0m WARNING:extralit.metrics.utils: \u001b]8;id=128814;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py\u001b\\\u001b[2mutils.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=918999;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py#97\u001b\\\u001b[2m97\u001b[0m\u001b]8;;\u001b\\\n", - "\u001b[2;36m \u001b[0m Column Start_month has different dtypes: int64 and float64 \u001b[2m \u001b[0m\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
                    WARNING  WARNING:extralit.metrics.utils:                                            utils.py:97\n",
-                            "                             Column End_month has different dtypes: int64 and float64                              \n",
-                            "
\n" - ], - "text/plain": [ - "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[31mWARNING \u001b[0m WARNING:extralit.metrics.utils: \u001b]8;id=168465;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py\u001b\\\u001b[2mutils.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=668759;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py#97\u001b\\\u001b[2m97\u001b[0m\u001b]8;;\u001b\\\n", - "\u001b[2;36m \u001b[0m Column End_month has different dtypes: int64 and float64 \u001b[2m \u001b[0m\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
                    WARNING  WARNING:extralit.metrics.utils:                                            utils.py:97\n",
-                            "                             Column End_year has different dtypes: int64 and float64                               \n",
-                            "
\n" - ], - "text/plain": [ - "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[31mWARNING \u001b[0m WARNING:extralit.metrics.utils: \u001b]8;id=249416;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py\u001b\\\u001b[2mutils.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=613773;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py#97\u001b\\\u001b[2m97\u001b[0m\u001b]8;;\u001b\\\n", - "\u001b[2;36m \u001b[0m Column End_year has different dtypes: int64 and float64 \u001b[2m \u001b[0m\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
                    WARNING  WARNING:extralit.metrics.utils:                                            utils.py:97\n",
-                            "                             Column Start_month has different dtypes: int64 and float64                            \n",
-                            "
\n" - ], - "text/plain": [ - "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[31mWARNING \u001b[0m WARNING:extralit.metrics.utils: \u001b]8;id=361072;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py\u001b\\\u001b[2mutils.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=177476;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py#97\u001b\\\u001b[2m97\u001b[0m\u001b]8;;\u001b\\\n", - "\u001b[2;36m \u001b[0m Column Start_month has different dtypes: int64 and float64 \u001b[2m \u001b[0m\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
                    WARNING  WARNING:extralit.metrics.utils:                                            utils.py:97\n",
-                            "                             Column End_month has different dtypes: int64 and float64                              \n",
-                            "
\n" - ], - "text/plain": [ - "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[31mWARNING \u001b[0m WARNING:extralit.metrics.utils: \u001b]8;id=542229;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py\u001b\\\u001b[2mutils.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=491101;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py#97\u001b\\\u001b[2m97\u001b[0m\u001b]8;;\u001b\\\n", - "\u001b[2;36m \u001b[0m Column End_month has different dtypes: int64 and float64 \u001b[2m \u001b[0m\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
                    WARNING  WARNING:extralit.metrics.utils:                                            utils.py:97\n",
-                            "                             Column End_year has different dtypes: int64 and float64                               \n",
-                            "
\n" - ], - "text/plain": [ - "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[31mWARNING \u001b[0m WARNING:extralit.metrics.utils: \u001b]8;id=349467;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py\u001b\\\u001b[2mutils.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=494108;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py#97\u001b\\\u001b[2m97\u001b[0m\u001b]8;;\u001b\\\n", - "\u001b[2;36m \u001b[0m Column End_year has different dtypes: int64 and float64 \u001b[2m \u001b[0m\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:67: FutureWarning: Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - " return true_df, pred_df\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:67: FutureWarning: Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - " return true_df, pred_df\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:67: FutureWarning: Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - " return true_df, pred_df\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:67: FutureWarning: Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - " return true_df, pred_df\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:67: FutureWarning: Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - " return true_df, pred_df\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:67: FutureWarning: Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - " return true_df, pred_df\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:67: FutureWarning: Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - " return true_df, pred_df\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:67: FutureWarning: Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - " return true_df, pred_df\n" - ] - }, - { - "data": { - "text/html": [ - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
  grits
  con
  f1precisionrecall
ReferenceSchema   
padonou2012decreasedObservation0.7563030.6923080.833333
ITNCondition0.0833800.0469010.375210
EntomologicalOutcome0.3960720.4356790.363066
ClinicalOutcome0.0000000.0000001.000000
randriamaherijaona2015doObservation0.6422100.7224870.577989
ITNCondition0.5882050.7107480.501704
EntomologicalOutcome0.0718350.5706870.038330
ClinicalOutcome0.0000000.0000001.000000
quinones1998permethrinObservation0.5777780.8666670.433333
ITNCondition0.2285710.8000000.133333
EntomologicalOutcome0.3775210.5770680.280519
ClinicalOutcome0.0000000.0000001.000000
kilian2008longObservation0.6666671.0000000.500000
ITNCondition0.0931280.3362960.054048
EntomologicalOutcome0.2223990.5559970.138999
ClinicalOutcome0.0000000.0000001.000000
mosqueira2015pilotObservation0.5900000.9833330.421429
ITNCondition0.2705420.9468950.157816
EntomologicalOutcome0.2080570.3849050.142557
ClinicalOutcome0.0000000.0000001.000000
azizi2022implementingObservation0.4434520.5068030.394180
ITNCondition0.3407080.9274830.208684
EntomologicalOutcome0.0487240.4872410.025644
ClinicalOutcome0.0000000.0000001.000000
magesa1991trialObservation0.1173960.7865530.063432
ITNCondition0.4723080.5313470.425077
EntomologicalOutcome0.0476900.7153530.024667
ClinicalOutcome0.0000000.0000001.000000
clegban2021evaluationObservation0.7272731.0000000.571429
ITNCondition0.3407930.5963870.238555
EntomologicalOutcome0.3076670.7178910.195788
ClinicalOutcome0.0000000.0000001.000000
robert1991influenceObservation0.2395830.9583330.136905
ITNCondition0.4696550.4109480.547930
EntomologicalOutcome0.4034570.4827070.346559
ClinicalOutcome0.0000000.0000001.000000
pwalia2019highObservation0.4375000.3500000.583333
ITNCondition0.3250860.4876290.243815
EntomologicalOutcome0.2414660.3974120.173416
ClinicalOutcome1.0000001.0000001.000000
mnzava2001malariaObservation0.5411710.9470490.378819
ITNCondition0.1586010.1744610.145384
EntomologicalOutcome0.1724440.4526670.106510
ClinicalOutcome1.0000001.0000001.000000
kitau2012speciesObservation0.7500001.0000000.600000
ITNCondition0.8234270.8822430.771963
EntomologicalOutcome0.1542160.5367900.090042
ClinicalOutcome0.0000000.0000001.000000
apetogbo2022insecticideObservation0.0000000.0000001.000000
ITNCondition0.0000000.0000001.000000
EntomologicalOutcome0.0000000.0000001.000000
ClinicalOutcome0.0000000.0000001.000000
hougard2003efficacyObservation0.8571431.0000000.750000
ITNCondition0.1903580.6662550.111042
EntomologicalOutcome0.0886650.3546590.050666
ClinicalOutcome0.0000000.0000001.000000
ketoh2018efficacyObservation0.6296300.9444440.472222
ITNCondition0.6561520.9607940.498189
EntomologicalOutcome0.0923870.4586360.051367
ClinicalOutcome0.0000000.0000001.000000
kilian2011evidenceObservation0.7000000.8750000.583333
ITNCondition0.2159400.5614450.133677
EntomologicalOutcome0.8355580.8355580.835558
ClinicalOutcome0.1356560.0968970.226093
menze2020experimentalObservation0.5986390.6984130.523810
ITNCondition0.6108600.8144800.488688
EntomologicalOutcome0.0987660.3891850.056560
ClinicalOutcome0.0000000.0000001.000000
kawada2014smallObservation0.8000001.0000000.666667
ITNCondition0.5985160.6733300.538664
EntomologicalOutcome0.5439920.7797220.417708
ClinicalOutcome0.0000000.0000001.000000
mbogo1996impactObservation0.7142861.0000000.555556
ITNCondition0.4845510.6460670.387640
EntomologicalOutcome0.3219950.5903240.221372
ClinicalOutcome0.0000000.0000001.000000
darriet2005pyrethoidObservation1.0000001.0000001.000000
ITNCondition0.3544950.2481460.620366
EntomologicalOutcome0.5127550.5554850.476130
ClinicalOutcome0.0000000.0000001.000000
bamou2021increasedObservation0.8000001.0000000.666667
ITNCondition0.7681370.9601720.640114
EntomologicalOutcome0.2247330.2857320.185197
ClinicalOutcome0.0000000.0000001.000000
pennetier2013efficacyObservation0.8571430.9285710.795918
ITNCondition0.1977990.7582300.113734
EntomologicalOutcome0.0636790.6540740.033469
ClinicalOutcome0.0000000.0000001.000000
darriet2002experimentalObservation0.7407410.6666670.833333
ITNCondition0.6336790.7920980.528066
EntomologicalOutcome0.6139920.7674900.511660
ClinicalOutcome0.0000000.0000001.000000
kawada2014preventiveObservation0.4729730.3500000.729167
ITNCondition0.5000000.9166670.343750
EntomologicalOutcome0.7272731.0000000.571429
ClinicalOutcome0.0000000.0000001.000000
\n" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 83, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "llm_metrics = grits_from_batch(true_extractions, pred_extractions, exclude_columns=['Site'])\n", - "llm_metrics.style.background_gradient(axis=1, vmin=0, vmax=1, cmap='RdYlGn')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "a60800ce-9a96-4508-ad8f-349c241540e6", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
 grits
 con
 f1precisionrecall
Schema   
Easy50.1%71.1%48.5%
Hard28.2%54.1%26.4%
\n" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 84, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "df = llm_metrics.query(\"Schema != 'ClinicalOutcome'\").groupby('Schema').mean()\n", - "df.groupby({'Observation': 'Easy', 'ITNCondition': 'Easy', 'EntomologicalOutcome': 'Hard', 'ClinicalOutcome': 'Hard'})\\\n", - " .mean(0).map(lambda n: '{:.1%}'.format(n)).style.background_gradient(axis=1, vmin=0, vmax=1, cmap='RdYlGn')" - ] - }, - { - "cell_type": "markdown", - "id": "71dfe132-d82e-46f6-b4b7-bdeb3e1bd23e", - "metadata": {}, - "source": [ - "## Precision of partial extractions" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "5e07edc2-586c-448d-bc31-c21f61edec67", - "metadata": { - "editable": true, - "scrolled": true, - "slideshow": { - "slide_type": "" - }, - "tags": [] - }, - "outputs": [ - { - "data": { - "text/plain": [ - "(3, 3)" - ] - }, - "execution_count": 27, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "### comment out langfuse code \n", - "# true_tables = defaultdict(list)\n", - "# pred_tables = defaultdict(list)\n", - "# latencies = defaultdict(list)\n", - "# pred_sizes = defaultdict(list)\n", - "# costs = defaultdict(list)\n", - "# \n", - "# traces_iter = get_langfuse_traces(global_handler.langfuse, references=references, user_id='jonnytr', \n", - "# input_match='Please complete the following')\n", - "# for trace in traces_iter:\n", - "# reference = list(trace.metadata.get('metadata', {}).values())[0]['reference']\n", - "# schema = next((schema for schema in ss.schemas \\\n", - "# if set(schema.columns).intersection(trace.output['items'][0].keys()).difference({'observation_ref', 'reference', 'itncondition_ref'})), None)\n", - "# if not schema:\n", - "# continue\n", - "# \n", - "# pred_df = json_to_df(trace.output['items'], schema=schema).reset_index()\n", - "# \n", - "# pred_tables[schema.name].append(pred_df)\n", - "# true_tables[schema.name].append(true_extractions[reference][schema])\n", - "# latencies[schema.name].append((trace.end_time - trace.start_time).total_seconds())\n", - "# pred_sizes[schema.name].append(pred_df.size)\n", - "# costs[schema.name].append(trace.calculated_total_cost)\n", - "# \n", - "# pred_sizes = pd.concat([pd.Series(values, name=schema) for schema, values in pred_sizes.items()], axis=1).stack()\n", - "# pred_sizes.index.names = ['index', 'Schema']\n", - "# pred_sizes.name = 'N values'\n", - "# pred_sizes.index = pred_sizes.index.swaplevel()\n", - "# \n", - "# latencies = pd.concat([pd.Series(values, name=schema) for schema, values in latencies.items()], axis=1).stack()\n", - "# latencies.index.names = ['index', 'Schema']\n", - "# latencies.name = 'latencies'\n", - "# latencies.index = latencies.index.swaplevel()\n", - "# \n", - "# costs = pd.concat([pd.Series(values, name=schema) for schema, values in costs.items()], axis=1).stack()\n", - "# costs.index.names = ['index', 'Schema']\n", - "# costs.name = 'costs'\n", - "# costs.index = costs.index.swaplevel()\n", - "# \n", - "# len(pred_tables), len(true_tables)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "f9f4c823-a3bc-4684-b4f8-d61902b3dfb6", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n" - ] - }, - { - "data": { - "text/html": [ - "
[06/13/24 00:51:34] WARNING  WARNING:extralit.metrics.utils:                                            utils.py:99\n",
-                            "                             Column Mortality_rate has different dtypes: float64 and object                        \n",
-                            "
\n" - ], - "text/plain": [ - "\u001b[2;36m[06/13/24 00:51:34]\u001b[0m\u001b[2;36m \u001b[0m\u001b[31mWARNING \u001b[0m WARNING:extralit.metrics.utils: \u001b]8;id=440171;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py\u001b\\\u001b[2mutils.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=944946;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py#99\u001b\\\u001b[2m99\u001b[0m\u001b]8;;\u001b\\\n", - "\u001b[2;36m \u001b[0m Column Mortality_rate has different dtypes: float64 and object \u001b[2m \u001b[0m\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
                    WARNING  WARNING:extralit.metrics.utils:                                            utils.py:99\n",
-                            "                             Column Mortality_rate has different dtypes: float64 and object                        \n",
-                            "
\n" - ], - "text/plain": [ - "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[31mWARNING \u001b[0m WARNING:extralit.metrics.utils: \u001b]8;id=5376;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py\u001b\\\u001b[2mutils.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=224478;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py#99\u001b\\\u001b[2m99\u001b[0m\u001b]8;;\u001b\\\n", - "\u001b[2;36m \u001b[0m Column Mortality_rate has different dtypes: float64 and object \u001b[2m \u001b[0m\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n", - "/Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py:43: FutureWarning:\n", - "\n", - "Downcasting object dtype arrays on .fillna, .ffill, .bfill is deprecated and will change in a future version. Call result.infer_objects(copy=False) instead. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`\n", - "\n" - ] - }, - { - "data": { - "text/html": [ - "
[06/13/24 00:51:38] WARNING  WARNING:extralit.metrics.utils:                                            utils.py:99\n",
-                            "                             Column Net_holed has different dtypes: float64 and object                             \n",
-                            "
\n" - ], - "text/plain": [ - "\u001b[2;36m[06/13/24 00:51:38]\u001b[0m\u001b[2;36m \u001b[0m\u001b[31mWARNING \u001b[0m WARNING:extralit.metrics.utils: \u001b]8;id=807084;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py\u001b\\\u001b[2mutils.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=132183;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py#99\u001b\\\u001b[2m99\u001b[0m\u001b]8;;\u001b\\\n", - "\u001b[2;36m \u001b[0m Column Net_holed has different dtypes: float64 and object \u001b[2m \u001b[0m\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
                    WARNING  WARNING:extralit.metrics.utils:                                            utils.py:99\n",
-                            "                             Column Net_holed has different dtypes: float64 and object                             \n",
-                            "
\n" - ], - "text/plain": [ - "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[31mWARNING \u001b[0m WARNING:extralit.metrics.utils: \u001b]8;id=853636;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py\u001b\\\u001b[2mutils.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=282247;file:///Users/jonnytr/Projects/extralit/src/extralit/metrics/utils.py#99\u001b\\\u001b[2m99\u001b[0m\u001b]8;;\u001b\\\n", - "\u001b[2;36m \u001b[0m Column Net_holed has different dtypes: float64 and object \u001b[2m \u001b[0m\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/var/folders/yg/6jm_z4c91d30k5l7hm3s7h580000gp/T/ipykernel_49560/670417324.py:8: PerformanceWarning:\n", - "\n", - "indexing past lexsort depth may impact performance.\n", - "\n" - ] - }, - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
SchemaN valueslatenciesf1precisionrecallSchema (counts)
index
0EntomologicalOutcome18.03.4450.6000000.4285711.000000EntomologicalOutcome (n=212)
1EntomologicalOutcome18.03.6510.6000000.4285711.000000EntomologicalOutcome (n=212)
2EntomologicalOutcome36.05.2311.0000001.0000001.000000EntomologicalOutcome (n=212)
3EntomologicalOutcome36.05.4891.0000001.0000001.000000EntomologicalOutcome (n=212)
4EntomologicalOutcome72.08.4770.6341461.0000000.464286EntomologicalOutcome (n=212)
........................
21Observation6.00.9220.7333330.8555560.641667Observation (n=26)
22Observation4.00.5820.6095240.7111110.533333Observation (n=26)
23Observation4.01.0040.6095240.7111110.533333Observation (n=26)
24Observation4.00.5870.6122450.7142860.535714Observation (n=26)
25Observation4.00.7340.6122450.7142860.535714Observation (n=26)
\n", - "

282 rows × 7 columns

\n", - "
" - ], - "text/plain": [ - " Schema N values latencies f1 precision \\\n", - "index \n", - "0 EntomologicalOutcome 18.0 3.445 0.600000 0.428571 \n", - "1 EntomologicalOutcome 18.0 3.651 0.600000 0.428571 \n", - "2 EntomologicalOutcome 36.0 5.231 1.000000 1.000000 \n", - "3 EntomologicalOutcome 36.0 5.489 1.000000 1.000000 \n", - "4 EntomologicalOutcome 72.0 8.477 0.634146 1.000000 \n", - "... ... ... ... ... ... \n", - "21 Observation 6.0 0.922 0.733333 0.855556 \n", - "22 Observation 4.0 0.582 0.609524 0.711111 \n", - "23 Observation 4.0 1.004 0.609524 0.711111 \n", - "24 Observation 4.0 0.587 0.612245 0.714286 \n", - "25 Observation 4.0 0.734 0.612245 0.714286 \n", - "\n", - " recall Schema (counts) \n", - "index \n", - "0 1.000000 EntomologicalOutcome (n=212) \n", - "1 1.000000 EntomologicalOutcome (n=212) \n", - "2 1.000000 EntomologicalOutcome (n=212) \n", - "3 1.000000 EntomologicalOutcome (n=212) \n", - "4 0.464286 EntomologicalOutcome (n=212) \n", - "... ... ... \n", - "21 0.641667 Observation (n=26) \n", - "22 0.533333 Observation (n=26) \n", - "23 0.533333 Observation (n=26) \n", - "24 0.535714 Observation (n=26) \n", - "25 0.535714 Observation (n=26) \n", - "\n", - "[282 rows x 7 columns]" - ] - }, - "execution_count": 28, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "### comment out langfuse code \n", - "# results = grits_from_batch(true_tables, pred_tables, \n", - "# index_columns=['reference', 'observation_ref', 'itncondition_ref'], \n", - "# index_names=['Schema', 'index'])\n", - "# \n", - "# results[pred_sizes.name] = results.index.map(pred_sizes)\n", - "# results[latencies.name] = results.index.map(latencies)\n", - "# \n", - "# results = pd.concat(([results[[pred_sizes.name, latencies.name]].droplevel(level=[1,2], axis=1), results[('grits', 'con')]]), axis=1)\n", - "# results = results.reset_index(level=['Schema'])\n", - "# results['Schema (counts)'] = results['Schema'].map({k:f'{k} (n={v})' for k,v in results.reset_index()['Schema'].value_counts().items()})\n", - "# results" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "264c86fc-a707-4c7e-b529-012ed390d793", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "Schema\n", - "EntomologicalOutcome 0.936392\n", - "ITNCondition 0.761387\n", - "Observation 0.899817\n", - "Name: precision, dtype: float64" - ] - }, - "execution_count": 29, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "### comment out langfuse code \n", - "# results.groupby('Schema')['precision'].mean()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "5bcde074-55c7-4911-984f-87edc8d29d35", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - " \n", - " " - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "alignmentgroup": "True", - "hovertemplate": "Schema (counts)=EntomologicalOutcome (n=212)
Schema=%{x}
precision=%{y}", - "legendgroup": "EntomologicalOutcome (n=212)", - "marker": { - "color": "#636efa" - }, - "name": "EntomologicalOutcome (n=212)", - "notched": false, - "offsetgroup": "EntomologicalOutcome (n=212)", - "orientation": "v", - "showlegend": true, - "type": "box", - "x": [ - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome", - "EntomologicalOutcome" - ], - "x0": " ", - "xaxis": "x", - "y": [ - 0.42857142857142855, - 0.42857142857142855, - 1, - 1, - 1, - 1, - 1, - 1, - 0.9230769230769231, - 0.9230769230769231, - 0.9807692307692307, - 0.9807692307692307, - 1, - 1, - 1, - 1, - 0.8941798941798944, - 0.8941798941798944, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 0.7333333333333333, - 0.7333333333333333, - 1, - 1, - 1, - 1, - 1, - 1, - 0.944927536231884, - 0.944927536231884, - 1, - 1, - 1, - 1, - 0.6049602571341699, - 0.6049602571341699, - 1, - 1, - 0.32919254658385094, - 0.32919254658385094, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 0.9470899470899471, - 0.9470899470899471, - 1, - 1, - 0.95, - 0.95, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 0.875, - 0.875, - 0.9285714285714286, - 0.9285714285714286, - 1, - 1, - 0.9714285714285714, - 0.9714285714285714, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 0.9422222222222223, - 0.9422222222222223, - 0.9333333333333332, - 0.9333333333333332, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 0.9166666666666666, - 0.9166666666666666, - 1, - 1, - 0, - 0, - 1, - 1, - 1, - 1, - 1, - 1, - 0.9423076923076923, - 0.9423076923076923, - 1, - 1, - 1, - 1, - 0.9523809523809524, - 0.9523809523809524, - 1, - 1, - 0.8333333333333333, - 0.8333333333333333, - 0.8181818181818182, - 0.8181818181818182, - 0.9, - 0.9, - 0.6166666666666667, - 0.6166666666666667, - 1, - 1, - 0.85, - 0.85, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 0.9583333333333334, - 0.9583333333333334, - 1, - 1, - 0.9933333333333333, - 0.9933333333333333, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 0.9166666666666666, - 0.9166666666666666, - 0.9583333333333334, - 0.9583333333333334, - 1, - 1, - 1, - 1, - 0.8266666666666667, - 0.8266666666666667, - 0.8666666666666666, - 0.8666666666666666, - 1, - 1, - 1, - 1, - 1, - 1, - 0.91875, - 0.91875, - 0.9821428571428571, - 0.9821428571428571, - 0.9189814814814815, - 0.9189814814814815, - 0.5, - 0.5, - 1, - 1, - 1, - 1, - 0.7626262626262627, - 0.7626262626262627, - 1, - 1, - 0.6432900432900434, - 0.6432900432900434, - 0.7955555555555556, - 0.7955555555555556, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - "y0": " ", - "yaxis": "y" - }, - { - "alignmentgroup": "True", - "hovertemplate": "Schema (counts)=ITNCondition (n=44)
Schema=%{x}
precision=%{y}", - "legendgroup": "ITNCondition (n=44)", - "marker": { - "color": "#EF553B" - }, - "name": "ITNCondition (n=44)", - "notched": false, - "offsetgroup": "ITNCondition (n=44)", - "orientation": "v", - "showlegend": true, - "type": "box", - "x": [ - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition", - "ITNCondition" - ], - "x0": " ", - "xaxis": "x", - "y": [ - 0.8529411764705882, - 0.8529411764705882, - 0.6724137931034483, - 0.6724137931034483, - 1, - 1, - 0.6666666666666666, - 0.6666666666666666, - 1, - 1, - 0.5361853832442067, - 0.5361853832442067, - 1, - 1, - 0.6666666666666666, - 0.6666666666666666, - 1, - 1, - 0.968421052631579, - 0.968421052631579, - 0.95, - 0.95, - 0.6957519746137631, - 0.6957519746137631, - 1, - 1, - 0.31962481962481964, - 0.31962481962481964, - 0.8263157894736842, - 0.8263157894736842, - 0.3346153846153846, - 0.3346153846153846, - 0.5619047619047618, - 0.5619047619047618, - 0.4693877551020407, - 0.4693877551020407, - 0.6158730158730158, - 0.6158730158730158, - 0.6137471655328798, - 0.6137471655328798, - 1, - 1, - 1, - 1 - ], - "y0": " ", - "yaxis": "y" - }, - { - "alignmentgroup": "True", - "hovertemplate": "Schema (counts)=Observation (n=26)
Schema=%{x}
precision=%{y}", - "legendgroup": "Observation (n=26)", - "marker": { - "color": "#00cc96" - }, - "name": "Observation (n=26)", - "notched": false, - "offsetgroup": "Observation (n=26)", - "orientation": "v", - "showlegend": true, - "type": "box", - "x": [ - "Observation", - "Observation", - "Observation", - "Observation", - "Observation", - "Observation", - "Observation", - "Observation", - "Observation", - "Observation", - "Observation", - "Observation", - "Observation", - "Observation", - "Observation", - "Observation", - "Observation", - "Observation", - "Observation", - "Observation", - "Observation", - "Observation", - "Observation", - "Observation", - "Observation", - "Observation" - ], - "x0": " ", - "xaxis": "x", - "y": [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 0.5, - 0.5, - 1, - 1, - 1, - 1, - 0.9166666666666666, - 0.9166666666666666, - 1, - 1, - 0.8555555555555556, - 0.8555555555555556, - 0.7111111111111111, - 0.7111111111111111, - 0.7142857142857143, - 0.7142857142857143 - ], - "y0": " ", - "yaxis": "y" - } - ], - "layout": { - "boxmode": "overlay", - "height": 360, - "legend": { - "title": { - "text": "Schema (counts)" - }, - "tracegroupgap": 0 - }, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - }, - "title": { - "text": "Precision of LLM Partial Extraction Completions" - }, - "width": 700, - "xaxis": { - "anchor": "y", - "autorange": true, - "domain": [ - 0, - 1 - ], - "range": [ - -0.5, - 2.5 - ], - "title": { - "text": "Schemas" - }, - "type": "category" - }, - "yaxis": { - "anchor": "x", - "autorange": true, - "domain": [ - 0, - 1 - ], - "dtick": 0.1, - "range": [ - -0.05555555555555555, - 1.0555555555555556 - ], - "title": { - "text": "precision" - }, - "type": "linear" - } - } - }, - "image/png": "iVBORw0KGgoAAAANSUhEUgAABGYAAAFoCAYAAAAVe/0kAAAAAXNSR0IArs4c6QAAIABJREFUeF7snQV4VEfbhp8kWHD34u4Up6W4U9zdCe5eiru7S/EGd2mx4g7FC5Ti7gQJJPn/d/jOsrvZZDfZ3WQ3+8x1fdfX7J4z8849c047z77iFhAQEAA2EiABEiABEiABEiABEiABEiABEiABEiCBMCfgRmEmzJlzQBIgARIgARIgARIgARIgARIgARIgARJQBCjMcCOQAAmQAAmQAAmQAAmQAAmQAAmQAAmQQDgRoDATTuA5LAmQAAmQAAmQAAmQAAmQAAmQAAmQAAlQmOEeIAESIAESIAESIAESIAESIAESIAESIIFwIkBhJpzAc1gSIAESIAESIAESIAESIAESIAESIAESoDDDPUACJEACJEACJEACJEACJEACJEACJEAC4USAwkw4geewJEACJEACJEACJEACJEACJEACJEACJEBhhnuABEiABEiABEiABEiABEiABEiABEiABMKJAIWZcALPYUmABEiABEiABEiABEiABEiABEiABEiAwgz3AAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmEEwEKM+EEnsOSAAmQAAmQAAmQAAmQAAmQAAmQAAmQAIUZ7gESIAESIAESIAESIAESIAESIAESIAESCCcCFGbCCTyHJQESIAESIAESIAESIAESIAESIAESIAEKM9wDJEACJEACJEACJEACJEACJEACJEACJBBOBCjMhBN4DksCJEACJEACJEACJEACJEACJEACJEACFGa4B0iABEiABEiABEiABEiABEiABEiABEggnAhQmAkn8ByWBEiABEiABEiABEiABEiABEiABEiABCjMcA+QAAmQAAmQAAmQAAmQAAmQAAmQAAmQQDgRoDATTuA5LAmQAAmQAAmQAAmQAAmQAAmQAAmQAAlQmOEeIAESIAESIAESIAESIAESIAESIAESIIFwIkBhJpzAc1gSIAESIAESIAESIAESIAESIAESIAESoDDDPUACJEACJEACJEACJEACJEACJEACJEAC4USAwkw4geewJEACJEACJEACJEACJEACJEACJEACJEBhhnuABEiABEiABEiABEiABEiABEiABEiABMKJAIWZcALPYUmABEiABEiABEiABEiABEiABEiABEiAwgz3AAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmEEwEKM+EEnsOSAAmQAAmQAAmQAAmQAAmQAAmQAAmQAIUZ7gESIAESIAESIAESIAESIAESIAESIAESCCcCFGbCCTyHJQESIAESIAESIAESIAESIAESIAESIAEKM9wDJEACJEACJEACJEACJEACJEACJEACJBBOBCjMhBN4DksCJEACJEACJEACJEACJEACJEACJEACFGa4B0iABEiABEiABEiABEiABEiABEiABEggnAhQmAkn8ByWBEiABEiABEiABEiABEiABEiABEiABCjMcA+QAAmQAAmQAAmQAAmQAAmQAAmQAAmQQDgRoDATTuA5LAmQAAmQAAmQAAmQAAmQAAmQAAmQAAlQmAmnPfD+w0f4+wcgZgxPiy344ueHjx99ESVyJESJEtni+8LrwlPnr+HcpRt45/MBqVIkRs1KP4WXKU4/bkBAAHzef4SHhwc8o0UJ0Xxk3yxdswupUyRF6WLfh+jeiH6xoz1Tss6Pn73E589fkChBXESLGrK1Do/1uv/oGXbtP4FCebMhe+Y0NjMhNO9Imw3OjkiABEiABEiABEiABEggDAm4hDBz8/YDVG02wABr/LixUCBPFjSrWwG5s6UPQ+RfhypVpzseP32JE9vnIEb0aBaNv2X3EfQbNQ9tGlVBtza1LbonvC6as3Qzpi9arxs+ZbJE2LVqvElztPUR4WZ4n5ZBmtxn+Bxs23NM9SP9mWr6a923YwM0rVM+0GVaP/LF33sWwcPDPVhMBSp6QQ6JWovuGQ1ZMqRCg+qlUal0IZsi/n3TXjx88iLQ+t57+BTlG/RGjsxp8fvcwSEa88NHX+Sv0FaJMtOGdwn23jVb92PIhCVBXpMkUTzsXTM5ROMHNacQdWLFxX5+/pgyfy3SpU6GGhWLGfTkKM/U1Rt3MG7mKhw/e8XAvqwZU6NOleKoUraoxe8JK1CF6tajpy6hda/xGNClMRrVLBOiPg6fvIhjpy+jUa0ySJoovsG9oXlHhmhwXkwCJEACJEACJEACJEACDkLAJYSZG7fuo1qLgeowX7xIbshB9Z+bd3Hx2i21DAsn9kHhfNnCdEkGjlmAF6/eYvLQjhb/Kn7szGX85r0L5YrnD3TADFPjzQymCQGpUyZRQkCGtCnw6vU7xI0T0+Sd2vpUr/AjRvZrHWTvPYbMUr/M71gxTnngmGpaX/KdiG8iIkSOHEl36YNHz1C2fi/d3+f3LEQkD49gZ6QJM3Lo/PzFD4+evMBfx86rezq3rAmvplVthr9J51E4c+EfXNpvKI48e/Eag8YtQprvkkIEp5C0kAgz3pv3Yeik35ArW3qkS5Us0DBxYsVAnxCOH9ScQjIHa64V75M8ZVujRNE8mDmqm0FXjvBM6YthlUsXRs6s6fDxky+uXL+j9ru0eeN74YcCOazBYLd7rRFmZv22CTMXb1Bio4iO+i0070i7TZIdkwAJkAAJkAAJkAAJkIAdCbiUMGN88F+5YQ9GTl0WKi8EO65JmHUtYRNubm42H+/WnYeo0rQ/2jethk4ta5jt3x7CjHi1iJfLmAFt8XO5ojobJs31xsJV23V/WyrMRIsaGQc3Ttfdd+HqLdT3Gqr+Pr5tdohC0oIDYg8RIzTCzKj+bVCt/A9m186SC+wxJ0vG1a4JTpgJST+WXBvSZ0oEt+I1u6quZ4zqipJF8xoM8++dhxAPr+5t69hNmAmpzcYcLBFmghojOGHGHG9r7TbXP78nARIgARIgARIgARIggbAi4NLCjPyHfcFK7dUB/tyfC+Hn54fug2fi+5wZUbdqSazf9hcuXP0XsWJGx9BeLdSaSKjM1AVrcfbCdeXxkjdHRrRvVi3QoUnyqsxdtgVHT1/C7XuPId4jPxbMifrVSymX/fGzVkNyM0wZ1km31hLOMG/5Vpy7dB1v331Q9xTNnx0Na351879y/TamLVyPulVLGBzgJPRl8lxvNZbYJCFaEu6k/wv7pWv/YcbiDSosQsbdtOuw6i996uTo6VVPeRJZ0syNde3mXQyZuAR/X76pPJTSpU6uuu3aupYK/zHV7CHMtKhfEZt2HkK8OLGwaclIJUDJmpSs3R1lf8qHf/69p+YfWmFG5tFjyEzs2n8Sy2cMVJ4so6etgKyhMJI9lSldStSuUhx1q5ZC5EhfvXLEEyKoPSa5gzbuPKzu/anwt/X4pVsTJE4QF10GTVdhd5qHzsvXby0a0x7CzJLfd6qwm58K51IhXVqTsKHhk5eqPCm92tfD6o17gpxTgnixg33e5BmRPEUPHj9T+1r2U9ni+dGiXkXIvfrtzv3HkEO+7Lunz1+rXCdlf8qP8iUKYMDo+ZCQGRHr8ufOrG7zjBYVk4Z0CPdnatS0FVix/g+0alAJPdrVNfl8iLAknlrRPaOq78WjSuZ6/tJNiGCYL1dm9GhXB6lSJNHdrz3vtSsXx+37jyAhW7LnZV/18qqL5EkTYcHKrfjjwCn1ThMPqV+7N4WETmlt7MxVKtyyZYOKmLd8C46euqzGk7CqHm3r6DzRghJmXr/1wYxF6xV7eQfK8yChZI1qllXhg2u3HsD8FVshYXoyftzYXz3q6lcrpd5Hpt6R8r14GK3dckB5PGpekF1b1zYI9dJs79iiOmYu3oiDx/9WfVcoWRB9OtRX73StmXvvWvJe5DUkQAIkQAIkQAIkQAIkYA0BlxZmBFyx6p3Voe/cHwvwyfczClVuD8mjIYch+VyahMSIt4QcEpt1Ha0++z5nJsSIHhUHj19Qf0uIhIRKSHv+8g3qtB2sDjUifIjAIklwpb9eXvUgokHjTiNx9uJ1XciK5mUi9xfJnx2xY0ZX90gfmteHqQPQnftPUKv1r+owL0JM7FgxcODoefW3vteDHEy8+k7S7RWZY8zonupQJi248CDtJkvGksNSzyGz1GFLuCX5X96IwT2aqRANU80ewox460SLFgWT563BnLE9UKxQLmgeUmvnD1VhQdYKM3LgF4Fr6bQBSJQgDio26qv2jhxu5eApB1lZh5b1K6Gn19dDt4hDQe2xIvmyqxw60vQPyCIgJEoQL1CeGBEjLBnTHsLMk2evULlJPzU/EaZEoJQmB23J59KwRmkM7NpEeXsENaf4cWMH+7zJs/nx02fkzp4esWPGwKVrt9S+kpCXFbN+0YWgnTx3Fc27jdE9l5Ic+ezFG8q2hRN7Qw7pIkroc5Wk20um9EN4P1OS+0qewQPrpyJh/Dhm3+V/HjyNroO+em6J6CRrq4XVbVg0Qokf0oyfdxEwZE+KQCLPpQgT8s9aribhKvdKH1qr126oLtxTPhPuWvineKHJe0maKYb670AZQwRFbR9oz4MkpJb9oolumljSplFllC9RMNA7UsaSPDy/rdml5vBDwZy4dfuhsknesesWDNclxjZlu3gfyZ7Qz2VlyXvX7KLwAhIgARIgARIgARIgARKwkoBLCzPyS27b3hPUIVgO69qhWZhKotSmtcsrj4+3794jRbKEqNlykDpEbV4yEunTpFDotf+w1z/UDJ6wWP0aLF4ibRv/rK6TCkybdh1Sh0k51BgLM5IoVxLmDuvdErUqf61eJPfIQUwObOLFY+oApB18xw3yguSnkCYeMdVb/KL+ed/aySrMRjuoiVA0vG8rXcLjWUs2YuaSjUo4kANTcM3SseSgJAejji1qoEOzama3qL2EmSa1y6Fo1Y7Kg2jBxN4oV7+XWs8FE3qjdpvBVgkz+sLE4U0zEDVqFNx/+FTl09GaeAxUadJPiQsnd8xRHwe3x+RwGVTYjylxRT6zZMzQCDNiqxx+jZsIbfKsSNOeHxGjNi4eqZ6Fhh2GqwP8sukDdJXDgpqTORYinGVMl1InwMjz0HXQNOw9fBabFo9UrEVAlfxRIjIsntwPBfNmUbbJAVy8zyqVLoy03yUNMsdMeD5TUhEqd+lWypNH2x/BPSwiHFds1EeJtVuXjkba/+UAEiG2Q//JKFYoJ+aM7am60H/eRw9oq6uW1GvYbOzYe1yJMCLcyrtPPAd7DpX8TSexf90UVQ1KmiZuiJjcuFZZ5SEj+75++6HKhp0rx+G75IlNvpfEa2r1pr1qjKrliiqPNVkTee5krTQhKrhQJuN35M3/7qNq84HK5sWT++q8XrTwRP13mGa7eJe1blhFCTYiFlVo2EfZoSX9tuS9a/YFxgtIgARIgARIgARIgARIwEoCLiXMiJdL41pl8PqND67evAupFiNNS6ypHRT1DzgaXy2niIQ4/dK1iQF28aIR75ezu+fD3cNdHbbkV+Jty8cEmVjW+NChHVDaNfkZ7ZtV14W+6A9kfIjUDnYitmz+bZSBTZrgMmt0dxUWoB3UJFyhXrVSumsl9Khmq0E6D4eg9lNIxnIUYUby22ihIuKltHj1Dt1ah1SYES4j+rbE+w+fcP/hM/WrvRzwZL26tKqlwyahSjf+u4/HT17ixes3WLZmtxLzjmyZCUmcG9wek05CIsxog5obMzTCjIgtyZMkDLQd4seLZVDZadrCdSpkT7zFREiREDwRLpMlSaC715wwY+p5024WMebWnQe491DCmd5g35Gz2HPwjM5D7fzlm0oMkhCZEX1bmdy+weWYCc9nSkSOkrW76YRhc+9yecfIe0NCgQZ0aWRwufY+Obp1lvK2C+p516pQSfUz/fL1G3YcxC9jF2LSkI7KE0cTZsTLxFg0kudowpzfMX5Qe1WVzJihrFnOUi1070A3fMtjNeu3jUqA1kS0kAgzC1ZuUx5wEv4pYWpa054pTWAPznYt/FAToCx575pbF35PAiRAAiRAAiRAAiRAAtYScClhxhiWHD5H9m2tQoekaf+BL270Ej6i37bvOY7ew2cHy/uP1RMQACjPDPFeES+WoJqxMCOhFjVafvVykV/QJfSm8PdZ8XO5H3Tu+cYHIPGMkbH0wwq08f746xS6/TpDhZNIWElQBzXJh1Kmbg+VC0XLo2PK5pCM5UjCjBbuI3MSAUvLNxNSYUa/XLbGR8oDSz4MCRGR3Cpzl29RFWZMNfGqkapUwe0xuS8kwoylY4ZGmLE0+a8Ids27jlHCpDRT1YPMCTOmnjfpS7zFhk5cogsp1Oc6fWRXlPohr8qdIiXkh/RqjjpVSphkHxJhJiT73NpnSrNLC5U09zIPSlSR+zQBct2CYSqXU1C2ibdR54FTA/HS3hcibmklxcXrxJQws//IOXQcMEXnZWf8XtLeKcHNZ+zAdqhStojKlRNUVSbjd6SEH67f/peBt5A2RqXGfZUnjlbNLCjbpeKYVB6Td3XypAlViJu59665deH3JEACJEACJEACJEACJGAtAZcSZkSAad2wMqJGiaxc8I1zOgR3aNZK2ooIkj/X1wSixk1+PX74+Llyt9fPY2DqWuNDh1wjpZwlrGj3gVPKG0OaHNokh4mELRgfgMQTQ3JUmBpLPAs6DZiqy2kT1EFN+9XenDATkrEcSZgRhiJQycFTX2wIqTAj/Uwf2UV5QCVNHF/9T7/M9oxFGzB76SYl/kjiZQnBkf0lOTEkt4Y9hBlLx7SnMCNcJIeL5AuRpoUY6e/50Agz2l4XkVI8n3JlTYcUSRNhz6HTGDFlGTRhxnvLfiXeGFff0h8/JMJMSPa5tc+U2KgJCppHVXAvdO0dZGqukih3ifdOrJo1SCXSDco2TVQxFrL2HjqDzr9MU15H5oQZTdyRsunN6pQP8r0kIW11fjYtlknImSQrDokwo4VS7l49ASmSGnpzibgiIsvFfYtV2FRQwowWYqUJM5a8d639lyzvJwESIAESIAESIAESIAFzBFxKmDEul20MJzhh5tiZy2jVY5zKmSK5U4Jq2iFYkqFKUtSgmilhRrtWcj7IL9USMiAhBlq4jLEwo40lOVQkkal+W7VxjzrAiuePeCRYe4gMyViOJsxcv3UPf/x1Gq0bVNLlPQmpMGNcLtt4XbUkrsYHbC1BsD2EGUvHtKcwox30JWeJHIwlT47koBFBRWuhEWY0sUdypkiok9a0kBtNmDl2+jJa9RwXbGl2TZgxFTIVns+UzKnvyLnY+sdRJT5JwmpTTd4Hfv7+OHn2Klr3Go/OLWvqKnNp12shOvvWTkHihHHtKsxIGJ8IjtoaGDOU0Lp85duqhNDBvQPFdk2YWTlrkC7vlTanoPJw/Ta1v666llwrnmOFq0iC7DjYvnysuj0kwoy59665f4nyexIgARIgARIgARIgARKwlgCFGT2CwQkzUpr4x2qd1YFTEm9KGJTWJKfC/iNnUerH79VH2q+3+tVq5HNJPinJWuUXbeNDhwgnObOkU+EuWpOcHSIgSMiGHIJMJSrVBAbJMSPeGtIkvKROm8HqoKwl6LRWmJF+LR3L0YQZUw+JrYWZAhW9lJfTsa2zdElJ37x7j3Z9JqoSzpYKM10GTVM5VLQDtma7KXHF0jHtJcxIJZ8aLQepEspbl47BotXbIXlAjEPrgppTcM+blqR24aQ+KPx9Nt2+FkFgxfo/daLAsxevUbxmV/Vc/uk9UeXx0X9+pPKTPKvZSzRXopF2cNeuCe9nSr8qkKkwMPGik/LzzepWQOb036m5ynykipp4/kl79PQFStfpoT7f4z1JeYzYy2NG1qxq8wEq+a+Wp8UUwwYdhqt9r1VE038GJexNvGWk5LlWKU0TkPWvM35HakmOJQRKQqG0Jh6G3QfPMPActFSYseS9a+2/ZHk/CZAACZAACZAACZAACZgjQGFGj5C5/B8r1v+hcjnIIVCSyYo7vRysDhw9p0QQLb+Bfvle8bCRQ8i1fyXZ8D7lcWOqXLYcROXgUffnEioZqM/7D9i467A63Cyc2AeF82UzKcxolXEk5Ek8eWJ4RlNeNsfPXlH5TwZ1b6pmaAthxtKxQivMyMFSO4Trb1xJQiseBT2GSOWYE0qo0krr6l8nVZgiR4qkqvSI94HcE1SztTCj2SZeAiV/yAsRDLb+cUSXH8VSYUYrNy1eUJKEVQ7Akqw5buyYgcplWzpmaIQZEQ+lmpFxixM7Jvp2bKBKyzfqOEIl/JVQu3y5MqkKSXKYlvWXfEUSHictqDnFiuGpymWbyjEjibmHTV6qEsj+XFaq+nzNOaOVvda8NaR/CSGTsC65tmHNMir5rex/ycmihfaIp4kICBL2ly1Tajx49FzlSDElKli6z23xTIn9ImhNnOOtWEk1uLzZM8L38xfFVkLwpGmijZZsWdZHnm9hLgl1ZZ/oixu2EmZkLSWxc4HcWSCeMPJuEUFO38PHFMNL1/5D3XZDlO1iZ44safH0+SucOn9NVfMSryp5z525cB1NOo9UolKLehXVvsqeKY3K+2UszIjnUMOOI9Q7UcS/4oVzK1ukPLs0/RAnS4UZS9675v4lyu9JgARIgARIgARIgARIwFoCLiHMaGVWzeV98Xn/EQUreZk8KApoORjs3HcC42evVgchrYlQU69aSZXPRWty+Bg5dZlKSKk1ybnQr3ND5eJvfOiQQ+SMxRvUQUO/325taqkqLNK0sA0toa92nRzeBoxeoMtLI5+L+NOlZU1d6I522BzcoxmkspTWtBwz8pl8Z65ZMpZ2KDMVcmGqf219ghpbq7aieVEEdZ1UoEqZLKHK8WMu5EwTZrSyucHNWzxTYsX0xN41k4O8TDhKUlU5yGpNEkCLQCMiwZHNMxEndgyY22MiDk5dsBYbdx7WradUOUqeNJESZqQajVSlkWbpmJowo39vUBPRcrYE9b0coIWDFmpkXBJdP9my5sUV1JySJk4Q5PMmXl+Dxy/Gxp2HdKaIGCGJbSV564xRXVGyaF71nVzrvXm/qtijn6RZRI5B3Zqq8s+yxyR/k5SElqaVqHaEZ0rsES+ScbNWK9FBv0mIWO0qJVTel+ieUdVcpQy4fpJpmYtUWxOxQmtBPe+a18mw3i1Rq/JPuuu1vDHGOWZkP4snnuTe0bjJsyUePO7uX6stBcVQ7h0zfaUuMbT+c9G3U0PlMSNNQjaltLb27tPy35gK95SKekMnLdGto9wvgtyEwR2QM0ta3XyCEmbknSxeOn96T0KyxPGVeGfuvWvuncjvSYAESIAESIAESIAESMBaAi4hzFgLydT9r9/64Mmzl4gXJ5Y6YEj4QFDXvXj5Bgnix1G/5Jtr0q+IPjGiR0PihPFMls021YeEU8nBRn7VlpANLczB3Hih+T4sxwqNfeF1j3C5++CJEgfEy0eEmNA28YR4+OS5SiCsn6/FuD9bjhlaWy29z9I56fcn4pN4WiSIHxtJE8UPdigRTp8+f42Pnz6pZyda1CiBrpfwsjdvfZBEnq3IkYLtLzz2uQgvEr7k6/sFiRLGNQjN0jdWWIoIFilSJCVMSGUwWzd9cUNCOUVUlH2tCTKWjifvpAePn8MzahQ1J/2k2Vofsnby/ooZw1O9U801EfvkWUsQL47KqWNtC+1719pxeT8JkAAJkAAJkAAJkAAJCAEKM9wHJEACJEACgQgE5XVCVCRAAiRAAiRAAiRAAiRAArYlQGHGtjzZGwmQAAlECAIUZiLEMnISJEACJEACJEACJEACTkCAwowTLBJNJAESIIGwJiB5Z3x8PhjkrglrGzgeCZAACZAACZAACZAACbgCAQozrrDKnCMJkAAJkAAJkAAJkAAJkAAJkAAJkIBDEqAw45DLQqNIgARIgARIgARIgARIgARIgARIgARcgQCFGVdYZc6RBEiABEiABEiABEiABEiABEiABEjAIQlQmHHIZaFRJEACJEACJEACJEACJEACJEACJEACrkCAwowrrDLnSAIkQAIkQAIkQAIkQAIkQAIkQAIk4JAEKMw45LLQKBIgARIgARIgARIgARIgARIgARIgAVcgQGHGFVaZcyQBEiABEiABEiABEiABEiABEiABEnBIAhRmHHJZaBQJkAAJkAAJkAAJkAAJkAAJkAAJkIArEKAw4wqrzDmSAAmQAAmQAAmQAAmQAAmQAAmQAAk4JAEKMw65LDSKBEiABEiABEiABEiABEiABEiABEjAFQhQmHGFVeYcSYAESIAESIAESIAESIAESIAESIAEHJIAhRmHXBYaRQIkQAIkQAIkQAIkQAIkQAIkQAIk4AoEKMy4wipzjiRAAiRAAiRAAiRAAiRAAiRAAiRAAg5JgMKMQy4LjSIBEiABEiABEiABEiABEiABEiABEnAFAhRmXGGVOUcSIAESIAESIAESIAESIAESIAESIAGHJEBhxiGXhUaRAAmQAAmQAAmQAAmQAAmQAAmQAAm4AgEKM66wypwjCZAACZAACZAACZAACZAACZAACZCAQxKgMOOQy0KjSIAESIAESIAESIAESIAESIAESIAEXIEAhRlXWGXOkQRIgARIgARIgARIgARIgARIgARIwCEJUJhxyGWhUSRAAiRAAiRAAiRAAiRAAiRAAiRAAq5AgMKMK6wy50gCJEACJEACJEACJEACJEACJEACJOCQBCjMOOSy0CgSIAESIAESIAESIAESIAESIAESIAFXIEBhxhVWmXMkARIgARIgARIgARIgARIgARIgARJwSAIUZhxyWWgUCZAACZAACZAACZAACZAACZAACZCAKxCgMOMKq8w5kgAJkAAJkAAJkAAJkAAJkAAJkAAJOCQBCjMOuSw0igRIgARIgARIgARIgARIgARIgARIwBUIUJhxhVXmHEmABEiABEiABEiABEiABEiABEiABBySAIUZh1wWGkUCJEACJEACJEACJEACJEACJEACJOAKBCjMuMIqc44kQAIkQAIkQAIkQAIkQAIkQAIkQAIOSYDCjEMuC40iARIgARIF9UCUAAAgAElEQVQgARIgARIgARIgARIgARJwBQIUZlxhlTlHEiABEiABEiABEiABEiABEiABEiABhyRAYcYhl4VGkQAJkAAJkAAJkAAJkAAJkAAJkAAJuAIBCjOusMqcIwmQAAmQAAmQAAmQAAmQAAmQAAmQgEMSoDDjkMtCo0iABEiABEiABEiABEiABEiABEiABFyBAIUZV1hlzpEESIAESIAESIAESIAESIAESIAESMAhCVCYcchloVEkQAIkQAIkQAIkQAIkQAIkQAIkQAKuQIDCjCusMudIAiRAAiRAAiRAAiRAAiRAAiRAAiTgkAQozDjkstAoEiABEiABEiABEiABEiABEiABEiABVyBAYcYVVplzJAESIAESIAESIAESIAESIAESIAEScEgCFGYcclloFAmQAAmQAAmQAAmQAAmQAAmQAAmQgCsQoDDjCqvMOZIACZAACZAACZAACZAACZAACZAACTgkAQozDrksNIoESIAESIAESIAESIAESIAESIAESMAVCFCYcYVV5hxJgARIgARIgARIgARIgARIgARIgAQckgCFGYdcFhpFAiRAAiRAAiRAAiRAAiRAAiRAAiTgCgQozLjCKnOOJEACJEACJEACJEACJEACJEACJEACDkmAwoxDLguNIgESIAESIAESIAESIAESIAESIAEScAUCFGasXOUHzz9Y2QNvJwESIAESIAESIAESIAESiIgEkifwjIjT4pxIgARsTIDCjJVAKcxYCZC3kwAJkAAJkAAJkAAJkEAEJUBhJoIuLKdFAjYmQGHGSqAUZqwEyNtJgARIgARIgARIgARIIIISoDATQReW0yIBGxOgMGMh0ICAAPj5+yOSh4fBHRRmLATIy0iABEiABEiABEiABEjAxQhQmHGxBed0SSCUBCjMWAhuy+4jmDx/DfaumUxhxkJmvIwESIAESIAESIAESIAEXJkAhRlXXn3OnQQsJ0BhxgyrO/cfo02vCbj38CmSJIpHYcbyvcUrSYAESIAESIAESIAESMClCVCYcenl5+RJwGICFGbMoPri54dnL15j76GzWLByK4UZi7cWLyQBEiABEiABEiABEiAB1yZAYca115+zJwFLCVCYsZDUjr3HMX72agozFvLiZSRAAiRAAiRAAiRAAiTg6gRsLcxcu3kXF678i1dv3iFBvNhInTIpcmVLFygPpinuZy9ex7hZqzF9RBckjB/HaZbm7bv36DpoOjJnSIW+HRs4jd2mDJ2/YisOHD2PCYPbI2mi+E49FxpvWwIUZizkGZQw8/bDFwt7iLiXTZ4ZgDt3I+78ODPzBKpWckPJn8xfxysiNoGAZ4/g37N+xJ4kZ2eWgPuk3+GWIInZ63hBxCYw7fnf+OXx8Yg9Sc4uWAL5oiXEvnQ1XJ5SLM9INmMwatpyrFj/p+ovZbJEKtWC9s+7Vo03O87B43/Dq+8k/Ok9CckSO48oMGbGSuw+cBLrFgxDvDixzM4zrC44fvYKWnYfix0rxiFVisQWDfv+wyc07TJKrd+UYZ0suocXuQYBCjMWrnOQwsz7zxb2EHEvmzwLFGYi7vJaNLOqFUFhxiJSEfsiJcz0cu5fsiL2CoXN7NwnrqYwEzaoHXoUJcw8OeHQNtI4+xJQwkza6vYdxAl6jxU9sk2sFC+LDv0nw6tpVbRuWAWe0aLA1/czjp6+jN+8d2LR5L5mx3FGYebStf9Qt90QzBnbA8UK5TI7x7C84Njpy2jVcxx2rBiLVCks/0Hi8j//oU7bIZg1ujuKF8kdliZzLAcmQGHGwsVhKFPQoOYt9MC9+24WkuRlEZFA+TL++KGof0ScGucUAgJuzx/D85fGCPCMgS8l+StpCNBFiEsj7V0Pt4/v8WHkCgTEt+yXwwgxcU7CJIE5by5i+ItTpOPCBPJESYBtyX92YQJfp26rUKYp89dChcGsn2o2DOnoqUvq2gtXbyFRgjgoki87OrWsgYtXbymPmRF9W2HTrsMQ0aNk0TxoVrcCsmdOo1urg8cvYO6yzZDQJ/HsqFbhR7RpVAWRI3ngw0dftOk1HpVKF8ap81ch14r3TU+vesquqQvW4uzFGyiSPxtaNaiM3NnSq37FpolzvXH73mO8//ARmdKlRIv6FVG13A/B7pEug6bh8ZOX+H3uYIPr/Pz88fvmfdi08xD+vfMQqVMmQZli+ZRwJU0q6i5avR3//HtPjSW2VClbRH338vVbdB44DT296iJvjozqM8kr2rzrGLRqWAkli+bF+cs3MX7WajSsUQbeW/YFYvX46Uu06D5GzSdrxtSIFjUKMqRJgSG9mqt7Zy7eoDhEixoZObKkU3ZpLGS8HkNm4s79J1g7f6jLPyME8JUAhRkzOyEgIABfvvhh574Tqlz2rpXj4ebupovjfPD8g8vvJU2Y+T6PH2LHdnkcLgXgxr9uuHfPHRRmXGrZg5wshRnX3gcUZlx7/Y1nrwkz+aImQvFoyQnHhQg8/PIeq3yug8KMbYWZMxf+QZPOo1CxVCElkqRPk9xkXhnNs0bEiPrVSuGtzwflUTNjVDe8eeujhBlpTeuUx3fJE6vv4saOqRM+NK+an8sVVULH35dvYuGq7UrEaFm/EiTfS+EqHVQfco2IDZt3H1HXSatdpTgyp0+FNVv2QcSTzb+NUp/v2n8Cx85cQZ7sGZSIsffwGWz94yiWTR+I73N+FUdMtWLVO6NjixpqLvpt4hxvJbyUKJoH5YoXwD8372KJ905c2r8E2/YcQ5/hc/BDgRyoULKgOscdPnkR4we1R6XShSCiSqk63Q08VkSYyV26FYb2aqHmoHEIipVwmLZwHVZu2IMOzaohfrzYiB83FgrmzYofq3VGgTxZ0KB6Kfi8/6jCsPLnzoLWDSvrprD38Fl0HjgV5/5YgMiRbRfu5kKvmgg3VQozZpb0xq37qNZioMFV8hIaM6Ct+ozCDEBhJsK9FyyeEIUZi1G5xIUUZlximYOcJIUZ115/49lTmHHd/UBhxnDtbeUx4+8fgIlzflfig9bE26NquaKoUbGY7nBftdkAfPL9DP2cM+KhEhAAiLgjwozkasmSIZXqZs/BMxCvlH1rpyBxwrio0fIXJEoQF/PG99KNI94dciYSkUUTZgZ2bYKGNUqra8RDpGGH4TrhQz7ThI09ayYZJLmVH73fvH2P56/e4Oem/dHLq57ynDHVXr/xQdGqHZVXiXilaE0q5hav2RV1q5bE4B7NdJ8/efZKzaFS476I7hnNwBtF5iVcti8fGyJhJjhWpkKZNBaThnRA+RIFdbaJp5GEnxnPYePiEciYNqXrvjA4cx0BCjNWbgYKMxRmrNxCTn07hRmnXj6bG09hxuZInapDCjNOtVx2N5bCjN0RO+wAFGbsI8zoH+jFK+bazTsQYeDm7QfIkTmt8ngR4eH7cm3QrE559DFRvchUjhkJd6rvNRSr5wxGlvTfIU/Z1srzI4lexSAt/Ei8UTRhRvM+EbvuPniCCg37YM7YnihWKKcyVcujsmrWIOTKll6FD02Y/Tt2HzilQpm0Jt4w4nFiqp3++x+VKPfgxunKJq1pSXenj+yKUj/kNbhVYyDeKd3b1tF9N2mut/L8Obt7Pl6+fmexx4x+omR9VjmzpFX8jXPMfP78RfX94tVblC72vfIQqliyEJIlSWBgpwhtOUu1gLGA47APNg2zOwEKM1YipjBDYcbKLeTUt1OYcerls7nxFGZsjtSpOqQw41TLZXdjKczYHbHDDkBhxr7CjH7v4n0ydcE6lU9mw6IRSJ4kAQpVbq/yybRvGljsMCXMXLl+G7XbDFbCTLpUyVCwkhfqVCmhRAXD5qZEF1PCzINHz1C2fi8DYebqjTuo1fpXaMJMgw7Dce/BE/Tr3AgiaiSMHxflG/RCgxplghRmTp2/hmZdR+PwphmIGyemzhxtHkum9FMhQ/pNQodkDl1b10Lbxt9yHM1eugkzFm3AqZ3zVEiXiCczRnVV+WSkBRXKpC/M6LMKSpiRvl6/9VHVs06cvYKT566q/vXHkr9l7XKUbIEJv7ZX4WlsJEBhxso9QGGGwoyVW8ipb6cw49TLZ3PjKczYHKlTdUhhxqmWy+7GUpixO2KHHYDCjH2EGTngZ8uUBjGiRzMYQHKcjJy6DCtnDVL5XiQnS/IkCQMlyxUPjcMnLwQql20sNsj9BfJkVZ4cxiKQm5tbqISZdKmTK8FIPFj086zIWMEJM69ev8MP1Tph/cLhyJz+O505d+4/RsVGfVWunW5taus+l5w2Hh7uikH6NCkgwo3WJD/Pf3cfKu+bdz4flD2SBFnCwKSJp4t4CxnnmAlOmJHkyI07jYR+OJJmgzauhGM16DAM6VMnh3j4aO35yzf4qUYXJahJPiA2EqAwY+UeoDBDYcbKLeTUt1OYcerls7nxFGZsjtSpOqQw41TLZXdjKczYHbHDDkBhxj7CTL9R83D4xAU0r1cR2TOlgadnVJy7dEN5gaRMlhDec4eoPDMSriNhO+L1UqtKcXz65KsS/LZuVEWX/Dc4sUETelo1qKSS+/r6fsG5S9ch4VOSdya0HjPilePh7q6qN/n5+WHd9r8gVW+DC2USkiKydGldS81Hv3n1nYjTf19X+WnKF8+vKjPNWrJRCR3iQSRVrNo1+VklMN5z6AzmLN1sIAy17jUeIvwM7NoYL16+xYJV21QC45AIM1KuPG+5NmhUswxqVymhBB/xxlm9aQ+a1amANKmS4fa9R2jVY5yyU/LpaE1L0szkvw77KgtzwyjMWImcwgwwd6EH7t93Q8wYAfDwsBIob3cqAh8/Ap983VCxnD+KFGa5bKdaPDsYS2HGDlCdqEsKM060WGFgKoWZMIDsoENQmLGPMCMHeRFYJL+KfqtcurASO5Ikiqc+/vzFD3OXboaE7mhNctBMHtpR5aOR5L/6CXk1jxnJUSPXicfHivV/YPqiDQa5YESo6dGurs7bRD/HzMPHz1GmXk8l3EglJGnXbt5FzVaDsHr2r8iZNZ2qijRs0m+49/Cp+l5KV0tVpqDCrjTbpXKR5IRZPsOwGIskAB41bTl27T+pm6eEX00b3gUimEyY463mobUmtcuhR9s6iBIlsvpI8sPI/cJEmlSckipPw3q3RK3KP5lMXmzMSu77bc0uLFixVeWUkVw6Iuz0GjpL16/kxin9Yz706VhfJSTWWo8hsyCePyyX7aAvsnAwi8KMldApzHwTZqxEydudmACFGSdePBuaTmHGhjCdsCsKM064aHY0mcKMHeE6eNcUZgwXyFZVmbReRXh58fINPn/5ohL0Ro5k+ldREViePHuJGDE8ETtm9BDvGsmBIuKHVHNKEC+2ChGytkmf/919pEpLx4kVw6LuLlz5F/XbDzMQffRvlGS/T5+/QsL4cVQZbv0mlZAePXmOpIkTGFRE0r/mzv0nStSK+j/BxiKjjC6S/DTCSmyI9L9fqcWzSHLNpEiaEBICpt+0/DumkheHZnzeEzEIuKwwI0qqqK9SUs34YTG1tBIHKO53+omn5DoKM8CDh27w/WT4wokYj4f5Wbx4DWzc5I64cQNQs2qA+Rsi6BXx4wcgdmzXnX8EXdYQT4vCTIiRRagbKMxEqOW0ejIUZqxG6LQdUJixrzDjtBvDCsMlh46EI61fMDzQWcyKbsPlVhGLmncdrc6g+jlnwsUYDupQBFxOmBGldvbSzZi5eINaCHEvmzGqm0qWZardf/QMPQbPxMVrt9TXkvl74uAOSjmmMONQezlcjHn8BJg5JxISJwI6tf8SLjZwUBJwFAIUZhxlJcLHDgoz4cPdUUelMOOoK2N/uyjMUJix9S578+49OvafgqwZU2NAl0a27j5M+5u3fAv2HDyDKcM6BSqhHaaGcDCHI+BywoyWPXvZ9AHImSUdpi1cj217juLP3yfB3T2w18eQCUvw6OlzDO3VUrm4teszEenTJMeo/m0ozDjcdg57gyjMhD1zjui4BCjMOO7ahIVlFGbCgrLzjEFhxnnWytaWUpihMGPrPcX+SMAVCLicMDNxjjeu3LiNBRN6q/V98uwVStbuphIviQqr30SdLVKlA2aN7o7iRXKrr/YeOoPOv0zDxX2LVQgUQ5lc4TEJeo4UZlx7/Tl7QwIUZlx7R1CYce31N549hRnX3Q8UZijMuO7u58xJIPQEXE6Y6TVsNuLFiYmBXZvoqGUv0dxAfNG+0GrczxnbE8UK5VQfa8ma/towTYUzUZgJ/eaLCHdSmIkIq8g52IoAhRlbkXTOfijMOOe62ctqCjP2Iuv4/VKYoTDj+LuUFpKA4xFwOWGmbe8JyJw+FXp61dWtRoGKXhjSqzmk3Jxxa99vMq7dvIPOLWsicqRI2P3XSRUXqAkzL976Ot6q0qIwI/DoMTBpuhuSJAZ6dmHy2zADz4Eck8CzR3Dv2xABnjGAMrUc00ZaZT8Cf6yF28f38B+3CkiQxH7jsGenIDDj5QUMfnoCBaIlRsnoKZzCZhppGwIizCx7cw15oyXEn6mq2aZTJ+4lfizDSkFOPBWaTgIkYEcCLifMiMeMJPwd0KWxDmtQHjNygZQ6W7ByG85fvolYMTxVabqDxy/oQpk++vrZcXnYtaMTePAoAKMmBiBZEjcM7OWalakcfY1oX9gRCHj6CJ+61wOix0Ck8rXDbmAHGsk/ADCRrsyBLLSfKV92rgU++CDqFG+4JaQwYz/SztHzlGfn0f/hcRSKnhhlYqZ0DqNppU0IPPjsg8UvryG/ZyIczFDDJn06cyfRopguZ22vOb18DTx5EvIfC+PGdUOSRPayiv2SAAmYI+BywozkmBEPmHnjeyk2weWYMQWvZfexiBE9mq68GUOZzG2xiP09Q5ki9vpydiEjwFCmkPGKaFczlCmirah182Eok3X8nPluhjIZrl7yBJ5hupx7D/pj5dqQ/3Bcqpg7GtYOWxEpTMFwMBJwcAIuJ8x8q8o0EDmzpsPUBWuxfc8xXVWmJd47VaiSVG2SJnlmJMnvFz8/bP3jCEZNW4HVcwYjZ5a06nsKMw6+w+1sHoUZOwNm905FgMKMUy2XzY2lMGNzpE7dIYUZp14+q4ynMBPOwsxf/li5zg9RowAxYphfyk+fAuDz3g0li7mjkQsJM6/f+uDIyYuoULKgOuuFtvn5+eOT72dE94wa2i5w685DPHn+CoXyZjXo4/PnL3j6/BUSJ4qHSB4RVzQ7c+G6ilLRiu2EGqTRjR8++uLlqzdImjiByerLcrmc8d3d3AN9L58/ff5aRdpIZWat+bz/iL+OnVc6QspktnUxczlhJiAgADMWb8CcpZsV3+ie0TBvfE/kzZFR/T1+1mp4b9mPkzvmqL8Pn7wIyUsjLX3q5Bjau4XuWgoztnpsnLcfCjPOu3a03PYEKMzYnqkz9UhhxplWy/62UpixP2NHHYHCTDgLM//zmEmTCsiZzd3sNrl1B7h42R+h9ZjZsvsI+o2aF2ic3u3ro3m9CsGOf+/hU0ya641xg7zCXHi4dO0/1G03BOf3LLRq7KOnLqF1r/E4vGkG4saJaZa3qQuWrtmF/UfOYdHkvurr5y/fYOTUZdi1/6Tu8ipli2BA58aIE9u82haeXEMK4O6DJ6jQsI+qmFwkf/aQ3h7k9Z0HTsXew2fV9yKuVK9QzCDHrHwuwk29dkPQtvHPEL5am79iK6bMX6v7u3yJAhjco7mO/YQ5v+P03/9g+fSB8PAw/4xZOimXE2Y0MB8/+eLFy+AVNLlW1LKHj5+rCkwi4hg3esxYutXse93+gx7w9/O37yAmevfxccPJ0+6I7hmAggXCfnwxKVlSN2TNEj5jhzlwDujQBCjMOPTy2N04CjN2R+xUA1CYcarlsqmxFGYMcYZXKFNYCjPjZq3C0mlfow20Fj9ebMSJFbyIcOX6bdRuMxjn/liAyJEj2XQfmuvMVsKMRFfcvvcYmTN8F2qBR1+Y8fcPQIP2w+Dn74+R/VojXerkuP7vXfQbOQ/CdMmUfuamhvDkatY4owu8+k5EpnTfoUe7b4V5QtqHqetnLNqAciUKIFWKxDh2+jI6DpiC1bN/VZ4u0kRcWbx6h/rnsQPbGQgza7bux3fJEyN3tgwQ4ahVj7Fo1aCyTmj8/MUPtVoNQqOaZVCvWilbmKv6cFlhxlYEKczYiqR1/fw6LGxf5mKtSquml1stwA2wnWZqOY/cufxRqzqFGcuJ8Up7EaAwYy+yztEvhRnnWKewspLCTFiRdrxxKMwYromrCDMHN043uRnHzFiJSJE8cPO/Bzh1/hpKFs2Dzq1qqoOviDIiImTNmBoe7u4Y0LUxcmROi0Wrt2PVxj14++4DShf7Hv07NVLeCjdu3VfeOZVKF8LydX9AQn3kQB8lSmTMXboZL1+/RZPa5ZQHhDQJMwqqL2Nh5ubtBxg5ZRmOn72ioiQ6tayJcsXzq34kzGbcrNXYue+E+jtvjgzIlP479PKqB7lvwKj5WDlrkPKekB/0x8/+HSfPXVFiU5li+VTRmWVrd2Px7zvw+OlL5cHRoHpptG9WTYVR6QszB46eR4f+k7FjxVikSvEtkf61m3dRs9UgLJ7cDwXzZsGQCUtQ6PusqFiqkLJp35Gzyj4RGUxxzZU1HdZt+wsr1v+Bew+fIUuGVOjRro6KBJF7J89do+byfc5MGNS9KTKl+5q0XdZP1ubm7fuqAI54tfTr2BDzV27F3kNnlS1dWtVC5vTfqetljSUC5d87D1H2p3xoUKOMLgWI8Qa5eO0W6rUbiiNbZupEPPHAOnDsvPp78+4jys5OLWsECvMK6ZuvVJ3uqF+tlG5vvHr9Dh99fdGww3D0aFvXQJgx7nvQuEW4//CpzqNJvhdvpl/GLtRF2YTUHlPXU5ixkiKFGSsB2uj28PCYOXTEA1++GP3LN7k/MmUIeSZ8azDQY8YaerzXlgQozNiSpvP1RWHG+dbMnhbPeXMJw1+cRDKP6EgTKZY9h2LfDkbgXcBnXPB9gdxREmB78q8HZFduriDMiFjSvqlhafSiBbKrQ377fpPVYb1bm1rIkDYlJs3xVoKCCCobdhxUh1sJYxHxRsSO3QdOYtzM1ejdoT6SJY6PqQvWIXnSBJg2vAsuXPkX9dsPQ9mf8qPOzyVU1dyZizcoYUfEmC9f/NB7+GxsXToaaVMlg3g+BNWXvjAjAk7FRn2QPVMaNKtbASfOXsHMJRuxdv5Q1feA0fNV6EqnFjWQOmUSzPptoxKDxCb9fgL8A1CtxUAkThgPrRpUgni/SFjM8hkDsfvAKTXH75Inwt37T9D5l2mYNbq7yquiL8zMW74FO/Yex4ZFIwI9NuUb9EbTOuWVp0aTzqOUKNOwRml1nbCUfuQ+U1z/OnpeiVoiohTJlw1HTl1C7FgxUDBPFmVzm0ZV8FPhXErwOnnuKnatmqDy5mjrJyJO2u+SYfCExZBQKbleRBoZM1bM6BgzoC3u3H+iOPb0qotihXJh176TWL/jL+zxnmQyj4/YuffQGV1RHZnHkt93Yvzs1WhRvyJ+LJhTsRDGshbSxPtFGJlq+XNnRofm1QN9JR5NlRr31fHWv0CYdm5ZM0hhRrxjyjfohcqlixiEQkkYVP4KbbF/3RQkShDXJq84CjNWYqQwYyVAJ7395Stg8rTAXjqenkD/3kZqjZPOkWaTQEgJUJgJKbGIdT2FmYi1ntbORhNmrO2H9zsvAQozX9fOVYSZ6hV+NNisklRXDudysP8+Z0Z1kJcmXhvL1+1WAoKpkJsGHYYrL4nBPZqp6/88eBpdB03Hkc0zcef+YyXMXNy3WB3033/4iAIVveA9dwiyZ06jrq/R8hclXtSoWAzB9SXigpZj5viZKyqn6J/ek5QYJK1qswHKfvHuyVe+LUb1b4Nq5X9Q3836bROu3rgdSJg5efaqyjezfflYJeAYt5v/3cflf27j6YtXKoymdaMqaFanvIEwM3zyUtx/9BRzxvYMdH/jTiMVSxG1ghNmTHGVe1MmT6QEFP02beE6bPvzGHatGq8+lvw2P9XoghmjuqJk0byB1k9yr1y/dQ8zR3VT14u3za/jFkE8pmYt2Yitfx7FxMEd1HcilMl6rVswTK2pcRs7cxViRo+Gji1q6L4SYebQyQtKrJMmiZGrNO2v1l+8ph49faH2jamWMH7cQN45kqy3cacRiBkjugoDM84JY06YESFq+57j2LZsDBInNBRgZK/17dgQhfNlM2lPSD+kMBNSYkbXU5ixEqCT3n76jBs2bQ2cHd39/5O6DxlEYcZJl5VmW0mAwoyVAJ38dgozTr6ANjb/lO8THPC5b+Nenae7395exXP/T2gWKzMSuAfOUeg8Mwm9pckix0DDmJlC30EEudMVhBnJMRNUKJOxMLNr/wlMmrtGCQGmBIRi1Tsr4UGEFWkSGlSmXk+sXzgcvr6fDYQZ8XTJVbolfp87WIVASRMBolLpwsqTJLi+RDTQhJnNuw5j8rw1BnOQA7mEMHVvW0clp9W8cGSMoISZTTsPq9AfrYiM/haWzyWcqdQPeZH6u6SqKnCTWuWUZ4i+x4x42Mh3pjxmJByndcMqam4hFWZEwOrXqSFqVf7J4MnSEjfrCzYyjghpKtzKSFgTbxXlqfQ/YebYmcto1WMcLu1fojxypLqxFtakDSQhWz8UyBHoiZa8L+IVI+NozViYefLsFUrW7oY9ayYhaaL4KlxNPHNMtdgxoytPKa2JV0vXQdPw6MkLlQPJVHLm4IQZEZrEc0q/IrP+uCLmiQBZs5Ih09C+uijMhJbc/+6jMGMlQCe93fcLMHxkJBhX14sUGfi1P4UZJ11Wmm0lAQozVgJ08tspzDj5AtJ8mxIoeX8j/vn8CntTVEPmyPFs2jc7cy4CFGYMPWb0hZmrN+6gVutfcWb3fF1JYvFC+KFgTpW/RZpW9Wjf2il4/PSFgTAjoUI5S7UIUpgJri8pQ60JMweP/41OA6bqvDI0gcxE6WkAACAASURBVCdrxlTo37kxClVujwm/tteVcw5KmDl0/IJKMntg/VQkjB9Ht1E1LxSpuqSVxJakt4XyZgskzGg5ZvSFIOlIE7FEYMiXKxNadh+Lnwrn1iWk1Q9lCoproe+zKXFGv0k+mCOnLuqEIPEwKVjJC5OGdED5EgUDCTMiHJ27dMOkMDNxjjf+u/vQIDQpuKdVxCoJp+rQ7FsYnDlhRviMnbnSZLfCQ5vfm3fv0eWXafjw4RPmjusZZMUsU8KM7KuJc35XlZp/m9oP2TJ99cYybrK/+nRoYLNqUhRmrHy3U5ixEqCT3v7wETB7jgcC3N3w/04yuuYWAAwdTGHGSZeVZltJgMKMlQCd/HYKM06+gDTfpgQozNgUp1N35irCTKCqTHFjq9CT4DxmtDwdIljkypoeAQEBWLRqu8pLMmVoJyRJFB8jpizFwycvsGbeEFy8eitEwoxU5gmqLwkp0oQZ8YwpV783GlQvpcKLTp27apADZuCYBTh78bryIpHwqTlLNyNvzoyBQpm0fqT0suTckZwy4g3TskElFKnSASP6tkK54gVUzp1ew2YrQcLYY0aryuT7+TNGD2iL9GlS4NrNO+gzfI7yGNFKaos4JLlwpg7vrBLTjp6+Eu983iuBxRTXxau3Y/WmvSokS3LDnDp3De/ef0AMz2gq/EqEmKL5cyh7pW8td4rx+gUnzJy58I/y5BHvm4qlC+H1Gx/88dcp5M+VGRnSpgj0HK/f/hcOnbiASUM66r4zJ8xY8jJ4/+ET6nsNVdWVJw/thJgxPNVt7u7uulA1+U5yAkmYlFfTqqhSpoiuMpjkPRKhS8LJ0qX+5oGTJFE8XeUtqfAsIW4iGBqHOFlio6lrXFaYEVe4l6/fKZASo2iuyUP4+bNfoNrxFGbMkYuY3/99CVi7LhKkFpK75PqV/7kDAQHAcAozEXPROSuzBCjMmEUUoS+gMBOhl5eTCyEBCjMhBBaBL3cFYUYLh9Ffxt7t6ytvDjnYi4dH64aV1ddSzWbSXG9dThMRT2Yv3aS+k7wiubOnx4DRC9SBXprkapk+oosSKC6IMOM1VJdjxpTHjAgDUrVJwmPk/BZUX5f/+Q912g7B+T0L1WFbPDFELJF7pMlhXZLCSpO8JuNmroJ4okhpZ/8Af0SLEgXjBnnBuB/x8Bk4doGqviRNEiAvmz4AC1dtV/OWJlWfPvl+VjYKIwlx2nf4rE50EQ+bkVOXKVZaE7FHqjtpJcgl90qPITPxz7/3EN0zGvLlyohnL97okuQac82TI6MSuTbuPKS6lHvG/tJOhVYJf7le+1yEFamGJc14/YyFGaliJd5GWviWiC0iEmkcZf3mjO1hUGFKm5OWzPno1lmQMCRpS7x34sjJi5g3vpf6WzybStTqhr1rJkOEEUuasJdwLOMm1bC0kLseQ2ZBvLf0m+alJF40koPIuOnnDpLcR/1HzWdVJksWJKhrRImdvXSzyuAtTRZoxqhuyJ0tvclbZGFlEx87c0V9L4mLBnRppDJ0S6MwY81qOO+9N28BS5Z6BBL1RJ8Z/is9Zpx3ZWm5NQQozFhDz/nvpTDj/GvIGdiOAIUZ27F09p7CXJj5yx8r1/khaWIgXRp3s/gePvLHrTtAyWLuaFQ7cP5Esx3Y4ALx8BAPEU10kC5fv/XBx4++Fh/GgzPD0r4kZ42IMPHjxoZntCi6LsW7QsQbaSIGSRiSCB36ITjG44u4Ei1qFMSI/i3HlIQJSYiNlmDYHDpxJHjy/BWSJIyn8+YwvkfslbApzT79701xlT5fvfFBgnixDRLhigfIsxevkTRxfJN9mbNV/3s5b8v8pVy4/poa9yHXtek9QeUH6tamdkiGCNdrZT/UaTMYdX4uqauKZQuDXM5jRtzQJCmUKJc5s6TDtIXrsW3PUfz5+yS4S+ZWoyZuY6/evFNxdG7/H7YydOJvePr8pS5TNoUZW2xD5+tDPGZ+X+MBD3c35SWj4pn+P4xJQpmGDaEw43wrSottQYDCjC0oOm8fFGacd+1oue0JUJixPVNn7THMhZmD/li51i/EuEoVc0fDcBJmQmxsGN+wYOU2bPvzqEosK54qImBIMmJblUkO4+k41HBaKWupmFQgTxaHsi0oY6QylYRgrZ7zq9Uilv4YLifMSFKiKzdu60pwaZmetTr1xgsgIo64YI3s11p9JfFm0xetV+5U0ijMOMXzY3Mj3/kAo8dHgsf/wpc0YSZmLKBvDwozNgfODp2CAIUZp1gmuxlJYcZuaNmxExKgMOOEi2Ynk8NamDnzdwD+3B9yYeb73O4oU9y8h42dMDl0t+KVIqWw3/p8QKIEcVAkX3Zd3hKHNtxJjDt2+jLe+rxH2Z/yO7zF73w+qDA7CVEzVRLdmgm4nDAjsYPx4sTEwK5NdNyyl2iOWaO76zJt6wPde+iMSv4kcXZStk0yV7esXwm1qxRXlz16+cEa/rzXiQn8MkRcGr95WYnjTMKEQPdOIf+XoRNjcGnTzWencjE8zx8j6oBGCPCMAb9SX+OyXa9pLnSuN3OPPevg9vE9Po1eCcRP7HoAOGOXJyBPv9aK392gqjLt/646qzK5zM7Q3wHfJp003tfEo2wkQAIkEBwBlxNmpN545vSp0NOrro6L1HUf0qs5KpcuHIjV/UfP0KbXeJXo6fDJi4gWNTIWT+6nyyzt52f6JcxtF7EJ3L0PjJj4BQH+/5Nm3CXmFIgRHZgyKnzicyM2ccecHZ9+w3Xxf/oI77vUBaLHQJQKdRxz0exslZ9/gApxdMXmu2MN8MEH0aevgXvCJK6IgHN2cQL6T36uq964/PElzmepg+zR4rs4GVeZvul3v4eHa/47wVVWnfMkAVsRcDlhRjxmJOGvZLXWWnAeM/XaDUXxonlUcicpgTZ4whJIrfujW2eqmDKGMtlqKzpXP6pc9rxIgYyOGhUY2JehTM61mrTWVgQYymQrks7ZD0OZnHPdaLV9CDCUyT5cnbHXsA5lckZGtJkESEBylUo6ZBdqkmNGasFrJbiCyzEjmbMLVvJSJdpK/fi1ZNila/+pmvcbF49AxrQpKcy40N4xnurQER7w8zf8FSRt2gC0aMJQJhfeFi49dQozLr38oDDj2uvP2RsSoDDDHaERoDDDvUACJGAJAZcTZr5VZRqInFnTYeqCtdi+55iuKpPUTt9z8Iyq2iRN6pinTZUUY3/xQvRoUSFZmPcdOYvNv42ix4wlOywCX3PxMrBxswc+fXKDmxuQKGEAWjXzkygONhJwSQIUZlxy2XWTpjDj2uvP2VOY4R4wTSCshZmAF0/h9/BuiJfDPX4iuCf7LsT38QYSIAHbEHA5YUYchGYs3oA5SzcrgtE9o2He+J7ImyOj+luS+3pv2Y+TO+aov69cv43ZSzcpsUauzZ87swprElFHGkOZbLMRnbGX+Ys9cPeuocdM9Wp++D63SzmhOePS0WY7EaAwYyewTtIthRknWSiaGSYE6DETJpidYpCwFmY+7VyHD4u+Vo8NSYtaoRY8W3YPyS28lgRIwIYEXE6Y0dh9/OSLFy/fIGniBHC3IFGjhDV9+eKHOLEN3SEozNhwNzpRV1Iue+zESHo1mb4aHzsO0Ksrc8w40VLSVBsScH/xBNEGNkJAlGjwz/ujDXtmV85AwP3sQbj5fsLHkSvgz6pMzrBktNGOBCjM2BGuk3UdbsJMtOhwjxXLLK2AD+8R8O4topavCc9WPcxeHx4XvH7jA/8Af8SNHRNu4qZu43b91j2VS1RKIPv5+eOT72dE94xqchRz39vCtDMXrit7ihfJbYvurO5DqhQnjB8HubKlt7ovdhA0AZcVZmy1KSjM2Iqkc/Xz9yVg7brAyX89PIDBAynMONdq0lpbEdA8ZmzVH/txTgIfRq5AAIUZ51w8Wm0zAhRmbIbS6TsKL2HGI31WRM4buOKsMVC/G1fw+dwxhNZjpmX3sTh+9orqNkfmtOjUsga8+k4Kct3Wzh+KjgOm4PHTl1gwoTeK5M+urj1w9DyGTlqCvWu+evuIAOK9ZR9mLdmIF6/eqs8keqFB9VLo0e5bdV1bbJBZv23C1Ru3MW14Fxw9dQmte43H4U0zEDdOTPQdORetG1ZWuUWlGX9vi/H1+7j74AkqNOxjwMaWY/j6fkarnuPx4eMnyFoYN6lIXL3FLwacJY1Hn+FzsW3ZGCROGNeW5rAvPQIUZqzcDhRmrATopLfTY8ZJF45m25WA5jEjg/BgblfUDtm524snyi56zDjk8tCoMCZAYSaMgTvwcBFdmPni54fhk5dCogvGDGwLX98vePz0hVqRW3ceovMv07B8xkDl7SItRdKEqNCoDz5//oLkSRJi9ZxflReMsTAzf8VWzFu+FUN7tUCJornx8dNnHDt9GRPmrNaJN7Zadn1h5p3PB9y+9xiZM3yn8olK9d7Fk/uhYN4sajjj721lg9aPV9+JyJTuO5uLT+q/zQIC8MvYhdi48xCyZkwdSJgRL51GHUfg5u0HaNWgkoENssYvX7/DpCEdbD1l9vc/AhRmrNwKFGasBOjEt89d4IH7D765U0pmmRrMMePEK0rTrSXAHDPWEnTu+5ljxrnXj9bblgCFGdvydObeIrowI2szTAkzHzB2YDuDpbp28y5qthqEgxunI37cb2FVpep0R4dm1TF4wmJd9Vt9Yeb1Wx8U/bkjfu3eFPWqlTLoU9JRRIsaRXnULFq9Has27sHbdx9Qutj36N+pkUo7cePWffQbNQ9VyhbBqg171P0iNNStWlL98/sPHzFu5mps23MM0aJGVp44IsSIx4yIEgNGzcfKWYNUkZiFq7YjZbJESliqUakYCuTJovvew8NdXT9yyjLlNZQ+dXJ0alkT5YrnV+OMmbESkSJ54OZ/D3Dq/DWULJoHnVvVxHfJE5vc0hev3UK9dkNxZMtMxIn1NX3Glt1HcODYefX35t1HkCVDKuWVVChv1hA/FiJ2SdGbKmWLYsfe4wbCjAhsnQZMQdJECfDm3XukTJbQQJjRKhlvWToa6VIlC/HYvME8AQoz5hkFewWFGSsBOvHto8dHwnsffM0z4w74+wNFCvujcgV/J54VTSeB0BOgMBN6dhHhTgozEWEVOQdbEaAwYyuSzt8PhRnTwszgHs1x8eq/2LX/JDYsGoFDJy7oQpm0KroH1k9VuU1MtTVb9ytxpXeH+kiWOD6mLliH5EkTKHHlwpV/Ub/9MJT6Ia8SY+4+eIqRU5fpBI+hk37DgaPn0LF5DWRIm0IVhYkc2UPde+naf6jbbgjO71moPH4krKdPxwbIljE1kiaOjzdv3+u+F3GoYqM+yJ4pDZrVrYATZ69g5pKNSvAQj5T2/SYrQaZbm1rIkDYlJs3xRqHvswbpDbNhx0FIPpfpI7vqprzk950YP3s1WtSviB8L5lSCitiohSGJF9G85VtMMlJFa5pXV9/tPnAKwyf/hjXzh+Kvo+dVsRv9UKZR01bgxq17mDuuJ/qOnBdImJE+JGxNhLLyJQo4/4PpgDOgMGPlolCYsRKgk97+8hUweVrgHDOenkD/3swx46TLSrOtJEBhxkqATn47hRknX0Cab1MCFGZsitOpO6MwE7QwkydHBpSp2xNDejVHzOieOmFm1/4T6DFkFi7sXRxkkZYGHYYr75HBPZqp/fHnwdPoOmg6jmyeiTv3Hyth5uK+xbpkwcWqd8awPi3xY4GcyFO2NYb3aYmalX5S9+qHMukLM6ZCmfS/P37mCtr2noA/vScpcUha1WYDUKxQLiUYiTDzfc6MaNOoivpu3ba/sHzdbiVEmWpjZ65CzOjR0LFFDQNh5tDJCyrnjDQRi6o07a/mKd5Bj56+UFWETbWE8eMiZ5a0uHD1lhJVFk3uq/723rzPQJgRryMRgLznDlF9Cntjjxnpf9zMVYhhZJ9TP5wOZrzLCjOS+Eji5CSBkTXZvSnMONiODiNzTp9xw6atHoFGkwJfQwZRmAmjZeAwDkaAwoyDLUgYm0NhJoyBcziHJkBhxqGXJ0yNozATtDAjVYcWrNyGNVv2KyFj1LTlKn+M5jGzb+2UIJPNitAiSYBrVCym1vPh4+coU68n1i8cDjnnGQszlRr3RacWNZEza1qVXFc/JCe0wszmXYcxed4aFaqlNQnPklwtk4Z0DCTMiOA0ae4a7Fo13uQelKTI4hXToHrpIIUZLaRoz5pJSJooPl6+fos797/meDNusWNGR9pUyVQOoKOnL6FEkTzqksvXbyuvmzpViqN9s2qo3WYwUqdMggxpUqjv9xw6g1gxoyvPGE1Uks9lrW78dx9jBrQN02fIVQZzOWFGkh7NXroZMxdvUGss8Y4zRnVD7iDKf8lDr2UC198UmxaPVK5vFGZc5VExnKfvF2DEqMAeM4kTB6CTl59rQuGsXZ4AhRnX3gIUZlx7/Tl7QwIUZrgjNAIUZoIXZiTfS/Ga3ZA3RwZ16BdhRspjF63aEQO6NEajmmUMNtP7D59UKesaLX/BDwVzopdXPfW9Vi1JxBxJPhyUMFO2eH7kKdPKoOqROWFm4aQ+KPx9NjWOvsfMweN/o9OAqTrvFfm+caeRyJoxFQZ2bRJiYUZy0sSOFQMdmlXTzVk8WfQ9ZoyFGcnNM3bmSpMP3E+Fc6Nfp4YQO/W9as5fvom/L99Ek9rl0LhWWZXHRvL6aE2SA8ePGxs/ly1ikONnwpzfETVKZHRuWZMPuB0IuJwwoymwy6YPQM4s6TBt4Xps23MUf/4+yaSrnJQs8/eXtK5f2+V//kOvYbPVSyNJongUZuywKZ2lyx073XD0xDevmciRgRZN/ZAyxbf94ixzoZ0kYAsCFGZsQdF5+6Aw47xrF1Etv/75NZ75fQyX6XV/dhB3v7zDlITFkDLS12o0Ydnc3QJQKGrSsBySYwVBIKILM8ZVmST8R2vBJf+VHDPiMSNt5YY9KgeMnK20ctnyI7oIJiP6tkKZYvkgSX9Pnrumq8o0Y9EGrN/xF6YM7YQkieJjxJSlePjkBdbMG4KLV28FKcxUKl0IXQZNU8mD+3ZsoEQgyTmj5acxDmWSEKACebOgdcMqeP/+I+49fKrLMSOeMeXq91alpVs3qoJT566qKlSzRndXczMOZTLnMbN++18q145422jNnDATmgfPOJTJuI+gQpkkbKtW5Z9QvkTB0AzLe8wQcDlhZuIcb1y5cVsXp6epjlqSJnM7RkqYJUoQT8UlSqPHjDliEfv7j77AP9eAuHHckSoVk/5G7NXm7MwRoDBjjlDE/p7CTMReX2ecXaenB7DB55Yzmm4Tm++naW6TftiJdQQiujAjwoVUJJKWI3Na/D53cIiFmU++n1Gmbg9EjhxJJ8x8/uKH5Wt3K3FGvGqkSfUkEUEkhEk+GzB6Af7465T6TkJxpo/ogvRpUqicKvW9hhrkmJFQJvH0qFiqkAqVatt7oupD+pQoiEQJ4qjkv/IjfJ22X5P/isi05+AZDJm4WEVQtG9aDaV+zGvwvXisyI/2mo1eTavqPEpEmMmXKxNaN6ysbJREx5PmegcZyqQlLT66dRYkDEnaEu+dOHLyIuaN76X+fvr8FUrU6qZzEgjN7gyNMKONu3nJSMWYzfYEXE6YkQcnXpyYyr1Ma1KfXlM2g0N88txVNO82Bn+snoDkSROqSynM2H5TskcSIAHnJEBhxjnXzVZWU5ixFUn2YysC017/jQPvH9iqO6fqJ7KbG1YnLe9UNkdUY8NLmHFPngqRMn4Nvwmu+d2/Db8bVxC1fE14tuph7vJw+f75yzfKw0UqNLlLQke9JiE4Hz/6Km+bkDQRfp48e6nytEjZ62AZ+fmrXC4J4sU2mZtUbJMkvBL+4xktSkjMMLhWUm606T1BCVzd2tQOdT/2uFHy/8gcRbxisw8BlxNmxAUrc/pU6OlVV0e0QEUvlQ28cunCQVKWB6W+1zB8nyuTcnvTmp9emJN9loi9kgAJkIBzEPB/+gg+nesA0WMgSsU6zmG0ja309wfcg//vOxuP6Djd+W5fA3zwQYwZa+GeMInjGEZLSIAESCAcCXgYCQn2NuXTznX4sGhyiIeJWqEWPFt2D/F9vMG2BG7fewzx7lkypR8K5Mli285D2ZvkqPHqO8mg+lQou+JtwRBwOWFGPGYk4a8kk9KaJR4zWgm2A+unKrVWa49fhk/sMnc1CZAACTgcgeePEXVAIwR4xoBfKVdNDCc5pgx/zXO4dbKTQR571sHt43t8Gr0SiJ/YTqOwWxIgARJwLgJJ4kULU4M/nziATyKUh7BFLvgTolb69sN1CG/n5TYkcOz0Zbz1eY+yP+W3Ya+h72rH3uNIlCAu8ufOHPpOeKdZAg4jzEhN9nsPnwUyuEj+bCq+z1ZNcsxcu3lHF6dnSY4ZSWolNeklJtE4CzVDmWy1MuyHBEjA2QkwlMnZV9A6+xnKZB0/3k0CJBAxCYR1KFPEpMhZkUDEJxDuwszFa7fQc8gsleHaVDuyZSbixIphs5X4VpVpIHJmTYepC9Zi+55juqpMkmBJkjxJ1SatSYbs0dNX4k/viYFsoTBjs6VhRyRAAk5OgMKMky+gleZTmLESIG8nARKIkAQozETIZeWkSMDmBMJdmOk8cCr++fcehvVpiWSJEyByJEPvGCl/ZpzkyRoKkitmxuINmLN0s+pGMnHPG98TeXNkVH+Pn7Ua3lv24+SOOepvLUt40zrl0aZRlUBDU5ixZjV4LwmQQEQiQGEmIq1myOdCYSbkzHgHCZBAxCdAYSbirzFnSAK2IBDuwkypOt1R5+cSqvxYWLaPn3zx4uUbJE2cwCrhh8JMWK4axyIBEnBkAhRmHHl17G8bhRn7M+YIJEACzkeAwozzrRktJoHwIBDuwkzfkXPx+bMfJg3pEB7zt3pMCjNWI3TqDj76Av9cA+LGcUeqVP5OPRcaTwLWEqAwYy1B576fwoxzrx+tJwESsA+BsBZm7n/2wfWPr0M8mRRRYiBj1G8FTkLcAW8gARKwikC4CzMHjp5Hh/6TMWNUV1VH3rhlSved2dryVhGw8mYKM1YCdOLbd+x0w9ET30LvIkcGWjT1Q8oUUpWFjQRcjwCFGddbc/0ZU5hx7fXn7EmABEwTCGthZubTi+h052CIl6NTohyYnqpYiO/jDSRAArYhEO7CjOSY2Xv4bJCzsXXyX9tg+9YLhRlbE3WO/ny/ACNGRQpkbOLEAejk5ecck6CVJGBjAhRmbAzUybqjMONkC0ZzSYAEwoRAWAszM55cQOe7hxDLPTLie5gv1f3W/xNe+PmiY6IcmGGlMOPz/qMq85wkYTy4ubkZ8N21/wQK5s2KeHFihQl3awfx8/NXuUaje0a1tqsg7z9z4TrevnuP4kVy23SMDx998fKV+ZQdz1++UeMmiBdb/f/eQ2eQMH4c5MqW3qb2sDPLCIS7MHP73mO8eesTpLVZM6W2ablsy7BYfhWFGctZRaQr/7vjjkVL3ANNSbxmBvX/EpGmyrmQgMUEKMxYjCpCXkhhJkIuKydFAiRgJYGwFmY0j5mC0ROhYpzUZq0/+f4ptr++DWs8Zq5cv41B4xZB/l+aFFdp06gyWjaopDvHZS/RHMtnDNQVXDFrWBhfIOk1WjesjIxpU6qRj566hNa9xuPwphmIGyemza25++AJKjTsgwUTeqNI/uw261/f6SF+3FioXqEYenrV1fXv7x+Ahau2YemaXXjx6q1aK63ozb4jZ9Fn+FxsWzYGiRPGtZlN7MgyAuEuzFhmpuNeRWHGcdfGnpa9fAVMnhbYY8bTE+jfm8KMPdmzb8clQGHGcdcmLCyjMBMWlDkGCZCAsxGI6MLM0+evUKJWN/xcrih6tK2L2LGi49CJC+g/aj5aNqioK/Di6MKM2Ld4cj8UzJtFbbF3Ph8gDgSZM3xnFycBr74TISk7erT7JprYYm/PWLQB5UoUQKoUiXHs9GV0HDAFq2f/ipxZ06nuJ87xxsadB+HVtBoqlioE38+fDdKJDJ+8FC9fv3Pa/K+2YBhefTiEMHPz9gPMX7EVl6/9h3fvPyBd6uSoWfEnVChZ0KqKScFB9fX9rDadqIHGrnZB3ff58xc8ef4KieLHQZQokdVlFGbCa+uG/7gjxkSCr6+hHfny+qPaz0wCHP6rQwvCgwCFmfCg7jhjUphxnLWgJSRAAo5DIKILM3LQ333gJLYtH2MgYKzauAcjpizDie1zECN6NIjw0aR2ORw/cxn//HtPCTmDezSHZ7QoEO+RMTNW4sTZq4gWNTKK5MuOEX1bqfPWqfPXMH7Wavx75yHK/pQPDWqUQc4sadUCN+gwHG0bV8HB4xeUt07+XJlVaNCQXs11G2Dusi3wef9BCSDiFXPk5EXlKZI+dXJ0bFED5UsUwKS53li4ajtSJkuEuLFjokalYiiQJwsGjJqPlbMGqXyncl4dOWUZjp+9ou7t1LImyhXPr8bZsvsIDhw7jzixYmDz7iPIkiEVOrWsgUJ5s5rciBev3UK9dkOhn7Ljxq376DdqHqqULYJVG/ao+1o1qIS6VUtatZmlAnL9aqXQtvHP0EQ0YVujoul8Qk+evULJ2t2wZelopEuVzKqxeXPICIS7MHPh6i3U9xqqrBY3rvhxYuHo6UvqgWnTqAq6takdshmZuTogIACzl27GzMUb1JXi4jVjVDfkDiaW7tadh/h1/GKcufCPumdQ96Zqg0ujMGPT5XGqzgaP8IC/37f42QA3IH3aALRowhwzTrWQNNZmBCjM2AylU3ZEYcYpl41GkwAJ2JlARBdmWnYfi2yZ06CXVz0Dkg+fvECZuj2wdv7Q/2vvzuNsLvs/jr9nxr7vS4tCQllulbTclXLfJEoqFcnSIsm+FgnJ1tiyrxEVIbIlQkpR6aZF0aJFSVmzr2N+j8/V75xmY8bMmTlzvuf1/Y/z/V7f63pe55w5532uRRXLXeKCmUrlS7vpTXv2HdDIyfP0XKdmLqBpvHNIpAAAIABJREFU1W2ooqKi3Pc+W+Ji3tL39Vyn5rI1UOo+1N1NxbmpRhUtf2+D5i/7QKvmDHc/rFuZdjx0z391QYnCuvjC4mrf6yWtmjvcjQKxNWL+3aCdBvV8XP+56Wq9Nv9dXVb6IhUukE9r1n+uEZPmat2isdq1d7/ubvmsuj/VWFeUu0QlihXSwUNHdf8TffXFqqmy9WasHldefqma33+7Pt20RWOnv+Vv2/Q33lH0+Nlq+WBd/fvaylq2+hN9/e3P7vGkjgXL1rr1XEYP6OB/+KstP+rBJ5/XbTdWc2HMr7/v1oCXZvrDGxv9MunVxUmWd03V8mrT4u5Ej9mInzua9tC4QZ3cOjar1m5U+96j3PdYC8eyZ8+qu2rfoLtq3xjvWuvTBxrc5kIrjowTCHowY8OrLCF8a9oAl5jaYeGJvVAsuQz0vL5Nm79X07YDNHN0T1WuUEajps7X0lXrtfKN4UmOzvlz935Z0mhDvZo0rKWK5S7V8RMn/AtXEcxk3JM1M91p5x/S+EmJpzJlzyb1epqpTJmpr6hLxglE7NulnL0eUmyWrDpz6d9DgTnCRyDy5y2KOH1axwa8pthCxcKn4bQUAQQQOIeA14OZOo27uS/6FkrEPY6fOKmr67TyhwIJpzINHPWqbLHgAU8/5r6b2aKzPds3jbe2ybjpb2nJyvUa1qeNK/r06RgXXrw55Xk3KsXKnDCki26qUdl/awsi7rnjZrdezLsffKaeg6Zo3aIxypo1iwtYvt22XVt/2C4bGTL65fl6Y2IfFxglnMpkwYovmPlk4xYXHq2cM1wli/29i/BdzXu6sKhbmwdlwcyHG75y68XYYT/q12/2jAt98ufLnejZMWTsLOXJlcON2PEdvmBm83vT/LM5brq7nZ7v/ohuvaGa/ti9z7+GT8ICixQq4B9F5HvMbJu2fUF5cufS9JFPu1E/r81fKXO30Tzly1ysb3/8VTb16cXerVWv1nX+Yl8cO8uNcopbP17k6S8Q9GDGnnDNGtVxo2PiHjv+2KPaD3bVzNG9dFXlcgGTsOF2W374xf/C8Q3X8qW5CW9kT8zF767Te2+OTHJ+IcFMwLompAo6WzBjC9D3600wE1KdSWUDJuALZgJWIAWFpADBTEh2G5VGAIF0EvB6MGML5NqXfAso4h47/9yr/zzQJV6IEnfx39kLV2va7GVaPivaTWF6euBE2Q/iNp3osYfqqVH9mm5qj43yKF/24nhlP9m8gW6sXsmFKQkXFLbwwRa2fef1F9W210vu2vaP3utCoNY9hrtQ5rZ/V1PJYoXdUhqzxvV2uxCdK5hZtPwjN2hg7Vuj/fXoM3SamzY1vO9TiYIZ3/dL38idhE8tG5hgI2sa313rnMGMhUxtW96jO2rV0P4Dh7R9x64kn6X58uRS6TjTjmxXpg69R+mPXfs0Y1RP/+LFZvPGwtVa9MpAfzlmfPz4SY18vq3//6a8vlQ//LxDg3u2SqdXBcUmJRD0YMYSUtuGbFJ013j1s7l69kQJ9Py2rs+PV8H8edSrw8P++9kL0TfEKyGSpaE5c2RXyeKFZW8wNhSvdfO7/IskEcyE5wvLgplxE6MSrU9EMBOezwda/bdAxLEjyrJyXthyRH7/paK+/1Ix5aroTLkqYetw+j/3KTZn4l8IwxaEhiOAQFgLeD2YsfVZbFTL8tej3agU3/H6glVuKo7t+GM7/yQMUfoNf8XNmrBZDHbYaBYbafLu2s/cKI4lMwZp/ttr9fOvO+NN+Yn7ZEoqmPnrwGHd2KCtons/qW79x2vZa0NU6sLi/mk8cdd1sevjBjNTh3fXdVdd4W4Rd8TM2k++VNueL8UbAWPfYSuWK+W+UyYcMZNcMGPr6eTLm1ttmjdIcTDz/vovNGTs60m+lm6+rqqebtvEPXbw8FG1f3aUjh07oYkvdom3o5SV0eaZEfp85VRlzRLlzrfvxseOn9DYgR39ZQ+d8IayZ8uqdo/cE9av3YxufNCDmblL1qjv0Olu+JStMWN722/4fKsWrfhIFxQvotkTnkvx4rwpwbNhaOXLloq3bVj1uq3dIlFxh3D5yrIXrC3cZAskZcuWRZNfW6qjx45r4bQB7s3n+EnWE0mJu9fO+W2HNHD4GUVG2tQ7+0Zqc/Ck7Nml4QMSb6PttfbTHgQQSCxw+s1pOr1gurI0bKEs97aECAEEEEAAAeXI9vcX4Iw6Mnq7bN+CsvY9qkvrB9zUnQ8+/lK9Bk9xi9e2bnaXa7p9p7IRGHfUus6t0dL9hQluxoTNnLAZDffVv8XtJGQjWu57vI9bn8UCg4fbDXTX1a1VQwcOHnHTk2yR38tKX5jkiBm7ly3yu+Td9e67pW96ka3R8miXFzV/an/3A/vSVR+74MgXzNi6KtWrVdBjTerr6NHj+m3nbv9UJhsZU/vBbmp892167KH6+uzzrWr37Cj/D/vnG8zMf/sDt3OVjbbxHUlNZYo7YiYlz5+jx064tVtPx8RoRL+2ypM7p7ssMjLSTcGy0KZWo85q3qiObNSRLULcpE1/Fy7Zkh2+w74v31vvZtWpeW1Kbss5ARIIejBj68nYcClbACruYQsfPduxmYoXLRigpv5djKWCtuCvzWH0HecaMWOPjerfXrVuusqd7pszaC9qGxq39+CJgNaPwkJHoGffCMXEWfzXal6mjPRES3ZlCp1epKYIBE4gcuErilg8Q7F3NtOZBs0DVzAlIYAAAgiErEDhfNkztO4ZHcxY42xHpN4vvhxvDZQOj93rFvrNEvV3MGXfqWzkjP3AbYftPtS/2yNu56V2vV7S6o82uf+3735NGv7HrRFjh4UYg0a/7r/ukouKa8KQzm4UzNm24LapUS07DXZbPvvChTNnYtW571gX7Nhh3zXtnr6tpG3KVN9h09wGNE82a+CmOzVq9ffiv9YGG21i3yN99bfAyTeiZPqcd9xuT74ZIL6wavXcEUl+l/WFMOuXjJNNQ7LDtyFO3DVmLJixe9hapyk5fGujJjzXvvv6pmGt/+xrte892t8OC2R6tG3i7ydf3RdNH6Cyl16YkttyToAEgh7M+Nphc+F27Nyt4ydPujl/hQvmC1AT4xdjiawt+uR74SS3xowltpYA+xa02vbzDt3VopdmT+jjFlliKlO6dFNIFLr5G2npsigdORyhiCipZPFYNWsSo1yM4A+J/qOSCARaIOuSGcq6dKZO1XtYp+o3C3TxlIcAAgggEIICGT2Vacyur9Tu1w9VIUcB1chdIlmxrcf26ZOju/RU0UoaUyrpLZSTLeT/Tzh85Jhbd6V40UJJbqpiP8j/uWe/cmTLFm+KjV1uiwXbTkjFihRIdDu7znZostkKtiV1Wg7bEcoWwrVZGgkPm05la7nY91Db9Smpx20R3kIF8vk3rUlNXaw9j3cb6hYdDvQOxCmpj42osRDHlvewsCzuYYsDWxttYAJHxgpkmmAmo5r9z65MvVS5Yhm9NGWe3l71sX9XJks8LTH1zXd8efbbbmEqC2JsONiIiXO16sP/acXsYe4FSTCTUT3HfRBAAIHMLUAwk7n7h9ohgAACwRDI6GDGN2LmfNvatmgljU5jMHO+9wzn831bWduOSdX/lTl2srS1dGyB5Li7T4VzH2V024MSzGz86jsNGTNLI/u3k61y/eWWbWdtd3Tv1omSvLQgWUI5ZtoCTZixyBVjKeGk6C6qVunvnZ+ix83WnMVr3EJVdpw8eUo9B09x+9HbYcPrRvZr61bvtoNgJi29wbUIIICAdwQIZrzTl7QEAQQQCJRARgczC/76SS/9+eV5V79hwdLqUCx8F64/b7AAXGDr3hw6clT/vfmaAJSW9iLs+27RwgV0TdXyaS+MEs5bIEjBzPeKHj/bLXi0eMVHsnl2ZzuGPPtEQIMZ331suNy+/QdVoljhJIfaJayPLZZ05MgxlShWKN7QNoKZ837OcQECCCDgSQGCGU92K41CAAEE0iSQ0cFMmirLxQggEDSBoAQzQWttOtyYYCYdUCkSAQQQCEEBgpkQ7DSqjAACCKSzAMFMOgNTPAIeEQh6MGOLC239frsbMmVruNh8O9u+LFfO7HrgrtvStLBSRvQRwUxGKHMPBBBAIPMLEMxk/j6ihggggEBGCxDMZLQ490MgNAWCHszY/vG21/2SmYMVExOj/z7QxW1TZsc9d9ys/t0fydSyBDOZunuoHAIIIJBhAgQzGUbNjRBAAIGQESCYCZmuoqIIBFUg6MHMA0/0U80b/+X2i7cFh2x/+HmT+7lwpuNzY7R+yVj/vupBlTrLzQlmMmOvUCcEEEAg4wUIZjLenDsigAACmV2AYCaz9xD1QyBzCAQ9mKnTuJtaNb1T99a7WUPGztLyNZ9q9dwROnrshKrXfcKFNBXLXZI5tJKoBcFMpu0aKoYAAghkqADBTIZyczMEEEAgJAQIZkKim6gkAkEXCHow81TPkTpzJlZdn3xALToMUs0bqrnpSz9u36k7mz2jJTMGqXSpkgGHsm2w9x84rGJFCsTbZel8b0Qwc75inI8AAgh4U4Bgxpv9SqsQQACBtAgQzKRFj2sRCB+BoAczGz7fqhYdB/vFfUHM8IlzNOut1fpo4Whly5Y1YD0SGxur8TMWaey0Ba7MQgXyaszAjqp6Rdkk77Fq7Ua17z0q0WMbV0xW9mxZRTATsK6hIAQQQCCkBQhmQrr7qDwCCCCQLgIEM+nCSqEIeE4g6MGMiX7/02/avPUnXV3lcpW6sLhDfm3+uypauKBq33JNQNE3bf5eTdsO0MzRPVW5QhmNmjpfS1et18o3hisyMiLRvVau/Z+eGTjZTamKe5S6sJgbaUMwE9DuoTAEEEAgZAUIZkK266g4AgggkG4CBDPpRkvBCHhKIFMEMxkpOmzCHG354RdNGdrN3XbXnr90630dz7qWjQUz/YZN19q3RidZTYKZjOy9zHWvzd9IS5dF6cjhCEVESSWLx6pZkxjlyp256kltEEAgYwQIZjLGmbsgkJkF9p0+rod2vauvT+5TjGJVOCqHBhWqoXq5S2fmalO3dBQgmElHXIpGwEMCQQlmNn71nYaMmaWR/dtp0fKP9OWWbWclje7dWrly5ggYue36VDB/HvXq8LC/zCtrttC4QZ10y/VVE93HgpkOvUerQZ0blT17Nl1Ttbzq1Kzu3ymKYCZgXRNyBfV7IUoxZ+KPsipdOlYtH44JubZQYQQQSLsAwUzaDSkBgVAXuP+Pd/TR8T/iNSNbRKR+uqRZqDeN+qdSgGAmlXBchkCYCQQpmPle0eNna3jfp7R4xUf6asuPZ2Uf8uwTAQ1mWnUbqvJlS6lL6/v996xet7X6dm2herWuS1SPr7b+5HaKyp83t37/c6/mLHpPTRrW8gc7h46dDrOnDM01gR2/S0NHxSbCyJFdGtQv8ZQ41BBAwPsCsQum6cxbryjy7uaKaNjS+w2mhQggkEjg4q2v6MCZk4n+f13pe1QpZ2HEwlAgb84sYdhqmowAAucrEJRg5nwrGcjzbcSMLfjbs31Tf7HnGjGT8N7z3/5AvV98WV+smupGzRw6eiqQ1aOsEBHYsdOCmcSVdcFM3xBpBNVEAIGACsQumK4zC19RZAMLZloEtGwKQwCB0BC4+NsZZwlmGqpSDoKZ0OjFwNYyb67AbWIS2JpRGgIIZCaBoAcztuvR+BkLZVOW4m6L3b3/BOXOnVN9OjcPqJetMfPttu2aFN3VlZvcGjMJb772k6/Uuscw/W/5JOXIno3FfwPaO6FVGFOZQqu/qC0C6S3AVKb0FqZ8BDK/AFOZMn8fZXQNmcqU0eLcD4HQFAh6MNOu10s6ExursQM7xhNc/eFGtXt2lNYtGqv8+QK3muo/uzL1UuWKZfTSlHl6e9XH/l2Zps95RxYW2a5Ndry+YJXKl71YV1x+qQ4cOqxuz09Q1ixRenlED/c4a8yE5hM/ELVm8d9AKFIGAt4RIJjxTl/SEgRSK8Div6mV8+51BDPe7VtahkAgBYIezNzRtIcebHCbmjWqE69d+w8c0r8btNPcSX1dKBKoIzY2VmOmLdCEGYtckbaw8KToLqpWqZz7d/S42ZqzeI02LJvg/j184hxNnfW2//ZVrijrRvdcVLIowUygOoVyEEAAAQ8IEMx4oBNpAgIIIBBgAYKZAINSHAIeFQh6MNOi42DlzJFd4wd3ike8bPUnsvVg3p09VBeUKBJw/uMnTmrf/oMqUaywIiPPvVirnbt771/KmzuXCuTPE68ujJgJeNdQIAIIIBCSAgQzIdltVBoBBBBIVwGCmXTlpXAEPCMQ9GDmlbnL9eLYWer8xP265bqqKlIovz7Z9I1emvKmQ14yY3CywUkwe4NgJpj63BsBBBDIPAIEM5mnL6gJAgggkFkECGYyS09QDwQyt0DQg5nTMTHq3n+i25I67mE7J40b3FmVK5TO1IIEM5m6e6gcAgggkGECBDMZRs2NEEAAgZARIJgJma6ioggEVSDowYyv9V9+s01bf9iuI0eP65KLiuvaahWVJ3fOoOKk5OYEMylR4hwEEEDA+wIEM97vY1qIAAIInK8Awcz5inE+AuEpkGmCGeM/dvyksmSJcrsehcpBMBMqPZU+9dz0RYS2fBOp3HlidW31MypZIn3uQ6kIIJD5BQhmMn8fUUMEEEAgowUIZjJanPshEJoCQQ9mbCrTpFeXaNaCldr31yEN7tlKd9a+Qa17DFO2bFk1qn/7TC1LMJOpuyddKzd5WpR+/TX+wtF3N4jRVVVj0/W+FI4AAplTgGAmc/YLtUIAAQSCKUAwE0x97o1A6AgEPZhZs+5zPdVzpO6542Z9ummL2rZs6IKZFe9/pk59xmjd4rHKnzd3wEVPnjyl/QcOq1iRAoqIOPeuTOe6OcFMwLsmJAo8fEQaMiyLEj5z8uWXunY4HRJtoJIIIBBYAYKZwHpSGgIIIOAFAYIZL/QibUAg/QWCHszYyJiLLyimXh0eVqtuQ3Xnf29wwcwfu/epVqPOmje5nyqWuyRgErGxsRo/Y5HGTlvgyrRFhscM7KiqV5RN9h4jJs3VlNeXav2SccqXJ5c7n2AmWTZPnvDl19K8N7MkaltUlNSnF8GMJzudRiGQjADBDE8RBBBAAIGEAgQzPCcQQCAlAkEPZm5r1ElPNm+gRvVrJhnMLHploMpeckFK2pKiczZt/l5N2w7QzNE9VblCGY2aOl9LV63XyjeGn3Nb7gXL1urZIVPdPQhmUkTt6ZMYMePp7qVxCKRKgGAmVWxchAACCHhagGDG091L4xAImEDQg5mOz43RXwcP6+XhPdy6Mr4RM6OmvqmJMxdr44rJyp4ta8AaPGzCHG354RdNGdrNlblrz1+69b6O5xyZs+HzrWrzzEg9362luj4/nmAmYL0R2gWxxkxo9x+1RyDQAgQzgRalPAQQQCD0BQhmQr8PaQECGSEQ9GDm222/6p5He7stsg8dPqp/XXmZTsec0Qcff6GOj9+nxx+qH1AHC1YK5s/jpk75jitrttC4QZ10y/VVE93rl9/+1H2P99HI59uqeJGCatCyF8FMQHsktAtjV6bQ7j9qj0AgBQhmAqlJWQgggIA3BAhmvNGPtAKB9BYIejBjDbRwxkbIfLppq44eO67Ly1ykh+75r1sQODIy9QvzJoVn69iUL1tKXVrf73+4et3W6tu1herVui7eJQcOHtH9T/RV8/tvV5OGtfTDTzsSBTP7Dp1M7z6ifAQQQACBEBCIWDhdEYtmKPauZopt0CIEakwVEUAAAQTSW6BQ3mzpfQvKRwABDwgEPZhZ/9nXOnj4iOrUvNZx2uK8adklKbk+sREztuBvz/ZN/aeebcTM8jWfqnPfcWrWqI7bfWffgUNavGKdHmhwmxrVv8UtSnz8ZExyt+RxBBBAAIEwEDj95jSdXjBdWRq2UJZ7W4ZBi2kiAggggEByAjmyRSV3Co8jgAACCnow07nvWB0+ckyTortmSHfYGjPfbtvuv9+51pjZ9vMOrfpwo79ee/Yd0GvzV+qJh+90o2vKXnohuzJlSK9xEwQQQCDzCzCVKfP3ETVEAAEEMlqAqUwZLc79EAhNgaAHM+NeWaiF73yo5bOiM0Twn12ZeqlyxTJ6aco8vb3qY/+uTNPnvKNVaze6XZsSHklNZWK77AzpNm6CAAIIZHoBgplM30VUEAEEEMhwAYKZDCfnhgiEpEDQgxkbhVL3oR4a3reNbqpRJd0RbarUmGkLNGHGInevXDlzaFJ0F1WrVM79O3rcbM1ZvEYblk0gmEn33uAGCCCAgHcECGa805e0BAEEEAiUAMFMoCQpBwFvCwQ9mLE1X5at/uSsyusWj1X+vLkD3gvHT5zUvv0HVaJY4TQtMMyImYB3DQUigAACISlAMBOS3UalEUAAgXQVIJhJV14KR8AzAkEPZmza0K+/7zoraOOGtZQ9W9ZMC04wk2m7hoohgAACGSpAMJOh3NwMAQQQCAkBgpmQ6CYqiUDQBYIezARdII0VIJhJIyCXI4AAAh4RIJjxSEfSDAQQQCCAAgQzAcSkKAQ8LJApgpmPNmzWm0vf10/bdzpq2+2o8d21dHWVyzM9PcFMpu8iKogAAghkiADBTIYwcxMEEEAgpAQIZkKqu6gsAkETCHowY6FMq25DHcCN1Sspa9YsWrPuc/fv5zo10wMNbgsaTkpuTDCTEiXvnnP8pPTdt1KB/JEqVeqMdxtKyxBAIFkBgplkiTgBAQQQCDsBgpmw63IajECqBIIezNzVvKf2HziklXOG+9eSOXHylJ4ZOEnL12zQ/5ZPUo7s2VLVuIy4iGAmI5Qz5z2WvROh9Z9G+SuXNavUslmMLrowNnNWmFohgEC6ChDMpCsvhSOAAAIhKUAwE5LdRqURyHCBoAczdzTtof/efI06tWoUr/GbNn+vpm0HaP7U/ipf9uIMh0npDQlmUirlrfNOnpZeGJglUaOKFYtV29Yx3mosrUEAgRQJEMykiImTEEAAgbASIJgJq+6msQikWiDowczAUa/qx+07NWVot3iN2PbzDt3VopfemzdSxYoUSHUDz3bhyZOntP/AYVd2RETEOcs/HROjPfsOKPZMrIoVKaioqEj/+QQzAe+akCjw5+2Renn6P88DX6Vt1EzvZ06HRBuoJAIIBFaAYCawnpSGAAIIeEGAYMYLvUgbEEh/gaAHM/OWvK8+Q6fpiYfvVOGC+f0tthEz76//Qh0fv8/9X66c2dWw7k1pFomNjdX4GYs0dtoCV1ahAnk1ZmBHVb2ibJJlv7FwtZ4fMcP/WPGiBTXqhfaqVL60+z+CmTR3SUgWsP8vacSoxCNmcuaUnulGMBOSnUqlPSEQuW2zsi6cFpS2RO79QxH7dim2UDGdKVwiKHU4ffcjiilzZVDuzU0RQAABBBILEMzwrEAAgZQIBD2Y6fjcGL37wWfJ1vWikkW1fFZ0sucld4JvitTM0T1VuUIZjZo6X0tXrdfKN4YrMjLxyJnFK9apQP48urpKednIma79xun06Ri9PKIHwUxy2B5/fFB0Fh07Fr+RNa49o3q3swiwx7ue5mVigajPP1L2iX0zcQ3Tt2onnnxeMVWuT9+bUDoCCCCAQIoFCGZSTMWJCIS1QNCDmYzWHzZhjrb88It/6tSuPX/p1vs6at7kfqpY7pJkq9P1+fE6cyZWw/u2IZhJVsvbJxw8LC1cFKXfd0rZskWoSuUzqlWTUMbbvU7rMrtAxOEDivz958xezXSr35kLSis2T750K5+CEUAAAQTOT4Bg5vy8OBuBcBUIu2DGgpWC+fOoV4eH/X1+Zc0WGjeok265vupZnweLVnyk1R9u0nc//qrhfZ9ShctKuXP/2J9gyES4PpPCtt3nXp8obFnCpOH0fph09Hk0M1axihDPjPMg41QEPCPAnoye6cpUNiTpZ0CJgjlTWR6XIYBAOAmEXTDTqttQlS9bSl1a3+/v5+p1W6tv1xaqV+u6s/b9yMnz9L8vv9OuPfvVv/ujurZaBXduTAx/hsPpBZO4rfR/OPc/vR/OvZ9020+dPqOsWRIvDI4UAgh4X4BI1vt9fO4WJv0MiIrimRHuzwzaj0BKBMIumLERM7bgb8/2Tf0+KRkx4zt54szFevXNFVr71mj3Xyz+m5KnGecggAACCCCAAAIIIBB+AkxlCr8+p8UIpEYg7IIZW2Pm223bNSm6q/M63zVmVrz/mTr1GaMvVk1VlqgogpnUPOu4BgEEEEAAAQQQQACBMBAgmAmDTqaJCARAIOyCmX92ZeqlyhXL6KUp8/T2qo/9uzJNn/OOVq3dKNu1yY5x09/SjddWVvmyF2vv/oOyETc5s2djV6YAPPkoAgEEEEAAAQQQQAABLwsQzHi5d2kbAoETCLtgJjY2VmOmLdCEGYucYq6cOTQpuouqVSrn/h09brbmLF6jDcsmuH/3GjxFb73zoV/czhvcq5Vs+247mMoUuCcjJSGAAAIIIIAAAggg4CUBghkv9SZtQSD9BMIumPFRHj9xUvv2H1SJYoUVGXnuRblOnjylXXv/Up5cOVUgf554vUEwk35PTkpGAAEEEEAAAQQQQCCUBQhmQrn3qDsCGScQtsFMoIgJZgIlSTkIIIAAAggggAACCHhLgGDGW/1JaxBILwGCmTTKEsykEZDLEUAAAQQQQAABBBDwqADBjEc7lmYhEGABgpk0ghLMpBGQyxFAAAEEEEAAAQQQ8KgAwYxHO5ZmIRBgAYKZNIISzKQRkMsRQAABBBBAAAEEEPCoAMGMRzuWZiEQYAGCmTSCEsykEZDLEUAAAQQQQAABBBDwqADBjEc7lmYhEGCBsA1mbKel/QcOq1iRAoqIOPeuTKdjYrR77wEVKpBX2bNljdcFBDMBfkZSHAIIIIAAAggggAACHhEgmPFIR9IMBNJZIOyCmdjYWI2fsUhjpy1wtBa2jBnYUVWvKJsk9eTXlmjk5Hn+x+qdM75fAAAgAElEQVTUrK4+nVsof77c7v8IZtL5GUrxCCCAAAIIIIAAAgiEqADBTIh2HNVGIIMFwi6Y2bT5ezVtO0AzR/dU5QplNGrqfC1dtV4r3xiuyMjEI2fmLlmjiy8opqpXXKZff9+lRzsP0aON66nFA7cTzGTwk5XbIYAAAggggAACCCAQSgIEM6HUW9QVgeAJhF0wM2zCHG354RdNGdrNqe/a85duva+j5k3up4rlLkm2J3q/+LJ27Nytl0f0IJhJVosTEEAAAQQQQAABBBAIXwGCmfDte1qOwPkIhF0w0/X58SqYP496dXjY73RlzRYaN6iTbrm+6jntTp2OUZ3GXVWv1vXq0vp+gpnzeaZxLgIIIIAAAggggAACYSZAMBNmHU5zEUilQNgFM626DVX5sqX8wYq5Va/bWn27tlC9Wtedk7HP0Gl6e9UnWjpzsFs02I6YM7GppOcyBBBAAAGvCZyOiVWWqHMvKO+1NtMeBBBAAIGzC0QlsVQCXggggEBCgbALZmzEjC3427N9U79FSkbMjJv+lsZOf0uzJ/RR5Qql/df+uf84zyoEEEAAAQScQKxiFSGCGZ4OCCCAAAJ/CxQvmAMKBBBAIFmBsAtmbI2Zb7dt16Torg4nuTVmzpyJ1bAJb2jO4jV65aWndcXll8ZDZVemZJ9jnIAAAggggAACCCCAQFgKMJUpLLudRiNw3gJhF8z8sytTL1WuWEYvTZmnt1d97N+Vafqcd7Rq7Ua3a5Mdzw6ZqgXL1mrCkC4qc0lJP3DxogWVJSqK7bLP+ynHBQgggAACCCCAAAIIhIcAwUx49DOtRCCtAmEXzMTGxmrMtAWaMGORs8uVM4cmRXdRtUrl3L+jx812o2M2LJvg/l2ncTf9tnN3Iue3Xx2iSy4qTjCT1mcg1yOAAAIIIIAAAggg4FEBghmPdizNQiDAAmEXzPj8jp84qX37D6pEscKKTMOiXExlCvAzkuIQQAABBBBAAAEEEPCIAMGMRzqSZiCQzgJhG8wEypVgJlCSlIMAAggggAACCCCAgLcECGa81Z+0BoH0EiCYSaMswUwaAbkcAQQQQAABBBBAAAGPChDMeLRjaRYCARYgmEkjKMFMGgG5HAEEEEAAAQQQQAABjwoQzHi0Y2kWAgEWIJhJIyjBTBoBuRwBBBBAAAEEEEAAAY8KEMx4tGNpFgIBFiCYSSMowUwaAbkcAQQQQAABBBBAAAGPChDMeLRjaRYCARYI22Dm5MlT2n/gsIoVKaCIiIhkWW2b7ZgzZ5QlKireuQQzydJxAgIIIIAAAggggAACYSlAMBOW3U6jEThvgbALZixgGT9jkcZOW+CwChXIqzEDO6rqFWXPibd4xTqNmDxXq+eOIJg576cZFyCAAAIIIIAAAgggEH4CBDPh1+e0GIHUCIRdMLNp8/dq2naAZo7uqcoVymjU1Plaumq9Vr4xXJGRiUfObN/xpx7vOlS/7dyt4kULEsyk5lnGNQgggAACCCCAAAIIhKEAwUwYdjpNRiAVAmEXzAybMEdbfvhFU4Z2c1y79vylW+/rqHmT+6liuUsSEZ6OidGefQe0+sNNmvL6EoKZVDzJuAQBBBBAAAEEEEAAgXAUIJgJx16nzQicv0DYBTNdnx+vgvnzqFeHh/1aV9ZsoXGDOumW66ueVXDZ6k8UPX42wcz5P8e4AgEEEEAAAQQQQACBsBQgmAnLbqfRCJy3QNgFM626DVX5sqXUpfX9fqzqdVurb9cWqlfruvMOZo6fjDlvdC5AAAEEEPCmQExMrKKikl9Q3putp1UIIIAAAgkFcmSLv3EIQggggEBSAmEXzNiIGVvwt2f7pn6PtIyY2XvwBM8sBBBAAAEEnEBsrJSCjf7QQgABBBAIE4HC+bKHSUtpJgIIpEUg7IIZW2Pm223bNSm6q3NLbo0ZHy5TmdLyNONaBBBAAAEEEEAAAQTCT4CpTOHX57QYgdQIhF0w88+uTL1UuWIZvTRlnt5e9bF/V6bpc97RqrUb3a5Nf//6GavTp2P0znufuu2yl78erYjICGWJ+ntY4u97j6XGnWsQQAABBBBAAAEEEEDA4wIEMx7vYJqHQIAEwi6YsaBlzLQFmjBjkSPMlTOHJkV3UbVK5dy/o8fN1pzFa7Rh2QT37x9+2qEGLXvF476z9g0a3LMVwUyAnoQUgwACCCCAAAIIIICAFwUIZrzYq7QJgcALhF0w4yM8fuKk9u0/qBLFCisyMvULNTJiJvBPSkpEAAEEEEAAAQQQQMALAgQzXuhF2oBA+guEbTATKFqCmUBJUg4CCCCAAAIIIIAAAt4SIJjxVn/SGgTSS4BgJo2yBDNpBORyBBBAAAEEEEAAAQQ8KkAw49GOpVkIBFiAYCaNoAQzaQTkcgQQQAABBBBAAAEEPCpAMOPRjqVZCARYgGAmjaAEM2kE5HIEEEAAAQQQQAABBDwqQDDj0Y6lWQgEWIBgJo2gBDNpBORyBBBAAAEEEEAAAQQ8KkAw49GOpVkIBFiAYCaFoIcOH9XpmBgVzJ833hUEMykE5DQEEEAAAQQQQAABBMJMgGAmzDqc5iKQSgGCmWTgjh47rh4vTNTqjza5M6tcUVajX2ivIoXyu38TzKTymcdlCCCAAAIIIIAAAgh4XIBgxuMdTPMQCJAAwUwykFNeX6q5i9do5uheypkjm558eoRKlyqp/t0fIZgJ0JOQYhBAAAEEEEAAAQQQ8KIAwYwXe5U2IRB4AYKZZEzve7yP6tSsrscfqu/OXL7mU3XuO06b35umiIgIRswE/jkZMiVu/kZauixKRw5HKCJKKlk8Vs2axChX7pBpAhVFAAEEEEAAAQQQSEcBgpl0xKVoBDwkQDCTTGdWr9taL/R41IUzdnzz3c9q1Kqv1i0eq/x5cxPMeOjFcL5N6fdClGLORMS7rHTpWLV8OOZ8i+J8BBBAAAEEEEAAAQ8KEMx4sFNpEgLpIEAwcw7U2NhYVbq1pcYN6qRbrq/qztz28w7d1aKXVr4xTCWLF06HLqHIUBD4dYfU78VTiaqaM4c0ekjWUGgCdUQAAQQQQAABBBBAAAEEEMgEAgQzyXSCjZgZ8PRjqn3LNe7MhCNmMkEfUoUgCBDMBAGdWyKAAAIIIIAAAggggAACHhQgmEmmU22NmdtvvVaPNannzmSNGQ++ClLZJKYypRKOyxBAAAEEEEAAgTARYCpTmHQ0zUQgjQIEM8kATn5tieYted/typQrZ3a17jGcXZnS+KTzyuUs/uuVnqQdCCCAAAIIIIBA+ggQzKSPK6Ui4DUBgplkevTI0ePq+vx4ffDxF+7MSuVLa/SADipWpID79+97j3ntOUF7EEAAAQQQQAABBBBAIAACBDMBQKQIBMJAgGAmhZ184NARnTp1WkUK5Y93BcFMCgE5DQEEEEAAAQQQQACBMBMgmAmzDqe5CKRSgGAmlXC+ywhm0gjI5QgggAACCCCAAAIIeFSAYMajHUuzEAiwAMFMGkEJZtIIyOUIIIAAAggggAACCHhUgGDGox1LsxAIsADBTBpBCWbSCMjlCCCAAAIIIIAAAgh4VIBgxqMdS7MQCLAAwUwaQQlm0gjI5QgggAACCCCAAAIIeFSAYMajHUuzEAiwAMFMgEEpDgEEEEAAAQQQQAABBBBAAAEEEEipAMFMSqU4DwEEEEAAAQQQQAABBBBAAAEEEAiwAMFMgEEpDgEEEEAAAQQQQAABBBBAAAEEEEipAMFMSqU4L+QFDhw6onUbNuv2W69VREREqtsTE3NGJ06eUq6c2VNdxk/bd2rX3r9Uo1rFeGWcOROrP/fsV/68udNUfqorxoUIIOAEYmNjtWffAeXMkV15cudMF5WPN36j4kUKqnSpkjp1OkYxMTHKkT1bkvdK7vF0qSCFIhDCAuf6e/rj9p3as/eArq1WIWRaePzESUVFRipr1iwhU2cqigACCCCQcgGCmZRbceb/C/y2c7fqNO6WyOPm66pq/OBO53Sya4dPnKMXe7dWlqioDDX9+tufdf8TffXFqqlpuvf6z77WY12j9dHCMSqQP0+q2jBj7nKtWfe5Xh7Rw11/6tRpTZy5WONnLPSXV+WKsurf7RFdVvrCFN2jx4CJeqxJPZUrfVGKzuckBEJV4HRMjKrWetRffXve2zHl9aVnbdLyWdH+960PF45Wwfx53bn2frT/wGH17/6I+/fhI8f00pR5en3BKn9Zl1xUXG2a3636/70+oGQPtxvoguKH7vmPxry8QKs+/J8WvPyCknqfjPt4QCtBYQh4TCAlf0+nv/GOPtzwlaYMTfxZJjNwvL/+C3215Ue1faShvzpN2w5QlYpl1P2pxpmhitQBAQQQQCDAAgQzAQYNh+J8wYx9oClRrJC/ybly5lDxogXPSbDl+1903+N99Pm7UzL8V59ABTP2xe2X3/5U+csuTnXAkzCYGTZhjmYvXK3hfdvo2moVte+vQ4oeN0trP/lKK98Ypvz5cif71LqyZgtNG/F0SP0CmGyjOAGBswjYl6/6zZ7RIw/W1X31a8pGxB04eNidvWTlei15d70mDOns/h0VFanIyEgXzBQqkFcN696kzk/c7x6z195fB/8JZix0/f2PPRrw9GO68vJLtXvfAb296mPZ+8fI59sGtD/iBjO79vylQ4ePqOylFyqp98m4jwe0EhSGgMcEUvL3NLMHM6/NX6l33vtUM0f39PeOjbTNmTO7ShT953OXx7qO5iCAAAJhLUAwE9bdn7rG+4KZd15/URdfUCxRIYPHvK4sWaK07eff9dkX3+rWG/6ldo/e4861UMa+dFQsd4kbktuzQ1NVKl9aL89+W7PeWqVDh4+p1k1X6Zm2D7kw4oefdujpgZN0R60aevXNd93IEvtClS1bVk2csUj7DxzSw/fVVqumd7p62DSjs5WVMJjZ9svvGjBypj7ZtEVlL7lAbR+5R7VvucaVc+jwUb04brb7YGRHtUqX6fKyF6tr6wdk1/UcOFmvj+vtvvAdO35S46a/pRXvb9DRY8dV/V8V9Ey7h1x48/zwV7Rz1z5Xhjn06viwm6YUN5ixEOamu9tpUM/HdVftG/2eNmz5vw90UeOG/1Gb5g3Ud+h01biqoureVsOd8966Ta5+Q3o94X71nzrrbV1UsqgK5MujhnfcpAcb3KaNX32nEZPmaesP23VRySLO6p47bnZtOFvbrf+sb7b9ssMFQ9dfc6WefqqJJr++RKs/3OSCn/aP3qvyZS929bA+jh43WzY0/L83X+3qW7lC6dQ9ubgKgfMQsKDFXvv31rs53lX2XjJrwSotemWg//9971v2erHRZe/NG6liRQrEC2Y+2rBZrboN1fyp/f3Pb18B9nq0aUYWAL04dpZWvP+Z8ubJ6UKhVk3ru5B28Yp1ev/jL9xrfNGKdapwWSn3i7dvyuL2Hbv0wsgZsvvYKJzdew+o4+P3uREzS1d9rP99+Z2e69QsyfdJq7/vcd/rf8TEue61fFXly9W7UzNdXubv0XKN2/R37zdWR3sfsveCNi3uVs4cSU+TOg9yTkUgUwuk9O+pBTMLl3+oKy6/1L1OLLB9rnNz3Vi9kmufjZh79c0V7jVqr9W2LRuq5g3/cn/vbUTd0pXr3ai7BxrcqnvuuMW9tuxvZ6kLi+vAocNat+FrNah9o+YuWaPenZu5zzl27N77l9r2fEnRz7WWjYqZ9sYy/bl7v7t/47tr6cnmDWTvE03bvuB+oPFd98qoZzRqyptuBK39DT/XZx3f5yYb4Wfvg3Y82vgO3X/XrZm676gcAgggEO4CBDPh/gxIRft9X3CaNKyl/Hn/mcpT6qJiLlh48ukR7st6x8fv1WWlL9LwCXNcoGCByoJla/XskKlu+LCFNxZ2WKDx4tjZ6tbmQZUsVkgvTXlTF5QorFH927uhvA8++bz+e/M1anRnTX3xzTaNnbbABTv2hez06Rh16z9eS2YMcus02Iegs5UVN5ixDzV1H+rufhFvfv/t+nTTFo2d/pbmTe7nyu45aLL7EmQfxuxD2bhX3nJhkNUpYcDT+8WX9dGGr9TukXvcuW8u/cB9EYqIjND3P/7myjt2/IT6RE9zH+zMIW4wY+GJ/XK+bvFY94Uu7tFv+Cvau/+Au6+dY6GMudthllaOTX34/qffdHfLZ90Q5yvKXeJGMtkaGXUf6uE+xN1zx036+dc/9PnXP6hn+6bnbLuv/zo/0UilLy6pPkOnuakVjz9U34U0ds+8eXJpcM9W7gOkOXZpfb9uqlFFy9/boPnLPtCqOcPTtI5PKp6WXBKGAqkJZux19tQzI1WxXCn16vBwvGDGpkLNf/sDvf3qkLNqdu8/wQWd9jre99dBDRr9uj9csS970eNnq+WDdfXvaytr2epP3PuFva/Y9Ku7mvdUoQL53GspW9Ys6jVkih5tXM8FM3HfE5J6n1z4zof+6Y/2xatBy16unJuvq+JC6w2fb9XyWUPd2lQ2es7C5tbNGrh/d+s/wY3Gs9coBwJeFkjp31Pfa7V1s7tUpWJZN2L1223btXruCG3a/L1s2pC9ZspccoE2bf7Bfdawv732A4n9uNTpiUbub1y/YdP1ZLMGurP2De6zzwcff6E6Na9V1SvLqnKFMpowY6EuuqCYC1ztsNf5vCXvu9DYAiH7HHTxBUX1645davfsKI0b1Mn9uDNi0hx9snGLC1ztsPC1fe9Rrq5PPHznOT/r+D433XZjNRfG/Pr7bg14aWaSnzG8/FygbQgggECoCRDMhFqPZYL6+oIZG9mSN3cuf43KlblILe6/3X04uapyOfelwQ4LKuyXJwsQkhqib7/u2i/LfTo3d+evXPs/deg9WusWjdX2HX+6YGbze9PchyA3IqVua82Z2FdXlr/Und/wkWfVrFEdNz3hXGVZvX1rzNgHHvtlfOWc4S4MssO+NNkXFxvdc3WdVhr4zONqUOfvESzjXlmorT/8kiiYOXUqRtfc3kov9HjU3T/hYb+Obfzqe+3as999CMuXN5fGDuwY70vY8jWfqnPfcfp6zfRE19u6EmvWf+6+2J0rmLELE05lsmvfWLRaHywYFS8k8Y0KSKrtFo4l7L+Rk+e54MfqbYeN1HnuxZe19q3RbqSQTRsZ1qeNe8w+vFp/vTnledenHAikp0BqgxkLTJt3GCQb9Tdn0Rr/VKb+I2bo1993aVJ01ySr7Xv/ie79pBvFZ4f9Sv7Jxm/c+1vC6RE29cCmW9l72Q8/71Cz9gP9IbJdG3cqU9xgJqn3ybiPj5r6ppau/Fi2bo4de/cf1M0N22vMwA669YZq7r3g1TG9VK1SOfe4jRAqUjC/C785EPCyQEr/niZ8rdpC37fc00HLXhuiHTv3uHXkJgzpouuvucI/ZdlGy9jfewt0bRStHRbk2oL99uOJ/e20kaQ2Cs53vPvBZ+r43Bh99s4kN6rGPmc0bljLjY6xY9vPO/TNd79o976/NG32Mj32UH01b1RHSU1leqrnSH8wcz6fm+w+Nir3+e6PuPcHDgQQQACBzClAMJM5+yVT1yq5qUwJv9jbB6XhE+e6LxFJfeGwDwz267Mv2Nj5517954EubjrByZOn4gUzNtKlSq1H9MbEPv4hvvbL1h21rnO/Zp2rLAsNfMHMouUfacSkuS5c8B02MsSmMHVq1Ui3N+ke7wvU2YIZ+5XLvnj5RuzE7Tj7tbzr8+PdL1326/x3P/6mHNmzug978UfMfK+H2w1wX94SriVjv87tO3Aw2REzdt+EwYx9GbPDpm7EPeyD5NnaPrzvU4mCmUmvLv57pNL/BzO2k8yjnV90QZJNM1u1dmOiaR82HNs3JDxTP5mpXEgLpDaYsZFpFswWLVzAjWDxrTGT3IgZX9BiI2psdJwdtpaNjWzbsGxComDG1oW59b6OWjV3uBuV13/ETHee70htMGOvOzts1JrvuK1RJxeG2xe+hMGM/Vp+OuaMP/wO6U6n8gicQ8B+CEnJ39Ok1pixH31e6PGIbrvxKg0a87reWLja3clGwNgIUt+6VjYKNu7uaTYlMqm/nXatfYa5sUE79e3awr1nPPBEP//IFQt1Z85bIRvZcsnFJdxaVg/fW9uNuEsumDmfz01Wjzua9lDblvf4A2WeRAgggAACmU+AYCbz9Ummr1FaghmbAnDvY89p44rJyp4tq2urjXi58drKbv0WO3y7HtkaEH/u3hcvmLHtLyvf1vKswcy5yrLRK75gZu0nX7p53nHDEAt4LEB5pl1T1aj3pIY+96Ruub6qq9PZgpkjR4/rhjuf0kv92+k/N10dr+/sl7Hbb6vh1oexw9a+sS9nCYMZWyfn3w3aJRp1Y7/O1X6wi5reW9sNXX6k0xDZzlctHrjdlRd3KpP9276MTR3eXddddYV7fOiEN/TB+i/irbNh/28jXs7WdvslMGGwNvm1JW4KVFLBjC2y+POvOzV6QIdM/7ylgt4TSEsw89XWn/Rg635uel7JYoXdrkz2vtC6x3D/lMa4YkePnXBfzG646yn3WrBpiXbYyLS3V3/spj8l/LIXN5ixX+TtS5kFM7ZQuh1nC2aSep+MG+bamk7rPtvsRunYYe9D197R2k29sC+RBDPee67TopQJpPTvacLX6h+796lWo87xFtA/cPCIvtyyza3hVv4y+2zwkPt7P3dSX7c2TcIj4d9O3+N2/eatP7n1Yey1aguL+0a52c6MvjWoWvcYphrVrnDBjK1xY0GNjXzzHXFHzJzP5ya7nmAmZc8fzkIAAQSCKUAwE0z9EL23L5ix4f4XFC/sb4Vvt4BzjZjxDQW2DyM2V9rWQXl51ttuXZKR/dqqeNFCbnFMWzDXPvzYh5m4U5mSC2bsS9LZyrLhwr5gxkbG1H6wmxrffZsbOvzZ51v987stjOk1eIqbZ26/QNv0hQkzFqla5XJJrjFjgY5Ns+rVoakuvbiEm2LwryvLqs/Q6bLpXZ1bNXJrtNjol4IF8iQKZgzQt4tEdO/W7ovivv0HNWjMa1r/2TdaOWeYW3vGwiELdiwE2rFzt1vb4vCRo/4vZxbcVK9WQY81qa+jR4+70UmPdnnRzW2/s/aN2rlrr9Zt2Oy2/D1X288nmPHN57df7uvWqiH7IGtDt6+pUj7F23yH6MuAagdZIOGuTLYQt+841+K/cddysjUbbMSXrcNkwYy9HzVrP8hNPezf/VFVrlhGu/fud4tsb/72J/f6t9d7ntw51KdzC7f4eKc+Y1X7lupunaVzBTNFCuXX9fWfcuvJNGn4H7d+lo188S3+Gzd4Sep9ct6SNf41ZnzhtQUxN1xTyY3As/eHNW+OdKOACGaC/OTk9kEVSMnfU3ut2jRc+yxio1rGv7LQrXdnI3ttfbmDh4+6kTNRkRFuXbw8eXK5v6X2d/bU6Ri92Lu17DVt69LY+Tb96GzBjG+knaHMHN3LTfW28q+v38b9IGPvH7Yun42wtR9yLJixv61PdB/uplbZe5st6t+210v+qUzn+qyT8HMTwUxQn47cHAEEEEixAMFMiqk40SfgC2YSithojvGDO7kPJ1dXuVyPNannTlm+ZoP7xcm3HoJ9oBg/Y6F7zBYBtkXyeg6a4r7Q22HDfUe/0N5tG+v7Vdu3xkxSwYz96mzrPdgQfgtRzlbWN9/9rEat+uqLVVPdnHHbEcE+CNk1dtgigLaArx3265ntvGK/XF9e5mKdiT2jHNmyuQ9jCcuxBXBtsWALcuywnZEmD+3m1qp4esBEt7OC/UJuc89t0VwzsuHL7320yX0otMO+ZE6cudjvYv9nuzHYL2v2K5sd9uGuc9+xbkqUlXd1lXLas++g+3XfDvuC2XfYNHc/W4zQdoOZPucdt2OS7/C18VxtT9h/CUfM2C5WNuLGNyXDpkZZSORztP6zbYptdwoOBNJDwBbSrVrrUX/R9l5jUxB9x7mCmfVLxilfnr/XxvItmu0LZuz//jpwWMMmznFrR/gOe063aX63CzXtdWhrYNluSHbYyBkLJu21ba83Cz99a9TYKL2a93Z0C4oWL1rQ/Qpu04rssB2UbIcnC1JtGmbC94SE75O2Rk3c9wx7D7Vz7LD3A6uDrftlR1LBTMyZWP8CpOnRJ5SJQGYRSMnfU3utjp32lv/vlr2GbCSc7Tr48f++cT/U+P6m2bTcvl1a6IISRdwOSn2HTXeL/PoOG9FqOxUm/NsZ18M+p9hC/ktnDvav+WY7KdpnIztsse4TJ0+5zzE2Ktbe49r2HOl2RrTD1qjp3n+8C4tt44NzfdZJ+LnJrrcRM/b5xrerY2bpK+qBAAIIIPCPAMEMz4agCNgvwidPnYq3C5F9STl+/KT7ApPWI6Vl2Zo1FsLYOhNxt5K1D0UW3thhYZANMf5XpXL+aUlJ1e/wkWM6eeq02/bSd1g5tmZOiWKFlTXL3+Wd67B7/bFrr/Lny6Pcuf6e7pDwsPraL3W++sV93Npjv+IXLpjP/+HP/s+GTRfIl9vtLOU7ztb25OqY1OM20sDukTVrlkQ7S6WmPK5BINgC9vqwBTktkC2Q/5/d53z1smlK2bNnPe/nu32hOnT4WIre55J6n4zrYlt42xQp24UtqfeDYBtyfwSCKZCSv6c2RdECk5LFC8d7Dfn+pllgYzubJTzstWcjRAsXypem155NbbLRM75NCBLexz7LZMua9axb3af0s04w+4F7I4AAAgikTIBgJmVOnBVmArYI6NKV690W3PYLuX35scWIbZoABwIIIIAAAggggAACCCCAAAKBEiCYCZQk5XhKwEalbNi0VYeOHFPRwvl1/dVXKk/unJ5qI41BAAEEEEAAAQQQQAABBBAIvgDBTPD7gBoggAACCCCAAAIIIIAAAggggECYChDMhGnH02wEEEAAAQQQQAABBBBAAAEEEAi+AMFM8PuAGiCAAAIIIIAAAggggAACCCCAQJgKEMyEacfTbAQQQAABBBBAAAEEEEAAAQQQCL4AwUzw+0DxaRcAAAwdSURBVIAaIIAAAggggAACCCCAAAIIIIBAmAoQzIRpx9NsBBBAAAEEEEAAAQQQQAABBBAIvgDBTPD7gBoggAACCCCAAAIIIIAAAggggECYChDMhGnH02wEEEAAAQQQQAABBBBAAAEEEAi+AMFM8PuAGiCAAAIIIIAAAggggAACCCCAQJgKEMyEacfTbAQQQAABBBBAAAEEEEAAAQQQCL4AwUzw+4AaIIAAAggggAACCCCAAAIIIIBAmAoQzIRpx9NsBBBAAAEEEEAAAQQQQAABBBAIvgDBTPD7gBoggAACCCCAAAIIIIAAAggggECYChDMhGnH02wEEEDA6wK79vylTzZ+oz/37Fe+vLlVslghXV3lcuXKmSPZph87flKPdB6iti0b6sbqlZI9nxMQQAABBBBAAAEEEEitAMFMauW4DgEEEEAg0wq8veoTdes/3tXvopJF9dvO3f66LnttiEpdWPycdT90+Kiuq99G0b2f1B21amTadlIxBBBAAAEEEEAAgdAXIJgJ/T6kBQgggAACcQT+3L1ftzXq5Ea6DOrZSoUL5lNMzBl99+OvGjNtgbq2fkClS5UkmOFZgwACCCCAAAIIIJApBAhmMkU3UAkEEEAAgUAJrP3kK7XuMUwj+rVV7VuuOWex6z/7WpNfW6Kvtv6kooXz6/qrr1TbRxoqS1SUGzHzVMuG+vGX3/X++i9U4bJSevi+2vHK/OW3PzV0/Gx9vHGLcmTPqptqVFHXJx9UoQJ5ZdOhHu8arTtqXafPvtgqq5dNp+rS+gEVKZRfL02Zp02bf9D111yhRxvXU9Uryrq6/rF7n54eMEnbft6hfX8dUvGiBXVX7RtdXbJmiXLnfPHNNo2dtsBdb/etVKGMWje7y19GoCwpBwEEEEAAAQQQQCD9BQhm0t+YOyCAAAIIZKDA0WMnVL3uE6pY7hJ1eeJ+/atSOeXMkS1RDSxsafPMCF1e5iI92OA2HTpyTK/MeUdjBnZUmVIlXTBjR71a16la5XJ6f/3nLlxZv2Sc8uXJJVvD5tb7Ouqqypfr/jtrat+BQ5ry2hJdWf5STRjSRb7pUFbGnbVvcKHJohXr9OU321y599W/ReXLltLcxe+5ET2LXhno/n/7jj81cvI81ahWUYUK5tP3P+1wIUzHx+/T4w/V1/4Dh/TvBu1U/V8V1Pju23Tk6HGteH+DrqlaQY81qZeB0twKAQQQQAABBBBAIBACBDOBUKQMBBBAAIFMJbBoxUeKHjfbjTixo+wlF+i2f1+lFvffrgL587j/u6t5T504eUrLZ0X763702HHFxkpnzpxxwUyvDg+rScNa7nEr66a722l436dUp2Z1V/6cxWv0/vyR/gWFZy9crf4jZuiDBaOULWuWRGXYSJcmbfrHW7tm7SdfqnWP4Vo1d7hKFC0Uz9FCFwtibARNntw5XODjK2N43zaqU/Na//k2QiepACpTdQyVQQABBBBAAAEEEEgkQDDDkwIBBBBAwJMCx0+cdKNctny/XZ9//YM2fL7VBShLZw5W/ny5dVXtx9W8UR11f6pxovafbfHfK2u2ULc2D7qAp0XHwa5MG5njO+w6W2h47qS+uviCYokWEP719126vUl3F7DcVKOyu+yb735Wo1Z9NWtcb1W5oqxOx8S46VVzF6+RrZfjO2xkzszRPXXq1Gm3ho4FRbVuukr/uvIy1b21hkoWL+zJfqRRCCCAAAIIIICA1wUIZrzew7QPAQQQQMAJ+Nae6d2pmer/53rVqPekW0/myWYNUhXMPPBEP0VGRapN88TXV73yMkVIiYKZ3//Yo/8+2DVeMLP1h+2697Hn/MHMqKlvauLMxer8xP1uzZoSxQpp4KhXtWPnHhfM2HHg0BG9Nn+lPt20xYVDdowZ2EG33lCN3kYAAQQQQAABBBAIMQGCmRDrMKqLAAIIIHBuge9/+s2NjLmwRJF4J3677Vfd82hvdWl9vx558A43LemC4kX0xsQ+8c47cyZWR44eS3K77LgjZnoNnqL1//taS2cOiTeFKDY2VhEREf41ZuJuuZ2SYMYCHxvRMym6q79ePQdN1q+/73bBjK1HExUV6X/swMEjatzmeTdda/SADjw9EEAAAQQQQAABBEJMgGAmxDqM6iKAAAIInFtgwbK1enbIVDVrVEfXVqug4kUKykalvL5glbZ8/4uWvTZEpS4srqmz3tbwiXPUqH5N3Vv/Fp04cdIt/vvYQ/X9i//GDVXsrnGDGSvrvsf76ObrqrodkfLkzunuM232Mk0Z2s2FJ7ZOzfkGM8MmzJGtVTO4ZysVKZxfH3z8hSbMWOQWGbZgZs26zzV74So1b3S7Li1VUr/89oce7fyiWj5Y120FzoEAAggggAACCCAQWgIEM6HVX9QWAQQQQCAZAdtm2qYCLV31cbwzbf2Wp9s28W8pfep0jCbOWKTxMxb6z6tUvrRG9HtK+fLmdlOdkgpmbE0aW5vGDlu494WRM926Mr7D1o4Z0a+dYmJiEpWx88+9+s8DXdxomBurV3KX+EbyzB7/nCpXLKMdf+xxi/1u/Oo797jV+0zMGeXMmV3TRz6t7378TV37jdO2X353j9vW3LX+fbW6P/WgfxFiniQIIIAAAggggAACoSNAMBM6fUVNEUAAAQTOQ8CmJO3766DbTrpYkYJn3bHIpgbt2rNfuXPndNtgp+awNV8OHzmmooXyK1u2rKkpItE1FuJERkaqeNGCSZZnCw3bfW3Klk2d4kAAAQQQQAABBBAITQGCmdDsN2qNAAIIIIAAAggggAACCCCAAAIeECCY8UAn0gQEEEAAAQQQQAABBBBAAAEEEAhNAYKZ0Ow3ao0AAggggAACCCCAAAIIIIAAAh4QIJjxQCfSBAQQQAABBBBAAAEEEEAAAQQQCE0BgpnQ7DdqjQACCCCAAAIIIIAAAggggAACHhAgmPFAJ9IEBBBAAAEEEEAAAQQQQAABBBAITQGCmdDsN2qNAAIIIIAAAggggAACCCCAAAIeECCY8UAn0gQEEEAAAQQQQAABBBBAAAEEEAhNAYKZ0Ow3ao0AAggggAACCCCAAAIIIIAAAh4QIJjxQCfSBAQQQAABBBBAAAEEEEAAAQQQCE0BgpnQ7DdqjQACCCCAAAIIIIAAAggggAACHhAgmPFAJ9IEBBBAAAEEEEAAAQQQQAABBBAITQGCmdDsN2qNAAIIIIAAAggggAACCCCAAAIeECCY8UAn0gQEEEAAAQQQQAABBBBAAAEEEAhNAYKZ0Ow3ao0AAggggAACCCCAAAIIIIAAAh4QIJjxQCfSBAQQQAABBBBAAAEEEEAAAQQQCE0BgpnQ7DdqjQACCCCAAAIIIIAAAggggAACHhAgmPFAJ9IEBBBAAAEEEEAAAQQQQAABBBAITQGCmdDsN2qNAAIIIIAAAggggAACCCCAAAIeECCY8UAn0gQEEEAAAQQQQAABBBBAAAEEEAhNAYKZ0Ow3ao0AAggggAACCCCAAAIIIIAAAh4QIJjxQCfSBAQQQAABBBBAAAEEEEAAAQQQCE0BgpnQ7DdqjQACCCCAAAIIIIAAAggggAACHhAgmPFAJ9IEBBBAAAEEEEAAAQQQQAABBBAITQGCmdDsN2qNAAIIIIAAAggggAACCCCAAAIeECCY8UAn0gQEEEAAAQQQQAABBBBAAAEEEAhNAYKZ0Ow3ao0AAggggAACCCCAAAIIIIAAAh4QIJjxQCfSBAQQQAABBBBAAAEEEEAAAQQQCE0BgpnQ7DdqjQACCCCAAAIIIIAAAggggAACHhAgmPFAJ9IEBBBAAAEEEEAAAQQQQAABBBAITQGCmdDsN2qNAAIIIIAAAggggAACCCCAAAIeECCY8UAn0gQEEEAAAQQQQAABBBBAAAEEEAhNAYKZ0Ow3ao0AAggggAACCCCAAAIIIIAAAh4QIJjxQCfSBAQQQAABBBBAAAEEEEAAAQQQCE0BgpnQ7DdqjQACCCCAAAIIIIAAAggggAACHhAgmPFAJ9IEBBBAAAEEEEAAAQQQQAABBBAITQGCmdDsN2qNAAIIIIAAAggggAACCCCAAAIeECCY8UAn0gQEEEAAAQQQQAABBBBAAAEEEAhNAYKZ0Ow3ao0AAggggAACCCCAAAIIIIAAAh4Q+D9vw3aIMdsi1wAAAABJRU5ErkJggg==", - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "### comment out langfuse code \n", - "# px.box(\n", - "# results, \n", - "# y='precision',\n", - "# x='Schema',\n", - "# color='Schema (counts)',\n", - "# title='Precision of LLM Partial Extraction Completions', \n", - "# boxmode='overlay',\n", - "# width=700,\n", - "# ).update_layout(\n", - "# xaxis_title='Schemas',\n", - "# yaxis_dtick=0.1,\n", - "# # showlegend=False,\n", - "# )" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "21b11403-7b51-4c49-9b2d-febbf8953554", - "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "hovertemplate": "Schema=EntomologicalOutcome
N values=%{x}
latencies=%{y}", - "legendgroup": "EntomologicalOutcome", - "marker": { - "color": "#636efa", - "symbol": "circle" - }, - "mode": "markers", - "name": "EntomologicalOutcome", - "orientation": "v", - "showlegend": true, - "type": "scatter", - "x": [ - 18, - 18, - 36, - 36, - 72, - 72, - 27, - 27, - 84, - 84, - 72, - 72, - 60, - 60, - 36, - 36, - 24, - 24, - 36, - 36, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 66, - 66, - 66, - 66, - 66, - 66, - 66, - 66, - 69, - 69, - 88, - 88, - 6, - 6, - 6, - 6, - 6, - 6, - 12, - 12, - 18, - 18, - 6, - 6, - 40, - 40, - 12, - 12, - 12, - 12, - 12, - 12, - 3, - 3, - 3, - 3, - 6, - 6, - 3, - 3, - 18, - 18, - 18, - 18, - 18, - 18, - 9, - 9, - 3, - 3, - 3, - 3, - 72, - 72, - 12, - 12, - 27, - 27, - 15, - 15, - 9, - 9, - 7, - 7, - 4, - 4, - 3, - 3, - 21, - 21, - 21, - 21, - 28, - 28, - 21, - 21, - 5, - 5, - 3, - 3, - 3, - 3, - 6, - 6, - 3, - 3, - 3, - 3, - 30, - 30, - 27, - 27, - 27, - 27, - 24, - 24, - 4, - 4, - 36, - 36, - 36, - 36, - 18, - 18, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 120, - 120, - 72, - 72, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 18, - 18, - 9, - 9, - 72, - 72, - 72, - 72, - 3, - 3, - 3, - 3, - 3, - 3, - 42, - 42, - 6, - 6, - 28, - 28, - 3, - 3, - 3, - 3, - 3, - 3, - 60, - 60, - 30, - 30, - 40, - 40, - 72, - 72, - 3, - 3, - 15, - 15, - 60, - 60, - 72, - 72 - ], - "xaxis": "x", - "y": [ - 3.445, - 3.651, - 5.231, - 5.489, - 8.477, - 8.728, - 3.5, - 3.747, - 8.494, - 8.78, - 8.625, - 8.807, - 8.996, - 9.242, - 5.716, - 6.008, - 4.284, - 4.531, - 5.674, - 5.882, - 1.084, - 1.297, - 1.146, - 1.311, - 1.208, - 1.445, - 1.2, - 1.437, - 1.089, - 1.324, - 1.987, - 2.174, - 1.2, - 1.367, - 1.175, - 1.382, - 9.427, - 9.676, - 9.104, - 9.394, - 12.654, - 12.921, - 15.391, - 15.676, - 9.685, - 9.976, - 9.792, - 10.049, - 1.521, - 1.711, - 1.628, - 1.835, - 1.863, - 2.091, - 1.72, - 1.925, - 2.487, - 2.717, - 1.211, - 1.357, - 6.375, - 6.612, - 2.198, - 2.348, - 3.037, - 3.26, - 3.137, - 3.301, - 0.943, - 1.16, - 1.089, - 1.277, - 1.256, - 1.7, - 1.203, - 1.397, - 3.787, - 3.977, - 3.234, - 3.416, - 3.435, - 3.652, - 2.113, - 2.448, - 0.867, - 1.078, - 1.009, - 1.209, - 13.302, - 13.525, - 2.897, - 3.069, - 3.452, - 3.686, - 2.25, - 2.446, - 1.724, - 1.959, - 1.459, - 1.659, - 0.977, - 1.201, - 0.966, - 1.192, - 2.517, - 2.708, - 3.594, - 3.791, - 3.382, - 3.563, - 3.097, - 3.329, - 0.889, - 1.059, - 2.221, - 2.454, - 1.063, - 1.266, - 1.597, - 1.823, - 1.101, - 1.338, - 0.855, - 1.064, - 7.387, - 7.658, - 4.459, - 4.684, - 3.989, - 4.231, - 3.669, - 3.835, - 1.371, - 1.589, - 4.404, - 4.624, - 4.727, - 4.923, - 2.437, - 2.64, - 2.02, - 2.166, - 2.319, - 2.54, - 5.221, - 5.436, - 2.112, - 2.277, - 1.867, - 2.038, - 1.884, - 2.104, - 12.161, - 12.485, - 8.528, - 8.844, - 2.171, - 2.375, - 1.789, - 2.043, - 1.855, - 2.069, - 1.631, - 1.869, - 2.709, - 2.942, - 1.964, - 2.137, - 2.564, - 2.759, - 2.216, - 2.399, - 1.656, - 1.861, - 17.407, - 17.724, - 10.474, - 10.816, - 1.132, - 1.316, - 0.885, - 1.2, - 0.909, - 1.094, - 5.468, - 5.748, - 1.116, - 1.32, - 3.149, - 3.357, - 0.987, - 1.222, - 0.705, - 1.074, - 0.698, - 0.883, - 6.556, - 6.778, - 3.185, - 3.383, - 5.732, - 5.943, - 6.886, - 7.162, - 0.791, - 1.019, - 1.811, - 2.003, - 5.652, - 5.923, - 8.337, - 8.571 - ], - "yaxis": "y" - }, - { - "hovertemplate": "Schema=Observation
N values=%{x}
latencies=%{y}", - "legendgroup": "Observation", - "marker": { - "color": "#EF553B", - "symbol": "circle" - }, - "mode": "markers", - "name": "Observation", - "orientation": "v", - "showlegend": true, - "type": "scatter", - "x": [ - 10, - 10, - 2, - 2, - 6, - 6, - 6, - 6, - 5, - 5, - 20, - 20, - 15, - 15, - 15, - 15, - 6, - 6, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 4 - ], - "xaxis": "x", - "y": [ - 1.279, - 1.46, - 1.208, - 1.42, - 1.079, - 1.223, - 1.186, - 1.337, - 1.048, - 1.206, - 2.46, - 2.625, - 4.65, - 4.871, - 2.033, - 2.226, - 0.974, - 1.182, - 0.665, - 0.814, - 0.777, - 0.922, - 0.582, - 1.004, - 0.587, - 0.734 - ], - "yaxis": "y" - }, - { - "hovertemplate": "Schema=ITNCondition
N values=%{x}
latencies=%{y}", - "legendgroup": "ITNCondition", - "marker": { - "color": "#00cc96", - "symbol": "circle" - }, - "mode": "markers", - "name": "ITNCondition", - "orientation": "v", - "showlegend": true, - "type": "scatter", - "x": [ - 3, - 3, - 2, - 2, - 12, - 12, - 2, - 2, - 8, - 8, - 8, - 8, - 9, - 9, - 10, - 10, - 2, - 2, - 8, - 8, - 2, - 2, - 10, - 10, - 20, - 20, - 10, - 10, - 10, - 10, - 38, - 38, - 12, - 12, - 12, - 12, - 10, - 10, - 42, - 42, - 40, - 40, - 10, - 10 - ], - "xaxis": "x", - "y": [ - 1.8, - 1.954, - 0.822, - 1.107, - 2.151, - 2.298, - 0.61, - 0.76, - 1.095, - 1.269, - 1.457, - 1.886, - 1.389, - 1.653, - 1.122, - 1.328, - 0.598, - 0.75, - 1.037, - 1.507, - 0.597, - 0.802, - 1.934, - 2.132, - 1.741, - 1.957, - 1.014, - 1.197, - 3.924, - 4.144, - 2.694, - 2.887, - 1.05, - 1.243, - 1.295, - 1.497, - 0.834, - 0.992, - 4.896, - 5.168, - 1.894, - 2.107, - 0.751, - 0.922 - ], - "yaxis": "y" - } - ], - "layout": { - "height": 360, - "legend": { - "title": { - "text": "Schema" - }, - "tracegroupgap": 0 - }, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - }, - "title": { - "text": "Latency v.s. number of values" - }, - "width": 700, - "xaxis": { - "anchor": "y", - "autorange": true, - "domain": [ - 0, - 1 - ], - "range": [ - -5.8956118833469615, - 127.89561188334696 - ], - "title": { - "text": "N values" - }, - "type": "linear" - }, - "yaxis": { - "anchor": "x", - "autorange": true, - "domain": [ - 0, - 1 - ], - "range": [ - -0.8326310679611651, - 19.138631067961164 - ], - "title": { - "text": "Latency (s)" - }, - "type": "linear" - } - } - }, - "image/png": "iVBORw0KGgoAAAANSUhEUgAABGYAAAFoCAYAAAAVe/0kAAAAAXNSR0IArs4c6QAAIABJREFUeF7snQecTNfbx3+zxVpl9S56jRKECCJEJ6JFJ4gWPToheu+9C6K3ECVEjfLXQoggCKJEiV4Wu7bN+z6HmWy1s3dmd+7d+Z3P5/++yc495zz3+5xNMl/nPMdkNpvNYCMBEiABEiABEiABEiABEiABEiABEiABEohzAiaKmThnzglJgARIgARIgARIgARIgARIgARIgARIQBGgmOFCIAESIAESIAESIAESIAESIAESIAESIAEnEaCYcRJ4TksCJEACJEACJEACJEACJEACJEACJEACFDNcAyRAAiRAAiRAAiRAAiRAAiRAAiRAAiTgJAIUM04Cz2lJgARIgARIgARIgARIgARIgARIgARIgGKGa4AESIAESIAESIAESIAESIAESIAESIAEnESAYsZJ4DktCZAACZAACZAACZAACZAACZAACZAACVDMcA2QAAmQAAmQAAmQAAmQAAmQAAmQAAmQgJMIUMw4CTynJQESIAESIAESIAESIAESIAESIAESIAGKGa4BEiABEiABEiABEiABEiABEiABEiABEnASAYoZJ4HntCRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAMcM1QAIkQAIkQAIkQAIkQAIkQAIkQAIkQAJOIkAx4yTwnJYESIAESIAESIAESIAESIAESIAESIAEKGa4BkiABEiABEiABEiABEiABEiABEiABEjASQQoZpwEntOSAAmQAAmQAAmQAAmQAAmQAAmQAAmQAMUM1wAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJOIkAxYyTwHNaEiABEiABEiABEiABEiABEiABEiABEqCY4RogARIgARIgARIgARIgARIgARIgARIgAScRoJhxEnhOSwIkQAIkQAIkQAIkQAIkQAIkQAIkQAIUM1wDJEACJEACJEACJEACJEACJEACJEACJOAkAhQzTgLPaUmABEiABEiABEiABEiABEiABEiABEiAYoZrgARIgARIgARIgARIgARIgARIgARIgAScRIBixkngOS0JkAAJkAAJkAAJkAAJkAAJkAAJkAAJUMxwDZAACZAACZAACZAACZAACZAACZAACZCAkwhQzDgJPKclARIgARIgARIgARIgARIgARIgARIgAYoZrgESIAESIAESIAESIAESIAESIAESIAEScBIBihkngee0JEACJEACJEACJEACJEACJEACJEACJEAxwzVAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAk4iQDHjJPCclgRIgARIgARIgARIgARIgARIgARIgAQoZrgGSIAESIAESIAESIAESIAESIAESIAESMBJBChmnASe05IACZAACZAACZAACZAACZAACZAACZAAxQzXAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAk4iQDFjJPAc1oSIAESIAESIAESIAESIAESIAESIAESoJjhGiABEiABEiABEiABEiABEiABEiABEiABJxGgmHESeE5LAiRAAiRAAiRAAiRAAiRAAiRAAiRAAhQzXAMkYCOBf27fw64DJ1Dq/QLInzurjb2c/9jVG3dw+MQ53H/4BEkSe6Np3UpI5O0V64EFBQdj6bodyJopPSqWLRbr83ECEiABEiABEiABEiABEiABEjAiAZcQM1eu30atlgNQr8bHGNG3td15OnT8LI7+9ieafV4J6dOktHs8DmAMAgeP/YEO/SZjcI8WaFS7giGCPnryT7TpOT5MrHvXTUG6NCliPX4//wAUr9ZeSZnpI7rF+nycgARIgARIgARIgARIgARIgASMSMAlxMzlq7dQ+8uBqFPtI4zq39buPM3+fhNmLd6INfOGoGDe7HaPxwGMQcCIYqZV97E4/vsFLJzYByWK5sOLl/5Iksgb7u5usQ6dYibWEXMCEiABEiABEiABEiABEiCBeECAYkZDEilmNECzs4vZbIbJZLJzFNu6RzWXXsXM29iUqN4BeXO+g+UzB9r28g58imLGgTA5FAmQAAmQAAmQAAmQAAmQQLwlQDETKrWbdhzC+q37cevf+7h7/zEyZ0iD997NiTZNP1VfbqXJ5wtWbMXNO/dR+N2cSO6TRP28ce0KKFfqPfXXcnRq2sL1OHXmEh498UXRgrnRsWVtlClR0DrbuFmr1Bydv6yDWYt/hHzpl1btkw/Qt1NjJE2SKMyik+NTKzfuxh9/XoGnpwcK5MmGz6qUQYWPiqLH4Jnw8kqA8d92gJtbWHkxatoy3LzzAJOHdoZ3wgQRFrLUAZH+3gm9MO7bryLIj9HTV0Bqq0wa0inKuiR7Dp7Eqk17cPHyDTV+tncyqOMrwiShV8Q5o/ttOnfxGmYu3ogGNcvh1r8PIHk5f+k6cmbNiF4dGlk5yzgrN+5R7EZ/0xYpkiW1Di0/k886taqDQvle72qyMO/QohZmLt6AIyf+RMrkSdURt6+++Aynzl7C/OVbceL0RST08lQ/79qmHjzc3VV/i5jp06kx/PxfYee+4/jr75sqv/IzWSuhmy3rYOP2g9i5/wQGdf8C12/exS+HT6l3btmgGj4omi9KVCI9Zi/5EXv+95vqJzVvalctg2b1Kqs1IHntOnA6Dhw9jUTeCVH8vbxqrBoVSuKzKqXtWgevAgIwZvoKXLh8A3fuPcJLP3/kyZEZ9WuWQ8NaFeDp8ZpXZGImJvmy9XcpICAQqzbtxbbdR/H3jTtImsRb8ahVpTSqlv8guuXGz0mABEiABEiABEiABEiABEjAqQQoZkLhHzBmgZIA8kU7beoUuHPvoRIh8sV285JRyJAulSpmKmJGhIuIG4tAadfsU/UlUL7Ut/x6jBq1WKE8SJzICwePnVF/P2t0d5QvXUT9daOvhuHsxavW2eVIlHyplC+54WvhLF69HRPnrlHPfvzhe3jy7LmKS9q5fUvQb9Q8bN11RB1XKVW8gHVMS22dCmWKYsaor6NcaD2HzsaOfb9i2YwBKmZLE/lUtUkfJZTmT+gdaX+ZV+YXRqWKvwv5kvzbH5fUe+xcPRGZ0qeO8QK3CBBLR6mHIsdv5H2kbV8xHlkypVV/PWzy91i7+RfsWTc5TL2ftVv2YdikJZg9podV5ETG3JKDkkXz49ip82pMyYXl58JN+EkLH5fkX44EiRiRtvn70UoeSbN1HUyZvw4LV/6kJJ8lp9JfaiHJOoisBQYFo3nnkSpGESJ5c2VRElDyZTmuJ8806ThcCS1plmLFDT8rj4a1Pol0XFvXwY1bd1G9WT9Vp0bGFQYiuSTnrRvXQK8ODdX4kYmZmOTLVoZDJi5WwlTiKV44L27ffagkm/y91NNhIwESIAESIAESIAESIAESIAE9E6CYCZUdESPpUqdA4kQJrT8VESM7LYb0bGn9QhvVUSbZpVCv9SAlEETk5MyWSY0jt+LUbPGN+hK9cdFI9TOLJJDdG22b1lS7WR4+foZqTfuqL7h/7FmkvvBavgSLBFgytb+SQ9Ju//sA0xdtwNgB7XHyzF/4outoJYYmD+1kjX3C7NVYsvZnJVVC79YJvyCPnDiHtr0nRBBC85dvwbSFP2Dq8C6o/HHxSNdxk04jlFDYunQMsmfJYP1CvmbzXrWDI/QuFlt/ESwCRCTHiH5trDtRZIfIrCU/qi/+IgCkxeSLvoV55y/rok2TGvBK4AlL/SEZq0vrumpc+fnFK/+gXptBaFavEgZ0a67mssQl4mZ439bWXVSLVm/DpLlr0aBmeQzt3UrtVrF1HVjEjIitPh0b4cP334VXggQqhuTJXu/GCt9EQoiMEMEyqHsLtUNGJEjH/pNVPZmVswdZmRUo30rJNpFu0TVb14HMdevOfeTK/np9S3vq+wI1v+gP/1eBOL59rnUdhC/+a2u+bGUovytyXEskzM8rxiNBAk81970HT7B55yG0bfppdK/Nz0mABEiABEiABEiABEiABEjAqQQoZiLBf+fuQ1z75188ePQUl67exHertuHLxtXRu0Mj9XRUYubMhato3GGY+sL87ddfhBlZdtHIn+Kf2rlAfXkUSSAiyPIl1vJwz6GzsGPfcez7YSrSpEoOy5f+MQPaoVaVMpEuFqkx8ukX/dXOjf0bpiF1ymTqi/rHdbupozqywyT8EafQAwUHh6By417qaJXEI5IgJMSM6s36qp1BhzfPVMenImsihEQMhd6ZYu+KjqqWi0WWNK1bEQPf8LX1i77EFBXzCg16IDAwCAd/nBEm9LJ1uqodUduWj1M/jyou/1cBeL9qe7WDaseqCYjJOrCImVWzB6ldM7a09n0mQo62WXJt6WO5gUmkU8+vXu9aiYmYiek6kPe+fO0W7t57jEdPn2HZup1KSh7eMgvJkia2a8eMrQxF4IiYkXW+YtYg604qWzjyGRIgARIgARIgARIgARIgARLQAwGKmVBZuHLtFvqNmm89/hE6QS0bVEXfzk3Uj6ISM9v2HEOfEXPemtddqyciY/rUUUoCi2iwPDdo/CJs2HYgzDGZyCZY9eMejJy6TH0hly/mW3YeRv/R8zGgWzNVdyS6ZtkdIztwpAbJyTOX8EXXUWrHQY/2DaLs/sNPBzB4wiL1edbM6fB+4bz4pExRfFK6iOZivVEJEKlnUqlhT1XLZFjvL9WcjhAzdVt/q+rwhJdkNZr3g+/zl1Zh87bivzKG1Js5s3cxfv7lV5vXgUXM/Lh4JHJnzxxdmtTnUYkkEYnl6n0d5nrqmIgZGduWdSACZ97yLepmssjaoU0z1W4fe44yxeR3yXKUT2IRuVW0QC61hi3Ht2yCyodIgARIgARIgARIgARIgARIwEkEKGbegH/y9DnK1O6i/k4kjNRyyZwxDZ75vkCD9kPVz6ITM+u27sPQiUvUl0KpdRFZq1GxpNqREtXujRFTlmL1pr2wiJnew+dg+95jaieG7MiIqslRktKfdVZHOnatnqTq3MgOHcvuhejWl0V6lCiSTx2ZkveQ9wl9RCmqMeQIjNTdsdRokefkuM/yWd9aC8FGN3/oz6MSIHI85ZP63SMVM7vXTkaGtCmtw0RVYyayXUpRiZlaLQfg8VPfGImZs78sxvqf9tu8DrSIGdkhIgVuw9dPsayBsiULYe64XopFTMWMLetg5qKNmLN0k6qn065ZTeTOkVnt0ho/axV+2nMUtoiZ6PIVk98l2TUjx7vkf5aaOvLuoXe5xWT98VkSIAESIAESIAESIAESIAESiEsCFDNvaO/930l0/Xa6+qLZvV19aw4sNV4iEzOha3lIB8tRkk4ta0PqmLyt2SpmZFeC7NAJX9g3srEtRVBl18zkeWvVkSqpjWNr69h/irrFZ8N3I1R9FVtrk1jGl4KzUm9GZIO64Sia2jZRxRUTMTN8ylKs2bQ3gkCKSzEjO0g+rNlJiSEpAByTdaBFzFjq+pzcuUDVorG0yI56xVTMyFjRrQMRVqGPLFnmtxTPfpuYsTVfMWEYeh1JzRlZP7J7TB3De3OsytbfAT5HAiRAAiRAAiRAAiRAAiRAAnFNgGLmDXHLF/nOreqoK5YtTXaryK6V0GJGrvyVa6il0G7o63hld8VHtbuqHTGy00R2r1ia1GzZd/gUKnxUTP3IVjGz7/Dv6DxgKmQXxKzRPVRBYEvbe+iU9cYg+ZmlLofl8/ULhsXoOIdFTsnOHLnhZ/ygDvi04ofW+aQIstSzkeNNskNCmhw5qVyueJidMSs27Mbo6cvDHKOKrG9Uiz0mYkZ2bsgOjomDO6J6hZJqSDlCM2zyEnWcK/ytTLGxY8Zy7MZSKDgm60CLmJFCw1J7SI5zybEuSxPmwt5yHE1+rkXMRLcOZMeOCJCjW2dbbyV79vwlvuo7SYm5t4kZW/NlK0ORL3K9uvx+hG7dBk2HXOMe09+BuP4HMOcjARIgARIgARIgARIgARIgAZcSMyJKPiz2boSsZ0yXWskF2SUiUqVOtTJInzYVjv9+3nrVdWgxY6m/IuN92ag6XgUEokCebOqq6hUbdmH09BVqHDlKIddFy61M+4/8rmqQyPXWMREzIkLa9ByvjgnJlc7VK5aE7ND4afdRVXTXMp7lpeq3G6KOc8iV38tnDozRCpcCuKVrdVFfuiX+Axunq9uiLE2+5EsLfS20pfBqneofIUeWDLj17wPI9d5yO8/2FeOsAieyvo4QM3ILUavuY1W8rZtUh5/fK2zdfUQVMpYWG2JGxJUIkfRpUqqciiSR9sv6qUibOrn6a1vXgRYxI7d3SWFnaSISc2bLiKMnz6trw+V40YZFI+Dh7q4+1yJmolsHlmu1ZY1JPSGpbbN112G1Q0Xa28RMTPJlC0OpC1Wr1UD1u1GudBGkT5MC5y/dUEfrZMfX99O+eWvh6xj9gvBhEiABEiABEiABEiABEiABEogFAi4hZixf3qLiJ0VC5U/WpbaL1HixNBEv9WuWV0VOWzWshj6dGls/E/kgz8vOEmlyTbJclywiRYq/Tpiz2ioH5HNVV6b2J9abnaLaMSM7cWRHTugaHFI7ZOaiDernlibj1a3+kfUqZ8vPp3/3A+Yt24IJgzpC6tnEtE1dsF59qf2ifhX079I0THeLXNmydIySMNJk94ZwEJljaVIEWK5xFlFlaZH1jSo2uXFIbh4KfUW5PGupMRP+iJZFbljGk3mlkK5cdT53XE+ULVlYfRQVc5FZcqNV+OK/UntGpIPltiZLXPJ+8ryliaiZMqwz3s2TzfozW9eBhfemxaPCXD8dXd5ECPUbOVeJIUuTXSMj+7W1yjD5uXC31A2KbszQn79tHUgeug6chrMXr1q7yM4qYSUC8fDmWUjm89+tTHLVuly5bmm25ssWhlIbaviU79VNZqGbrAFZP+9kTBuT1+azJEACJEACJEACJEACJEACJBDnBFxCzMSEqhzJuHn7HrwTeiFr5vRv/dN2+eIoYiZJYm+kSJY0wjQiVO49eKw+S5XCR/MtRZaBpcip7AQx/f9OkLRpUlh3RYT+vErj3vB97odDm2aoa7njogkH2cUh/5Nri1OlSBbnuxTk6Mu/9x5Bdj+JFIjtJuvk1pvci5gxmSQrkTdHr4PQs4gMuf/wCTJlSAOfJIli+7Wt48vRvH9u31NCTgvzmOYrOoaW340XL/3VEUK5rpuNBEiABEiABEiABEiABEiABIxAgGLGCFmyMcad+0+gx5CZ6NiiNrq0fnvxYRuH5GMkQAIkQAIkQAIkQAIkQAIkQAIkQAKxSIBiJhbhxvXQltt6dq+ZhAzpUsX19JyPBEiABEiABEiABEiABEiABEiABEgghgQoZmIITK+PBwQEqqK3PkkTo1LZ9/UaJuMiARIgARIgARIgARIgARIgARIgARIIRYBihsuBBEiABEiABEiABEiABEiABEiABEiABJxEgGLGSeA5LQmQAAmQAAmQAAmQAAmQAAmQAAmQAAlQzHANkAAJkAAJkAAJkAAJkAAJkAAJkAAJkICTCFDMOAk8pyUBEiABEiABEiABEiABEiABEiABEiABihmuARIgARIgARIgARIgARIgARIgARIgARJwEgGKGSeB57QkQAIkQAIkQAIkQAIkQAIkQAIkQAIkQDHDNUACJEACJEACJEACJEACJEACJEACJEACTiJAMeMk8JyWBEiABEiABEiABEiABEiABEiABEiABChmuAZIgARIgARIgARIgARIgARIgARIgARIwEkEKGacBJ7TkgAJkAAJkAAJkAAJkAAJkAAJkAAJkADFDNcACZAACZAACZAACZAACZAACZAACZAACTiJAMWMk8BzWhIgARIgARIgARIgARIgARIgARIgARKgmOEaIAESIAESIAESIAESIAESIAESIAESIAEnEaCYcRJ4TksCJEACJEACJEACJEACJEACJEACJEACFDNcAyRAAiRAAiRAAiRAAiRAAiRAAiRAAiTgJAIUM04Cz2lJgARIgARIgARIgARIgARIgARIgARIgGKGa4AESIAESIAESIAESIAESIAESIAESIAEnESAYsZJ4DktCZAACZAACZAACZAACZAACZAACZAACVDMcA2QAAmQAAmQAAmQAAmQAAmQAAmQAAmQgJMIUMw4CTynJQESIAESIAESIAESIAESIAESIAESIAGKGa4BEiABEiABEiABEiABEiABEiABEiABEnASAYoZJ4HntCRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAMcM1QAIkQAIkQAIkQAIkQAIkQAIkQAIkQAJOIkAx4yTwnJYESIAESIAESIAESIAESIAESIAESIAEKGa4BkiABEiABEiABEiABEiABEiABEiABEjASQQoZpwEntOSAAmQAAmQAAmQAAmQAAmQAAmQAAmQAMUM1wAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJOIkAxYyTwHNaEiABEiABEiABEiABEiABEiABEiABEqCY4RogARIgARIgARIgARIgARIgARIgARIgAScRoJhxEnhOSwIkQAIkQAIkQAIkQAIkQAIkQAIkQAIUM1wDJEACJEACJEACJEACJEACJEACJEACJOAkAhQzTgLPaUmABEiABEiABEiABEiABEiABEiABEiAYoZrgARIgARIgARIgARIgARIgARIgARIgAScRIBixkngOS0JkAAJkAAJkAAJkAAJkAAJkAAJkAAJUMxwDZAACZAACZAACZAACZAACZAACZAACZCAkwhQzDgJPKclARIgARIgARIgARIgARIgARIgARIgAYoZrgESIAESIAESIAESIAESIAESIAESIAEScBIBihkngee0JEACJEACJEACJEACJEACJEACJEACJEAxwzVAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAk4iQDHjJPCclgRIgARIgARIgARIgARIgARIgARIgAQoZrgGSIAESIAESIAESIAESIAESIAESIAESMBJBChmnASe05IACZAACZAACZAACZAACZAACZAACZAAxQzXAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAk4iQDFjJPAc1oSIAESIAESIAESIAESIAESIAESIAESoJjhGiABEiABEiABEiABEiABEiABEiABEiABJxGgmHESeE5LAiRAAiRAAiRAAiRAAiRAAiRAAiRAAhQzdq6B2w/97BxBe3dPDzekSeaFwKAQ3H/6SvtA7Gk4AulSJFQ5DwkxGy52BqyNgJsJSJvCG/8+ct4/c7RFzl72EPDydENib088esZ/xtvD0Wh9k3p7ACYTfF8GGi10xmsHgZRJE+ClfxD8A0PsGIVdjUYgfUpv3HvsB6P9J13GVN5GQ814SUDXBChm7EyPM8WMh7sJaZMnRFCwGfee+Nv5JuxuJAIUM0bKlmNipZhxDEejjUIxY7SMOSZeihnHcDTaKBQzRsuYY+KlmHEMR45CAkYnQDFjZwYpZuwEyO6aCFDMaMJm6E4UM4ZOn+bgKWY0ozN0R4oZQ6dPc/AUM5rRGbojxYyh08fgScBhBChm7ERJMWMnQHbXRIBiRhM2Q3eimDF0+jQHTzGjGZ2hO1LMGDp9moOnmNGMztAdKWYMnT4GTwIOI0AxYydKihk7AbK7JgIUM5qwGboTxYyh06c5eIoZzegM3ZFixtDp0xw8xYxmdIbuSDFj6PQxeBJwGAGKGTtRUszYCZDdNRGgmNGEzdCdKGYMnT7NwVPMaEZn6I4UM4ZOn+bgKWY0ozN0R4oZQ6ePwZOAwwhQzNiJkmLGToDsrokAxYwmbIbuRDFj6PRpDp5iRjM6Q3ekmDF0+jQHTzGjGZ2hO1LMGDp9DJ4EHEaAYsZOlBQzdgJkd00EKGY0YTN0J4oZQ6dPc/AUM5rRGbojxYyh06c5eIoZzegM3ZFi5r/03XvwBMdO/om7Dx7DJ2liZEibEu8XzoNE3gmjzfGps5cwfvZqzBjZDalTJov2eT5AAnojQDFjZ0YoZuwEyO6aCFDMaMJm6E4UM4ZOn+bgKWY0ozN0R4oZQ6dPc/AUM5rRGbojxczr9G3bcwx9RsxRf505QxrcvHPfmtftK8YhS6Z0b83zwWN/oEO/ydi9drISOmwkYDQCFDN2Zoxixk6A7K6JAMWMJmyG7kQxY+j0aQ6eYsZ2dAGBwIP7QNKkr/9n5EYxY+TsaY+dYkY7OyP3pJgB7t5/jAoNeqBMiYIYM6A9UqXwQXBwCP76+x/MXLwRvTs0QvYsGShmjLzQGXu0BChmokX09gcoZuwEyO6aCFDMaMJm6E4UM4ZOn+bgKWZsQ3f0Vzfs3O2GoKDXz+fIbkbjhsFI6GVbf709RTGjt4zETTwUM3HDWW+zUMwAB4+dQYd+kzBlWBdUKVf8rSk6cuIcFqzYijMXriJNqmQo9X4BdGldF2cvXFU7Zkb2a4NNOw7h3MVr+KR0EbRsWA0F8mazjnn95l1MnLMaR0+eR0IvT5QtWRi9OzZGyuRJ4ecfgHa9J6BGxQ9x4vQFFZfsvunVoZE6HjVt4XqcOnsZpYq/izZNPsV77+ZU40pMk+athYz90s8feXJkxpeNq6NWlTJ6W26MR8cEKGbsTA7FjJ0A2V0TAYoZTdgM3YlixtDp0xw8xUz06J4/ByZN80BwcNhnq1YOQZlSIdEPoMMnKGZ0mJQ4CIliJg4g63AKihngpd8rlKj+FfLnzopeXzVEkYK54Z0wQYRs7T9yGp2+maLER+PaFeD7wg/fr/0ZM0d3xzPfF0rMSGvRoCreyZhWfZbcJwnWzBuifi41bD6p3x3FCuVBw8/K49FTXyxcsVWJm7njesH3+Ut8WLOTevazKqWVeNm88zD++POK+ln9muWQN2cWrNvyi9rRs/n70ernO/b9qkRPkQK5kNArAfYeOomtu45g2YyBKFYotw5XHUPSIwGKGTuzQjFjJ0B210SAYkYTNkN3opgxdPo0B08xEz26S5dNWLbSPcKDBQuY0fDzcLYm+uF08QTFjC7SEOdBUMzEOXJdTEgx8zoNm3cewoTZq/Hoia/6+5xZM6KzkUwbAAAgAElEQVTCR8XQqmE1JE+WRP2sVssBeBUQiB2rJlhzJztUzGbg5Jm/lJj5YeFw5MuVRX2+5+BJdBs0Hb+sn4q0qZOr8ddu2Yf9G6ZaCwqv3rQXI6YsxYGN05HA00OJmYFff4GmdSuqMU7/eQVNO43AhEEdUaNiSfUzSz2bPesmI32a/+rZmM1mPPN9iYdPnuGzFt+oI1iyc4aNBGwhQDFjC6W3PEMxYydAdtdEgGJGEzZDd6KYMXT6NAdPMRM9ujv/AnPme0R4sFgRM+rUopiJniCf0AsBihm9ZCJu46CY+Y+3/6sA7D/yO85fuoHfz13G8d8vKIHy07KxSOaTGMWqtEPLBlXRt3OTCEmKrPivHHdq3GEYVs8dgkL5sqNV97FqTNmZY2myS0YKDa+bP1TtshExE1rC/HP7Hqo17at21JQtWUh1+/Ova2jQfihWzR6Ewu/mxOOnvpg4Zw127j+hjjJZWucv66JTy9pxu6A4m2EJUMzYmTqKGTsBsrsmAhQzmrAZuhPFjKHTpzl4ipno0d27b8KM2W4wmUxhHi5SOAT16vAoU/QE+YReCFDM6CUTcRsHxUzUvC21Zwb1aIGalUqh5KcdVT2Zji0iyo7IxMz5S9dRv90Qq5hp9NUwuLm7RSpL3iuQC/JvkfBi5va/D1C5ce8wYubC5Rv4vO1gq5hp0mkEbt6+h/5dmykBlDplclRt0htN6laimInbXydDz0YxY2f6KGbsBMjumghQzGjCZuhOFDOGTp/m4Clmokd3/oIbVq5xg/ovagAmM2A2AfnzhqBpI4qZ6AnyCb0QoJjRSybiNg6KGeDS1ZtqZ0ym9KnDwL945R/UazMIvTo0ROvGNVC2TldkTJfaWjPG8nBIiBmHjksB4bDXZYcXMwPHLsSR387hp2XjwtSwkSNIIvctNWZC75iJTszkyJpRCaMe7RugbdNPrfFLrBQzcfu7ZPTZKGbszCDFjJ0A2V0TAYoZTdgM3YlixtDp0xw8xUz06B48NGH6rIg1ZsqWCUHlihQz0RPkE3ohQDGjl0zEbRwUM8DG7Qfx7bjvVNHeD4rmQ7rUKSC7UlZu3AORK9tXjEOWTOnw3aptmDxvLRrULI/Pa5bDq1cBqsBv22Y1rcV/d6+drG5SkhZezFj+/uMP30OHFrWQJLG3mmfx6u1YOLEP3N3dNO2YkV057m5u6vam4OBg/LDtALbvPQYeZYrb3yWjz0YxY2cGKWbsBMjumghQzGjCZuhOFDOGTp/m4ClmbEO35gd3nDv331Emb2+gY7tgJE9utm0AnT3F4r86S0gchUMxE0egdTYNxQxw5dotzFu2BT/tORomO1K/pX+XptZrqQODgjFv6WbMWbrJ+lzBvNkxZVhnXLl+W+2YCV2Q1yJi5FYmeU6aHHkaOXWZqitjaVI7ZsqwrkqqyO6X0Dtm7tx9iEqNemH+hN4oU6Kg6mLZybN6zmAUyp8Dh46fxfDJ31vHrFm5lLqVKapjVzpbggxHJwQoZuxMBMWMnQDZXRMBihlN2AzdiWLG0OnTHDzFjO3orl4z4fZtE3x8zMiVywzvhLb31duTFDN6y0jcxEMxEzec9TYLxcx/GZEjSY+ePMOLl/5ImzpFpFdmy9NyVfW9B4+ROLE3fJIk0pTSp74v8PyFH9KkTIYECTw1jRG6kxyHuvbPv0iZwgfJkia2ezwO4HoEKGbszDnFjJ0A2V0TAYoZTdgM3YlixtDp0xw8xYxmdIbuSDFj6PRpDp5iRjM6Q3ekmDF0+hg8CTiMAMWMnSgpZuwEyO6aCFDMaMJm6E4UM4ZOn+bgKWY0ozN0R4oZQ6dPc/AUM5rRGbojxYyh08fgScBhBChm7ERJMWMnQHbXRIBiRhM2Q3eimDF0+jQHTzGjGZ2hO1LMGDp9moOnmNGMztAdKWYMnT4GTwIOI0AxYydKihk7AbK7JgIUM5qwGboTxYyh06c5eIoZzegM3ZFixtDp0xw8xYxmdIbuSDFj6PQxeBJwGAGKGTtRUszYCZDdNRGgmNGEzdCdKGYMnT7NwVPMaEZn6I4UM4ZOn+bgKWY0ozN0R4oZQ6ePwZOAwwhQzNiJkmLGToDsrokAxYwmbIbuRDFj6PRpDp5iRjM6Q3ekmDF0+jQHTzGjGZ2hO1LMGDp9DJ4EHEaAYsZOlBQzdgJkd00EKGY0YTN0J4oZQ6dPc/AUM5rRGbojxYyh06c5eIoZzegM3ZFixtDpY/Ak4DACFDN2oqSYsRMgu2siQDGjCZuhO1HMGDp9moOnmNGMztAdKWYMnT7NwVPMaEZn6I4UM4ZOH4MnAYcRoJixEyXFjJ0A2V0TAYoZTdgM3YlixtDp0xw8xYxmdIbuSDFj6PRpDp5iRjM6Q3ekmDF0+nQZ/FPfFzh8/CyqffIBTCaT5hiDg0PwKiAQiby9NI9x9cYd3Hv4BCWL5g8zRkiIGXcfPEaypIntGl9zYDrsSDFjZ1IoZuwEyO6aCFDMaMJm6E4UM4ZOn+bg9SZmgoKBk6fccPUq4O5uQu7cIShc0Aw7/rtPM5v43JFiJj5nN+p3o5hxzbxTzOg37zfv3EfVJn0iBPjxh+9hztgebw1c+k6etxbjB3WAh7t7nL7kuYvX0PCroTi95zu75j5y4hza9p6AQ5tmInmyJJreYem6Hdh3+HcsmtJP9Q8MDMK8ZVswZ+km63iF382JEX1aI1f2TDbN0W/UPLRt+ilyZ89s0/NGeYhixs5MUczYCZDdNRGgmNGEzdCdKGYMnT7NwetNzGzZ6objJ93CvE+lCiH4+KMQze/IjhEJUMy45qqgmHHNvFPM2J/3gEDgzr9mJE9mQjIf+8ezjGARMwsn9kH6tCmtAyfyToh0aVK8daLzl66jfrsh+H3XQnh6ejguKBtGcpSYef7CD9dv3kXeXO9oFjzhxcykuWuxetNeTB7aCR8UzY9HT3wxYfYqHDx2BrvXTEIyn8TRvmGB8q2weEp/fFA0X7TPGukBihk7s0UxYydAdtdEgGJGEzZDd6KYMXT6NAevNzEzepwH/F+FfZ1Uqcz4unOw5ndkR4oZroHXBChmXHMlUMzYl/ddv4Tgh63BCAp6PU7+PCb06uwYEWIRMz+vHI93MqaNEOjYmSvh4eGOK9du48Tpi/ikdBF0bVNPPStSRuRM/txZ4e7mhgFfN0fBvNmxaPU2rPpxD3yf+6Fi2WL4pkszJSMuX72F/qPno0bFklj+wy61s6TnVw2RIIEn5i3djMdPffFF/Spo3/wzFYccM4pqrPBi5sr12xg1dRmOnTqPnFkzokvreqhSrrgaR44ULVm7HYtXb1eSpFTxAnj1KhDLZgyA9BswegFWzh4Ed3c3+PkHYPaSH7Fz/3G89PNHiSL58E3XZkreDJ/8Pe7ce6TGFA4Du3+hjimFFjMyftk6XTFmQDvUqlLGytP/VQAqN+qFJnUroVPL2hg6cQlKFsuP6hVKqmd+OXwKP//yK8YN/ErtQvpu1TZkzpAGyX2SoG6NsmhcuwJOnvkLU+avx4XLN5A5Q2rFql6Nj9U7RPXukj/JzZXrt5QYknfv37kpFqzcir3/O6XET7c2nyNvzndUHLf/fYAxM1bg6MnzeK9ATjSoWR5Vy5ewbwGH6k0xYydKihk7AbK7JgIUM5qwGboTxYyh06c5eD2JGV9fYMKUiP+x6+4GDPn2zX8Ra35TdgxNgDtmXHM9UMy4Zt4pZrTn/fFToM/gwAgDNKrrjsrlw+7u1DKLRcw0rVsRyZL+d5QnS+a0Six07D9FCZnu7T5HruyZMXnuWiUURKhs3H4Q3477DrLbRuRNnpzvKKExftZq9OnUGBnSpsS0hT8gY/pUmD6iG86c/xuNOw5H5Y+Lo8Fn5XH6zyuYtXijEjsiY4KCgtFnxBxsXToG2bNkwLqt+6IcK7SYEYFTvVlfFMiTDS0bVsOvp85j1pIfsX7BMDW2JU6JuXTxAti+95gSH+f2LUF4wTNo/CIcOn4GXVvXQ9bM6fDDTweUFDG5mXDp75tqPD//VxgyYTHKly6iOIQWMyJPvug6Goe3zFLSJnQbNvl7PHz8VLGQZ0TKCHdpEqOMs3HRSFy6ehN1vvwWfTs3wbu5s6qdTGazGdWb9VMipl6Nsrj2z7/4/dxlDOjW/K3vbslfz68aIPs7GTBk4mJIzts1q6kkjcyZNEkijB3QHoFBwajdagCKFMilpM/VG/+qfOxcPRGZ0qfWsrwi9KGYCYUkKDgYbiY3uMk3IBsbxYyNoPiYQwlQzDgUpyEGo5gxRJocHqSexIy83LBRHggOtzkmUSIz+vfmjhlHJp9ixpE0jTMWxYxxcuXISClmtNM89YcZs76L+AcDpT9wQ+tm9td1sYgZ2dmSNHEia6C5c2RGq4bVlJgpVii3+iIvTUTF8h92KoEQ2VGmJp1GIF+uLBjSs6V6fvfB3/D1oBk4vHkWbty6q8TM2V8Wq4K9akdK9Q5YO28oCuTNpp6v2/pbtGhQFXWrl8XbxpK4LTVmjp08j/Z9JmL32slKBkmr1XIAypYsrASRSJAsmdJiVP+26rNfT13Alz3GRhAzgYHBKF6tPUb2a6PmD9/uP3yCk2cu4d6Dx9i5/wR8kibCrNHdw4iZHft+Rc+hs9XY4dvMRRux78jvShi9TcxIv/BHmaTvms17cWDj9DDFjg8dP/vWdw+fv6kL1ivxI3FLk506g8cvwsEfZ+DoyT/Rpud4fD/tGyROlFB9Ljt7alf7yCqQtK/k1z0pZt4QlK1Zjb4aqoxkzcqlrFz3HDyJboOmR+B8cucCeCXwBMWMvUuQ/bUQoJjRQs3YfShmjJ0/rdHrScyE/H8ZmaGjPADzf28jfyn/rdq/N3fMaM1xZP0oZhxJ0zhjUcwYJ1eOjJRiRjvNi5fMmDAz4r9/qlV0Q/1ajhMzUR1lCv/FXsTD5HnrsGPVhEjFjBzjkV0kFrFx5+5DVGrUCxu+G4GAgMAwYkZ2uhSu2Bpr5g1RR6CkNe8yCjUqfqhEwNvGkt01FjGzecchTJm/TskFS5OdIb7PX2Ly0M5qnO7tGuDzTz9WH0clZv65dQ81W3xj3bETOmuyy6b38DkoVigP8ufOgr/+vomEXp6YO65XuB0zl/BF11FKRIWvJSOS49HTZ9HumJF5w4sZKQYsTY46hW4bth1467uHz9/85Vte71R6I2YsMkZEkowlO4aKFswdZo5PyhRFmyY1tC/iUD0pZgBMnLtGnauzJDS0mBGT+c3oBcrehW5iFsVmUsw4ZB1ykBgSoJiJIbB48DjFTDxIooZX0JOYkfClxoyfPyD7Ss3q/wCpU7PGjIbUvrULxYyjiRpjPIoZY+TJ0VFSzGgnKn9gMGRsIO7cDTvGgB4eyJHN9hMQUUUQXY2Zt4kZqXXyedvBsPxhvswhO17KfFAIvTs0UlNabj36Zf1U3L3/KIyYkdovhSp8GaWYedtYsnvFImYOHvsDXQZMCyNDRPCIQBn49RdKqGRImwq9OjRUMUUlZl689Efpzzpj2oiuqFT2/TDIZAdOtQolVX0YaVL7Ro5MhRczUifno9pdI+y6kQ0SVRr3QvPPq+CrLz5D6x7jIDdftWpUTY0X+iiT/L2Ime8m98WHxd5Vn8t3+QNHTmPz96PDxCU7Xt727uHzt2DFVnUEKjIxs//IacXqyNZZmgshR7fSKWYAPHn6HP4BAWjaaQR6tm8YZseMiJlhk5aEsYyhoVLMRLfE+HlsEKCYiQ2q+h6TYkbf+Ymt6PQmZngrU2xlOuy4FDNxw1lvs1DM6C0jcRMPxYx9nH2fA3sPBuP6P2akSGbChyXckDuH/VJGorKImfkTeiNjulTWQL29vZA+TcoIR5lC75gR2SBHf+Sa6ML5c6o6KItWbcOG7QcwdVgXpEuTEiOnLlUFc9fNH4qzF67GSMzI8Z2oxvrzr+tWMSM7Y6o07oMmdSqgbbOaOPH7BXT9djpmj+mBcqXew6YdhzBy6jJ0bFkLaVImx/frdqjdPpHVmBGhIxsTBn7dHNneSY+fdh9FkQI5MWTiEsjxrp7tGyhmsvslRfIkEcSMALTcyjRhUAdVx+XR42cYM3MFjpz4E7vXTlK1Z2Z/v0mJHZFAt+7cx5gZK/H8xUt1REyaiJsSRfOhbdOaePnSX8Xbptd4DO7RAp9VKYM79x7i8PGz6jv92949JmLmqe8LVGrYS+12kppC0o7/fhGBQUERRJXWFU0xE4qc3FMvxYzC75iRs3+1q5aBl1cCFH8vr6q+bLmP/v4Tf63s7e7n7mZCSh8vBAWb8dg33DUZdo/OAfRMQPL++HkAzCGhzhToOeD4Gptj/r1vEx0pYZfCJyEePnPeP3NsCpQPOZRAAg83JPTywLMXARHGlf/Ik/9AissWFAyc+M2EK3+b4OEB5MltRpHCEkdcRhH/50rk9brI8stXPCIW/7P93xv6JPKE/6tgBATbcP08//Ufb5ZGqmQJ8eiZP8wGy2ma5K/rbMTnZhEz4d9RdnPMGdtDiZn3C+dB26afqkd27Duubg2So0zSRJ7MWbpJ/bUUAZabfAaMWYhdB06on0kB3RkjuyFntkw4I2KmwzBrjZnIdsxI7RW5talJnYqqBk1UY/351zU0aD8Up/d8p76zWnZ7SB9pHVrUUt95pb0KCMT0hT+oeippU6dAnhzvqB0qx7fPRfhxbty6hwFjFuDU2Uuqr9yMtGBiH/xz+x76j5qnbnWSq8TlFiMpmiuMlq3fiV8OnVKCSprcNjVv2RYrF/mZHNWSGje5smdSz1y9cQc9h85SR6JkvPcL58aDR8+sJ1ik1MjQSYvVfB1b1EaX1nWxZO3PmDB7tTVVlnd827uHz1/4HTNyi5XsuBEW0uS9B45dqG6hkiaxSWFgqUHkiEYxE4piZGJGfknEfoq9u333IdZu/kWd65OtX9ICgmz4l6cjMhXJGPLfwZ4ebuq4f6AT44il1+OwbyHg6W5SQs5g/w6PfzmNywSYAE93N/6ux79V9NY3EuEhEl5+38O3oOAQeMiVSGzxjoBKq8mE4EjyHu9eli9kJeDhbkKI2Qw5nhFtowyNFpFRHpB/t8s/z+PyPykcwUb+4IAtegKycyYgMDDMLUSy+8LfPwDp0qSIfoBonrB1LKlZ8+/9R0iZ3AfeCRNYR5Wfy8U3lj/oETlx4Ogf6rrsqNrzF34ICAxCyuRJrY/IJTpSMyd92lTw9Ii+vo+Ip3/vPUQynyTWYrrh55N4U6dMFunRIYlbjkalSuFjjV1+9vDxMyT3SayuGbe0qN5dK3xhLoIp9Nxaxwrdj2ImFI3IxEx4yJbCPxYDyaNMjliGHCOmBHiUKabEjP88jzIZP4da3kBvR5m0vAP7xJwAjzLFnFl86MGjTPEhizF/Bx5lijkz9nAcAdkF0mvYbHWdtt+rAFX3Rnb3yDEjtrglQDETQzFz8NgZdOg3Cb/tmI+EXglY/Ddu1ytne0OAYsb1lgLFjOvlXN6YYsY1804x45p5p5hxzbxTzLhm3vXy1nK8Sa6Vvv/wKXySJELRQrmRKX1qvYTnUnFQzACQrVdSq0OuAJPzaDUrlYKn5+vz3Ss37lHn5N7Nkw1PfZ+jz/C5anuW5Zwcd8y41O+Lbl6WYkY3qYizQChm4gy1riaimNFVOuIsGIqZOEOtq4koZnSVjjgLhmImzlBzIhLQNQGKGQA9h85WdWRCt61LxyB7lgyqgNN3q7ZZPyr8bk5IFWkpdiSNYkbX6zveBkcxE29TG+WLUcy4Xs7ljSlmXDPvFDOumXeKGdfMO8WMa+adb00C4QlQzNiwJvxfBUDug0+aOBGSJ0sSpgfFjA0A+YjDCVDMOByp7gekmNF9imIlQIqZWMGq+0EpZnSfolgJkGImVrDqflCKGd2niAGSQJwQoJixEzPFjJ0A2V0TAYoZTdgM3YlixtDp0xw8xYxmdIbuSDFj6PRpDp5iRjM6Q3ekmDF0+hg8CTiMAMWMnSgpZuwEyO6aCFDMaMJm6E4UM4ZOn+bgKWY0ozN0R4oZQ6dPc/AUM5rRGbojxYyh08fgScBhBChm7ERJMWMnQHbXRIBiRhM2Q3eimDF0+jQHTzGjGZ2hO1LMGDp9moOnmNGMztAdKWYMnT4GTwIOI0AxYydKihk7AbK7JgIUM5qwGboTxYyh06c5eIoZzegM3ZFixtDp0xw8xYxmdIbuSDFjjPQFBgapmqNp06SAh7t7mKDlEpkPiuZHimRJjfEyAF76vUKCBB4R3sUwLxAPA6WYsTOpFDN2AmR3TQQoZjRhM3QnihlDp09z8BQztqO7es2E27dN8PExI1cuM7wT2t5Xb09SzOgtI3ETD8VM3HDW2ywUM3rLSNh4Hj5+hlHTlmHHvuPWD2pWLoUBXZsjmU9i9bMC5Vth+cyBKFowty5fRm4YzpwhNaqW/0DF5+cfgOLV2mPGqK9RoUxRXcbsikFRzNiZdYoZOwGyuyYCFDOasBm6E8WModOnOXiKGdvQrfnBHefOmawPe3sDHdsFI3lys20D6OwpihmdJSSOwqGYiSPQOpuGYsYBCQl4heCbV+GWMg1MyVM5YMDXQ4SEmNGk43AEh4RgVP+2yJE1Iy79/Q/6j5qPlCl8sGRqf0OImW6DpiNfrqzo1LK29b0uXL6OzBnTwidJIofx4kD2EaCYsY8fKGbsBMjumghQzGjCZuhOFDOGTp/m4Clmokf34KEJ02eF3VYuvcqWCUHliiHRD6DDJyhmdJiUOAiJYiYOIOtwCooZ+5Lyausa+K2aBwQGqIE8Cr6PJIOn2Tfom977j5xGp2+mYPuKcciSKZ11zItX/kG9NoOweEp/fFA0n9ox80X9Kjh28k/89fdNfFalNIb0bAXvhAnwz+17GDtzJX49dQEJvTxR6v0CGNmvDRIk8MSJ0xcxYfZq/H3jDip//D6a1K2EQvmyq3madBqB9s1r4uCxMzh/6TqKF84L3+cvMbR3K2sc85ZtwYuXfuj5VUP0GzUPh4+fxaMnvsiZNSM6f1kXVcuXgByz+nbcIjV3xnSpkTtHZjV/8y6jMPDr5sifOyue+r7A+FmrsHP/CSRN4o36NcurueXI1padh7H/6GkkS5oYm3ceRr5cWdCldV2ULJrfIYw5yH8EKGbsXA0UM3YCZHdNBChmNGEzdCeKGUOnT3PwFDPRozt/wQ2r1rpFeDBnDjNaNg+OfgAdPkExo8OkxEFIFDNxAFmHU1DMaE+K+dF9PO1QN8IA3i27wevThtoHftNz/vIt2L73GDYuGhlhrKpN+qBFg6poVq+SEjMF82ZH6yY18ODRU0xdsB6De7RQgqZ9n4lwd3dH93b18cz3Bdb/tB+De7SEHJGq3qwvenVoiLIlC2PHL8exYfsB7Fk7GSaTSY0prVm9ysiYPhXeyZQO3QZOw551k5E+TUq8CgjER7W7YsyAdqhU9n2s2LALubJnRqrkPth35HdMmb8OhzfPgv+rAPQaNhtZMqVF3eplkSSxt5IxMv7S6QPwfuE86DtiLi5cvqEEz6MnzzBmxkoVr7zbkjU/Y8Kc1fiycXV89EEhxePcxWtYv2CY3Xw5QFgCuhQzYu2uXLuNy1dvIjAoWFm/nNkyIk2q5LrLH8WM7lLiEgFRzLhEmsO8JMWM6+Vc3phiJvq8X7rshmUrI4qZzJnMaN+GYiZ6gnxCLwQoZvSSibiNg2JGO+/AXw/gxcQBEQZIUK46EnUeqH3gNz1HTFmKW//ex9xxvSKMJTtOihXKrWRG+Bozo6cvx4uX/ur4kzyXOmUyDOjWHGlT//dddvaSH7F19xFMGtJJjR0UFIzGHYfjh4XD1a4UGVPmLVuykHXuGs37oV6Nj9G26afYdeAEBoxZiMObZ8LT0wPBwSG4eOWGEiz3HjzBjEUbsGbeECWMwh9lkgEtYiZ/7iwoUb0DJgzqiBoVS6q5ZIeP7P4RISVi5n/Hz2DhxD7qs6s37qBmi2+U9LHU2LEbNAdQBHQlZqSo0uR5a3Hzzn0VXMrkSdVCu3v/sfr7RN4J0a1NPTSpW1E3FaQpZvib5AwCFDPOoO7cOSlmnMvfWbNTzERPXnbMrFzrhv8qzLzukzN7CFp+waNM0RPkE3ohQDGjl0zEbRwUM9p5B507iefDukUYwKt2M3g366h94Dc9F6zYim17jka6Y6ZCgx5o27QmmtatGEHMrN60F4tXb8eOVRPUEab+o+ep77OZM6RB22afokHN8ug/ej72HDyJvDnfCRNnx5a1UaZEwUgLCq/YsBtL1+3AzyvHo8vAaapvtzafKwnUod9kJWUqfFQUGdKmgsS+avYgFH4351vFjHzfFtGybfk4ZM38+rjW1l1HMGzy9zi+fW4EMSPS55P63a07d+yGzAGsBHQhZkTEjJq2HAeOnlYW8LPKpfFegZzwSuCpAg0KDsalv29i255jkIUuVaWH92mNQvlzOD2VFDNOT4FLBkAx43ppp5hxvZzLG+tNzDx5asKO3W64etUEdzcz8uQBKlcMRiJv5+XHWmPGDKhSv28MzcesMeO8pHBmTQQoZjRhM3wnihk7UhgSjGe9WyLk5rUwgyQdOQ/ueQrYMfDrrpYaM1uXjkH2LBms40nNl/rthliPAoXfMSNS4/LVW1g24/VuHtnNIjtNdh08gZmLNkLG27DtIK79c0fdjBRZi+ympydPn6NM7S5qd0ufEXOstW9E8MiumMNbZqlaMNKkfxgxkzMLOrWqY53KsmMmV7ZMKF2rM2aN7o7ypYuozyXGbXuPKlkTfscMxYzdyyrKAXQhZroOnKa2XMl2r1zZM731beU52R72x/kr2LtuSuyRsXFkihkbQfExhxKgmHEoTkMMRjFjiDQ5PEi9iZnlq9zx16Wwe1OKvx+CWp86d2cKb2Vy+NLjgE4gQDHjBOg6mJJixr4kmJ89wauff0Dw3xdhSpkGCT6uCo98he0b9E1vy61MAYGBGDOgPRg0aqUAACAASURBVHJmy6SOC0lNFqnzsmhKP6sEGTugPWpU/BC/njqPviPnol2zmqoGzaS5a1G/ZjlV40V2tIjQkfosfv6v8EXX0ZB+1SuWxNNnL9TxJCnyK9+Ho7qCW4r8yo6WUsULWI8XHf3tT7TpNR4bvhuh4vppz1F1xbdFzEitHCk0LBJIdtfILpnQNWbkuFWSxAlVweLHT33RY8gsVClXQtW/oZhxyFKyaRBdiJkffjqgFrJUrralyS/Jqh/3qIJEzm4UM87OgGvOTzHjenmnmHG9nMsb60nMhIQAo8d5ICAwbC6SJzOj59fOr+Vy9ZoJt2+b4ONjRq5cZngnNO6aYfFf4+bOnsgpZuyhZ9y+FDP6zp0U6RXJISU3LK1m5VKqZkzo3SlScuOln796RD4f0ae1unlJNiDsPXRK/TxdmhRoWreSqhEjbcO2A6rQrqWfHCWaO66nugEqKjEjR6O+7DEWk4d2QtXyH6hx5Ltxz6GzlNiRVqFMUTXn6jmD1QkT2a0jn8uNUUUL5sbymQPV+LKjp1ihPOrzrwfNwJXrt1V/2TkjwihpkkRYsvZnddvT/Am91Wf3Hz5B+c+7qw0S8j5sjiOgCzHjuNeJ+5EoZuKeOWcEKGZcbxVQzLhezuWN9SZmRo7xQFA4B5M4EdCvd5BrJiiW3ppiJpbA6nxYihmdJyiWwqOYiSWwDh42ICAQ9x4+QbrUKVQN1PDNbDbj7oPHSJggAZInSxLmY7kZ6ZnvyzDFfy0PSD+RPzKmRfRoDV1uhHJ3d0OKZEkjHULm8UmaGJ4e7pF+LidTvLw87Y5Da/yu3k93Yub0n1eU7Wvb5FO1qOU+9WXrd6qrvb7p2jTMHfJ6SB7FjB6y4HoxUMy4Xs4pZlwv53oTMxLPsFFy80PYXCRODPTrRTHjyBVKMeNImsYZi2LGOLlyRKSXLpuw76Ab7t41IZmPGe8XM6P0h849FhqT98qYyonFxWISKJ8lAYMQ0J2Y6T18jqpaLVurLFul8uTIDLlCW/5/ZNeVOZM1xYwz6bvu3BQzrpd7ihnXy7nexIzs0B49/vWfEkqVGbMZMJkArwTAwP4UM45coRQzjqRpnLEoZoyTK3sjffECmDQ14g7Els2DkTOHKmOu+0Yxo/sUMUCDEdCdmKnVcgA+r1kOLRtUxbqt+zB04hL8sn4qXrz0U1d5nfh5vs21aOIiFxQzcUGZc4QnQDHjemuCYsb1cq43MSPxjJ/sgefPw+YicyYz2rdxfo2Z+LRCKGbiUzZtfxeKGdtZGf3J8xfcsGqtW4TX+Kh0CKpUMsauGYoZo69Cxq83AroUM03qVkSTOhUxYMwCyHVkGxeNxEu/VyhR/SusnjsEhfJl1w1HihndpMKlAqGYcal0q5elmHG9nOtRzBw77oZtP7up3TJqXboBjRqEIH9eY3yRMMoqopgxSqYcGyfFjGN56nk0ihk9Z4exkYBzCOhOzHw77jucPPMXWjWqjmGTlqBDi1ro2roepPZM004jsGv1RGRMn9o5tCKZlWJGN6lwqUAoZlwq3RQzrpdu6xvrqfivJaj7D0z4+6oJ7m5m5MwBpEhhjG33RlpGFDNGypbjYqWYcRxLvY90/z4wY7bH63OhoVrliiEoW8YYops7ZvS+yhif0QjoTsz8c/seWn49RtWZkSu4ZLeMVKjuPngm/jh/BbvXTIab/NGxThrFjE4S4WJhUMy4WMK5Y8b1Ev7mjfUoZlw2GXH44hQzcQhbR1NRzOgoGbEcimXHjFVrq22IJiVleJQpluFzeBLQKQHdiRnhJNeR3bn3CO9kTGuVMH/8eQXJfJJA7nfXU6OY0VM2XCcWihnXybXlTXmUyfVyLm9MMeOaeaeYcc28U8y4Tt55lMl1cs03JQFbCehCzDx64ouUySO/bz2qF9HSx1YoMXmOYiYmtPisowhQzDiKpHHGoZgxTq4cGSnFjCNpGmcsihnj5MqRkVLMOJKmvsfirUz6zg+jIwFnENCFmOk5dBYqlS2OGhVL2sRA6s0MnbhYHXNydqOYcXYGXHN+ihnXyzvFjOvlXN6YYsY1804x45p5p5hxrbxfumzCvoNuuHvXhGQ+ZrxfzIzSHxqjvoxkijVmHLNenz57gRBzCJL7JIHJ5PhyHZeu3oTv85coVigPgoND8CogEIm8vSINPrrPHfPGHCUqAroQM4tWb8OkuWtRtXwJfN22fpTHlR48eopFq7bh+3U78FmV0hg7oL3TM0sx4/QUuGQAFDOul3aKGdfLOcWMa+Zc3ppixjVzTzHjmnlPn9Ib9x77IcRgddRdQczMX74F0xb+YF2YU4Z1Ro8hs6JcqOsXDEPnAVNVrdSFE/ugVPEC6tn9R05j2OQl2Ltuivp7ESBrt/yC2Ut+hJwCkZbIOyGa1KmAnl81dOgvwuzvN+HC5euYPqIbjpw4h7a9J+DQpplIniwJ+o2ah7ZNP0Xu7JnVnOE/d2ggHCxaAroQMxLluYvXMGTiYnU9duF3c6LU++8ifdpU8PRwx7/3H+GPP//GgaOnVUHgwT1aonzpItG+XFw8QDETF5Q5R3gCFDOutyYoZlwv5xQzrplzihnXzTvFjGvmnmLG/rz7hQThT//HyOSZGOk9E9k/4JsRRKBs23MUw6csxeHNMxEYFIy79x+pT6/euIOu307H8pkD1W4XaZnSp0a1Zn0RGBiEjOlSY/XcwWoXTHgxs2DFVsxfvhXDen+J8qXfg/+rQBz97U9MnLvaKm8c9RKhxczzF364fvMu8uZ6Bx7u7ihQvhUWT+mPD4rmU9OF/9xRMXAc2wjoRsxIuEHBwdj7v1P4869ryuyJrJGFWiBvNuTPnRV5cmRWu2rEKOqlUczoJROuFQfFjGvlW96WYsb1ck4x45o5p5hx3bxTzLhm7ilm7Mv7lLunMeDWMfibg9VAFZNmwu48tewbNFTv7XuPYfCExTi+fW6YMS9e+Qf12gzCwR9nhKmVWqFBD3RqWUdtOJgxshsqfFQsjJh56vsCpT/rjME9WqBR7QphxvR/FYCEXgnUjho5UbLqxz3wfe6HimWL4ZsuzZDMJzEuX72F/qPno2blUli1cY/q36ZJDTSs9Yn665d+/hg/azV+2nMUCb081fdmETGyY+bK9dsYMHoBVs4ehGkL1+O7VduQOUMaJZbq1iiLEkXyWT93d3eDxDp+1irs3H8CSZN4o37N8mjfvKaSOlt2Hsb+o6fV7cmbdx5GvlxZ0KV1XZQsmt9h7F1tIF2JGSPCp5gxYtaMHzPFjPFzGNM3oJiJKbH48TxrzMSPPMb0LXiUKabE4sfzFDPxI48xfQuKmZgS++/5W4EvkPmPpREGmPJOGXRPW1j7wHaKmSE9W+Hshb+xY99xVRP1f7+esR5lOnX2Epp3GYX9G6Yhdcpkkca4bus+JVf6dGqMDGlTquNUGdOnUnLlzPm/0bjjcFQoU1TJmH9u38eoactweMssJUmGTf4e+4/8js6t6iJX9kyYu3QzPD3dVV/Z9NDwq6E4vec7teOnzpffom/nJng3d1akT5sSz3xfWj8X+dJ3xFxcuHxDHa969OQZxsxYie7t6qNZvUpYsuZnTJizGl82ro6PPigEEVgyvhznYtNGgGJGGzdrL4oZOwGyuyYCFDOasBm6E8WModOnOXiKGc3oDN2RYsbQ6dMcPMWMZnSG7kgxoz19Pz65irpXfo4wQMtUebEkW9jdKFpn0bJjRsRMkYK5UKlhLwzt3QpJEnlbxcyOfb+i59DZOLN3MdzkP+4iaU06jVA7UIb0bKk+3X3wN3w9aAYOb56FG7fuKjFz9pfF1mLBZet0xfC+rfFRiUIoUrktRvRtjXo1PlZ9Qx9lCi1mIjvKFPrzgIBAlKjeARMGdbRe0DN25kocO/mnkk0iZv53/IyqpSNNRE/NFt+oGGVnD1vMCVDMxJxZmB4UM3YCZHdNBChmNGEzdCeKGUOnT3PwFDOa0Rm6I8WModOnOXiKGc3oDN2RYkZ7+vb53sYnf22KMEC/9EUxNtOH2gcO1VOrmClX6j0sXPkT1m3Zp3a+jJ6+XNWPseyY+WX9VKRNnTzSGEW0yC6VutXLqs/v3H2ISo16YcN3IyDCJLyYqdG8H7p8WQ+F8mdHtaZ9sWXpGOTIksEuMfPPrXtKtGxbPs56Mc/WXUfUjhw51hVezNx78ASf1O+OPesmI32alA5h72qDUMzYmXGKGTsBsrsmAhQzmrAZuhPFjKHTpzl4ihnb0F27bsLefW64fduEpD5mFClkRrmPjXPtbPi3pJixLe/x7SmKmfiWUdveh2LGNk6RPRUMMwqfW6MK/4ZuR/LVw4eJ02kf2EFiRuq9lKvXHUUL5sLla7eUmJHrsUvX6owB3ZqrI0Gh20u/V+oq67qtv0WZDwqhd4dG6mPLbUkic6T4cFRipnK54ihSqU2YG6Gi2zHz3eS++LDYu2qe0DtmXrzwV3HOGt3deunOzEUbsW3vUSVrKGYcsrzCDEIxYydTihk7AbK7JgIUM5qwGboTxYyh06c5eIqZ6NG9CgCmTPfAy5dhn21YLxgFCxrs/tk3r0AxE33e4+MTFDPxMavRvxPFTPSM3vbE/SA/zLp3Fr+9vK9uZWqeKg8+SvJ6t4i9LfytTJ6eHtYh31b8V44yyY4ZaSs37lE1YORmYct12bMWb1RHjEb2a4NKZd+HFP09/vtF661MIkA2bD+AqcO6IF2alBg5dSnu3HuEdfOH4uyFq1GKmRoVS6LboOmqeHC/zk2UBJIdLpb6NOGPMrXuMQ4liuZD26Y18fKlP27euR+mxozUwkmSOCHkfR4/9VVXhVcpVwK9OjSkmLF3cUXSn2LGTqgUM3YCZHdNBChmNGEzdCeKGUOnT3PwFDPRo7t6zYTFS90jPFjkPTPq1X59S4fRGsWM0TLmmHgpZhzD0WijUMzoN2Pzl29RhXct7dhPc5Aksbf6W1vFzKuAQFRq2BMidSxiRq7dXr5+p5IzsqtGmtye1KROBXWESX42YMxC7DpwQn2WNXM6dcNTzmyZcEbETIdhYWrMyFGmrq3roXqFkuqoVPs+k9QYMqYUAE6TKpkq/is3Hzdo/7r4r9SY2XPwJIZOWoxHT3zRsUVtVPioaJjPpW6M1LaR25yklS9dBGMHtEfSJImwZO3POHz8LOZP6K0+u//wCcp/3l29o0gotpgT0J2YOXjsDPLnzhJlleqYv2Ls9qCYiV2+HD1yAhQzrrcyKGZcL+fyxhQz0eedYiZ6RnzCGAQoZoyRJ0dHSTHjaKLGGu/h42dqh4vc0BS+GLBcV+3vHxBj0SHi596Dx6rWi1x7/bYmc8tumFQpfKzFhMM/L/VjvLw81a1PbLFHQHdipuvAadh76BTqVPsITepWRMG82WPv7R0wMsWMAyByiBgToJiJMTLDd6CYMXwKNb0AxUz02J49ByZO/m97uaVHqRIhqF7dmHVmuGMm+rzHxycoZuJjVqN/J4qZ6BnxCRJwBQK6EzNi7Db9fAhL1+/A3fuPUfjdnPji8yqo/PH7agtYbLag4GC4mdwivbrM9/lLyOcpkiUNEwLFTGxmhGNHRYBixvXWBsWM6+Vc3phiJvq8y46ZRd+/PsokF4+aTYDJDBQpwqNM0dPjE3oiQDGjp2zEXSwUM3HHmjORgJ4J6E7MWGCJBDn061ms+nE35HhTyuRJ0axeZXz+6cdIkyryq8XsAe3nH4BGXw1F++afoWblUtah5Hxev5Hz1C4eaSKK5IyfbDeTRjFjD3X21UqAYkYrOeP2o5gxbu7siZxiJnp6PMoUPSM+YQwCFDPGyJOjo6SYcTRRjkcCxiSgWzFjwSlFikZPX6EKGVnaZ1VKo2mdikqSOKJNnLsGi1dvV0ONG/hVGDFjuX9+2YyB8E6YAB37T0H2LBkwom9rihlHwOcYmghQzGjCZuhOFDOGTp/m4OO7mLl124Tr101IlMiMnDnMSBp2U6pN3Hgrk02Y4vyh/Qfc8PsZE3yfmZAxoxmflAtB9mzGvCUrruBRzMQVaX3NQzGjr3wwGhJwFgFdihm5MmzX/hNY/sMunL14VVWUbtGgCqp98gF+PXUe363apnhZKlvbC+/J0+fwDwhA004j0LN9wzBipn67IahavgTaNaupptmx71f0HDrbWgmbO2bspc/+WghQzGihZuw+FDPGzp/W6OOzmNmxyw2HjvxXlNDDE2jdMhiZM8b8y/u16ybs3eeG27dNSOpjRpFCZpT72Jj1ZWStGL3GzNlzJqz9IexNWV4JgN49gyD/ny1yAhQzrrkyKGZcM+98axIIT0B3Ymb1pr2YNHetuuJLdsQ0/7yyut/dK4GnNXY55nTi9EV8WOxdh2a0apM+6qqx0EeZSlTvoO6YFzkjzXLN2OEts1Rl6ruPX19x5ozm4W5CKh8vBAWb8fDZK2eEwDmdRCB1Mi888g1ASEjMv8A4KWROaycBETOpkiXE/SfO+2eOna/A7hoIJPB0QyIvDzx5HhChtxlmmFRVFeO1gABgxFh3hIRzJ4UKmtG4vnGFiqMykTihO2Ay4YVfkKOGjNNxNm1xw6+/RVybbVuGIHt2/nsrqmQkT+wJv4BgvArk70CcLlgnT5YmeUI8fOoPo/0nnfwhIRsJkIDjCOhOzMhulMSJEqJx7QookDeb497UhpHCixmz2YyCn3yJ2WN6oFyp99QIV67dQq1WA7F7zSRkSJcKQcHO/Zenx5sr0Jwdhw14+YgDCbi7mRBstH+DO/D9XXUodzc3BIf/JuuqMFzkveWrrcnNFKmEDQgKQQKPt1+D6WhMQcHAoaNmXLxkhocHUCC/CR8UM4lDiFG7ccuM0ZMi/vszc0YTvu0dt+8Uo8Dj6GG3N0BDzMaUGHMXheD3sxFj797BDfnyxHCxxBFzPUwjV+WaQ0S5srkSAaP+u93yHcSVcsV3JYHYJKA7MSM3MV24fENJGUuBXQEgBYBTp/RB/txZY41HVDtmRvVviyrliqt5w++Y4VGmWEsHB34LAR5lcr3lwaNMrpdzeWO9HWXastUNx0+GFSeVKoTg449i9ocUsmNm5NiINy1mzmxG+9bBrpnsUG9t9KNMy1e64a/LYdeJOKZWLYKRkztmolzfPMrkmr/6PMrkmnnnW5NAeAK6EzNyjOnHnw9i2/JxSJokkTXecbNWYeuuw/jlh6nwcA97btlRaY1MzEiNGalt07bpp2oa1phxFG2OYw8Bihl76BmzL8WMMfNmb9R6EzOjx3nAz/+/a6nlj/ZTpzbj684xkykyhowVeqeN7BLIljUEbVrGTPLYy1iP/Y0uZpaucMflyybr1eWWHSD1agejaBHuB4lqzVHM6PG3MfZjopiJfcacgQSMQEB3YqbRV8NQqngBdG9XPwy/qzfuoGaLb5SwyZo5nUPZSs0a2Toq43doUQs1K5WCp+frP8lbsGIr1m/dD7mVKZG3Fzr0m8xbmRxKn4NpIUAxo4WasftQzBg7f1qj15OY8fUFJkwJu8tFvmLL2hw2KGa1UP65acKCRe6QXRTqYIsJ6q+1SB6tbPXcz+hi5vBRN/y8M+yOGZFwfXoEIUkSPZN3bmwUM87l76zZKWacRZ7zkoC+COhOzNRqOUDtUOnUqk4YUn/fuIPPWnyDHxYOR75cWRxKUerayE6Y0G3r0jFKwLx46Y/ew+fgwNHT6uOCebNjxqivkTZ1cvX3PMrk0FRwMBsJUMzYCCoePUYxE4+SaeOrXPzLhAsX3RAQ4IYMGYJRoniI02+0GTQs7C4X5VRMZgwbFLMdM1KebfwkD/j5hYXxQYkQ1KzOHTNGFzNBQcDyVe74++rrejJSj6jSJyEoXYq5fduvP8WMjf9wjGePUczEs4TydUhAIwHdiZl+o+bh8PGz2LVmEhKGulNx7MyVWLZ+J37dNlcVB47r9tT3BQIDg8LUvaGYiesscD4LAYoZ11sLFDOulfMzZ01YtyHssd1cOc1o0SxmAsSR1F68BMZOiChmZI7hg2O2Y0b6yJXKm39yh/+bi8YyZjCjSaMQJPPhURejixnLupNdVvK/1GmAUJdrOnJZxquxKGbiVTptfhmKGZtR8UESiNcEdCdmLLceCfWq5T9AujQpsPd/J3Hzzn20blwDvTo01FVCuGNGV+lwmWAoZlwm1dYXpZhxrZyvXOOmdsuEb3IUJGlS57EYPDxiwV63//dHQwfGXMzIW8gtT/fvAd7eJiRPTiFjyWx8ETPOW6nGnJlixph5szdqihl7CbI/CcQPAroTM4L1/KXrmLZwPX774xJe+vkjZ9aMaFT7EzSqXSHWCv9qTSfFjFZy7GcPAYoZe+gZsy/FjDHzpjXqaTM98PBRxN5ftghG9mzOExhDR3og/I3t3t7AN320iRmtfCLrFxAIPLgPJa6cKa8c8U4UM46gaLwxKGaMlzNHREwx4wiKHIMEjE9Al2ImNNaQEDPc5BuJThvFjE4TE8/DopiJ5wmO5PUoZlwr5zNmu+P+g4j/7uvfKwiJEjuHhbpJabwH5CYmaVLMVQr2eicEBvRzrpjZ9rMbjv763w6jlCnM6NA+GAm9nMPK3lljW8xI/aJz593g52dG1izQRf0ie5nFh/4UM/EhizF/B4qZmDNjDxKIjwR0K2ZEyPj5v4rA3Bn1Zd6WeIqZ+Phrof93opjRf44cHSHFjKOJ6nu8OfPdceff/8SMciFmoH2bYLyT2Xk7ZsZP9sDz52HZZc5kVnE5qz16DEyZ4fH6dqdQrcC7ZjSq77y47OERm2JGj/WL7GEVn/pSzMSnbNr+LhQztrPikyQQnwnoTszce/AE85Ztxs79x/HoiW8E9oe3zEKypE7648JIVgLFTHz+9dDvu1HM6Dc3sRUZxUxskdXnuBs2ueP307Il5XV8ZhPg7gYM6BuEBAmcF/Ox426Q3SmyU0aamxvQqEEI8ud13m07e35xw74Dbm/u3QZM5te81E6evs7dyaM1U7EpZpaucMflKxF3Y33TN0gxY3MeAYoZ57F35swUM86kz7lJQD8EdCdmRk9fjhUbdqPzl3WRKX1qeHiEvZWiysfF4ekZsfigs5BSzDiLvGvPSzHjevmnmHGtnN/5F/huiQcCAv577zKlQlC1svMEiCUSOWIl1yC7u5mRMweQIoXzdvBITBs3u+HkKRNMcrYqVBNpNPRbipnwvzmTp7rjybOIYqZj+yBkSO9av2d6e1uKGb1lJG7ioZiJG86chQT0TkB3YqZsna5o8Fl5dGvzud7ZqfgoZgyRpngXJMVMvEtptC9EMRMtonj3gBwZunbNDUGBHkidNhByZIgtIoENm0z4/XTYP8SRp8TTDBtEMROe2LwF7rh1J6yYEVaDBwapXVlsziNAMeM89s6cmWLGmfQ5Nwnoh4DuxEyHfpPwTsa0GPj1F/qh9JZIKGYMkaZ4FyTFTLxLabQvRDETLaJ4+YCXpxsSe3vi0bOINdfi5QtreKkly93w99+RG4XhgylmwiOd/507bt4KW7/IZDajT89gw99mpWH56KoLxYyu0hFnwVDMxBlqTkQCuiagOzFz6PhZdB88E9tXjEPqlMl0DU+Co5jRfYriZYAUM/EyrW99KYoZ18u5vDHFTPR5/2mHCUePuUco/uvuDgwZSDETnuCi791x7XrY+kWiafr0CKKYiX65xeoTFDOxile3g1PM6DY1DIwE4pSA7sRM7+FzsH3vsSghsPjvf2g83E1ImzwhgoLNuPfEP04XDidzLgGKGefyd8bsFDPOoO78OSlmos/Bb6dM+HHL/1sY8+vjS5aWPLkZPbvxVqbwBKVQ8t59YXcYpUltRtdOxmQV/QoxzhMUM8bJlSMjpZhxJE2ORQLGJaA7MbPn4En8c/telESb1K0IrwSeuiHOHTO6SYVLBUIx41LpVi9LMeN6OZc3ppiJPu9Si2fiVA8Eh7y+mElujBJBI4WSpWCyEVts3soUGADs2eeGPy+Y4PfShKxZzahUIRjp0xmRVPyKmWImfuXT1rehmLGVFJ8jgfhNQHdixmi4KWaMlrH4ES/FTPzIY0zegmImJrTiz7MUM7bl8uivbti52w1Bb04u5chuRuOGwUjoZVt/vT0Vm2JGb+/KeP4jQDHjmquBYsY18863JoHwBHQpZo6dOo+N2w/i+s276PBFLZQr9R4mzl2DVMl98GXj6rrKIsWMrtLhMsG4opiRPw2/fNkNDx4CqVMBOXOGwCPiRSzxdg1QzMTb1L71xShmbM97QCDw4D5UnRT5n5EbxYyRs6c9dooZ7eyM3JNixsjZY+wk4DgCuhMz5y5eQ8OvhiJdmhTw/b/2zgO8qer949+bpLulLS1llQ0yREABFRRFUIYTByCIMlREpiAKPxAFGS4UAQeCoIKibEEUQZaAiqIIiiKyBcpsKXS3Se7/f24HTdOV5Ca5N/ne5/ERyD3nvOfz3jbNp+e8JzUDL458DPd0aovFqzZh6sxF+G39XAQHBapHwMWeKGZcBMjmThHwNzFjtQJz5plw5uwVXHFxwKAnzDCZnEKou0YUM7pLmSoBU8yoglF3nVDM6C5lqgRMMaMKRt11QjGju5QxYBJwCwHNiZkJry/ApZRUzHx5GJ56/k3cc0dbRcwc/e807n7sf1jz8VTUq13dLTCc6ZRixhlqbOMqAX8TM/sPGPD5EvvjcHs8YEHTprKrOHXRnmJGF2lSPUiKGdWR6qJDihldpEn1IClmVEeqiw4pZnSRJgZJAm4noDkx067bMIwc2B0P3HkLBj43vUDMJCWnQLy2fN4kNG5Qy+1gyjsAxUx5SfE+NQn4m5jZtsOAjZvtxczNba3odLs+i3s6+jxQzDhKzDfup5jxjTw6OguKGUeJ+cb9FDO+kUdHZ0Ex4ygx3k8CvklAc2LmidFvICa6Al4b/5SNmFn73U8YM/UD7Fz7HiLCQzWTDYoZzaTCrwLxNzGzc5cB36yzFzOdb7fgprZcMeNXc1rMRgAAIABJREFUD7+fTZZixs8Snjddihn/zDvFjH/mnWLGP/POWZNAUQKaEzPfbfsVz7z4Dnrf3xE/796P9m1boGJUBbzx/hfo1uVmTB37hKaySDGjqXT4TTAUM4DQMZ1vt0KsmvGHiytm/CHL9nOkmClf3o8dl7B5qwEJCRIiKshocY2MW2/R7/cGipny5d3X7qKY8bWMlm8+FDPl48S7SMDXCWhOzAjgS7/aijfe+wLpGZkF/O/qeCPGP/MoIiPCNJUTihlNpcNvgvE3MfPLbwZ89bUBkrAxEhQrI0tA105WtL1Rvx++HHlgKWYcoeU791LMlJ3LrGxgxiwT0tNt79VzDSqKmbLz7ot3UMz4YlbLnhPFTNmMeAcJ+AMBTYoZAT47Owcnz1xQ5Ex8lUqIigzXZD4oZjSZFp8Pyt/EzPkLEt553wi5yK6loYPMEKcz+cNFMeMPWbafI8VM2Xk/ekzCRwuNdje2aC7jgfssZXegwTsoZjSYFA+ERDHjAcgaHIJiRoNJYUgk4AUCmhMzE6d/jAZ1q+ORB+6wwXHg8Ak8PfYtrPjwZURHRngBVfFDUsxoJhV+FYi/iRmR3D/2SfjhJyMuJAKxMUCbGyxo0cw/6suI+VPM+NWXuDLZ1FTg2DEDzDkmxMblIL66/zzvjmS7JDHTpLGMh7tTzDjCkvd6lwDFjHf5e2t0ihlvkee4JKAtApoTM8PGz0SThrXx9GP32ZA6n5iM9g8+w1OZClExGSXERQXDbJFxLvnKti9tPWKMxh0E/FHMuIOjnvqkmNFTtlyP9fQZYP7HJmRnX+nrpjZWdL7DP7buOUIw4bSE9+caIYltjoWuRldZ0fthffLiihlHngDfuZdixndy6chMKGYcocV7ScB3CWhGzOw/eBw5OWa8/t4XqFOzKrrffWsBdbPFgnWbf8biVZvw67dzERIcqJmMcMWMZlLhV4FQzPhVurHrNwm7fjUiKQmIqySj3c0yGjfS5wdO/8qc87NdudqIPXttTYPBAIx73oxA7bwFOj9BFVvu/8eAxUtyT21TSlBJUOpRNWpkRe+e+vw6oZhR8QHRUVcUMzpKloqhUsyoCJNdkYCOCWhGzLTrNgxJySkloqwYFYHHe9+Ffj26aAo3xYym0uE3wVDM+E2qIU6bWfCJbf0MkxEYPtSCqEhubfHVJ+GdOUacO1dkCQiAJwdYUCOeeS+c9wuJEma9a19jpt1NVtzRkWLGV79GfHFeFDO+mNWy50QxUzYj3kEC/kBAM2Lm8LFTyDFbMHXmp6hfpzp63ntbAf+AABPq1KgKg1jLr7GLYkZjCfGTcChm/CTRADZsNGDHj7mrAQpfvXpYuWrGhx+DGbNNuHjRdoJCx4x51oxwbR1OqIksLFlhxF9/XfkZISQEePpJC6Ki9CmxuGJGE4+Vx4OgmPE4ck0MSDGjiTQwCBLwOgHNiJl8EukZWTAaDQgKDPA6nPIEQDFTHkq8R20CFDNqE9VufytXG7Bnr72YubOrFTe21udqAO3S1k5k4hSys+clZWtO4YsrZkrOkSgCnJAgoUIFGfXrywgJ1k4+HY2EYsZRYr5xP8WMb+TR0VlQzDhKjPeTgG8S0JyYEZgvJF3C/oP/KUdlF7063HwdAsQ6fo1cFDMaSYSfhUEx4z8JX7rCgH1/FREzMnDfPVa0vI5ixlefBFFj5vc9Um5B27xFHwYja8z4ar6Lzotixl8ybTtPihn/zDvFjH/mnbMmgaIENCdm/vj7MHoNnlxipn786l1ERmhnHTfFDL+ovEGAYsYb1Isf8/ARCX/+ZUBaqoz4eKB1KytCQ9SLb/P3Bmz53pC7cqLQrozuD1pwTVN9btNQj47v9sRTmXw3t+WZGcVMeSj53j0UM76X0/LMiGKmPJR4Dwn4PgHNiZnhE2Yh4UwiJox8DL0HT8aqBVNQuVI0Jrw+H7JVxuypIzSVFYoZTaXDb4KhmNFGqg8ekrBosRGy8CN5e05qVJcx8HGLagGK7RkLFhptxIw4nWfkCAsiK1DMqAZaYx3l5ADfbjDgr/0SsrMkVK0m4+6uFlStorFAGY5bCFDMuAWr5julmNF8itwSIMWMW7CyUxLQHQHNiZk7+4xBnwc7oce97dG84+NYPm8SGjeohd/3HUSfoVOxZfnbiIuN0gxoihnNpMKvAqGY0Ua6Fy8xYf+BAidTENTI4RZEq1R0tLhTmYSYeWZY6acyCVkkTqsRV2yMnLslhpduCIiCz6Lwc+ErpqKM4UMszKVusuh8oBQzzrPTc0uKGT1nz/nYKWacZ8eWJOBLBDQnZjr3eg59e3RB7/s7Qvx5cL9uuK/zTTh+8iyEtFk0exyuu+YqzeSAYkYzqfCrQChmtJHuV980IT3NPpaHHrCgmUrbjNZ/Z8APPzl2KtOJkxKWrTAg+VKujRHHavfsbkX1alxho40np+woFn5mxKHD9jZNTelXdhS8w1sEKGa8Rd6741LMeJe/t0anmPEWeY5LAtoioDkxM2Dka6hWJRZTxjyOSW99gh937cOYIb2wcftvWL3+B/z89fsID1OxgIOL+aCYcREgmztFgGLGKWyqN5ryqgnZ2fbd9u5pQaOG6kiQL5YZ8Pd+ezFz+20W3NKu+DE+/MiI/07YfqivXUvGgL7qbbFSHSY7tCEwb4ERQrAVvShm/ONBoZjxjzwXnSXFjH/mnWLGP/POWZNAUQKaEzPfbPoZx06cVlbKnLuQjAefmICk5BQl7tGDeqL/w101lUWKGU2lwyPBpKQAouBrerqEWrVkr6xCoJjxSKrLHOTlV0ww59jf9sD9FrS4xo1iRga6dLKgbRv7MaxWYNprJmQXiSs4CBg3xlzmnHiDNgi8P8+E06ftYxk/xoygIG3EyCjcR4Bixn1stdwzxYyWs+O+2Chm3MeWPZOAnghoTswUhWe2WPDv4ROoGFUBScmX0bBeTRiN9r899hZ0ihlvkffOuCcTJCz4xGjzYfyWdlbcfptnjy2mmPFO/ouOOmmaCWazfY2ZLp0taHuDOmKmpFOZHn3Eggb1ix9j8ismiOKxhS/xYV58qOelDwIfzDNCfL9Rqj7LUOrKiLpBorB0jXh1ni19kPDPKClm/DPvFDP+mXeKGf/MO2dNAkUJaF7M5Af88+/7IbY58bjsKyk0GSXERQXDbJFxLjmTT7cHCCxdacS+fbbbC4xG4IWxZoj/e+qimPEU6dLHee1NI9LSJJtTmcSH6AH9zKhTS50Yk5MlzHrXCHOhXUihoaL4rxliFUxxV3FiJjBQxgtjuZVJnay4v5eVq43Ys9f2e40o+jzueTMCA90/PkfwLgGKGe/y99boFDPeIu/dcSlmvMufo5OAVghQzJSRiU3bd0Mc4V302r1hHoICA8AVM1p5lD0Tx5szjbiUV1C18IjDBltQKdZzv8WmmPFMvssaZc48I04lSFdOyZGVxQ0Y/JRZ1WONz54Ddu82IDXViMgoC1q3kks89SkjE3hhVjZ+bfkLTlU7pUyhekJ13Ljnerz2LD/Rl5VTrbx++gww/2PbGkY3tbGi8x2eXZ2nFR7+FgfFjL9lPHe+FDP+mXeKGf/MO2dNAkUJUMyU8UyIosP/mzZPOba78FWzehwkSaKY8bOvqekzTbh8yXbS4oP4hLGe/S02xYw2Hry58404eUrsMckVMvnrG4YPtShHVKt5GSQgLjoEZ5Iyyuy288/bsK/yEZv7mp2rh3XXtyuzLW/QDoHUVODYMQPMOSbExuUgvrq6z5R2ZspIihKgmPHPZ4Jixj/zTjHjn3nnrEmAYsbBZ0CImUlvfoztX84utiVXzDgIVOe3T59phDUpCY2yfkWo9TKOBDbDicCGGM4VMzrPrHPhKytmTueKGWFlhJgR6xn69i65/otzIwGOiJmGxxYjFbbHRVVEMP6s/bCzw7OdlwgEBRgQFhKApMtZXoqAw3qDAMWMN6h7f0yKGe/nwBsRUMx4gzrHJAHtEdDEipns7BwkXrxcKp3d+w7i+clzPF5jRoiZERNm477ONyEoKBCtmjdE5/atYcorKFKe3167K+2ixkxsZG6NmQuXWGPGXZwL97tpwUHcsesZBMpXPvRujuiDG17t69EaM5WignHhchZkK3+D7om8lzTGosVGHDhof6TxuOfMEHVg1LyEmImNCsG5i2WvmKl1bBGyZdt6MqGSCYdr91EzJPblAQKBAQaEBgcgOaUYMVN4mZYHYuEQniMQHmxSKj6nZhRz7JvnwuBIHiYQFR6IjCwzsnK4ZdHD6L06nFgNez45I7denY4uIZR4kQAJqEdAE2Jm958H8eiwqeWalaeL//75z1Gs3/oLIiPCkHA2EUvXbEHv+zti/IhHlXgtXv5gbBSf1jQQR7mS5wM3XXjlJQTt3WwzE6vBhMiF3wEmk8dmKNIu3sC1/h6efAnYusOKEwkyYqMltLleQu2a9iLDY+BUHmjWXAv+2m+fhfGjjahZXf15GiQJ1nL85Ba2Zx6yioiZMIMJl5o/oTIBduduAuIpEicyFfdWk51jhRA3vHyPgMi5uMrx5e57k/fjGenlvd2PU+SWqYv3dlmWNf8zXdHJ538GcQsUdkoCfkhAE2ImKTkFO3/7u1z477ilJQICPPcBuGhQK7/ZhgmvL8DeTfOVVTPcylSutPnMTSHj+0BKOms3n8yX5sNapabH5unuGjPiCOhz54CwcAmRFZzTP6IPcZpQcqFiyeLDxpBBZsRV8hgqtw70zhwjzp2zFzBPPmFGjWrqDl3erUyXrFlocnzxlb1Vyqc7IFCScLR2X3WDYm9uJ8CtTG5HrMkBuJVJk2lxe1DcyuR2xJocgFuZNJkWBkUCHiegCTHj8Vm7MOD2n//EoDFv4rf1cxEcFEgx4wJLPTYNHtcbhovni4QuI33GWiA42GNTcqeY2b1HwjfrjMjOW0Ffs4aM3j0tDm/NOXpMwkcL7c8Qv7mtFZ1u941l2vnHZdskXgb6q3hcdn7f5RUz4v5up7/BrqxzNmG1Ca6C5VW6eOwZ5UDqEKCYUYej3nqhmNFbxtSJl2JGHY5664ViRm8ZY7wk4B4CFDNlcF28ahMa1quBJlfVxqWUVDz38hwEmIxYMGOM0pIrZtzzYGq11+Bxj8BwUayYKbxKQkbmSwt8YsVMdhbw+gzbI3pFLpyRKb/ulrBmrb2YqVPHiv6P+oaYeWW6EenptsV/xfqiB7pZcG0z51YalfTsOyJmfss6j8Hnt+KkOU3pLt4UhrlxHdA8MEarX1qMqwQCFDP++WhQzPhn3ilm/DPvFDP+mXfOmgSKEqCYKeOZeOuDpZj/+TcFdzVrUg9vTBiE+Kq5ezEoZvzriypw/lSYft0CyELM5FXeDDAhfcZXHq0x464VM6fPAO/Ptd8qWKumjMf72RaTLSvze/80YPnKK/Uv8onVryejbx/H+iprLG+9Pn2GCZdTiowuA08PtKBqVe+JGRGRFTKO5OQWVa8bUAEGG5noLWIc11ECFDOOEvON+ylmfCOPjs6CYsZRYr5xP8WMb+SRsyABVwlQzJSDYGZWNs4nJiMiLBRRkeE2LShmygFQ5VuSrVlYmHIAuzPPIdYUgvtC66BdiMoFPUqI2XDsAIJmjIKUfeVUppyuvZFzb3+VZ1l6d+4SMxeSJMx6x36VS9UqQjaYHZrjb79JWC1WzBRaXCQKWdapZcWAfr6xYub9uUYknCmyYkYGBj5uQY1474oZh5LFmzVLgGJGs6lxa2AUM27Fq9nOKWY0mxq3BkYx41a87JwEdEOAYsbFVFHMuAjQieb3nP4au7Ns67x8Wvl23BYS70RvjjeRLiXC+PdvQFoKrA2ugbXWVY53ktdCiIrEJAlWi4zYWMBQzgNW3CVmzl+QMPtdW5kiQo2PlzFwgGOrXPb+YcCKL+0nVK+u76yYWbnaiN/35Jqn/BVB4s+jRlgQHUUx4/QXBhsWEKCY8c+HgWLGP/NOMeOfeaeY8c+8c9YkUJQAxYyLzwTFjIsAHWx+KOcSbj21yq5V9/D6eDv2Zgd78+7tZ84CXyw3Iikx94N9RLiM7g9aUbtW2R/o3SlmxElKRUVD40ZW9O7p2CoXISxWrbFffVOvnhV9H3GsL+9mquTRDx6SsGix7Rzjq8vKihm1L0dqzKg9NvvzHgGKGe+x9+bIFDPepO+9sSlmvMfemyNTzHiTPscmAe0QoJhxMRcUMy4CdLD5t+n/4fFzm+1aNQ6Ixsbq9znYm3dvX/iZEYcO2x61XDku9zjpsq6iYsZsAXb/bsDRo4DRKKFBAyuaNZUhjqd25LJYgTffNiI1VVIq6OSX0enSyYqbbnRMpvzzr4TFX9iLmUaNZPTuob64cGSeat57+IiEP/8yIC1VRnw80LqVFaEhao6Q2xfFjPpM9dAjxYwesqR+jBQz6jPVQ48UM3rIkvoxUsyoz5Q9koAeCVDMuJg1ihkXATrY/NfMc7jvzJVizPnNrw6siA3V7nWwN+/e/vI0E8w5ue5D7IPJdygTXzCXuaWpqJj5aq0Bu3bbbhu6vYMVt9zsmEwRYuatt41ISbU1OkLMtHVQzPy5T8LSFcbceeV1J7ZuXd1IxsM9fUfMeOopopjxFGltjUMxo618eCoaihlPkdbWOBQz2sqHp6KhmPEUaY5DAtomQDHjYn4oZlwE6GDz3BUzm/Ja5X/aB1oHx+HLqnc62Jt3b39xsglCVNgcvC0Dk19ybMWM1QpMfc2EnBzb+cRVAoY+XXZfhVspNWbes1/lUreOjH6POiZT/tovYcky45WVN8LPSECdOjL6P2qBGOvIUQlGg4x6dYHo6LK3cHk3Y94dnWLGu/y9NTrFjLfIe3dcihnv8vfW6BQz3iLv3XEpZrzLn6OTgFYIUMy4mAmKGRcBOtg8yZKJlieXIlsuLAkkPB91LUZENXewN+/ePmGSyW6rkVAT4543IyS49NgKr5i5mCxhxix7mWI0Ai+Nd0zM/HdSwocL7PuKipIxarhjYub7bUZs3CrZHdIcEyPjxutlfPOtQRFT4hJFj3t2t6JxQ8dW+Hg3g54dnWLGs7y1MhrFjFYy4dk4KGY8y1sro1HMaCUTno2DYsazvDkaCWiVAMWMi5mhmHERoBPNP0s5gElJu5Am50qH1kFx+KRyR0QagkrtLSUFEP/FVgICA5wYWOUmL04y2S6XESVdZODZkWZEVSi/mMnOAqa8alIayHlHA4n/BQUD48c4JmaO/SdhwUf2pzJFRsp4doRjYuabdQb89IvhinySZciShPAwGVZZQnpa7hzFKhox7+pVZQwaWPIYf+yT8MNPRlxIBGJjgDY3WNCimf+ssqGYUfkLUCfdUczoJFEqh0kxozJQnXRHMaOTRKkcJsWMykDZHQnolADFjIuJo5hxEaCTzbNkC/7NvogYUwiqGcNK7SUzC5gz14iki1c2Dd14vRV3dvHu6oxixQyAyS+WLVMKr5gRW5lemmJSitXkF/sVuiIsVMbY0Y7JlPQM4NXpuX0VLv7b8jorut3tGK+Nmw3YtsP+uOzwcBmpKYWK6uRlT8Q+aULxcxfbnt5531iwwiY/4UMHmREX5+RDpLNmFDM6S5hK4VLMqARSZ91QzOgsYSqFSzGjEkiddUMxo7OEMVwScBMBihkXwVLMuAjQA81XrDJi759Sbj0XsTojb8yRw8yoGO2BAEoYQmxlKlz0V9wmW4FRz5gRHVV6XEWL/06cYoIQNIWvChEyRo90TMyI9l+vM+DnXVeESlAgMPAJCyrFOrY65btNuWKmaPFfwfzixSsFgfNjFr2XJKV++c2AtV/bSx5nihJ7L+OujUwx4xo/vbammNFr5lyLm2LGNX56bU0xo9fMuRY3xYxr/NiaBHyFAMWMi5mkmHERoAeav/qmqWDbjCI/hAGQgLs6W3HjDY6tAlEzXKXGTN6J1PmCpjQ5UXjswmJGbM96Y0buVqbCV3Bwbr0aZ64TJyScOCkhNEzGVfVlhIY63svRY8BHC012xX+bNJLx9z/Fn+P9cgmrhdZtMOCnnfZiptV1Vtzr4Eoex2eijRYUM9rIg6ejoJjxNHFtjEcxo408eDoKihlPE9fGeBQz2sgDoyABbxOgmHExAxQzLgL0QPPiVpMIASJqlNzZ2bFVIDnZwKatBkUsZKRLqFVLxu0dLKhS2fGJTHg5V6bYnMpkBcaNdaz4r+jjpbwTntQSM47PpvgWc+cbcfLUlRkGBQHDB5vx+lv2hY9L28q0YZMR23dIdsWSW7e04p67vCfXnOW0NzsRP2ecQbQxCLcGV0OcqWzzRTHjLG19t6OY0Xf+nI2eYsZZcvpuRzGj7/w5Gz3FjLPk2I4EfIsAxYyL+aSYcRGgB5oXJy3EsM2ulvHQg45t9dm6zYDNWw0F+6FEsd24WBnDBjvWjxj/k0+NOHTIttZK5cqAqJtS1lV0xczrYsVMkRoz4mQnZ1fMlDV+eV8Xq5PEkdhnzkqIrCCjQQMZAf/voyZOzY03/xJ/jAiT8fyzxXP8fY+EVWvyaswULDMC7rnbiutb6kvMvHZxN2Zd+qNg7sGSESuqdkWLwNhSsVLMlPep8637KGZ8K5/lnQ3FTHlJ+dZ9FDO+lc/yzoZiprykeB8J+DYBihkX80sx4yJADzSfPM2EnGJcxy3trLj9Nsc+1H8wz4hTp6+sAFF2RckynhtlQUSEY5M5dhz49HMjsrIlSDJgNAEP3m9F0yalxyRlZiAm/SwuBkXDEhapDDrtdRMyM2xPZapdW8aAvo4LI8dm4dzdixYb8e/B3KO080+Sat3KintLWP2Slga8PduErOwr44naN88MMyOs9NrPzgXoplbpVjOanFiMHFFMqNB1X1gdvFfpVooZN3HXc7cUM3rOnvOxU8w4z07PLSlm9Jw952OnmHGeHVuSgC8RoJhxMZsUMy4C9EDzme8YkZhkW9NElmU8dL+M5s0cEzNTXjEhO8c2aOWI62fMiMp1JOW+Pl9ixN8HcuWEuITkqREvY+CAkmVKwNeLELDuM8CSe4+lWRtkPfUS3n4vEImJV7b6iL4a1pfRp7c2xUzyJQnrNxpw9KgEo0HGVVcBd3S0IDSkZHyJFyT88ruEC/9/QlNsrIzrr5UR42BB4nInx003/pWdiE4JX9n1Hm8Kw8/x3UsdlStm3JQUjXdLMaPxBLkpPIoZN4HVeLcUMxpPkJvCo5hxE1h2SwI6I0Ax42LCfEXMHD0mISFBQoUKMurXlyG2wXj7EgLk0GEDkpKAuEoyGtSX7WqMlCdG5XSgHwzKqhRldUaeBRkx1ILYGMdqzJS0LWrg4xbEV3esr5en5q3kEbuZ8o6nFnVWJr5ghsG+zi2kcwkIeamv3ZTTe4/GS1vvUk50yl99IqYZEwuMGFL2tqjyMOQ96hA4bU5Dq5PL7DqLM4bg9xo9KWbUwexTvVDM+FQ6yz0Ziplyo/KpGylmfCqd5Z4MxUy5UfFGEvBpAhQzLqbXF8TMkhVG/PXXlRUlISHA009aEBXlmGhwEaVN88ws4P0PjLiYfCWu+HgZT/SzFCstShs7OVnCu6IvKR3pYemISo5C0/pG9O7p+GqSF/MK9hYd76knzahe1TECoq+8A6IKGorVNy+NN8Nkf8gSTDu/Q+Anr9sNYr6+I8aceMGmiLC4KSBQxoSxjs/RsVnwbkcI/JZ1HvcmrM09tz3/kmXEmYSYeZhixhGYfnIvxYyfJLrINClm/DPvFDP+mXeKGf/MO2dNAkUJUMy4+EzoXcxcSJQw612jHYV2N1lxR0fHtvm4iNKm+a7fDPjqa/tlI4/2tigrZxy5/jmRg0dPbkFC1QSlmdFsxG0HWuOjro0cljziJKUKlkQ0zPoVodbLOBLYDCcCGqJXTyuaNHKMl3JcdpFTo4WYmTSh+BUzAd98ioCvPrEXM/WaYWzaTNvjnf6/7kxgIPDCWK6YceRZcfe9ZtmKFieW4KI1K/fcdvEAyDL6VWiMqTE3Usy4OwE67J9iRodJUyFkihkVIOqwC4oZHSZNhZApZlSAyC5IwAcIUMy4mES9i5n9/xjw+VJ7AVKvroy+fRxfbSH6+367hLPnJcRE5x5J3fI6x0SKSMm69Qb89LN9XF06WdHk+gwsTDmA3ZnnEPv/Kw3uC62DdiHVSszkkJ/+wpdVd9m8brAasC6kO5pWLaWoSTE9zh1/CIMvjkCgfKUK7cawPogZ2A8Nr3Jsni9OMtnJFPFZfcxoM8KLKWhr2rAUgSvn2q62gAxLk1YYkzw993O+qFWT93m/WlUZg550PIcufkmweRkEvko7hjGJP+KSNfcZahYYg/mVO6CaseQqxhlWM77PSsAFUwaq5YShfWh1GOzWSBG9LxKgmPHFrJY9J4qZshn54h0UM76Y1bLnRDFTNiPeQQL+QIBixsUs613MHDxkwKLF9gJE1EsRdVMcucS2o7dnG2G12rqDJ/tbUKOGY9Lip50GrNuQG1d+SyEd+vSy4Nnwtdiddd4mtE8r347bQuKLDbf17nVIqHjW7rUXL3fCU81KFjrFdfbPM9NwXdYWm5fMMOHnx9fi2lb2K49K4ydW3xRZMKNM9uWXil/lotSYebEv0gKMOBAbiZqXUhGbno3svqOxKrErdu22zePtHay45WbHVvE4km/e6zyBbNmKf7MvIsoYhHhTeKkdpViz0SlhDf4zpxbc1zKoEtZUvcv5ANhSNwQoZnSTKlUDpZhRFaduOqOY0U2qVA2UYkZVnOyMBHRLgGLGxdTpXcyIFS5vbT2H3S1+Q2LMeYSmh6P+kXp4MLU5+j7q2If6jVskbNtuLycaN5LRq0fJkueMJR1b008hTTbjxuA4XB0Ygx0/GrDhO4OyBEQRM3nFcW/tnYR+ASvtsvZQeD3MjG1XbDav2bcSSeGX7V57PudmjGhQ36EnIGfIw4i0Jtq12dp1Pq6/t6ZDfU2cbIK1qK+SgXFjzQgOKr6rmb98ghmxFuTkVQe7NgT4AAAgAElEQVTucjYNc1s/BVk2Yffv4pQjwGiU0KCBFc2aOlcs2aFJ8Ga3E1iUcgBjE3+yG2d5lS5oE1zF7eNzAO8SoJjxLn9vjU4x4y3y3h2XYsa7/L01OsWMt8hzXBLQFgGKGRfzoXcxc/yCGbclLkNWUJYNiafPtscLN9R2iM7Hi4w4cqTQGpC8P0ZHyRg5vHgxsyPzNPqe3YhM+crrY6KvQ9Taa3Ho8JW+xPYccQXecQRzqm22i6uuqQK2xz9QbLwdft+EA9En7F6bF3An7qwe59AczYN7oIJ8sUgbGR9dvxI9+1dwqK+5Hxpx4lTuEdf584uKlvFsCayO5aTgplMr7MaYEXsTeoQ3cGhs3qwfAqMu7MCS1EN2Ab8S0waPRTTUz0QYqVMEKGacwqb7RhQzuk+hUxOgmHEKm+4bUczoPoWcAAmoQoBixkWMehczQoz0PLPejsItAfH4vPrtDtF57wMTzpyBXd0UcfT2/5434/QZ4NhxA4ICxZHcQIUIGX3OfoctGadsxgk1mDB8XV+cvmDByeoncTniMqIvRiP+dDwC25zAnPob7OK6OrAiNlS7t9h4x2w8hk/rb8ldepNXbTcoMwgbIrqjfvVijj8qZdaWp3siAmLFTOFNSDJW3jAXXfrVdYjX/gMGLFlmULZ+iUuEds+dFrRqWfy2r9WpRzH4wvd2Ywyo0BiTK97g0Ni8WT8Enj6/FWvSjtkFPDXmBvSLaKyfiTBSpwhQzDiFTfeNKGZ0n0KnJkAx4xQ23TeimNF9CjkBElCFAMWMixj1LmYWp/yL5xJ/tKPQICASm6rej717JRw6klu7pH5dK5o3l2G0L0mjvP7mTCMuXbKrmgKTScat7WRs2nKloSkA6PuIBT0MS3HSnGYvG7bdj2XXbkRKRErBa3Hn4vBYUhtMb/Rl3r/ljSUDXcNq4sO4DsVmc/Z7RmyougeH6x5GWmgqYhMr4bo9LTH4xkq4toVjtW/2jJqFthlrAFkps6sImjRDBay9awXucaLkx8WLEg4fASxWCXXryKgUW3I8X6QexLMXfrCbY+fQGlgQ19HFJ5nNtUpg1PntWJImVszYysBXYtpyxYxWk6ZiXBQzKsLUUVcUMzpKloqhUsyoCFNHXVHM6ChZDJUE3EiAYsZFuHoTM1JKMqSkc5Ar14AcHIIlKYcwKnG73TKXJoHReO7v+5VaL4Wvm9ta0el2KxIvAjt+MCA1VdQzkXF9SyumvW5CZqY9ULESxGQCcnJsX2vc0IrV7b/F9oyEfMeh3BAsGXHznhuwsbm9MOr7zx1Y22QbEq2FB5IwPaYtekVcVWw258wz4ZvY33Go7mGkh6YiJk/MPNexEq5q4JiYefPFJPRLnoAaOf8qY2VI4VgWOQoVu7ZDh1tcfJjKaL485TBGJG6zy9WD4XUxK9bNg7t3auy9FAILLu/HhMSdVypqKz5QVor/tgxybCseQeuPAMWM/nKmRsQUM2pQ1F8fFDP6y5kaEVPMqEGRfZCA/glQzLiYQ92IGasFQR9MgvGPvCKiRiNyuj6ChC4PoeWJpbAoqz9EhV1J+cX8hIqtcHleC6QWWcwSFSnjvntlfLLIVtjExgIpqUB2ugUNs35FFctRnDdVw/6gNrBKAcVSDguTsa3XauzJvmDzerBkwjXHrsKuWn/btet28gY8/c8n+N/VsfirUjQqZGejx76j+F+TByE1LX47z/+2HMfCOrYnKQVnBmNdeHdcFe/YSUovvmxS6sFUtJxBqDUFp021YZECMHSIBZVLWe3i4mOmNN+ScVLZ+nVl5UTuip1RUS3wbFQLNYZgHxokwFOZNJgUD4ZEMeNB2BoaimJGQ8nwYCgUMx6EraGhKGY0lAyGQgJeJEAx4yJ8vYgZ00/rEbhwut1sL49bgJ4/pWPXdb/AYsotwFvtdDVMyu6And8H290vVr/Exsg4f0FClPkcwqzJOGuqDbMhEBGhFvQ7Pgy1cvbnSh4JSDRWw8zYeUgzhNkdDR0aImNBz0+QZrU/Hrp9ckNsjTpgN/6Y81fjdMJqLGxer+C1yMxsfLcnFdUffrbYbPY5tA1bTEfsXlsZexduCK/k0BMwd35ewd68VrknRskYN8YCUUvHnVeWbMEtp1babP0yQsLG6vfhqoAodw7Nvr1MIMNqxvdZCbhgykC1nDC0D60Og/1h616OksO7gwDFjDuoar9Pihnt58gdEVLMuIOq9vukmNF+jhghCXiCAMWMi5T1ImYCP5+JnB+/wfp68TgRGYam55Jx6/HT2Hf98/jkv64wG824FJWMkNRQhGWF5tbIFacFFTkxW9SXCbSkYEDiONTJ2afQy5JCsCZiMC4ZY/FE0ti8BR259TBkyFgTPgTbwrvn193N+3cgIkzG7Afno7hDue8Nro01mUft62qkxOJ/EfkrbK7UmBnwz0lM7vpCsdm89dQqHMq5ZPfax5U74o6QGg49AX/uk7BspTHvDO/cBUYN6sl47JGSjwN3aIAybhZHi39y+R8cwiXEySHKaUzNA2PUHIJ9aZSAQQLiokNwJilDoxEyLHcQoJhxB1Xt90kxo/0cuSNCihl3UNV+nxQz2s8RIyQBTxCgmHGRsl7ETPb743DTzfFIiAgtmPFtx05j4KZG2GDqnvu7d7GLKW83k1UGxCafSjn/oX7OHqXNwcDrcMEUj04pC9ApbZENOQuMOGZsjHqWXFlT+LpoiMOsel/gcqowPbneRqw0EYV3Rzf/CFnFqJkhkU3xbvKfdnU1nsyuiHmBRY+rBuLTsvDz1U8Vm83mJ77ABUvR4jcyplZsg34VGjn8BBz4V8Jf+w3IyJBRqybQupUVQYEOd+NSg8rRwTh/KQtWkShefkGAYsYv0mw3SYoZ/8w7xYx/5p1ixj/zTjHjn3nnrEmgKAGKGRefCb2ImY/Xz8D4htF2s31heQQS0npAyjtGOv8GUUelZeYG9Ep+FZKiUQAhX76IHo/2lz9Ddcthu77S5AoIg/3KlGwE4a9R67BqjQHp6bnN4ioBjzxsQcvLCyG26OQdcFTQ5+LKt6P32Y02YwRJBjwr18Q05B8dnCclZCDYKuNwvQHFZrPJ8cW4JGfnjZFbl0Vco6NaYKROa7NQzLj4havD5hQzOkyaCiFTzKgAUYddUMzoMGkqhEwxowJEHXZBMaPDpDFkEnADAYoZF6HqRcz874/PsLCCOBZJbBzKL9wr4+4d9VD5iP0x00LMjDnfF3GW/2wIJQTUQ7AlDRWtZ+zIXZKjECmJ1SyFjvWVZWTJIbB88BUsVuD8eSAwUELF6FypUvvYQuQUs2Jme7X7sTPrLD5K+QdHzZfRyBSFoVHNsDP9FOal2teeMcgyTtTpX2w2bzm1CodV2srk4uOiWnOKGdVQ6qYjihndpErVQClmVMWpm84oZnSTKlUDpZhRFaduOqOY0U2qGCgJuJUAxYyLePUiZp468x3WZp4qMlsZHTfdgdqnattRCLSkY8rZu2GQrAX1VIRvyZRCkRBQH3Wz/7RtIwPnA2uhUs5xu77SDZHAu8uLJV2SmFldtStaBVW2azP0/DasSrMv5CtuPFW7X7FjDDn/Pb4UbZTFMvnSSBw3fDdaBjlW/NfFx0W15hQzqqHUTUcUM7pJlaqBUsyoilM3nVHM6CZVqgZKMaMqTt10RjGjm1QxUBJwKwGKGRfx6kXMNDvxBRLt6qwAdY/URfsdHezOdxEOY9rpOxEE20KjGYZwbIodiLvPvpkrOcTSmv/fFpRqiIIUGYGw5JN2RK2BYcic+WWxpO85/TV2Z523eU0cl324Vp9i7x+T+AM+TTlo95o4oeZE7b7FtlmTdhRPn/8+N9a8mGNMIdhZ/SGEGkwuPgHeaU4x4x3u3hyVYsab9L03NsWM99h7c2SKGW/S997YFDPeY+/NkSlmvEmfY5OAdghQzLiYC72ImRrHPoE1r1ZM4SmHZ4Six7LeuUV5C+1AEjVl3zzbAVKeeMlvI0sSVty9HlFbFqJFxmaEW5PxX2ATrAvvjyGGV2E6f8KOqBwciowZq4slfdycgodOr0OCJbf4jBAlM2Juxt1h9qt4xOvzLv2FiRd32fUVIplwqASZI26embwXK1KP4IwlDc2CYvFc1LW4Idh+RY6Lj4PHmlPMeAy1ZgaimNFMKjwaCMWMR3FrZjCKGc2kwqOBUMx4FLdmBqOY0UwqGAgJeJUAxYyL+HUjZo5/jOIO8KmYFYZuS3opFJTTkvIEjZA0rye0h1TMWpoTUzfhgw+NyCx00FHL62T0ODkBxj077I7LRrU6yJgwr1TSx3NSkCbn4KqAKJik/Bo49k3E6pp7Tq/Ne+HKcdmtgiphdbW7XMymfppTzOgnV2pFSjGjFkl99UMxo698qRUtxYxaJPXVD8WMvvKlVrQUM2qRZD8koG8CFDPlzF9KajrMFguiIyNsWuhFzDT+73NctmTZ1OUVE7nFWAP1P+pst2KmebUEPPrrI3b3y7KMjDkbkZ4B/HtQQnqahPh4GTVryDD+uRNB776Qr3gKzsXO6f40cjo+WE7SZd/W4dRqHMhJKnSjhE/iOuL20BplN/aROyhmfCSRDkyDYsYBWD50K8WMDyXTgalQzDgAy4dupZjxoWQ6MBWKGQdg8VYS8GECFDNlJDc9IxNjpnyAzT/8rtzZrEk9zJ4yHLEVI5W/60XMPHv+B3yRJmqzXDkuWvz5yypdcfir6ti3X1LOahIrZkJDgKcHmVF1/N2QzJk2xX8RHIr0GWuKp2a1IPj1ETAcE6cmiaU3MuTYasgcNwdySJhqX0bJ1iwsTDmA3ZnnEGsKwX2hddAupJpq/euhI4oZPWRJ3RgpZtTlqZfeKGb0kil146SYUZenXnqjmNFLptSNk2JGXZ7sjQT0SoBipozMfbj4ayz7aisWzR6PkOBAPD12BurUrIrJzw/QlZgRwXZMWI0D2RcVNSOK5T4QXgczY29R5pGWDhw6BMTFAVWr5EIxbV+HwM/fBmRxxLZYCGNA9mOjYb7xjpKpWSww7v8NhtPHYK1UDZamNwCmAL1+fWg2booZzabGbYFRzLgNraY7ppjRdHrcFhzFjNvQarpjihlNp8dtwVHMuA0tOyYBXRGgmCkjXQ89+RI6t2+NJx+5W7lz/dZfMGrie9i35SNIkqSbFTNOP5VmsyJaxGVp3BIw6fMUI6fnr9GGFDMaTYwbw6KYcSNcDXdNMaPh5LgxNIoZN8LVcNcUMxpOjhtDo5hxI1x2TQI6IkAxU0ayWncdhCljHlfkjLj+/vcYug+ciB+/eheREWFISc/xWroNBglhwSZYrTLSMs1ei4MDe55AWIgJ6ZkWiJo/vPyDgCjIHRYcgNQM733P8Q/S2pql0Sgh0GRERha/x2srM+6NJjBAbC6WkJ1jce9A7F1TBEKCjMgxW2G28L1dU4lxczDhIQFIy8xRygno6YoI5Yp4PeWLsWqfAMVMKTkSH3qb3tYf770yEre2aa7cefjYKdzbbzw2LnkTVSvHaD/DjJAESIAESIAESIAESIAESIAESIAESECzBChmykiNWDEzdewT6HRrK+VOrpjR7LPsV4FxxYxfpVuZLFfM+F/OxYy5YsY/884VM/6Zd66Y8c+8c8WMf+adsyaBogQoZsp4JkSNmS63XY8net+l3Ol3NWb4NaNJAqwxo8m0uDUo1phxK17Nds4aM5pNjVsDY40Zt+LVbOesMaPZ1Lg1MNaYcStedk4CuiFAMVNGquZ9thbL136vnMoUGhKEQWPe0u2pTLp5KhlomQQoZspE5HM3UMz4XErLNSGKmXJh8rmbKGZ8LqXlmhDFTLkw+dxNFDM+l1JOiAScIkAxUwa2tPRMjH75fWzbuVe5s2nDOpg9dQTiYqOUvyckZjgFXo1GJqOEuKhgpUjcueRMNbpkHzohQDGjk0SpGCbFjIowddQVxYyOkqViqBQzKsLUUVcUMzpKloqhUsyoCJNdkYCOCVDMlDN5l1LSkJNjRmzFSJsWFDPlBMjbVCVAMaMqTl10RjGjizSpHiTFjOpIddEhxYwu0qR6kBQzqiPVRYcUM7pIE4MkAbcToJhxETHFjIsA2dwpAhQzTmHTdSOKGV2nz+ngKWacRqfrhhQzuk6f08FTzDiNTtcNKWZ0nT4GTwKqEaCYcRGlN8VMgMmASpFByDFbcf5SloszYXM9EaCY0VO21ImVYkYdjnrrhWJGbxlTJ16KGXU46q0Xihm9ZUydeClm1OHIXkhA7wQoZvSeQcZPAiRAAiRAAiRAAiRAAiRAAiRAAiSgWwIUM7pNHQMnARIgARIgARIgARIgARIgARIgARLQOwGKGb1nkPGTAAmQAAmQAAmQAAmQAAmQAAmQAAnolgDFjG5Tlxv4haRLCAsNQUhwoM5nwvBLIpCRmY2LyZdRJS4GBlFopMiVnZ2Di5dSlSPcJcn+dZL1TQLMu2/mVczKapVxLvEiwkKCEREeajPRlNR0mC0WREdG+C4AP5yZyGli0mVUrhRd7Oz5Xu8bD4Usy7BYrTAZjQ7nmd/z9fsMlJZ3ceprVlaO8jNccRfzrt+8M3IScJQAxYyjxDRy/3+nzmLQmLdw/ORZJaIH7rwFL47qiwBT8W/2GgmbYThIYNj4mdj8w+9Kq4pREejWpR2eHdRD+bt4o39/4Rq8+9GqgtffmfYMmjep5+AovF2rBE6duYBu/V9Ar24dMOop5l2reVIrLiFdps76FF9t+FHpsnP71nhr4hDlz+kZmRgz5YOC7wfNmtTD7CnDEVsxUq3h2Y8XCAgh88qsz7Dh+13K6ELEDe3/AO7seIPyd77XeyEpbhxSfG3PmLcMm5fNsBmltDzzvd6NCfFQ18XlXcjWx4ZPK/g5vl6tanjykbtxT6e2/BnPQ3nhMCSgNQIUM1rLSDnjGfjcdISHhWDq2Cdx5lwiejw1CS+OfKzgG3o5u+FtGifwzoJV6NS+NWpWj8PO3/7GkHFv44v3X8Q1jevi930H0WfoVCyaPQ7XNKqLWfNX4utNP2HjkreKXVmj8akyvCIExIf0R4ZMweHjCXi8150FYoZ5981HRayS6fHURBgNBgzo1RXtbmiO1LSMgt+ifrj4ayz7aisWzR6vrJB8euwM1KlZFZOfH+CbQPxkVsvXfo/X3v0c6z9/Q5Hvq9Ztx7RZn+H7lW8jNCQYfK/3jQdBiJcnR0/HydPnlVVRRcVMaXnm93z9PgOl5f3chWR8+e123Nv5JmV15KLlG/DRkm+xbdUs5Xs8867fvDNyEnCWAMWMs+S82E4se2x7zxB8+s54XNu0gRLJ1JmLcOZcEmZPHeHFyDi0uwl06D4SD9/XAQP73IM35yzF/kPH8eH055RhxZv8bQ89g+XzJqFxg1ruDoX9u5GA+C360HFvo0qlGFxOTUd81dgCMcO8uxG8F7sWK+PECrlvPn0NteIr20Xy0JMvKStoxG9UxbV+6y8YNfE97NvyEbcwejFvrg793sdfYvX6H7Dmk2kICgxQVsh0fWQMNnyR+8sXvte7Slgb7cX3dLFCYvOO3/Hh4rU2Yqasn+n4PV8bOXQmitLyXrQ/Ie0693pO+WXbdddcxZ/xnAHONiSgcwIUMzpM4OFjp3Bvv/HYuuJtVIrJ3ZMqTLv44U58KOflmwTEtrU7+4zBe6+MxK1tmmP0y+8jOjIc40c8WjDhq9v3K3jdNyn4x6zEb8wPHT2JD15/FmOmzrURM8y7bz4DYtWEWD3R5bbrcejYKVSKicTjve4q2JrYuusgTBnzuCJnxPX3v8fQfeBE/PjVu4iMCPNNKH4wKyFixMo4sSVNCPd1W35WVsq8Om4g+F7vew/Aus0/4433v7ARM2Xlmd/z9f8cFJf3orMSq+VeeG0+tn85W1k9x7zrP++cAQk4SoBixlFiGrg/f3lj4R/Il361FXMWrrZbHquBcBmCCgTS0jPRZ+gUhIeF4uO3x8JoNChL3BvWq1lQc0YMIz68TRzdD3d1vFGFUdmFNwh8/uUmfLzkWyz9YCIiK4QpqyIKr5hh3r2RFfePOXzCLBw4dAL9enZB5dhofLvlF3y9aSfWLnwFtWtUQdPb+ttI1/wPcxuXvImqlWPcHyBHcAsBUdx9zNQ5SM/IwpHjCTh7/iJmTR6Oju2uK9jKwPd6t6D3SqfFfUAv62c6fs/3SqpUHbQsMXPw6En0HjwFfbt3xtAB9ytjM++qpoCdkYAuCFDM6CJNtkHm/0D+/cqZBYUfuWJGh4ksZ8jiB/cRE2YpW9UWzhqHqMhwpaX4bYr4rcq44X0KeuKKmXJC1fBtYimz2MpSv3Z1JcpNO3YrBUHzt7Ew7xpOnguhCTFTvUoljBnSS+nFYrGi/YMj8HTfbuh9f0dFuk4d+wQ63dpKeZ0rZlyAraGmM+Yuw96/D2PBW2OUgu4Ll63H9DlL8OVHU2CQJGV1LN/rNZQwF0MpbcVMSXnm93wXoWugeWliRhT5f3TYVLRu0QjTxj6p/OKNP+NpIGkMgQS8QIBixgvQXR2yuP3Ik2csxLkLF1ljxlW4Gmsv6osMf2EWMjKylG0t+VJGhCn2nR84/B/mvjFaiZo1ZjSWPCfDWbJ6M8TXeP715bc7UDGqAu65ow163teBeXeSq9abia/ng0dPYM5rzxaImRvvHowh/buhX48uEDVmxDanJ3rfpbzOGjNaz2j54uv51CRc1+yqAiEnikBf06G/Usy/S4cb7GrM8L2+fFy1eldxH9DL+pmO7/VazWb54ypJzBw6egr9R76KDjdfhwkjH7M5Rp15Lz9f3kkCvkKAYkanmXxi9BuoEB6m/AaVpzLpNIllhC2Wtj88aBJE8bgZk4YqhSDFZTAYUDWuYqGK/eOVU5pmfrgc32zayVOZfOxxKLqV6cpJDcy7L6VarJroPXiyIlqvb9EIX67fgYnTPy4o5j3vs7VKDRpxKlNoSBAGjXmLpzL5wAMw6a1PsHHbr/js3QmoUa0Svtv2G0a+9I5S/Ld6lVjwvd4Hkgwoq6HMZouyRVEcl71+8RuQDFLBB/HS8szv+fp9BkrL+4HDJ/DA4xOUrefDHn9A+dlOXOL7e3RkBH/G02/aGTkJOE2AYsZpdN5tePS/08oP5qKKu7i6dbkZE5/th4AAk3cD4+iqERC1BsQpTEUvsX1JFIcTb/jvfLQKcxauyXszD8bcN54tOKlLtUDYkVcJFBUzzLtX0+HWwT/6Yp2yjSX/EsV+7+/aTvmrqDMltjRs27lX+XvThnWUFZJxsbkF4Hnpk0DypVS8PW+5Uk9IXGIbo1ghdfcdbZS/871en3ktGrVYGXFf//E2/3xPp7ZKkeey8szv+fp9BkrLu1hFI76nF73ynwvmXb95Z+Qk4CwBihlnyWmknfjwLlZShIUGayQihuFpAplZ2Ui6eBlV4mJgMEieHp7jeYkA8+4l8G4eVuT1fGKy8vUcYDLajSa2PeTkmAvqi7k5HHbvIQL5x+pWqVSx2BH5Xu+hRHh5mNLyzO/5Xk6Ol4Zn3r0EnsOSgBcIUMx4ATqHJAESIAESIAESIAESIAESIAESIAESIAFBgGKGzwEJkAAJkAAJkAAJkAAJkAAJkAAJkAAJeIkAxYyXwHNYEiABEiABEiABEiABEiABEiABEiABEqCY4TNAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAl4iQDHjJfAclgRIgARIgARIgARIgARIgARIgARIgAQoZvgMkAAJkAAJkAAJkAAJkAAJkAAJkAAJkICXCFDMeAk8hyUBEiABEiABEiABEiABEiABEiABEiABihk+AyRAAiRAAiRAAiRAAiRAAiRAAiRAAiTgJQIUM14Cz2FJgARIgARIgARIgARIgARIgARIgARIgGKGzwAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJeIkAxYyXwHNYEiABEiABEiABEiABEiABEiABEiABEqCY4TNAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAl4iQDHjJfAclgRIgARIgARIgARIgARIgARIgARIgAQoZvgMkAAJkAAJkAAJkAAJkAAJkAAJkAAJkICXCFDMeAk8hyUBEiABEiABEiABEiABEiABEiABEiABihk+AyRAAiRAAiTgIoGU1HTs2vOP0kubVk0REhxY0OMffx9W/tysST0XRym5+dI1W7Bj15+YNXm428ZgxyRAAiRAAiRAAiRAAu4hQDHjHq7slQRIgARIwI8I7D94HA89+ZIy42cH9cCAh+8smP3wCbOUP7tTmsyavwJffrsDm5fN8CPqnCoJkAAJkAAJkAAJ+AYBihnfyCNnQQIkQAIk4EUC+WKmXq1qOH0uCRuXvonIiDAlIooZLyaGQ5MACZAACZAACZCADghQzOggSQyRBEiABEhA2wTyxczsqSMwbPxMPPXoPRj++IPlEjMTp38MySDhpVF9CyZptlgwdNzbaHdDMzzywB0YNfE9/HXgKE6ePo+KURG46fprMPLJ7qhcKVppU3TFzOiX30fLZlehV7eOBX1Om/UZoiLDMbjvfcq/WSxWfLryO6xY+z0OH0/AVXXjMeix+9C5fWvl9bPnL2Lmh8uxc/ffSEnNQMN6NdDz3ttwT6e22k4GoyMBEiABEiABEiABnRGgmNFZwhguCZAACZCA9gjki5nl8yZh3eafMf/zb7B1xduoFBNV5oqZxas2YerMRVj/+RuIr1pJmdwPu/Zh4HPTsfi9CWjepJ7SR4ur6yO+ahwuJl/GOx+tQsP6NfHh9OeKFTOdez2HTre2VrZV5V/9nnkVcTFReH3CIOWf3vpgKT7/cjN6deug1L/5dssvSuz5Y/YZOhUJZy9g2IAHEBQYiF17/8GZc0l4/9WR2ksAIyIBEiABEiABEiABHROgmNFx8hg6CZAACZCANggUFjNV42Jwx8Oj0a3LTRg/4tEyxcyly2loe+8QDOl/f8FqFrFC5uh/CVi1YIrNBLOyc3DxUospHegAAAiZSURBVAoWLduAj5d+iz82LYDRaLBbMVOWmEm8eBm33D8co57qgcd75dbDEat02tw9BA/edQuee/phNOs4AL3v76jMIf/KyMy2KWysDfqMggRIgARIgARIgAT0TYBiRt/5Y/QkQAIkQAIaIFBYzDRuUAvzPluLt+ctx7rPXsf0OV8oEZZW/Hf8qx9i28692LLibVxOSUe7bsMwcXQ/dL+7vdJ2/dZfMGfhGvx75KTNbPd89yECAkwOi5lf9x5A3xGvKCt0IsJDC/oU82jftgXenfaMsn1KjHtt0wa48bomuLVNc1zTuK4GaDMEEiABEiABEiABEvAtAhQzvpVPzoYESIAESMALBIqKmfSMTNz6wDPo2O46iD+XJWZ+33cQYuvQnNdG4b9TZyHqwfz89fsIDwsp2NbUrcvNSo2X+Gpx2LTjN4jaNKWJmdvbtcRzgx8uoFF4K9P2n//EoDFvYtzwPqhZPc6GWFRkBK5pVEdZQfPluh34/qc92Ll7vzKPJ3rfhZEDu3uBMIckARIgARIgARIgAd8lQDHju7nlzEiABEiABDxEoKiYEcN+sXozJs9YqBTrvfaaBmUel31v33GoW6sajhxPQKsWjfDiyMeU6MXKG7ECZ8/G+QgwGZV/W7VuO154bX6JYqbX4MmoW7Mqpo59ooDAo8OmoWpcRaXGzH+nzqHrI88rBYd73HubDSVZliFJklIcWGyTEldOjhkT3liArzb8WLB9ykNoOQwJkAAJkAAJkAAJ+DwBihmfTzEnSAIkQAIk4G4CxYmZ7OwcdHnkeeV0I7FyprStTIVFjvizKCIstkSJ6/uf9mLw/2YodV9atWiIvw8cw+wFK5GUnFKimBEiZ+6na/HGhEEIDg7EmvU/YPX6H3BXxxsLiv+KgsKbtu/GpNH9lROcRN0ZsZ3KYDCg/8Nd0evplzG0/wNo2qgO0tIzlBU6FqsVy+ZOVMQNLxIgARIgARIgARIgAXUIUMyow5G9kAAJkAAJ+DGBfDGz4sOX0ah+zQISa7/7CWOmflAuMXMpJQ1t7xmCpg3rYMkHLxX0IbYUjZs2D19v2qn8m1iBI05o2vzD7wViRogasYpm87IZyj0JZy5g4psfK9ugxCXE0KGjp5QaMa+Nf0r5NzGeWI2zdM2WgrFE32J7U/u212LYCzPx069/Fbwm+hjx+IOoV7u6H2eaUycBEiABEiABEiAB9QlQzKjPlD2SAAmQAAmQgOoExOlNl1JSUb1KpYItRmUNcu5CMoKCAhAZEVbirUL8nL+QrKysiY6MsLlPnAJ17sJFVI6NRmBgQFnD8XUSIAESIAESIAESIAEnCFDMOAGNTUiABEiABEiABEiABEiABEiABEiABEhADQIUM2pQZB8kQAIkQAIkQAIkQAIkQAIkQAIkQAIk4AQBihknoLEJCZAACZAACZAACZAACZAACZAACZAACahBgGJGDYrsgwRIgARIgARIgARIgARIgARIgARIgAScIEAx4wQ0NiEBEiABEiABEiABEiABEiABEiABEiABNQhQzKhBkX2QAAmQAAmQAAmQAAmQAAmQAAmQAAmQgBMEKGacgMYmJEACJEACJEACJEACJEACJEACJEACJKAGAYoZNSiyDxIgARIgARIgARIgARIgARIgARIgARJwggDFjBPQ2IQESIAESIAESIAESIAESIAESIAESIAE1CBAMaMGRfZBAiRAAiRAAiRAAiRAAiRAAiRAAiRAAk4QoJhxAhqbkAAJkAAJkAAJkAAJkAAJkAAJkAAJkIAaBChm1KDIPkiABEiABEiABEiABEiABEiABEiABEjACQIUM05AYxMSIAESIAESIAESIAESIAESIAESIAESUIMAxYwaFNkHCZAACZAACZAACZAACZAACZAACZAACThBgGLGCWhsQgIkQAIkQAIkQAIkQAIkQAIkQAIkQAJqEKCYUYMi+yABEiABEiABEiABEiABEiABEiABEiABJwhQzDgBjU1IgARIgARIgARIgARIgARIgARIgARIQA0CFDNqUGQfJEACJEACJEACJEACJEACJEACJEACJOAEAYoZJ6CxCQmQAAmQAAmQAAmQAAmQAAmQAAmQAAmoQYBiRg2K7IMESIAESIAESIAESIAESIAESIAESIAEnCBAMeMENDYhARIgARIgARIgARIgARIgARIgARIgATUIUMyoQZF9kAAJkAAJkAAJkAAJkAAJkAAJkAAJkIATBChmnIDGJiRAAiRAAiRAAiRAAiRAAiRAAiRAAiSgBgGKGTUosg8SIAESIAESIAESIAESIAESIAESIAEScIIAxYwT0NiEBEiABEiABEiABEiABEiABEiABEiABNQgQDGjBkX2QQIkQAIkQAIkQAIkQAIkQAIkQAIkQAJOEKCYcQIam5AACZAACZAACZAACZAACZAACZAACZCAGgQoZtSgyD5IgARIgARIgARIgARIgARIgARIgARIwAkCFDNOQGMTEiABEiABEiABEiABEiABEiABEiABElCDAMWMGhTZBwmQAAmQAAmQAAmQAAmQAAmQAAmQAAk4QYBixglobEICJEACJEACJEACJEACJEACJEACJEACahCgmFGDIvsgARIgARIgARIgARIgARIgARIgARIgAScIUMw4AY1NSIAESIAESIAESIAESIAESIAESIAESEANAhQzalBkHyRAAiRAAiRAAiRAAiRAAiRAAiRAAiTgBAGKGSegsQkJkAAJkAAJkAAJkAAJkAAJkAAJkAAJqEGAYkYNiuyDBEiABEiABEiABEiABEiABEiABEiABJwgQDHjBDQ2IQESIAESIAESIAESIAESIAESIAESIAE1CFDMqEGRfZAACZAACZAACZAACZAACZAACZAACZCAEwQoZpyAxiYkQAIkQAIkQAIkQAIkQAIkQAIkQAIkoAaB/wPBoDZ5E6UqKwAAAABJRU5ErkJggg==", - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "### comment out langfuse code \n", - "# px.scatter(\n", - "# results, \n", - "# y='latencies',\n", - "# x='N values',\n", - "# color='Schema',\n", - "# title='Latency v.s. number of values', \n", - "# # boxmode='overlay',\n", - "# width=700,\n", - "# ).update_layout(\n", - "# # xaxis_title='Schemas',\n", - "# yaxis_title='Latency (s)',\n", - "# # yaxis_dtick=0.1,\n", - "# # showlegend=False,\n", - "# )" - ] - }, - { - "cell_type": "markdown", - "id": "f23f3bb1-f77f-4aff-955c-6caf868d1290", - "metadata": {}, - "source": [ - "## Manual extraction v.s. corrected concensus review" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "df79f495-1bb9-44e5-8201-b29f1cd2147a", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "data": { - "application/json": { - "ascii": false, - "bar_format": null, - "colour": null, - "elapsed": 0.0024170875549316406, - "initial": 0, - "n": 0, - "ncols": null, - "nrows": 56, - "postfix": null, - "prefix": "", - "rate": null, - "total": null, - "unit": "it", - "unit_divisor": 1000, - "unit_scale": false - }, - "application/vnd.jupyter.widget-view+json": { - "model_id": "e777ef84d7ee4da2a329e729284f48d5", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "0it [00:00, ?it/s]" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/plain": [ - "{'ngufor2016efficacy': {'Observation': (3, 3),\n", - " 'ITNCondition': (21, 6),\n", - " 'EntomologicalOutcome': (12, 7)},\n", - " 'okia2013bioefficacy': {'Observation': (4, 7),\n", - " 'ITNCondition': (5, 6),\n", - " 'EntomologicalOutcome': (18, 6),\n", - " 'ClinicalOutcome': (8, 3)},\n", - " 'mosha2008comparative': {'Observation': (1, 7),\n", - " 'ITNCondition': (2, 5),\n", - " 'EntomologicalOutcome': (3, 11),\n", - " 'ClinicalOutcome': (2, 15)},\n", - " 'quinones1997anopheles': {'Observation': (4, 7),\n", - " 'ITNCondition': (3, 3),\n", - " 'EntomologicalOutcome': (8, 3),\n", - " 'ClinicalOutcome': (1, 1)},\n", - " 'ahoua2012status': {'Observation': (2, 7),\n", - " 'ITNCondition': (2, 5),\n", - " 'EntomologicalOutcome': (6, 8),\n", - " 'ClinicalOutcome': (2, 9)},\n", - " 'sreehari2009wash': {'Observation': (1, 5),\n", - " 'ITNCondition': (4, 6),\n", - " 'EntomologicalOutcome': (8, 10),\n", - " 'ClinicalOutcome': (13, 5)},\n", - " 'abdulla2005spatial': {'Observation': (1, 7),\n", - " 'ITNCondition': (3, 1),\n", - " 'EntomologicalOutcome': (3, 1),\n", - " 'ClinicalOutcome': (2, 3)},\n", - " 'tan2016longitudinal': {'Observation': (1, 5),\n", - " 'ITNCondition': (2, 8),\n", - " 'EntomologicalOutcome': (2, 5),\n", - " 'ClinicalOutcome': (1, 3)},\n", - " 'wills2013physical': {'Observation': (19, 7),\n", - " 'ITNCondition': (7, 4),\n", - " 'EntomologicalOutcome': (2, 5),\n", - " 'ClinicalOutcome': (14, 4)},\n", - " 'marchant2002socially': {'Observation': (1, 7),\n", - " 'ITNCondition': (2, 5),\n", - " 'EntomologicalOutcome': (2, 5),\n", - " 'ClinicalOutcome': (30, 3)},\n", - " 'nevill1996insecticide': {'Observation': (2, 7),\n", - " 'ITNCondition': (1, 10),\n", - " 'EntomologicalOutcome': (1, 2),\n", - " 'ClinicalOutcome': (4, 7)},\n", - " 'msuya1991trial': {'Observation': (10, 7),\n", - " 'ITNCondition': (3, 3),\n", - " 'EntomologicalOutcome': (5, 4),\n", - " 'ClinicalOutcome': (1, 2)},\n", - " 'tungu2021efficacy': {'Observation': (1, 5),\n", - " 'ITNCondition': (3, 7),\n", - " 'EntomologicalOutcome': (12, 10),\n", - " 'ClinicalOutcome': (3, 4)}}" - ] - }, - "execution_count": 15, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "true_extractions = {}\n", - "for ref, paper in tqdm(papers.loc[references].iterrows()):\n", - " true_extractions[paper.name] = get_paper_extractions(\n", - " paper, extraction_dataset, schemas=ss, field='extraction', answer='extraction-correction')\n", - "{ref: {k: v.shape for k,v in ext.items() if v.size} for ref, ext in true_extractions.items()}" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "f8dcabcb-642b-4e73-a0d8-21bd066cf875", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "data": { - "application/json": { - "ascii": false, - "bar_format": null, - "colour": null, - "elapsed": 0.003042936325073242, - "initial": 0, - "n": 0, - "ncols": null, - "nrows": 56, - "postfix": null, - "prefix": "", - "rate": null, - "total": null, - "unit": "it", - "unit_divisor": 1000, - "unit_scale": false - }, - "application/vnd.jupyter.widget-view+json": { - "model_id": "14190dd7b01443b79e2f2b9f9399c093", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "0it [00:00, ?it/s]" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/plain": [ - "{'ngufor2016efficacy': {},\n", - " 'okia2013bioefficacy': {},\n", - " 'mosha2008comparative': {},\n", - " 'quinones1997anopheles': {},\n", - " 'ahoua2012status': {},\n", - " 'sreehari2009wash': {},\n", - " 'abdulla2005spatial': {},\n", - " 'tan2016longitudinal': {},\n", - " 'wills2013physical': {},\n", - " 'marchant2002socially': {},\n", - " 'nevill1996insecticide': {},\n", - " 'msuya1991trial': {},\n", - " 'tungu2021efficacy': {}}" - ] - }, - "execution_count": 18, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "pred_extractions = {}\n", - "for ref, paper in tqdm(papers.loc[references].iterrows()):\n", - " pred_extractions[paper.name] = get_paper_extractions(\n", - " paper, extraction_dataset, schemas=ss, field='extraction', \n", - " answer='extraction-correction', suggestion='extraction-correction', \n", - " user=username_to_user['jonnytr'])\n", - "{ref: {k: v.shape for k,v in ext.items() if v.size} for ref, ext in pred_extractions.items()}" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "9c5d61b8-aa13-4eae-b68c-0723ac5aa5e0", - "metadata": {}, - "outputs": [], - "source": [ - "pred_extractions = {ref: paper_extraction for ref, paper_extraction in pred_extractions.items() \\\n", - " if not all([df.empty for df in paper_extraction.extractions.values()])}\n", - "true_extractions = {ref: paper_extraction for ref, paper_extraction in true_extractions.items() \\\n", - " if ref in pred_extractions}" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "4c4f48f5-c405-4a37-9aa1-202fcd20ac55", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "0" - ] - }, - "execution_count": 20, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(true_extractions)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "08d27b5e-c786-44fa-bd9c-5aa07547d8ac", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "data": { - "text/html": [ - "
╭─────────────────────────────── Traceback (most recent call last) ────────────────────────────────╮\n",
-                            " in <module>:1                                                                                    \n",
-                            "                                                                                                  \n",
-                            " 1 suggestion_metrics = grits_from_batch(true_extractions, pred_extractions, exclude_column     \n",
-                            "   2                                                                                              \n",
-                            "   3 suggestion_metrics.style.background_gradient(axis=1, vmin=0, vmax=1, cmap='RdYlGn')          \n",
-                            "   4                                                                                              \n",
-                            "                                                                                                  \n",
-                            " /Users/jonnytr/Projects/extralit/src/extralit/metrics/extraction.py:51 in grits_from_batch       \n",
-                            "                                                                                                  \n",
-                            "    48 │   │   │   │   raise ValueError(f\"Invalid type for true_extractions: {type(true_extract   \n",
-                            "    49                                                                                        \n",
-                            "    50                                                                                        \n",
-                            "  51 metrics_df = pd.concat(metrics, axis=0)                                                \n",
-                            "    52 metrics_df.index.names = index_names[:metrics_df.index.nlevels]                        \n",
-                            "    53                                                                                        \n",
-                            "    54 if compute_mean:                                                                       \n",
-                            "                                                                                                  \n",
-                            " /Users/jonnytr/micromamba/lib/python3.10/site-packages/pandas/core/reshape/concat.py:382 in      \n",
-                            " concat                                                                                           \n",
-                            "                                                                                                  \n",
-                            "   379 elif copy and using_copy_on_write():                                                   \n",
-                            "   380 │   │   copy = False                                                                       \n",
-                            "   381                                                                                        \n",
-                            " 382 op = _Concatenator(                                                                    \n",
-                            "   383 │   │   objs,                                                                              \n",
-                            "   384 │   │   axis=axis,                                                                         \n",
-                            "   385 │   │   ignore_index=ignore_index,                                                         \n",
-                            "                                                                                                  \n",
-                            " /Users/jonnytr/micromamba/lib/python3.10/site-packages/pandas/core/reshape/concat.py:445 in      \n",
-                            " __init__                                                                                         \n",
-                            "                                                                                                  \n",
-                            "   442 │   │   self.verify_integrity = verify_integrity                                           \n",
-                            "   443 │   │   self.copy = copy                                                                   \n",
-                            "   444 │   │                                                                                      \n",
-                            " 445 │   │   objs, keys = self._clean_keys_and_objs(objs, keys)                                 \n",
-                            "   446 │   │                                                                                      \n",
-                            "   447 │   │   # figure out what our result ndim is going to be                                   \n",
-                            "   448 │   │   ndims = self._get_ndims(objs)                                                      \n",
-                            "                                                                                                  \n",
-                            " /Users/jonnytr/micromamba/lib/python3.10/site-packages/pandas/core/reshape/concat.py:507 in      \n",
-                            " _clean_keys_and_objs                                                                             \n",
-                            "                                                                                                  \n",
-                            "   504 │   │   │   objs_list = list(objs)                                                         \n",
-                            "   505 │   │                                                                                      \n",
-                            "   506 │   │   if len(objs_list) == 0:                                                            \n",
-                            " 507 │   │   │   raise ValueError(\"No objects to concatenate\")                                  \n",
-                            "   508 │   │                                                                                      \n",
-                            "   509 │   │   if keys is None:                                                                   \n",
-                            "   510 │   │   │   objs_list = list(com.not_none(*objs_list))                                     \n",
-                            "╰──────────────────────────────────────────────────────────────────────────────────────────────────╯\n",
-                            "ValueError: No objects to concatenate\n",
-                            "
\n" - ], - "text/plain": [ - "\u001b[31m╭─\u001b[0m\u001b[31m──────────────────────────────\u001b[0m\u001b[31m \u001b[0m\u001b[1;31mTraceback \u001b[0m\u001b[1;2;31m(most recent call last)\u001b[0m\u001b[31m \u001b[0m\u001b[31m───────────────────────────────\u001b[0m\u001b[31m─╮\u001b[0m\n", - "\u001b[31m│\u001b[0m in \u001b[92m\u001b[0m:\u001b[94m1\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m1 suggestion_metrics = grits_from_batch(true_extractions, pred_extractions, exclude_column \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m2 \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m3 \u001b[0msuggestion_metrics.style.background_gradient(axis=\u001b[94m1\u001b[0m, vmin=\u001b[94m0\u001b[0m, vmax=\u001b[94m1\u001b[0m, cmap=\u001b[33m'\u001b[0m\u001b[33mRdYlGn\u001b[0m\u001b[33m'\u001b[0m) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m4 \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2;33m/Users/jonnytr/Projects/extralit/src/extralit/metrics/\u001b[0m\u001b[1;33mextraction.py\u001b[0m:\u001b[94m51\u001b[0m in \u001b[92mgrits_from_batch\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 48 \u001b[0m\u001b[2m│ │ │ │ \u001b[0m\u001b[94mraise\u001b[0m \u001b[96mValueError\u001b[0m(\u001b[33mf\u001b[0m\u001b[33m\"\u001b[0m\u001b[33mInvalid type for true_extractions: \u001b[0m\u001b[33m{\u001b[0m\u001b[96mtype\u001b[0m(true_extract \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 49 \u001b[0m\u001b[2m│ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 50 \u001b[0m\u001b[2m│ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m 51 \u001b[2m│ \u001b[0mmetrics_df = pd.concat(metrics, axis=\u001b[94m0\u001b[0m) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 52 \u001b[0m\u001b[2m│ \u001b[0mmetrics_df.index.names = index_names[:metrics_df.index.nlevels] \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 53 \u001b[0m\u001b[2m│ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 54 \u001b[0m\u001b[2m│ \u001b[0m\u001b[94mif\u001b[0m compute_mean: \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2;33m/Users/jonnytr/micromamba/lib/python3.10/site-packages/pandas/core/reshape/\u001b[0m\u001b[1;33mconcat.py\u001b[0m:\u001b[94m382\u001b[0m in \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[92mconcat\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m379 \u001b[0m\u001b[2m│ \u001b[0m\u001b[94melif\u001b[0m copy \u001b[95mand\u001b[0m using_copy_on_write(): \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m380 \u001b[0m\u001b[2m│ │ \u001b[0mcopy = \u001b[94mFalse\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m381 \u001b[0m\u001b[2m│ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m382 \u001b[2m│ \u001b[0mop = _Concatenator( \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m383 \u001b[0m\u001b[2m│ │ \u001b[0mobjs, \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m384 \u001b[0m\u001b[2m│ │ \u001b[0maxis=axis, \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m385 \u001b[0m\u001b[2m│ │ \u001b[0mignore_index=ignore_index, \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2;33m/Users/jonnytr/micromamba/lib/python3.10/site-packages/pandas/core/reshape/\u001b[0m\u001b[1;33mconcat.py\u001b[0m:\u001b[94m445\u001b[0m in \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[92m__init__\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m442 \u001b[0m\u001b[2m│ │ \u001b[0m\u001b[96mself\u001b[0m.verify_integrity = verify_integrity \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m443 \u001b[0m\u001b[2m│ │ \u001b[0m\u001b[96mself\u001b[0m.copy = copy \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m444 \u001b[0m\u001b[2m│ │ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m445 \u001b[2m│ │ \u001b[0mobjs, keys = \u001b[96mself\u001b[0m._clean_keys_and_objs(objs, keys) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m446 \u001b[0m\u001b[2m│ │ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m447 \u001b[0m\u001b[2m│ │ \u001b[0m\u001b[2m# figure out what our result ndim is going to be\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m448 \u001b[0m\u001b[2m│ │ \u001b[0mndims = \u001b[96mself\u001b[0m._get_ndims(objs) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2;33m/Users/jonnytr/micromamba/lib/python3.10/site-packages/pandas/core/reshape/\u001b[0m\u001b[1;33mconcat.py\u001b[0m:\u001b[94m507\u001b[0m in \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[92m_clean_keys_and_objs\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m504 \u001b[0m\u001b[2m│ │ │ \u001b[0mobjs_list = \u001b[96mlist\u001b[0m(objs) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m505 \u001b[0m\u001b[2m│ │ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m506 \u001b[0m\u001b[2m│ │ \u001b[0m\u001b[94mif\u001b[0m \u001b[96mlen\u001b[0m(objs_list) == \u001b[94m0\u001b[0m: \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m507 \u001b[2m│ │ │ \u001b[0m\u001b[94mraise\u001b[0m \u001b[96mValueError\u001b[0m(\u001b[33m\"\u001b[0m\u001b[33mNo objects to concatenate\u001b[0m\u001b[33m\"\u001b[0m) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m508 \u001b[0m\u001b[2m│ │ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m509 \u001b[0m\u001b[2m│ │ \u001b[0m\u001b[94mif\u001b[0m keys \u001b[95mis\u001b[0m \u001b[94mNone\u001b[0m: \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m510 \u001b[0m\u001b[2m│ │ │ \u001b[0mobjs_list = \u001b[96mlist\u001b[0m(com.not_none(*objs_list)) \u001b[31m│\u001b[0m\n", - "\u001b[31m╰──────────────────────────────────────────────────────────────────────────────────────────────────╯\u001b[0m\n", - "\u001b[1;91mValueError: \u001b[0mNo objects to concatenate\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "suggestion_metrics = grits_from_batch(true_extractions, pred_extractions, exclude_columns=['Site'])\n", - "\n", - "suggestion_metrics.style.background_gradient(axis=1, vmin=0, vmax=1, cmap='RdYlGn')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "d0d7a119-fde2-47dd-be75-85b00b88779d", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
 grits
 con
 f1precisionrecall
Schema   
Easy97.4%97.4%97.9%
Hard89.2%88.3%95.7%
\n" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 100, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "df = suggestion_metrics.query(\"Schema != 'ClinicalOutcome'\").groupby('Schema').mean()\n", - "df.groupby({'Observation': 'Easy', 'ITNCondition': 'Easy', 'EntomologicalOutcome': 'Hard', 'ClinicalOutcome': 'Hard'})\\\n", - " .mean(0).map(lambda n: '{:.1%}'.format(n)).style.background_gradient(axis=1, vmin=0, vmax=1, cmap='RdYlGn')" - ] - }, - { - "cell_type": "markdown", - "id": "da89f632-e7d0-4b56-95ba-fce00365e23d", - "metadata": {}, - "source": [ - "# Push new extraction records" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "3ba02a63-d4a0-4fff-bcf9-325d9cbf8302", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "data": { - "text/html": [ - "
[10/30/24 12:40:53] WARNING  WARNING:patch_pipeline_export_record:No             patch_pipeline_export_record.py:80\n",
-                            "                             ClinicalOutcome extraction for                                                        \n",
-                            "                             ibrahim2020exploring, generating an empty table.                                      \n",
-                            "
\n" - ], - "text/plain": [ - "\u001b[2;36m[10/30/24 12:40:53]\u001b[0m\u001b[2;36m \u001b[0m\u001b[33mWARNING \u001b[0m WARNING:patch_pipeline_export_record:No \u001b]8;id=75945;file:///Users/bertozzivill/repos/ITN-recal-data-extraction/patch_pipeline_export_record.py\u001b\\\u001b[2mpatch_pipeline_export_record.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=349027;file:///Users/bertozzivill/repos/ITN-recal-data-extraction/patch_pipeline_export_record.py#80\u001b\\\u001b[2m80\u001b[0m\u001b]8;;\u001b\\\n", - "\u001b[2;36m \u001b[0m ClinicalOutcome extraction for \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m ibrahim2020exploring, generating an empty table. \u001b[2m \u001b[0m\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
                    WARNING  WARNING:patch_pipeline_export_record:No             patch_pipeline_export_record.py:80\n",
-                            "                             ClinicalOutcome extraction for                                                        \n",
-                            "                             meiwald2022association, generating an empty table.                                    \n",
-                            "
\n" - ], - "text/plain": [ - "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[33mWARNING \u001b[0m WARNING:patch_pipeline_export_record:No \u001b]8;id=862372;file:///Users/bertozzivill/repos/ITN-recal-data-extraction/patch_pipeline_export_record.py\u001b\\\u001b[2mpatch_pipeline_export_record.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=400002;file:///Users/bertozzivill/repos/ITN-recal-data-extraction/patch_pipeline_export_record.py#80\u001b\\\u001b[2m80\u001b[0m\u001b]8;;\u001b\\\n", - "\u001b[2;36m \u001b[0m ClinicalOutcome extraction for \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m meiwald2022association, generating an empty table. \u001b[2m \u001b[0m\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/plain": [ - "60" - ] - }, - "execution_count": 24, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "records = create_extraction_records(pred_extractions, responses=responses, papers=papers, dataset=extraction_dataset)\n", - "len(records)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "d682b346-0558-4dcd-907f-0a18e3a12ba1", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'accrombessi2023efficacy', 'doc_id': 'e5386539-bd6f-3c8b-ae43-13bceeba7522', 'pmid': '36706778', 'doi': '10.1016/S0140-6736(22)02319-4', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'accrombessi2023efficacy', 'doc_id': 'e5386539-bd6f-3c8b-ae43-13bceeba7522', 'pmid': '36706778', 'doi': '10.1016/S0140-6736(22)02319-4', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'accrombessi2023efficacy', 'doc_id': 'e5386539-bd6f-3c8b-ae43-13bceeba7522', 'pmid': '36706778', 'doi': '10.1016/S0140-6736(22)02319-4', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'accrombessi2023efficacy', 'doc_id': 'e5386539-bd6f-3c8b-ae43-13bceeba7522', 'pmid': '36706778', 'doi': '10.1016/S0140-6736(22)02319-4', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'mieguim2021insights', 'doc_id': '1713f6db-c0fc-31cf-8b0b-7f2484f81187', 'pmid': '33388082', 'doi': '10.1186/s13071-020-04525-0', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'mieguim2021insights', 'doc_id': '1713f6db-c0fc-31cf-8b0b-7f2484f81187', 'pmid': '33388082', 'doi': '10.1186/s13071-020-04525-0', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'mieguim2021insights', 'doc_id': '1713f6db-c0fc-31cf-8b0b-7f2484f81187', 'pmid': '33388082', 'doi': '10.1186/s13071-020-04525-0', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'mieguim2021insights', 'doc_id': '1713f6db-c0fc-31cf-8b0b-7f2484f81187', 'pmid': '33388082', 'doi': '10.1186/s13071-020-04525-0', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gebremariam2021evaluation', 'doc_id': 'fdda2d65-54ee-3345-8502-941bccb1dba7', 'pmid': '33488090', 'doi': '10.1177/1178630220974730', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gebremariam2021evaluation', 'doc_id': 'fdda2d65-54ee-3345-8502-941bccb1dba7', 'pmid': '33488090', 'doi': '10.1177/1178630220974730', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gebremariam2021evaluation', 'doc_id': 'fdda2d65-54ee-3345-8502-941bccb1dba7', 'pmid': '33488090', 'doi': '10.1177/1178630220974730', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gebremariam2021evaluation', 'doc_id': 'fdda2d65-54ee-3345-8502-941bccb1dba7', 'pmid': '33488090', 'doi': '10.1177/1178630220974730', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gichuki2021bioefficacy', 'doc_id': '4aad902e-7bc0-3d0d-b8d8-622a46a98a20', 'pmid': '34930459', 'doi': '10.1186/s40249-021-00916-2', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gichuki2021bioefficacy', 'doc_id': '4aad902e-7bc0-3d0d-b8d8-622a46a98a20', 'pmid': '34930459', 'doi': '10.1186/s40249-021-00916-2', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gichuki2021bioefficacy', 'doc_id': '4aad902e-7bc0-3d0d-b8d8-622a46a98a20', 'pmid': '34930459', 'doi': '10.1186/s40249-021-00916-2', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gichuki2021bioefficacy', 'doc_id': '4aad902e-7bc0-3d0d-b8d8-622a46a98a20', 'pmid': '34930459', 'doi': '10.1186/s40249-021-00916-2', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2021which', 'doc_id': '5f74e356-d54f-343e-a1b7-2cf0c3b0be7c', 'pmid': '33507978', 'doi': '10.1371/journal.pone.0245804', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2021which', 'doc_id': '5f74e356-d54f-343e-a1b7-2cf0c3b0be7c', 'pmid': '33507978', 'doi': '10.1371/journal.pone.0245804', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2021which', 'doc_id': '5f74e356-d54f-343e-a1b7-2cf0c3b0be7c', 'pmid': '33507978', 'doi': '10.1371/journal.pone.0245804', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2021which', 'doc_id': '5f74e356-d54f-343e-a1b7-2cf0c3b0be7c', 'pmid': '33507978', 'doi': '10.1371/journal.pone.0245804', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'zahouli2023small', 'doc_id': '5210dc37-a785-375a-b6bb-47b45bc0b993', 'pmid': '36726160', 'doi': '10.1186/s12936-023-04455-z', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'zahouli2023small', 'doc_id': '5210dc37-a785-375a-b6bb-47b45bc0b993', 'pmid': '36726160', 'doi': '10.1186/s12936-023-04455-z', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'zahouli2023small', 'doc_id': '5210dc37-a785-375a-b6bb-47b45bc0b993', 'pmid': '36726160', 'doi': '10.1186/s12936-023-04455-z', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'zahouli2023small', 'doc_id': '5210dc37-a785-375a-b6bb-47b45bc0b993', 'pmid': '36726160', 'doi': '10.1186/s12936-023-04455-z', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'diouf2022evaluation', 'doc_id': 'eeb51aa0-4e1a-3f3b-9ffa-acdb2f073b7d', 'pmid': '35780153', 'doi': '10.1186/s12936-022-04230-6', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'diouf2022evaluation', 'doc_id': 'eeb51aa0-4e1a-3f3b-9ffa-acdb2f073b7d', 'pmid': '35780153', 'doi': '10.1186/s12936-022-04230-6', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'diouf2022evaluation', 'doc_id': 'eeb51aa0-4e1a-3f3b-9ffa-acdb2f073b7d', 'pmid': '35780153', 'doi': '10.1186/s12936-022-04230-6', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'diouf2022evaluation', 'doc_id': 'eeb51aa0-4e1a-3f3b-9ffa-acdb2f073b7d', 'pmid': '35780153', 'doi': '10.1186/s12936-022-04230-6', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ibrahim2020exploring', 'doc_id': '986c31ab-a1d8-3384-8982-6d711a821b29', 'pmid': '32331386', 'doi': '10.3390/genes11040454', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ibrahim2020exploring', 'doc_id': '986c31ab-a1d8-3384-8982-6d711a821b29', 'pmid': '32331386', 'doi': '10.3390/genes11040454', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ibrahim2020exploring', 'doc_id': '986c31ab-a1d8-3384-8982-6d711a821b29', 'pmid': '32331386', 'doi': '10.3390/genes11040454', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ibrahim2020exploring', 'doc_id': '986c31ab-a1d8-3384-8982-6d711a821b29', 'pmid': '32331386', 'doi': '10.3390/genes11040454', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'kibondo2022influence', 'doc_id': '420b8983-dd49-3fa8-b774-e19e6b68671a', 'pmid': '35410250', 'doi': '10.1186/s13071-022-05207-9', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'kibondo2022influence', 'doc_id': '420b8983-dd49-3fa8-b774-e19e6b68671a', 'pmid': '35410250', 'doi': '10.1186/s13071-022-05207-9', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'kibondo2022influence', 'doc_id': '420b8983-dd49-3fa8-b774-e19e6b68671a', 'pmid': '35410250', 'doi': '10.1186/s13071-022-05207-9', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'kibondo2022influence', 'doc_id': '420b8983-dd49-3fa8-b774-e19e6b68671a', 'pmid': '35410250', 'doi': '10.1186/s13071-022-05207-9', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'meiwald2022association', 'doc_id': 'bfb47409-3c77-3c03-b9ec-1e89186f3484', 'pmid': '33175129', 'doi': '10.1093/infdis/jiaa699', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'meiwald2022association', 'doc_id': 'bfb47409-3c77-3c03-b9ec-1e89186f3484', 'pmid': '33175129', 'doi': '10.1093/infdis/jiaa699', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'meiwald2022association', 'doc_id': 'bfb47409-3c77-3c03-b9ec-1e89186f3484', 'pmid': '33175129', 'doi': '10.1093/infdis/jiaa699', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'meiwald2022association', 'doc_id': 'bfb47409-3c77-3c03-b9ec-1e89186f3484', 'pmid': '33175129', 'doi': '10.1093/infdis/jiaa699', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'menze2022experimental', 'doc_id': 'ce46d818-978e-3f40-bc7f-b71a4355c2e7', 'pmid': '35745492', 'doi': '10.3390/pathogens11060638', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'menze2022experimental', 'doc_id': 'ce46d818-978e-3f40-bc7f-b71a4355c2e7', 'pmid': '35745492', 'doi': '10.3390/pathogens11060638', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'menze2022experimental', 'doc_id': 'ce46d818-978e-3f40-bc7f-b71a4355c2e7', 'pmid': '35745492', 'doi': '10.3390/pathogens11060638', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'menze2022experimental', 'doc_id': 'ce46d818-978e-3f40-bc7f-b71a4355c2e7', 'pmid': '35745492', 'doi': '10.3390/pathogens11060638', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2022pyrethroid', 'doc_id': '075adb8e-9994-3cee-af44-523e580e2cea', 'pmid': '35478216', 'doi': '10.1038/s41598-022-10953-y', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2022pyrethroid', 'doc_id': '075adb8e-9994-3cee-af44-523e580e2cea', 'pmid': '35478216', 'doi': '10.1038/s41598-022-10953-y', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2022pyrethroid', 'doc_id': '075adb8e-9994-3cee-af44-523e580e2cea', 'pmid': '35478216', 'doi': '10.1038/s41598-022-10953-y', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2022pyrethroid', 'doc_id': '075adb8e-9994-3cee-af44-523e580e2cea', 'pmid': '35478216', 'doi': '10.1038/s41598-022-10953-y', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'toe2018do', 'doc_id': 'b3de4026-d18f-362f-875c-1c7a1fb6d3b4', 'pmid': '35478216', 'doi': '10.1111/mve.12316', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'toe2018do', 'doc_id': 'b3de4026-d18f-362f-875c-1c7a1fb6d3b4', 'pmid': '35478216', 'doi': '10.1111/mve.12316', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'toe2018do', 'doc_id': 'b3de4026-d18f-362f-875c-1c7a1fb6d3b4', 'pmid': '35478216', 'doi': '10.1111/mve.12316', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'toe2018do', 'doc_id': 'b3de4026-d18f-362f-875c-1c7a1fb6d3b4', 'pmid': '35478216', 'doi': '10.1111/mve.12316', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'yewhalaw2022experimental', 'doc_id': 'fbbd582e-2e1e-33d1-bee7-c21641f2027f', 'pmid': '35987650', 'doi': '10.1186/s12936-022-04263-x', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'yewhalaw2022experimental', 'doc_id': 'fbbd582e-2e1e-33d1-bee7-c21641f2027f', 'pmid': '35987650', 'doi': '10.1186/s12936-022-04263-x', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'yewhalaw2022experimental', 'doc_id': 'fbbd582e-2e1e-33d1-bee7-c21641f2027f', 'pmid': '35987650', 'doi': '10.1186/s12936-022-04263-x', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'yewhalaw2022experimental', 'doc_id': 'fbbd582e-2e1e-33d1-bee7-c21641f2027f', 'pmid': '35987650', 'doi': '10.1186/s12936-022-04263-x', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ngufor2022comparative', 'doc_id': '5f8d4493-ba86-3757-9bce-0ae59d1831f4', 'pmid': '35016676', 'doi': '10.1186/s12936-022-04041-9', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ngufor2022comparative', 'doc_id': '5f8d4493-ba86-3757-9bce-0ae59d1831f4', 'pmid': '35016676', 'doi': '10.1186/s12936-022-04041-9', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ngufor2022comparative', 'doc_id': '5f8d4493-ba86-3757-9bce-0ae59d1831f4', 'pmid': '35016676', 'doi': '10.1186/s12936-022-04041-9', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None),\n", - " FeedbackRecord(fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ngufor2022comparative', 'doc_id': '5f8d4493-ba86-3757-9bce-0ae59d1831f4', 'pmid': '35016676', 'doi': '10.1186/s12936-022-04041-9', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None)]" - ] - }, - "execution_count": 30, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "records" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "3848fe73-6a8b-407a-853f-ef59ff375c49", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "5bed2c016bc34fc0aeb28917490a5c19", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "Output()" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
\n"
-                        ],
-                        "text/plain": []
-                    },
-                    "metadata": {},
-                    "output_type": "display_data"
-                }
-            ],
-            "source": [
-                "extraction_dataset.add_records(records)"
-            ]
-        },
-        {
-            "cell_type": "markdown",
-            "id": "1a820435-53f2-4c15-a88a-afc4854309bf",
-            "metadata": {},
-            "source": [
-                "## Update existing records"
-            ]
-        },
-        {
-            "cell_type": "code",
-            "execution_count": null,
-            "id": "c5857206-5713-416a-a24e-11b9470acc89",
-            "metadata": {},
-            "outputs": [],
-            "source": [
-                "record_updates = []\n",
-                "\n",
-                "for record in tqdm(extraction_dataset.records):\n",
-                "    reference = record.metadata['reference']\n",
-                "    schema_name = record.metadata['type']\n",
-                "\n",
-                "    update_record = next((r for r in records if reference == r.metadata['reference'] and schema_name == r.metadata['type']), None)\n",
-                "    if update_record:\n",
-                "        record.fields = update_record.fields\n",
-                "        record_updates.append(record)\n",
-                "        \n",
-                "len(record_updates)"
-            ]
-        },
-        {
-            "cell_type": "markdown",
-            "id": "4879c50f-b033-424d-a131-caefd2ecc5d7",
-            "metadata": {
-                "scrolled": true
-            },
-            "source": [
-                "## Delete records"
-            ]
-        },
-        {
-            "cell_type": "code",
-            "execution_count": null,
-            "id": "ca9c0dec-66a0-4435-8a8e-c17a177c6d59",
-            "metadata": {},
-            "outputs": [
-                {
-                    "data": {
-                        "text/plain": [
-                            "120"
-                        ]
-                    },
-                    "execution_count": 33,
-                    "metadata": {},
-                    "output_type": "execute_result"
-                }
-            ],
-            "source": [
-                "delete_records = [r for r in extraction_dataset.records if r.metadata['reference'] in references]\n",
-                "len(delete_records)"
-            ]
-        },
-        {
-            "cell_type": "code",
-            "execution_count": null,
-            "id": "6f4e31d4-aa51-48fe-9ec4-959b81cb0c67",
-            "metadata": {},
-            "outputs": [
-                {
-                    "data": {
-                        "text/plain": [
-                            "[RemoteFeedbackRecord(id=UUID('5a126d29-a23e-4d99-a397-1377a42f1fc3'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'yewhalaw2022experimental', 'pmid': '35987650', 'doc_id': 'fbbd582e-2e1e-33d1-bee7-c21641f2027f', 'type': 'Observation'}, vectors={}, responses={'ameliabv': []}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 9, 20, 40, 0, 886419), updated_at=datetime.datetime(2024, 6, 9, 20, 40, 0, 886419)),\n",
-                            " RemoteFeedbackRecord(id=UUID('3d52cd67-668a-4576-bbc5-ad4fd26d0687'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'yewhalaw2022experimental', 'pmid': '35987650', 'doc_id': 'fbbd582e-2e1e-33d1-bee7-c21641f2027f', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 9, 20, 40, 0, 886422), updated_at=datetime.datetime(2024, 6, 9, 20, 40, 0, 886422)),\n",
-                            " RemoteFeedbackRecord(id=UUID('bd1e7479-a11e-48f4-9716-8d2bfd3d578b'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'yewhalaw2022experimental', 'pmid': '35987650', 'doc_id': 'fbbd582e-2e1e-33d1-bee7-c21641f2027f', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 9, 20, 40, 0, 886426), updated_at=datetime.datetime(2024, 6, 9, 20, 40, 0, 886426)),\n",
-                            " RemoteFeedbackRecord(id=UUID('071dfaca-7719-43f6-a102-341f905626ab'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'yewhalaw2022experimental', 'pmid': '35987650', 'doc_id': 'fbbd582e-2e1e-33d1-bee7-c21641f2027f', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 9, 20, 40, 0, 886429), updated_at=datetime.datetime(2024, 6, 9, 20, 40, 0, 886429)),\n",
-                            " RemoteFeedbackRecord(id=UUID('1e89a75b-6181-4099-b776-199cbd5d2658'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ngufor2022comparative', 'doc_id': '5f8d4493-ba86-3757-9bce-0ae59d1831f4', 'pmid': '35016676', 'doi': '10.1186/s12936-022-04041-9', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323669), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323669)),\n",
-                            " RemoteFeedbackRecord(id=UUID('f6baf956-bf8d-4bde-9620-bbf4a13f1f9c'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ngufor2022comparative', 'doc_id': '5f8d4493-ba86-3757-9bce-0ae59d1831f4', 'pmid': '35016676', 'doi': '10.1186/s12936-022-04041-9', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323672), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323672)),\n",
-                            " RemoteFeedbackRecord(id=UUID('73772b4f-fd49-4eb4-a7ec-941ed0f44ab4'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ngufor2022comparative', 'doc_id': '5f8d4493-ba86-3757-9bce-0ae59d1831f4', 'pmid': '35016676', 'doi': '10.1186/s12936-022-04041-9', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323676), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323676)),\n",
-                            " RemoteFeedbackRecord(id=UUID('f1150462-13d5-4156-8038-1e43268be3ed'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ngufor2022comparative', 'doc_id': '5f8d4493-ba86-3757-9bce-0ae59d1831f4', 'pmid': '35016676', 'doi': '10.1186/s12936-022-04041-9', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323679), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323679)),\n",
-                            " RemoteFeedbackRecord(id=UUID('22f6a703-064e-499b-8e6a-3e58dea2e3cb'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'diouf2022evaluation', 'doc_id': 'eeb51aa0-4e1a-3f3b-9ffa-acdb2f073b7d', 'pmid': '35780153', 'doi': '10.1186/s12936-022-04230-6', 'type': 'ITNCondition'}, vectors={}, responses={'ameliabv': []}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323697), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323697)),\n",
-                            " RemoteFeedbackRecord(id=UUID('1ee9ac1c-073d-4419-a3b2-61e45a4b4cd8'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'diouf2022evaluation', 'doc_id': 'eeb51aa0-4e1a-3f3b-9ffa-acdb2f073b7d', 'pmid': '35780153', 'doi': '10.1186/s12936-022-04230-6', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323700), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323700)),\n",
-                            " RemoteFeedbackRecord(id=UUID('52fbcf88-2b38-45f7-8009-95840f3f7a7c'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'diouf2022evaluation', 'doc_id': 'eeb51aa0-4e1a-3f3b-9ffa-acdb2f073b7d', 'pmid': '35780153', 'doi': '10.1186/s12936-022-04230-6', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323703), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323703)),\n",
-                            " RemoteFeedbackRecord(id=UUID('11325543-96e0-4834-866c-5021f4d88997'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'diouf2022evaluation', 'doc_id': 'eeb51aa0-4e1a-3f3b-9ffa-acdb2f073b7d', 'pmid': '35780153', 'doi': '10.1186/s12936-022-04230-6', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323707), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323707)),\n",
-                            " RemoteFeedbackRecord(id=UUID('fe766984-57eb-44e6-a129-321768753d8d'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2021which', 'doc_id': '5f74e356-d54f-343e-a1b7-2cf0c3b0be7c', 'pmid': '33507978', 'doi': '10.1371/journal.pone.0245804', 'type': 'ITNCondition'}, vectors={}, responses={'ameliabv': []}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323710), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323710)),\n",
-                            " RemoteFeedbackRecord(id=UUID('8dc5c719-b0ef-4f24-8b47-e7b24a070883'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2021which', 'doc_id': '5f74e356-d54f-343e-a1b7-2cf0c3b0be7c', 'pmid': '33507978', 'doi': '10.1371/journal.pone.0245804', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323714), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323714)),\n",
-                            " RemoteFeedbackRecord(id=UUID('96e69e8d-0a60-4162-a14b-482529091255'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2021which', 'doc_id': '5f74e356-d54f-343e-a1b7-2cf0c3b0be7c', 'pmid': '33507978', 'doi': '10.1371/journal.pone.0245804', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323717), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323717)),\n",
-                            " RemoteFeedbackRecord(id=UUID('29e87dfc-19b7-4539-9ed8-9c4fd2895f65'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2021which', 'doc_id': '5f74e356-d54f-343e-a1b7-2cf0c3b0be7c', 'pmid': '33507978', 'doi': '10.1371/journal.pone.0245804', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323721), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323721)),\n",
-                            " RemoteFeedbackRecord(id=UUID('22d763c5-b616-486b-ac39-841da4fbad9f'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'meiwald2022association', 'doc_id': 'bfb47409-3c77-3c03-b9ec-1e89186f3484', 'pmid': '33175129', 'doi': '10.1093/infdis/jiaa699', 'type': 'ITNCondition'}, vectors={}, responses={'ameliabv': []}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323724), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323724)),\n",
-                            " RemoteFeedbackRecord(id=UUID('4eb3a1b3-41cb-4fe2-909b-b348d18caffa'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'meiwald2022association', 'doc_id': 'bfb47409-3c77-3c03-b9ec-1e89186f3484', 'pmid': '33175129', 'doi': '10.1093/infdis/jiaa699', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323727), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323727)),\n",
-                            " RemoteFeedbackRecord(id=UUID('898f9522-3ae5-40c7-9b08-c9bc10ad318a'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'meiwald2022association', 'doc_id': 'bfb47409-3c77-3c03-b9ec-1e89186f3484', 'pmid': '33175129', 'doi': '10.1093/infdis/jiaa699', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323731), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323731)),\n",
-                            " RemoteFeedbackRecord(id=UUID('78771d04-3ebc-44b8-a5c1-e86dcb264bca'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'meiwald2022association', 'doc_id': 'bfb47409-3c77-3c03-b9ec-1e89186f3484', 'pmid': '33175129', 'doi': '10.1093/infdis/jiaa699', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323734), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323734)),\n",
-                            " RemoteFeedbackRecord(id=UUID('cbc3d3d5-93fb-4f43-816d-6a3b6d4fb99c'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gichuki2021bioefficacy', 'doc_id': '4aad902e-7bc0-3d0d-b8d8-622a46a98a20', 'pmid': '34930459', 'doi': '10.1186/s40249-021-00916-2', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323737), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323737)),\n",
-                            " RemoteFeedbackRecord(id=UUID('c5932a80-5e62-4676-bd2d-ee72b3c2986f'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gichuki2021bioefficacy', 'doc_id': '4aad902e-7bc0-3d0d-b8d8-622a46a98a20', 'pmid': '34930459', 'doi': '10.1186/s40249-021-00916-2', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323741), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323741)),\n",
-                            " RemoteFeedbackRecord(id=UUID('aa210166-345f-42a9-8b20-eeb111b95e41'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gichuki2021bioefficacy', 'doc_id': '4aad902e-7bc0-3d0d-b8d8-622a46a98a20', 'pmid': '34930459', 'doi': '10.1186/s40249-021-00916-2', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323744), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323744)),\n",
-                            " RemoteFeedbackRecord(id=UUID('44418262-04e4-49f9-b1a8-d39ab3ba0db9'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gichuki2021bioefficacy', 'doc_id': '4aad902e-7bc0-3d0d-b8d8-622a46a98a20', 'pmid': '34930459', 'doi': '10.1186/s40249-021-00916-2', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323747), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 323747)),\n",
-                            " RemoteFeedbackRecord(id=UUID('f566c9a9-4f99-464f-b939-b82a0c77e35d'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'kibondo2022influence', 'doc_id': '420b8983-dd49-3fa8-b774-e19e6b68671a', 'pmid': '35410250', 'doi': '10.1186/s13071-022-05207-9', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852517), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852517)),\n",
-                            " RemoteFeedbackRecord(id=UUID('f6f42420-1cb5-4110-9722-5062077e7e41'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'kibondo2022influence', 'doc_id': '420b8983-dd49-3fa8-b774-e19e6b68671a', 'pmid': '35410250', 'doi': '10.1186/s13071-022-05207-9', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852528), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852528)),\n",
-                            " RemoteFeedbackRecord(id=UUID('f417165b-e9fb-44ad-a5a1-1ccd3f3e9a9b'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'kibondo2022influence', 'doc_id': '420b8983-dd49-3fa8-b774-e19e6b68671a', 'pmid': '35410250', 'doi': '10.1186/s13071-022-05207-9', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852531), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852531)),\n",
-                            " RemoteFeedbackRecord(id=UUID('76155a5f-9295-426d-87e4-25bba9eccd7e'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'kibondo2022influence', 'doc_id': '420b8983-dd49-3fa8-b774-e19e6b68671a', 'pmid': '35410250', 'doi': '10.1186/s13071-022-05207-9', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852535), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852535)),\n",
-                            " RemoteFeedbackRecord(id=UUID('597ab1b7-637f-46cd-a3c9-adc1ff5636bf'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'zahouli2023small', 'doc_id': '5210dc37-a785-375a-b6bb-47b45bc0b993', 'pmid': '36726160', 'doi': '10.1186/s12936-023-04455-z', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852539), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852539)),\n",
-                            " RemoteFeedbackRecord(id=UUID('8ffe47bc-f2f8-4b67-8176-602b1e6e9a67'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'zahouli2023small', 'doc_id': '5210dc37-a785-375a-b6bb-47b45bc0b993', 'pmid': '36726160', 'doi': '10.1186/s12936-023-04455-z', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852543), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852543)),\n",
-                            " RemoteFeedbackRecord(id=UUID('647e504d-dd6f-42a8-a14b-40f1dda20f6a'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'zahouli2023small', 'doc_id': '5210dc37-a785-375a-b6bb-47b45bc0b993', 'pmid': '36726160', 'doi': '10.1186/s12936-023-04455-z', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852546), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852546)),\n",
-                            " RemoteFeedbackRecord(id=UUID('be3ab3df-313b-4429-9f7e-1d75995f12eb'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'zahouli2023small', 'doc_id': '5210dc37-a785-375a-b6bb-47b45bc0b993', 'pmid': '36726160', 'doi': '10.1186/s12936-023-04455-z', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852550), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852550)),\n",
-                            " RemoteFeedbackRecord(id=UUID('aedb3853-a8fe-4a1b-8f17-6652365ebcf8'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'toe2018do', 'doc_id': 'b3de4026-d18f-362f-875c-1c7a1fb6d3b4', 'pmid': '36726160', 'doi': '10.1111/mve.12316', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852553), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852553)),\n",
-                            " RemoteFeedbackRecord(id=UUID('03511a36-bc9e-47cd-8e88-d50fd9caec55'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'toe2018do', 'doc_id': 'b3de4026-d18f-362f-875c-1c7a1fb6d3b4', 'pmid': '36726160', 'doi': '10.1111/mve.12316', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852556), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852556)),\n",
-                            " RemoteFeedbackRecord(id=UUID('2bf35187-765b-4fb6-8935-4d046584b76e'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'toe2018do', 'doc_id': 'b3de4026-d18f-362f-875c-1c7a1fb6d3b4', 'pmid': '36726160', 'doi': '10.1111/mve.12316', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852560), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852560)),\n",
-                            " RemoteFeedbackRecord(id=UUID('59cedb58-c565-4865-b41b-8f3364396d32'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'toe2018do', 'doc_id': 'b3de4026-d18f-362f-875c-1c7a1fb6d3b4', 'pmid': '36726160', 'doi': '10.1111/mve.12316', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852563), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852563)),\n",
-                            " RemoteFeedbackRecord(id=UUID('0c8b02a4-a557-43fc-b1e1-b1d4da6b1f16'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'accrombessi2023efficacy', 'doc_id': 'e5386539-bd6f-3c8b-ae43-13bceeba7522', 'pmid': '36706778', 'doi': '10.1016/S0140-6736(22)02319-4', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852580), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852580)),\n",
-                            " RemoteFeedbackRecord(id=UUID('042e6118-77b6-442f-b4a8-d950bb6ce975'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'accrombessi2023efficacy', 'doc_id': 'e5386539-bd6f-3c8b-ae43-13bceeba7522', 'pmid': '36706778', 'doi': '10.1016/S0140-6736(22)02319-4', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852584), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852584)),\n",
-                            " RemoteFeedbackRecord(id=UUID('a0fc80f6-9539-4e45-a5e9-36566f9bfb65'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'accrombessi2023efficacy', 'doc_id': 'e5386539-bd6f-3c8b-ae43-13bceeba7522', 'pmid': '36706778', 'doi': '10.1016/S0140-6736(22)02319-4', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852587), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852587)),\n",
-                            " RemoteFeedbackRecord(id=UUID('39467d2b-3c6f-441a-95e0-e677ad6c9b25'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'accrombessi2023efficacy', 'doc_id': 'e5386539-bd6f-3c8b-ae43-13bceeba7522', 'pmid': '36706778', 'doi': '10.1016/S0140-6736(22)02319-4', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852591), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852591)),\n",
-                            " RemoteFeedbackRecord(id=UUID('7f243860-1f22-4ec8-8f5b-baaec90375be'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2022pyrethroid', 'doc_id': '075adb8e-9994-3cee-af44-523e580e2cea', 'pmid': '35478216', 'doi': '10.1038/s41598-022-10953-y', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852595), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852595)),\n",
-                            " RemoteFeedbackRecord(id=UUID('7be3b6ef-0382-43bb-8dd3-206159fe6cb6'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2022pyrethroid', 'doc_id': '075adb8e-9994-3cee-af44-523e580e2cea', 'pmid': '35478216', 'doi': '10.1038/s41598-022-10953-y', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852598), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852598)),\n",
-                            " RemoteFeedbackRecord(id=UUID('5e415fa8-70ca-4527-8072-427aa689d100'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2022pyrethroid', 'doc_id': '075adb8e-9994-3cee-af44-523e580e2cea', 'pmid': '35478216', 'doi': '10.1038/s41598-022-10953-y', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852602), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852602)),\n",
-                            " RemoteFeedbackRecord(id=UUID('f27980e4-aed5-4b23-8714-ac8103dcdf45'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2022pyrethroid', 'doc_id': '075adb8e-9994-3cee-af44-523e580e2cea', 'pmid': '35478216', 'doi': '10.1038/s41598-022-10953-y', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852605), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852605)),\n",
-                            " RemoteFeedbackRecord(id=UUID('365017c6-68b0-4ad3-b8cd-9d3dd270a08c'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'menze2022experimental', 'doc_id': 'ce46d818-978e-3f40-bc7f-b71a4355c2e7', 'pmid': '35745492', 'doi': '10.3390/pathogens11060638', 'type': 'ITNCondition'}, vectors={}, responses={'ameliabv': []}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852608), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852608)),\n",
-                            " RemoteFeedbackRecord(id=UUID('eeb02640-b086-439b-8e93-85ae70ff147a'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'menze2022experimental', 'doc_id': 'ce46d818-978e-3f40-bc7f-b71a4355c2e7', 'pmid': '35745492', 'doi': '10.3390/pathogens11060638', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852629), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852629)),\n",
-                            " RemoteFeedbackRecord(id=UUID('48dbf463-8539-4edb-a21b-6e7ba62f47ac'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'menze2022experimental', 'doc_id': 'ce46d818-978e-3f40-bc7f-b71a4355c2e7', 'pmid': '35745492', 'doi': '10.3390/pathogens11060638', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852632), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852632)),\n",
-                            " RemoteFeedbackRecord(id=UUID('b6eba409-42a7-4a5b-8e33-d6a451c50408'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'menze2022experimental', 'doc_id': 'ce46d818-978e-3f40-bc7f-b71a4355c2e7', 'pmid': '35745492', 'doi': '10.3390/pathogens11060638', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852636), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852636)),\n",
-                            " RemoteFeedbackRecord(id=UUID('3b4ec76a-d392-45cf-9d2d-746bc676a5ee'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gebremariam2021evaluation', 'doc_id': 'fdda2d65-54ee-3345-8502-941bccb1dba7', 'pmid': '33488090', 'doi': '10.1177/1178630220974730', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852639), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852639)),\n",
-                            " RemoteFeedbackRecord(id=UUID('085c5c49-2f38-4bb2-bfee-1213520d7920'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gebremariam2021evaluation', 'doc_id': 'fdda2d65-54ee-3345-8502-941bccb1dba7', 'pmid': '33488090', 'doi': '10.1177/1178630220974730', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852643), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852643)),\n",
-                            " RemoteFeedbackRecord(id=UUID('90fcbcb8-5a61-4ab7-8736-a91a1ac316be'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gebremariam2021evaluation', 'doc_id': 'fdda2d65-54ee-3345-8502-941bccb1dba7', 'pmid': '33488090', 'doi': '10.1177/1178630220974730', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852646), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852646)),\n",
-                            " RemoteFeedbackRecord(id=UUID('cbca3a2b-03dd-49e1-a93e-91b0f6128c6e'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gebremariam2021evaluation', 'doc_id': 'fdda2d65-54ee-3345-8502-941bccb1dba7', 'pmid': '33488090', 'doi': '10.1177/1178630220974730', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852649), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 7, 852649)),\n",
-                            " RemoteFeedbackRecord(id=UUID('5d687132-1687-4bf4-a068-075c0304f7bd'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ibrahim2020exploring', 'doc_id': '986c31ab-a1d8-3384-8982-6d711a821b29', 'pmid': '32331386', 'doi': '10.3390/genes11040454', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 8, 342445), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 8, 342445)),\n",
-                            " RemoteFeedbackRecord(id=UUID('28a85c80-e8d5-4db0-afcf-9a5f7b0e27ac'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ibrahim2020exploring', 'doc_id': '986c31ab-a1d8-3384-8982-6d711a821b29', 'pmid': '32331386', 'doi': '10.3390/genes11040454', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 8, 342449), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 8, 342449)),\n",
-                            " RemoteFeedbackRecord(id=UUID('7b1f689d-c4f0-4033-ad59-76c513708e0c'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ibrahim2020exploring', 'doc_id': '986c31ab-a1d8-3384-8982-6d711a821b29', 'pmid': '32331386', 'doi': '10.3390/genes11040454', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 8, 342453), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 8, 342453)),\n",
-                            " RemoteFeedbackRecord(id=UUID('addeba0c-2ad3-4f24-8147-bca72952bcfa'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ibrahim2020exploring', 'doc_id': '986c31ab-a1d8-3384-8982-6d711a821b29', 'pmid': '32331386', 'doi': '10.3390/genes11040454', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 8, 342457), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 8, 342457)),\n",
-                            " RemoteFeedbackRecord(id=UUID('05492554-ba85-496e-89a5-295ac46ec347'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'mieguim2021insights', 'doc_id': '1713f6db-c0fc-31cf-8b0b-7f2484f81187', 'pmid': '33388082', 'doi': '10.1186/s13071-020-04525-0', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 8, 342461), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 8, 342461)),\n",
-                            " RemoteFeedbackRecord(id=UUID('59f59129-05b7-42e8-994b-1a0d8e82acba'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'mieguim2021insights', 'doc_id': '1713f6db-c0fc-31cf-8b0b-7f2484f81187', 'pmid': '33388082', 'doi': '10.1186/s13071-020-04525-0', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 8, 342465), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 8, 342465)),\n",
-                            " RemoteFeedbackRecord(id=UUID('c4f4731e-a606-4b11-b282-396ab1b8774c'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'mieguim2021insights', 'doc_id': '1713f6db-c0fc-31cf-8b0b-7f2484f81187', 'pmid': '33388082', 'doi': '10.1186/s13071-020-04525-0', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 8, 342469), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 8, 342469)),\n",
-                            " RemoteFeedbackRecord(id=UUID('077f388e-52ff-4dea-9060-1e5e09667376'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'mieguim2021insights', 'doc_id': '1713f6db-c0fc-31cf-8b0b-7f2484f81187', 'pmid': '33388082', 'doi': '10.1186/s13071-020-04525-0', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 6, 21, 7, 25, 8, 342473), updated_at=datetime.datetime(2024, 6, 21, 7, 25, 8, 342473)),\n",
-                            " RemoteFeedbackRecord(id=UUID('1b8d85b2-0bd8-4481-adc0-6cbe037990ee'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'accrombessi2023efficacy', 'doc_id': 'e5386539-bd6f-3c8b-ae43-13bceeba7522', 'pmid': '36706778', 'doi': '10.1016/S0140-6736(22)02319-4', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501715), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501715)),\n",
-                            " RemoteFeedbackRecord(id=UUID('9fd5cc7c-0e65-4dfe-b289-2c992b7eac41'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'accrombessi2023efficacy', 'doc_id': 'e5386539-bd6f-3c8b-ae43-13bceeba7522', 'pmid': '36706778', 'doi': '10.1016/S0140-6736(22)02319-4', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501727), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501727)),\n",
-                            " RemoteFeedbackRecord(id=UUID('6d3d3c20-b243-4421-ba13-a9b66a64caca'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'accrombessi2023efficacy', 'doc_id': 'e5386539-bd6f-3c8b-ae43-13bceeba7522', 'pmid': '36706778', 'doi': '10.1016/S0140-6736(22)02319-4', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501732), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501732)),\n",
-                            " RemoteFeedbackRecord(id=UUID('69e0d688-189c-4670-8153-88b68e93557a'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'accrombessi2023efficacy', 'doc_id': 'e5386539-bd6f-3c8b-ae43-13bceeba7522', 'pmid': '36706778', 'doi': '10.1016/S0140-6736(22)02319-4', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501736), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501736)),\n",
-                            " RemoteFeedbackRecord(id=UUID('c0e71e9e-bf19-4579-9309-f4ee2ba23e55'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'mieguim2021insights', 'doc_id': '1713f6db-c0fc-31cf-8b0b-7f2484f81187', 'pmid': '33388082', 'doi': '10.1186/s13071-020-04525-0', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501740), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501740)),\n",
-                            " RemoteFeedbackRecord(id=UUID('418e9ec8-da8e-4429-ab38-04b490a7f5e1'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'mieguim2021insights', 'doc_id': '1713f6db-c0fc-31cf-8b0b-7f2484f81187', 'pmid': '33388082', 'doi': '10.1186/s13071-020-04525-0', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501743), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501743)),\n",
-                            " RemoteFeedbackRecord(id=UUID('fd82e8c8-c5c9-45d3-bc99-8fd6d8094838'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'mieguim2021insights', 'doc_id': '1713f6db-c0fc-31cf-8b0b-7f2484f81187', 'pmid': '33388082', 'doi': '10.1186/s13071-020-04525-0', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501747), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501747)),\n",
-                            " RemoteFeedbackRecord(id=UUID('18daebe4-cac7-4d7c-acc5-38c0be929d25'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'mieguim2021insights', 'doc_id': '1713f6db-c0fc-31cf-8b0b-7f2484f81187', 'pmid': '33388082', 'doi': '10.1186/s13071-020-04525-0', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501750), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501750)),\n",
-                            " RemoteFeedbackRecord(id=UUID('ff4279bc-6ad7-483c-b641-cbd4c5c3db83'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gebremariam2021evaluation', 'doc_id': 'fdda2d65-54ee-3345-8502-941bccb1dba7', 'pmid': '33488090', 'doi': '10.1177/1178630220974730', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501754), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501754)),\n",
-                            " RemoteFeedbackRecord(id=UUID('12ee4fcb-873f-40b1-ba03-823cc182b779'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gebremariam2021evaluation', 'doc_id': 'fdda2d65-54ee-3345-8502-941bccb1dba7', 'pmid': '33488090', 'doi': '10.1177/1178630220974730', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501758), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501758)),\n",
-                            " RemoteFeedbackRecord(id=UUID('736b4754-f8a0-4f4f-8708-efe10c6c66be'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gebremariam2021evaluation', 'doc_id': 'fdda2d65-54ee-3345-8502-941bccb1dba7', 'pmid': '33488090', 'doi': '10.1177/1178630220974730', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501761), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501761)),\n",
-                            " RemoteFeedbackRecord(id=UUID('3f8b9c27-7dcc-4e54-8591-017bd3559a59'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gebremariam2021evaluation', 'doc_id': 'fdda2d65-54ee-3345-8502-941bccb1dba7', 'pmid': '33488090', 'doi': '10.1177/1178630220974730', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501765), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501765)),\n",
-                            " RemoteFeedbackRecord(id=UUID('8a0a0d89-94a3-4747-a8ae-730c5d8e63bd'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gichuki2021bioefficacy', 'doc_id': '4aad902e-7bc0-3d0d-b8d8-622a46a98a20', 'pmid': '34930459', 'doi': '10.1186/s40249-021-00916-2', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501768), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501768)),\n",
-                            " RemoteFeedbackRecord(id=UUID('7b39984f-0014-4b59-bb1c-d9020d327112'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gichuki2021bioefficacy', 'doc_id': '4aad902e-7bc0-3d0d-b8d8-622a46a98a20', 'pmid': '34930459', 'doi': '10.1186/s40249-021-00916-2', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501772), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501772)),\n",
-                            " RemoteFeedbackRecord(id=UUID('a129a260-aa69-44c2-b451-565a35f8129a'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gichuki2021bioefficacy', 'doc_id': '4aad902e-7bc0-3d0d-b8d8-622a46a98a20', 'pmid': '34930459', 'doi': '10.1186/s40249-021-00916-2', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501776), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501776)),\n",
-                            " RemoteFeedbackRecord(id=UUID('324f0810-c815-452c-8a38-266e9e1f0e61'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'gichuki2021bioefficacy', 'doc_id': '4aad902e-7bc0-3d0d-b8d8-622a46a98a20', 'pmid': '34930459', 'doi': '10.1186/s40249-021-00916-2', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501779), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501779)),\n",
-                            " RemoteFeedbackRecord(id=UUID('ef08a6c4-c044-49fb-a48b-a6f41960f8c1'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2021which', 'doc_id': '5f74e356-d54f-343e-a1b7-2cf0c3b0be7c', 'pmid': '33507978', 'doi': '10.1371/journal.pone.0245804', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501786), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501786)),\n",
-                            " RemoteFeedbackRecord(id=UUID('2704a3fd-af5d-4a7f-b060-c888dcbfb75b'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2021which', 'doc_id': '5f74e356-d54f-343e-a1b7-2cf0c3b0be7c', 'pmid': '33507978', 'doi': '10.1371/journal.pone.0245804', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501790), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501790)),\n",
-                            " RemoteFeedbackRecord(id=UUID('a0b538af-387c-4677-8597-989370bb203f'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2021which', 'doc_id': '5f74e356-d54f-343e-a1b7-2cf0c3b0be7c', 'pmid': '33507978', 'doi': '10.1371/journal.pone.0245804', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501793), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501793)),\n",
-                            " RemoteFeedbackRecord(id=UUID('91a3a881-7351-43b9-b85e-479b43a94ff2'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2021which', 'doc_id': '5f74e356-d54f-343e-a1b7-2cf0c3b0be7c', 'pmid': '33507978', 'doi': '10.1371/journal.pone.0245804', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501797), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501797)),\n",
-                            " RemoteFeedbackRecord(id=UUID('a9dd46ba-c7e9-43f4-8083-1b75a968abc9'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'zahouli2023small', 'doc_id': '5210dc37-a785-375a-b6bb-47b45bc0b993', 'pmid': '36726160', 'doi': '10.1186/s12936-023-04455-z', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501800), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501800)),\n",
-                            " RemoteFeedbackRecord(id=UUID('a0e2cc05-8355-4f1f-b496-bcfc379a0110'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'zahouli2023small', 'doc_id': '5210dc37-a785-375a-b6bb-47b45bc0b993', 'pmid': '36726160', 'doi': '10.1186/s12936-023-04455-z', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501804), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501804)),\n",
-                            " RemoteFeedbackRecord(id=UUID('985e51fe-baf8-48e2-a121-1125ce697131'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'zahouli2023small', 'doc_id': '5210dc37-a785-375a-b6bb-47b45bc0b993', 'pmid': '36726160', 'doi': '10.1186/s12936-023-04455-z', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501807), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501807)),\n",
-                            " RemoteFeedbackRecord(id=UUID('ee5808b3-afef-4177-a2fe-6e8f8a36c954'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'zahouli2023small', 'doc_id': '5210dc37-a785-375a-b6bb-47b45bc0b993', 'pmid': '36726160', 'doi': '10.1186/s12936-023-04455-z', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501810), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501810)),\n",
-                            " RemoteFeedbackRecord(id=UUID('d3e4f4cc-89c7-49f9-908f-abe2b8d585e2'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'diouf2022evaluation', 'doc_id': 'eeb51aa0-4e1a-3f3b-9ffa-acdb2f073b7d', 'pmid': '35780153', 'doi': '10.1186/s12936-022-04230-6', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501814), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501814)),\n",
-                            " RemoteFeedbackRecord(id=UUID('bdd777b5-5eaf-4171-9b2e-3f3e32a1f686'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'diouf2022evaluation', 'doc_id': 'eeb51aa0-4e1a-3f3b-9ffa-acdb2f073b7d', 'pmid': '35780153', 'doi': '10.1186/s12936-022-04230-6', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501817), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501817)),\n",
-                            " RemoteFeedbackRecord(id=UUID('db871e36-a76a-4bc5-a7be-73c6901d33f0'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'diouf2022evaluation', 'doc_id': 'eeb51aa0-4e1a-3f3b-9ffa-acdb2f073b7d', 'pmid': '35780153', 'doi': '10.1186/s12936-022-04230-6', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501821), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501821)),\n",
-                            " RemoteFeedbackRecord(id=UUID('e7446fd7-f255-4dc6-b5fa-5bddc4e9227e'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'diouf2022evaluation', 'doc_id': 'eeb51aa0-4e1a-3f3b-9ffa-acdb2f073b7d', 'pmid': '35780153', 'doi': '10.1186/s12936-022-04230-6', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501824), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501824)),\n",
-                            " RemoteFeedbackRecord(id=UUID('711830d8-8c0f-4ef5-be68-97586669f58d'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ibrahim2020exploring', 'doc_id': '986c31ab-a1d8-3384-8982-6d711a821b29', 'pmid': '32331386', 'doi': '10.3390/genes11040454', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501828), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501828)),\n",
-                            " RemoteFeedbackRecord(id=UUID('4824d0a8-bfd3-41ab-9339-6db1755c2d9c'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ibrahim2020exploring', 'doc_id': '986c31ab-a1d8-3384-8982-6d711a821b29', 'pmid': '32331386', 'doi': '10.3390/genes11040454', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501831), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501831)),\n",
-                            " RemoteFeedbackRecord(id=UUID('0a16518f-ca1a-4842-bdca-e4ab0a5c5201'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ibrahim2020exploring', 'doc_id': '986c31ab-a1d8-3384-8982-6d711a821b29', 'pmid': '32331386', 'doi': '10.3390/genes11040454', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501835), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501835)),\n",
-                            " RemoteFeedbackRecord(id=UUID('1c0835b1-ed4c-4fba-90c2-12403f7c788a'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ibrahim2020exploring', 'doc_id': '986c31ab-a1d8-3384-8982-6d711a821b29', 'pmid': '32331386', 'doi': '10.3390/genes11040454', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501838), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 501838)),\n",
-                            " RemoteFeedbackRecord(id=UUID('986418bc-e5ed-47cd-b592-a11d5452038e'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'kibondo2022influence', 'doc_id': '420b8983-dd49-3fa8-b774-e19e6b68671a', 'pmid': '35410250', 'doi': '10.1186/s13071-022-05207-9', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864066), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864066)),\n",
-                            " RemoteFeedbackRecord(id=UUID('cde8d347-7113-42cf-9e68-9013ee3c884a'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'kibondo2022influence', 'doc_id': '420b8983-dd49-3fa8-b774-e19e6b68671a', 'pmid': '35410250', 'doi': '10.1186/s13071-022-05207-9', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864077), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864077)),\n",
-                            " RemoteFeedbackRecord(id=UUID('4c627a19-6c2c-42f1-84d0-da75cf31fda7'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'kibondo2022influence', 'doc_id': '420b8983-dd49-3fa8-b774-e19e6b68671a', 'pmid': '35410250', 'doi': '10.1186/s13071-022-05207-9', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864081), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864081)),\n",
-                            " RemoteFeedbackRecord(id=UUID('b2704587-c488-4c9b-910b-3f199ba03969'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'kibondo2022influence', 'doc_id': '420b8983-dd49-3fa8-b774-e19e6b68671a', 'pmid': '35410250', 'doi': '10.1186/s13071-022-05207-9', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864085), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864085)),\n",
-                            " RemoteFeedbackRecord(id=UUID('5d2063df-2b7e-4a35-bc77-0e8cf6ac152e'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'meiwald2022association', 'doc_id': 'bfb47409-3c77-3c03-b9ec-1e89186f3484', 'pmid': '33175129', 'doi': '10.1093/infdis/jiaa699', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864089), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864089)),\n",
-                            " RemoteFeedbackRecord(id=UUID('086ce38e-0565-4a53-8667-1cb8cd937779'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'meiwald2022association', 'doc_id': 'bfb47409-3c77-3c03-b9ec-1e89186f3484', 'pmid': '33175129', 'doi': '10.1093/infdis/jiaa699', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864092), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864092)),\n",
-                            " RemoteFeedbackRecord(id=UUID('5b478043-e828-4f9d-9a7b-53352d491df5'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'meiwald2022association', 'doc_id': 'bfb47409-3c77-3c03-b9ec-1e89186f3484', 'pmid': '33175129', 'doi': '10.1093/infdis/jiaa699', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864096), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864096)),\n",
-                            " RemoteFeedbackRecord(id=UUID('c53276fc-b746-473e-9125-091c8cb38685'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'meiwald2022association', 'doc_id': 'bfb47409-3c77-3c03-b9ec-1e89186f3484', 'pmid': '33175129', 'doi': '10.1093/infdis/jiaa699', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864100), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864100)),\n",
-                            " RemoteFeedbackRecord(id=UUID('99870ad8-e779-46b0-b135-94014a14416f'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'menze2022experimental', 'doc_id': 'ce46d818-978e-3f40-bc7f-b71a4355c2e7', 'pmid': '35745492', 'doi': '10.3390/pathogens11060638', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864103), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864103)),\n",
-                            " RemoteFeedbackRecord(id=UUID('56cc8d09-e590-4d19-a097-79324db974f6'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'menze2022experimental', 'doc_id': 'ce46d818-978e-3f40-bc7f-b71a4355c2e7', 'pmid': '35745492', 'doi': '10.3390/pathogens11060638', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864107), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864107)),\n",
-                            " RemoteFeedbackRecord(id=UUID('b7cbea5b-551e-4192-9958-cbe614132ad3'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'menze2022experimental', 'doc_id': 'ce46d818-978e-3f40-bc7f-b71a4355c2e7', 'pmid': '35745492', 'doi': '10.3390/pathogens11060638', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864110), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864110)),\n",
-                            " RemoteFeedbackRecord(id=UUID('239ce31e-8cdd-4535-9def-b8e5c0c57738'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'menze2022experimental', 'doc_id': 'ce46d818-978e-3f40-bc7f-b71a4355c2e7', 'pmid': '35745492', 'doi': '10.3390/pathogens11060638', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864114), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864114)),\n",
-                            " RemoteFeedbackRecord(id=UUID('02cdef32-e8e7-4a11-97e6-5a108d5eda13'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2022pyrethroid', 'doc_id': '075adb8e-9994-3cee-af44-523e580e2cea', 'pmid': '35478216', 'doi': '10.1038/s41598-022-10953-y', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864117), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864117)),\n",
-                            " RemoteFeedbackRecord(id=UUID('e6a7f887-ec67-487b-9f89-e64cedca12d4'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2022pyrethroid', 'doc_id': '075adb8e-9994-3cee-af44-523e580e2cea', 'pmid': '35478216', 'doi': '10.1038/s41598-022-10953-y', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864121), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864121)),\n",
-                            " RemoteFeedbackRecord(id=UUID('5cf2e42e-5494-45db-a1e7-b0431e1b33c1'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2022pyrethroid', 'doc_id': '075adb8e-9994-3cee-af44-523e580e2cea', 'pmid': '35478216', 'doi': '10.1038/s41598-022-10953-y', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864124), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864124)),\n",
-                            " RemoteFeedbackRecord(id=UUID('42e3d90e-cf19-4932-9393-f22753b7d7dc'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'syme2022pyrethroid', 'doc_id': '075adb8e-9994-3cee-af44-523e580e2cea', 'pmid': '35478216', 'doi': '10.1038/s41598-022-10953-y', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864128), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864128)),\n",
-                            " RemoteFeedbackRecord(id=UUID('e05cd5d7-d397-4b77-9f35-198bd56e54c7'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'toe2018do', 'doc_id': 'b3de4026-d18f-362f-875c-1c7a1fb6d3b4', 'pmid': '35478216', 'doi': '10.1111/mve.12316', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864131), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864131)),\n",
-                            " RemoteFeedbackRecord(id=UUID('d646bbd0-323e-4b20-a568-3be63217e946'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'toe2018do', 'doc_id': 'b3de4026-d18f-362f-875c-1c7a1fb6d3b4', 'pmid': '35478216', 'doi': '10.1111/mve.12316', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864135), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864135)),\n",
-                            " RemoteFeedbackRecord(id=UUID('0caf1b77-fdb2-48d6-b7dc-47c5a1204174'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'toe2018do', 'doc_id': 'b3de4026-d18f-362f-875c-1c7a1fb6d3b4', 'pmid': '35478216', 'doi': '10.1111/mve.12316', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864138), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864138)),\n",
-                            " RemoteFeedbackRecord(id=UUID('cc9d7253-6a35-47c0-b316-629149ba2fbc'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'toe2018do', 'doc_id': 'b3de4026-d18f-362f-875c-1c7a1fb6d3b4', 'pmid': '35478216', 'doi': '10.1111/mve.12316', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864142), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864142)),\n",
-                            " RemoteFeedbackRecord(id=UUID('2636f941-01cd-4909-8063-ac2e44408c59'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'yewhalaw2022experimental', 'doc_id': 'fbbd582e-2e1e-33d1-bee7-c21641f2027f', 'pmid': '35987650', 'doi': '10.1186/s12936-022-04263-x', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864145), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864145)),\n",
-                            " RemoteFeedbackRecord(id=UUID('13ec59d6-e6d2-4954-82b8-9270b694ab43'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'yewhalaw2022experimental', 'doc_id': 'fbbd582e-2e1e-33d1-bee7-c21641f2027f', 'pmid': '35987650', 'doi': '10.1186/s12936-022-04263-x', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864148), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864148)),\n",
-                            " RemoteFeedbackRecord(id=UUID('130d0928-c50e-4635-b8cc-b4f19e04fef4'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'yewhalaw2022experimental', 'doc_id': 'fbbd582e-2e1e-33d1-bee7-c21641f2027f', 'pmid': '35987650', 'doi': '10.1186/s12936-022-04263-x', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864152), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864152)),\n",
-                            " RemoteFeedbackRecord(id=UUID('83d29bb0-b450-4c8e-8779-4f74936c7151'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'yewhalaw2022experimental', 'doc_id': 'fbbd582e-2e1e-33d1-bee7-c21641f2027f', 'pmid': '35987650', 'doi': '10.1186/s12936-022-04263-x', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864156), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864156)),\n",
-                            " RemoteFeedbackRecord(id=UUID('0775684e-d548-4b7b-9217-1c4a19d33550'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ngufor2022comparative', 'doc_id': '5f8d4493-ba86-3757-9bce-0ae59d1831f4', 'pmid': '35016676', 'doi': '10.1186/s12936-022-04041-9', 'type': 'ITNCondition'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864159), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864159)),\n",
-                            " RemoteFeedbackRecord(id=UUID('6ea06848-c457-4472-b22c-1bf0658c8838'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ngufor2022comparative', 'doc_id': '5f8d4493-ba86-3757-9bce-0ae59d1831f4', 'pmid': '35016676', 'doi': '10.1186/s12936-022-04041-9', 'type': 'Observation'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864163), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864163)),\n",
-                            " RemoteFeedbackRecord(id=UUID('8980230f-e210-452f-bf87-98439adb90ac'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ngufor2022comparative', 'doc_id': '5f8d4493-ba86-3757-9bce-0ae59d1831f4', 'pmid': '35016676', 'doi': '10.1186/s12936-022-04041-9', 'type': 'ClinicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864167), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864167)),\n",
-                            " RemoteFeedbackRecord(id=UUID('b705f5e5-8009-42f8-8e82-a98ce8405eff'), client=, fields=['extraction', 'metadata', 'context'], metadata={'reference': 'ngufor2022comparative', 'doc_id': '5f8d4493-ba86-3757-9bce-0ae59d1831f4', 'pmid': '35016676', 'doi': '10.1186/s12936-022-04041-9', 'type': 'EntomologicalOutcome'}, vectors={}, responses={}, suggestions=[], external_id=None, inserted_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864170), updated_at=datetime.datetime(2024, 10, 30, 19, 41, 58, 864170))]"
-                        ]
-                    },
-                    "execution_count": 34,
-                    "metadata": {},
-                    "output_type": "execute_result"
-                }
-            ],
-            "source": [
-                "delete_records"
-            ]
-        },
-        {
-            "cell_type": "code",
-            "execution_count": null,
-            "id": "74d445d4-19e5-425d-90cb-a34f81483bfc",
-            "metadata": {},
-            "outputs": [],
-            "source": [
-                "extraction_dataset.records.delete(delete_records)"
-            ]
-        },
-        {
-            "cell_type": "markdown",
-            "id": "66856b02-ff96-4596-8525-b12be976da2e",
-            "metadata": {},
-            "source": [
-                "# Updating existing records"
-            ]
-        },
-        {
-            "cell_type": "markdown",
-            "id": "3fbbf92a-2d4f-44b2-b007-e60695e73268",
-            "metadata": {},
-            "source": [
-                "### Delete records by reference"
-            ]
-        },
-        {
-            "cell_type": "code",
-            "execution_count": null,
-            "id": "0783d2e8-9c4d-4f2e-b4f4-94430234d204",
-            "metadata": {},
-            "outputs": [],
-            "source": [
-                "# record_updates = []\n",
-                "# for record in preprocessing_dataset.filter_by(metadata_filters=ex.TermsMetadataFilter(name='reference', values=['whopes2008report'])).records:\n",
-                "#     record_updates.append(record)\n",
-                "# len(record_updates)"
-            ]
-        },
-        {
-            "cell_type": "code",
-            "execution_count": null,
-            "id": "adfe3ee6-7b95-4c98-8933-bb03293e43b8",
-            "metadata": {},
-            "outputs": [],
-            "source": [
-                "# preprocessing_dataset.records.delete(record_updates)"
-            ]
-        },
-        {
-            "cell_type": "markdown",
-            "id": "258bb5f0",
-            "metadata": {},
-            "source": [
-                "### Update record metadata for some references"
-            ]
-        },
-        {
-            "cell_type": "code",
-            "execution_count": null,
-            "id": "c2c048a3",
-            "metadata": {},
-            "outputs": [
-                {
-                    "data": {
-                        "text/html": [
-                            "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Mendeley Reference KeyMeasured_outcomeApprox_num_rowsTables_countNotes_on_approx_num_rowsCheck_out_byCheck_in_byNeeds_digitizationNotes_on_extractiontitle...issnpmiddoicollectionsfile_idmime_typefile_namesizefilehashfile_path
reference
terlouw2010impactTerlouw2010Incidence64Also a good calibration comparisonNoneNoneNoneNoneImpact of mass distribution of free long-lasti......14752875None10.1186/1475-2875-9-199[Human Health Outcomes]6fb4e3d6-9255-4851-569e-a1e5541788a8application/pdfterlouw2010impact.pdf86769287ee2c18418661d5fe7a1493ce25d9650d7fa45ddata/pdf/terlouw2010impact.pdf
tokponnon2014impactTokponnon2014Incidence and Prevalence46NoneNoneNoneNoneNoneImpact of long-lasting, insecticidal nets on a......14752875None10.1186/1475-2875-13-76[Entomological Outcomes, Human Health Outcomes]4f4bb455-b9b2-e3d3-43d2-127e3fd6edf8application/pdfTokponnon_et_al_2014_Mal_J.pdf109219158ee5a6fa350ff703f5cf58aeb4f4b5c2398cb85data/pdf/Tokponnon_et_al_2014_Mal_J.pdf
pinder2015efficacyPinder2015Incidence & Prevalence~102,4NoneNoneNoneNoneJosh: this study is comparing ITN to ITN+IRS. ...Efficacy of indoor residual spraying with dich......1474-547X (Electronic)2549884710.1016/S0140-6736(14)61007-2[Human Health Outcomes]75f3a17c-758e-e557-1418-91e3c2272c14application/pdfPinder_et_al_2015_Lancet.pdf5973946ef33d0382608d35470c5d4ac5e3ffc7e6e7f242data/pdf/Pinder_et_al_2015_Lancet.pdf
\n", - "

3 rows × 32 columns

\n", - "
" - ], - "text/plain": [ - " Mendeley Reference Key Measured_outcome \\\n", - "reference \n", - "terlouw2010impact Terlouw2010 Incidence \n", - "tokponnon2014impact Tokponnon2014 Incidence and Prevalence \n", - "pinder2015efficacy Pinder2015 Incidence & Prevalence \n", - "\n", - " Approx_num_rows Tables_count \\\n", - "reference \n", - "terlouw2010impact 6 4 \n", - "tokponnon2014impact 4 6 \n", - "pinder2015efficacy ~10 2,4 \n", - "\n", - " Notes_on_approx_num_rows Check_out_by \\\n", - "reference \n", - "terlouw2010impact Also a good calibration comparison None \n", - "tokponnon2014impact None None \n", - "pinder2015efficacy None None \n", - "\n", - " Check_in_by Needs_digitization \\\n", - "reference \n", - "terlouw2010impact None None \n", - "tokponnon2014impact None None \n", - "pinder2015efficacy None None \n", - "\n", - " Notes_on_extraction \\\n", - "reference \n", - "terlouw2010impact None \n", - "tokponnon2014impact None \n", - "pinder2015efficacy Josh: this study is comparing ITN to ITN+IRS. ... \n", - "\n", - " title ... \\\n", - "reference ... \n", - "terlouw2010impact Impact of mass distribution of free long-lasti... ... \n", - "tokponnon2014impact Impact of long-lasting, insecticidal nets on a... ... \n", - "pinder2015efficacy Efficacy of indoor residual spraying with dich... ... \n", - "\n", - " issn pmid \\\n", - "reference \n", - "terlouw2010impact 14752875 None \n", - "tokponnon2014impact 14752875 None \n", - "pinder2015efficacy 1474-547X (Electronic) 25498847 \n", - "\n", - " doi \\\n", - "reference \n", - "terlouw2010impact 10.1186/1475-2875-9-199 \n", - "tokponnon2014impact 10.1186/1475-2875-13-76 \n", - "pinder2015efficacy 10.1016/S0140-6736(14)61007-2 \n", - "\n", - " collections \\\n", - "reference \n", - "terlouw2010impact [Human Health Outcomes] \n", - "tokponnon2014impact [Entomological Outcomes, Human Health Outcomes] \n", - "pinder2015efficacy [Human Health Outcomes] \n", - "\n", - " file_id mime_type \\\n", - "reference \n", - "terlouw2010impact 6fb4e3d6-9255-4851-569e-a1e5541788a8 application/pdf \n", - "tokponnon2014impact 4f4bb455-b9b2-e3d3-43d2-127e3fd6edf8 application/pdf \n", - "pinder2015efficacy 75f3a17c-758e-e557-1418-91e3c2272c14 application/pdf \n", - "\n", - " file_name size \\\n", - "reference \n", - "terlouw2010impact terlouw2010impact.pdf 867692 \n", - "tokponnon2014impact Tokponnon_et_al_2014_Mal_J.pdf 1092191 \n", - "pinder2015efficacy Pinder_et_al_2015_Lancet.pdf 597394 \n", - "\n", - " filehash \\\n", - "reference \n", - "terlouw2010impact 87ee2c18418661d5fe7a1493ce25d9650d7fa45d \n", - "tokponnon2014impact 58ee5a6fa350ff703f5cf58aeb4f4b5c2398cb85 \n", - "pinder2015efficacy 6ef33d0382608d35470c5d4ac5e3ffc7e6e7f242 \n", - "\n", - " file_path \n", - "reference \n", - "terlouw2010impact data/pdf/terlouw2010impact.pdf \n", - "tokponnon2014impact data/pdf/Tokponnon_et_al_2014_Mal_J.pdf \n", - "pinder2015efficacy data/pdf/Pinder_et_al_2015_Lancet.pdf \n", - "\n", - "[3 rows x 32 columns]" - ] - }, - "execution_count": 13, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "papers.loc[references]" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "5c2f9768", - "metadata": {}, - "outputs": [], - "source": [ - "references = ['terlouw2010impact', 'tokponnon2014impact', 'pinder2015efficacy']\n", - "\n", - "record_updates = []\n", - "for record in tqdm(extraction_dataset.filter_by(\n", - " metadata_filters=ex.TermsMetadataFilter(name='reference', values=references)).records):\n", - " reference = record.metadata['reference']\n", - " schema_name = record.metadata['type']\n", - "\n", - " if record.metadata['pmid'] != papers.loc[reference].get('pmid'):\n", - " record.metadata['pmid'] = papers.loc[reference].get('pmid')\n", - " print(\"Check it's correct: \", record.metadata)\n", - " record_updates.append(record)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "447421bf", - "metadata": {}, - "outputs": [], - "source": [ - "extraction_dataset.records.update(record_updates)" - ] - }, - { - "cell_type": "markdown", - "id": "370e79a8-9ed3-498e-96a0-d40ef64c3149", - "metadata": {}, - "source": [ - "### Update Document pmid, doi, and doc_id references" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "797f547a-9615-4949-a3e7-f5f026dc8108", - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "record_updates = []\n", - "for record in papers_dataset.records:\n", - " if len(record_updates) == 1: \n", - " print(record.metadata)\n", - " reference = record.metadata['reference']\n", - "\n", - " doc_id = papers.loc[reference, 'id']\n", - " if 'doc_id' not in record.metadata or record.metadata['doc_id'] != doc_id:\n", - " record.metadata['doc_id'] = doc_id\n", - " \n", - " record_updates.append(record)\n", - "len(record_updates)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "bac96980-eea4-4f28-a87a-f0450b6bb4c7", - "metadata": {}, - "outputs": [], - "source": [ - "papers_dataset.records.update(record_updates)" - ] - }, - { - "cell_type": "markdown", - "id": "eadd7331-49b2-401c-8a11-1f8484ceb6cc", - "metadata": { - "scrolled": true - }, - "source": [ - "# Create the `2-Data-Extractions` dataset, if it isn't already created" - ] - }, - { - "cell_type": "markdown", - "id": "c4a8f662-9adc-4286-8ba9-6197d0dc1e83", - "metadata": {}, - "source": [ - "### Extraction dataset" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "45caae42-8efa-4ef3-a9f5-5600a470667b", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "data": { - "text/html": [ - "
[06/20/24 16:29:19] INFO     INFO:argilla.client.feedback.dataset.local.mixins:✓ Dataset succesfully  mixins.py:306\n",
-                            "                             pushed to Extralit                                                                     \n",
-                            "
\n" - ], - "text/plain": [ - "\u001b[2;36m[06/20/24 16:29:19]\u001b[0m\u001b[2;36m \u001b[0m\u001b[34mINFO \u001b[0m INFO:argilla.client.feedback.dataset.local.mixins:✓ Dataset succesfully \u001b]8;id=762461;file:///Users/jonnytr/Projects/argilla-data-extraction/argilla/src/argilla/client/feedback/dataset/local/mixins.py\u001b\\\u001b[2mmixins.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=533519;file:///Users/jonnytr/Projects/argilla-data-extraction/argilla/src/argilla/client/feedback/dataset/local/mixins.py#306\u001b\\\u001b[2m306\u001b[0m\u001b]8;;\u001b\\\n", - "\u001b[2;36m \u001b[0m pushed to Extralit \u001b[2m \u001b[0m\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
                    INFO     INFO:argilla.client.feedback.dataset.local.mixins:RemoteFeedbackDataset( mixins.py:307\n",
-                            "                                id=8c51f5e3-25bb-4141-b716-04ce92b208e2                                            \n",
-                            "                                name=2-Data-Extractions                                                            \n",
-                            "                                workspace=Workspace(id=45eab76f-4d5a-4fb9-a9d2-6e7323bdf08a,                       \n",
-                            "                             name=itn-recalibration-scratch, inserted_at=2024-06-20 23:21:44.734369,               \n",
-                            "                             updated_at=2024-06-20 23:21:44.734369)                                                \n",
-                            "                                url=http://10.24.49.60/dataset/8c51f5e3-25bb-4141-b716-04ce92b208e2/a              \n",
-                            "                             nnotation-mode                                                                        \n",
-                            "                                fields=[RemoteTextField(id=UUID('7e322bdd-4a02-476d-994b-f9e22b879e8f              \n",
-                            "                             '), client=None, name='metadata', title='Extraction steps:',                          \n",
-                            "                             required=False, type='text', use_markdown=True, use_table=False),                     \n",
-                            "                             RemoteTextField(id=UUID('62cc925a-c5c6-4446-8dd8-8c75dcfb4256'),                      \n",
-                            "                             client=None, name='extraction', title='Extracted data:', required=True,               \n",
-                            "                             type='text', use_markdown=False, use_table=True),                                     \n",
-                            "                             RemoteTextField(id=UUID('3ac56bd6-a5b3-4b53-9882-92db06c58faa'),                      \n",
-                            "                             client=None, name='context', title='Relevant attributions (predicted by               \n",
-                            "                             RAG):', required=False, type='text', use_markdown=True,                               \n",
-                            "                             use_table=False)]                                                                     \n",
-                            "                                questions=[RemoteMultiLabelQuestion(id=UUID('ca859c1e-113f-4afc-a116-              \n",
-                            "                             ebb867138f39'), client=None, name='context-relevant', title='Which of                 \n",
-                            "                             the document section(s) attributed to this data extraction table?',                   \n",
-                            "                             description='Please identify which section in the source PDF the data                 \n",
-                            "                             extract came from, and select the matching section header(s) in this                  \n",
-                            "                             multi-selection list.', required=True, type='multi_label_selection',                  \n",
-                            "                             labels=['Not listed'], visible_labels=None,                                           \n",
-                            "                             labels_order=<LabelsOrder.natural: 'natural'>),                                       \n",
-                            "                             RemoteMultiLabelQuestion(id=UUID('c709ffd5-bcba-4366-a46d-40bf31c81da1')              \n",
-                            "                             , client=None, name='extraction-source', title='Where did the extracted               \n",
-                            "                             data primarily came from?', description=None, required=True,                          \n",
-                            "                             type='multi_label_selection', labels=['Text', 'Table', 'Figure'],                     \n",
-                            "                             visible_labels=None, labels_order=<LabelsOrder.natural: 'natural'>),                  \n",
-                            "                             RemoteTextQuestion(id=UUID('3e53c996-6d44-4e7c-ae6e-4cb96c029ad2'),                   \n",
-                            "                             client=None, name='extraction-correction', title='Provide a correction                \n",
-                            "                             to the extracted data:', description=None, required=False, type='text',               \n",
-                            "                             use_markdown=False, use_table=True),                                                  \n",
-                            "                             RemoteTextQuestion(id=UUID('b1f3e200-a437-42b5-9db1-45857dac1473'),                   \n",
-                            "                             client=None, name='notes', title='Mention any notes here to record any                \n",
-                            "                             special case or to justify decisions made in the extraction.',                        \n",
-                            "                             description=None, required=False, type='text', use_markdown=True,                     \n",
-                            "                             use_table=False)]                                                                     \n",
-                            "                                documents=None                                                                     \n",
-                            "                                guidelines=None                                                                    \n",
-                            "                                metadata_properties=[RemoteTermsMetadataProperty(id=UUID('b442012c-57              \n",
-                            "                             63-4615-b759-094487f245e3'), client=<httpx.Client object at                           \n",
-                            "                             0x31d2272b0>, name='reference', title='Reference',                                    \n",
-                            "                             visible_for_annotators=True, type='terms', values=None),                              \n",
-                            "                             RemoteTermsMetadataProperty(id=UUID('ddcf9932-2602-46cf-bc59-0d9924d7adf              \n",
-                            "                             0'), client=<httpx.Client object at 0x31d2272b0>, name='type',                        \n",
-                            "                             title='Question Type', visible_for_annotators=True, type='terms',                     \n",
-                            "                             values=None),                                                                         \n",
-                            "                             RemoteTermsMetadataProperty(id=UUID('46931ecd-1853-44a0-8b34-a15f332531c              \n",
-                            "                             3'), client=<httpx.Client object at 0x31d2272b0>, name='pmid',                        \n",
-                            "                             title='Document Pubmed ID', visible_for_annotators=True, type='terms',                \n",
-                            "                             values=None),                                                                         \n",
-                            "                             RemoteTermsMetadataProperty(id=UUID('a2e6215a-ea19-42bc-a0f4-60ec86b4a88              \n",
-                            "                             b'), client=<httpx.Client object at 0x31d2272b0>, name='doc_id',                      \n",
-                            "                             title='Document ID', visible_for_annotators=False, type='terms',                      \n",
-                            "                             values=None),                                                                         \n",
-                            "                             RemoteTermsMetadataProperty(id=UUID('5499c947-0e23-4c70-8884-9ae73e8811e              \n",
-                            "                             8'), client=<httpx.Client object at 0x31d2272b0>, name='annotators',                  \n",
-                            "                             title='Annotators', visible_for_annotators=True, type='terms',                        \n",
-                            "                             values=None)]                                                                         \n",
-                            "                                vectors_settings=[]                                                                \n",
-                            "                             )                                                                                     \n",
-                            "
\n" - ], - "text/plain": [ - "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[34mINFO \u001b[0m INFO:argilla.client.feedback.dataset.local.mixins:\u001b[1;35mRemoteFeedbackDataset\u001b[0m\u001b[1m(\u001b[0m \u001b]8;id=698971;file:///Users/jonnytr/Projects/argilla-data-extraction/argilla/src/argilla/client/feedback/dataset/local/mixins.py\u001b\\\u001b[2mmixins.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=347992;file:///Users/jonnytr/Projects/argilla-data-extraction/argilla/src/argilla/client/feedback/dataset/local/mixins.py#307\u001b\\\u001b[2m307\u001b[0m\u001b]8;;\u001b\\\n", - "\u001b[2;36m \u001b[0m \u001b[33mid\u001b[0m=\u001b[93m8c51f5e3\u001b[0m\u001b[93m-25bb-4141-b716-04ce92b208e2\u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mname\u001b[0m=\u001b[1;36m2\u001b[0m-Data-Extractions \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mworkspace\u001b[0m=\u001b[1;35mWorkspace\u001b[0m\u001b[1m(\u001b[0m\u001b[33mid\u001b[0m=\u001b[93m45eab76f\u001b[0m\u001b[93m-4d5a-4fb9-a9d2-6e7323bdf08a\u001b[0m, \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mname\u001b[0m=\u001b[35mitn\u001b[0m-recalibration-scratch, \u001b[33minserted_at\u001b[0m=\u001b[1;36m2024\u001b[0m-\u001b[1;36m06\u001b[0m-\u001b[1;36m20\u001b[0m \u001b[1;92m23:21:44\u001b[0m.\u001b[1;36m734369\u001b[0m, \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mupdated_at\u001b[0m=\u001b[1;36m2024\u001b[0m-\u001b[1;36m06\u001b[0m-\u001b[1;36m20\u001b[0m \u001b[1;92m23:21:44\u001b[0m.\u001b[1;36m734369\u001b[0m\u001b[1m)\u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33murl\u001b[0m=\u001b[4;94mhttp\u001b[0m\u001b[4;94m://10.24.49.60/dataset/8c51f5e3-25bb-4141-b716-04ce92b208e2/a\u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[4;94mnnotation-mode\u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mfields\u001b[0m=\u001b[1m[\u001b[0m\u001b[1;35mRemoteTextField\u001b[0m\u001b[1m(\u001b[0m\u001b[33mid\u001b[0m=\u001b[1;35mUUID\u001b[0m\u001b[1m(\u001b[0m\u001b[32m'7e322bdd-4a02-476d-994b-f9e22b879e8f\u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[32m'\u001b[0m\u001b[1m)\u001b[0m, \u001b[33mclient\u001b[0m=\u001b[3;35mNone\u001b[0m, \u001b[33mname\u001b[0m=\u001b[32m'metadata'\u001b[0m, \u001b[33mtitle\u001b[0m=\u001b[32m'Extraction steps:'\u001b[0m, \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mrequired\u001b[0m=\u001b[3;91mFalse\u001b[0m, \u001b[33mtype\u001b[0m=\u001b[32m'text'\u001b[0m, \u001b[33muse_markdown\u001b[0m=\u001b[3;92mTrue\u001b[0m, \u001b[33muse_table\u001b[0m=\u001b[3;91mFalse\u001b[0m\u001b[1m)\u001b[0m, \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[1;35mRemoteTextField\u001b[0m\u001b[1m(\u001b[0m\u001b[33mid\u001b[0m=\u001b[1;35mUUID\u001b[0m\u001b[1m(\u001b[0m\u001b[32m'62cc925a-c5c6-4446-8dd8-8c75dcfb4256'\u001b[0m\u001b[1m)\u001b[0m, \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mclient\u001b[0m=\u001b[3;35mNone\u001b[0m, \u001b[33mname\u001b[0m=\u001b[32m'extraction'\u001b[0m, \u001b[33mtitle\u001b[0m=\u001b[32m'Extracted data:'\u001b[0m, \u001b[33mrequired\u001b[0m=\u001b[3;92mTrue\u001b[0m, \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mtype\u001b[0m=\u001b[32m'text'\u001b[0m, \u001b[33muse_markdown\u001b[0m=\u001b[3;91mFalse\u001b[0m, \u001b[33muse_table\u001b[0m=\u001b[3;92mTrue\u001b[0m\u001b[1m)\u001b[0m, \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[1;35mRemoteTextField\u001b[0m\u001b[1m(\u001b[0m\u001b[33mid\u001b[0m=\u001b[1;35mUUID\u001b[0m\u001b[1m(\u001b[0m\u001b[32m'3ac56bd6-a5b3-4b53-9882-92db06c58faa'\u001b[0m\u001b[1m)\u001b[0m, \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mclient\u001b[0m=\u001b[3;35mNone\u001b[0m, \u001b[33mname\u001b[0m=\u001b[32m'context'\u001b[0m, \u001b[33mtitle\u001b[0m=\u001b[32m'Relevant attributions \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpredicted by \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[32mRAG\u001b[0m\u001b[32m)\u001b[0m\u001b[32m:'\u001b[0m, \u001b[33mrequired\u001b[0m=\u001b[3;91mFalse\u001b[0m, \u001b[33mtype\u001b[0m=\u001b[32m'text'\u001b[0m, \u001b[33muse_markdown\u001b[0m=\u001b[3;92mTrue\u001b[0m, \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33muse_table\u001b[0m=\u001b[3;91mFalse\u001b[0m\u001b[1m)\u001b[0m\u001b[1m]\u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mquestions\u001b[0m=\u001b[1m[\u001b[0m\u001b[1;35mRemoteMultiLabelQuestion\u001b[0m\u001b[1m(\u001b[0m\u001b[33mid\u001b[0m=\u001b[1;35mUUID\u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ca859c1e-113f-4afc-a116-\u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[32mebb867138f39'\u001b[0m\u001b[1m)\u001b[0m, \u001b[33mclient\u001b[0m=\u001b[3;35mNone\u001b[0m, \u001b[33mname\u001b[0m=\u001b[32m'context-relevant'\u001b[0m, \u001b[33mtitle\u001b[0m=\u001b[32m'Which of \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[32mthe document section\u001b[0m\u001b[32m(\u001b[0m\u001b[32ms\u001b[0m\u001b[32m)\u001b[0m\u001b[32m attributed to this data extraction table?'\u001b[0m, \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mdescription\u001b[0m=\u001b[32m'Please identify which section in the source PDF the data \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[32mextract came from, and select the matching section header\u001b[0m\u001b[32m(\u001b[0m\u001b[32ms\u001b[0m\u001b[32m)\u001b[0m\u001b[32m in this \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[32mmulti-selection list.'\u001b[0m, \u001b[33mrequired\u001b[0m=\u001b[3;92mTrue\u001b[0m, \u001b[33mtype\u001b[0m=\u001b[32m'multi_label_selection'\u001b[0m, \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mlabels\u001b[0m=\u001b[1m[\u001b[0m\u001b[32m'Not listed'\u001b[0m\u001b[1m]\u001b[0m, \u001b[33mvisible_labels\u001b[0m=\u001b[3;35mNone\u001b[0m, \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mlabels_order\u001b[0m=\u001b[1m<\u001b[0m\u001b[1;95mLabelsOrder.natural:\u001b[0m\u001b[39m \u001b[0m\u001b[32m'natural'\u001b[0m\u001b[39m>\u001b[0m\u001b[1;39m)\u001b[0m\u001b[39m, \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[1;35mRemoteMultiLabelQuestion\u001b[0m\u001b[1;39m(\u001b[0m\u001b[33mid\u001b[0m\u001b[39m=\u001b[0m\u001b[1;35mUUID\u001b[0m\u001b[1;39m(\u001b[0m\u001b[32m'c709ffd5-bcba-4366-a46d-40bf31c81da1'\u001b[0m\u001b[1;39m)\u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[39m, \u001b[0m\u001b[33mclient\u001b[0m\u001b[39m=\u001b[0m\u001b[3;35mNone\u001b[0m\u001b[39m, \u001b[0m\u001b[33mname\u001b[0m\u001b[39m=\u001b[0m\u001b[32m'extraction-source'\u001b[0m\u001b[39m, \u001b[0m\u001b[33mtitle\u001b[0m\u001b[39m=\u001b[0m\u001b[32m'Where did the extracted \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[32mdata primarily came from?'\u001b[0m\u001b[39m, \u001b[0m\u001b[33mdescription\u001b[0m\u001b[39m=\u001b[0m\u001b[3;35mNone\u001b[0m\u001b[39m, \u001b[0m\u001b[33mrequired\u001b[0m\u001b[39m=\u001b[0m\u001b[3;92mTrue\u001b[0m\u001b[39m, \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mtype\u001b[0m\u001b[39m=\u001b[0m\u001b[32m'multi_label_selection'\u001b[0m\u001b[39m, \u001b[0m\u001b[33mlabels\u001b[0m\u001b[39m=\u001b[0m\u001b[1;39m[\u001b[0m\u001b[32m'Text'\u001b[0m\u001b[39m, \u001b[0m\u001b[32m'Table'\u001b[0m\u001b[39m, \u001b[0m\u001b[32m'Figure'\u001b[0m\u001b[1;39m]\u001b[0m\u001b[39m, \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mvisible_labels\u001b[0m\u001b[39m=\u001b[0m\u001b[3;35mNone\u001b[0m\u001b[39m, \u001b[0m\u001b[33mlabels_order\u001b[0m\u001b[39m=\u001b[0m\u001b[1;39m)\u001b[0m\u001b[39m, \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[1;35mRemoteTextQuestion\u001b[0m\u001b[1;39m(\u001b[0m\u001b[33mid\u001b[0m\u001b[39m=\u001b[0m\u001b[1;35mUUID\u001b[0m\u001b[1;39m(\u001b[0m\u001b[32m'3e53c996-6d44-4e7c-ae6e-4cb96c029ad2'\u001b[0m\u001b[1;39m)\u001b[0m\u001b[39m, \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mclient\u001b[0m\u001b[39m=\u001b[0m\u001b[3;35mNone\u001b[0m\u001b[39m, \u001b[0m\u001b[33mname\u001b[0m\u001b[39m=\u001b[0m\u001b[32m'extraction-correction'\u001b[0m\u001b[39m, \u001b[0m\u001b[33mtitle\u001b[0m\u001b[39m=\u001b[0m\u001b[32m'Provide a correction \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[32mto the extracted data:'\u001b[0m\u001b[39m, \u001b[0m\u001b[33mdescription\u001b[0m\u001b[39m=\u001b[0m\u001b[3;35mNone\u001b[0m\u001b[39m, \u001b[0m\u001b[33mrequired\u001b[0m\u001b[39m=\u001b[0m\u001b[3;91mFalse\u001b[0m\u001b[39m, \u001b[0m\u001b[33mtype\u001b[0m\u001b[39m=\u001b[0m\u001b[32m'text'\u001b[0m\u001b[39m, \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33muse_markdown\u001b[0m\u001b[39m=\u001b[0m\u001b[3;91mFalse\u001b[0m\u001b[39m, \u001b[0m\u001b[33muse_table\u001b[0m\u001b[39m=\u001b[0m\u001b[3;92mTrue\u001b[0m\u001b[1;39m)\u001b[0m\u001b[39m, \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[1;35mRemoteTextQuestion\u001b[0m\u001b[1;39m(\u001b[0m\u001b[33mid\u001b[0m\u001b[39m=\u001b[0m\u001b[1;35mUUID\u001b[0m\u001b[1;39m(\u001b[0m\u001b[32m'b1f3e200-a437-42b5-9db1-45857dac1473'\u001b[0m\u001b[1;39m)\u001b[0m\u001b[39m, \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mclient\u001b[0m\u001b[39m=\u001b[0m\u001b[3;35mNone\u001b[0m\u001b[39m, \u001b[0m\u001b[33mname\u001b[0m\u001b[39m=\u001b[0m\u001b[32m'notes'\u001b[0m\u001b[39m, \u001b[0m\u001b[33mtitle\u001b[0m\u001b[39m=\u001b[0m\u001b[32m'Mention any notes here to record any \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[32mspecial case or to justify decisions made in the extraction.'\u001b[0m\u001b[39m, \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mdescription\u001b[0m\u001b[39m=\u001b[0m\u001b[3;35mNone\u001b[0m\u001b[39m, \u001b[0m\u001b[33mrequired\u001b[0m\u001b[39m=\u001b[0m\u001b[3;91mFalse\u001b[0m\u001b[39m, \u001b[0m\u001b[33mtype\u001b[0m\u001b[39m=\u001b[0m\u001b[32m'text'\u001b[0m\u001b[39m, \u001b[0m\u001b[33muse_markdown\u001b[0m\u001b[39m=\u001b[0m\u001b[3;92mTrue\u001b[0m\u001b[39m, \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33muse_table\u001b[0m\u001b[39m=\u001b[0m\u001b[3;91mFalse\u001b[0m\u001b[1;39m)\u001b[0m\u001b[1;39m]\u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[39m \u001b[0m\u001b[33mdocuments\u001b[0m\u001b[39m=\u001b[0m\u001b[3;35mNone\u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[39m \u001b[0m\u001b[33mguidelines\u001b[0m\u001b[39m=\u001b[0m\u001b[3;35mNone\u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[39m \u001b[0m\u001b[33mmetadata_properties\u001b[0m\u001b[39m=\u001b[0m\u001b[1;39m[\u001b[0m\u001b[1;35mRemoteTermsMetadataProperty\u001b[0m\u001b[1;39m(\u001b[0m\u001b[33mid\u001b[0m\u001b[39m=\u001b[0m\u001b[1;35mUUID\u001b[0m\u001b[1;39m(\u001b[0m\u001b[32m'b442012c-57\u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[32m63-4615-b759-094487f245e3'\u001b[0m\u001b[1;39m)\u001b[0m\u001b[39m, \u001b[0m\u001b[33mclient\u001b[0m\u001b[39m=, \u001b[0m\u001b[33mname\u001b[0m\u001b[39m=\u001b[0m\u001b[32m'reference'\u001b[0m\u001b[39m, \u001b[0m\u001b[33mtitle\u001b[0m\u001b[39m=\u001b[0m\u001b[32m'Reference'\u001b[0m\u001b[39m, \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mvisible_for_annotators\u001b[0m\u001b[39m=\u001b[0m\u001b[3;92mTrue\u001b[0m\u001b[39m, \u001b[0m\u001b[33mtype\u001b[0m\u001b[39m=\u001b[0m\u001b[32m'terms'\u001b[0m\u001b[39m, \u001b[0m\u001b[33mvalues\u001b[0m\u001b[39m=\u001b[0m\u001b[3;35mNone\u001b[0m\u001b[1;39m)\u001b[0m\u001b[39m, \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[1;35mRemoteTermsMetadataProperty\u001b[0m\u001b[1;39m(\u001b[0m\u001b[33mid\u001b[0m\u001b[39m=\u001b[0m\u001b[1;35mUUID\u001b[0m\u001b[1;39m(\u001b[0m\u001b[32m'ddcf9932-2602-46cf-bc59-0d9924d7adf\u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[32m0'\u001b[0m\u001b[1;39m)\u001b[0m\u001b[39m, \u001b[0m\u001b[33mclient\u001b[0m\u001b[39m=, \u001b[0m\u001b[33mname\u001b[0m\u001b[39m=\u001b[0m\u001b[32m'type'\u001b[0m\u001b[39m, \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mtitle\u001b[0m\u001b[39m=\u001b[0m\u001b[32m'Question Type'\u001b[0m\u001b[39m, \u001b[0m\u001b[33mvisible_for_annotators\u001b[0m\u001b[39m=\u001b[0m\u001b[3;92mTrue\u001b[0m\u001b[39m, \u001b[0m\u001b[33mtype\u001b[0m\u001b[39m=\u001b[0m\u001b[32m'terms'\u001b[0m\u001b[39m, \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mvalues\u001b[0m\u001b[39m=\u001b[0m\u001b[3;35mNone\u001b[0m\u001b[1;39m)\u001b[0m\u001b[39m, \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[1;35mRemoteTermsMetadataProperty\u001b[0m\u001b[1;39m(\u001b[0m\u001b[33mid\u001b[0m\u001b[39m=\u001b[0m\u001b[1;35mUUID\u001b[0m\u001b[1;39m(\u001b[0m\u001b[32m'46931ecd-1853-44a0-8b34-a15f332531c\u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[32m3'\u001b[0m\u001b[1;39m)\u001b[0m\u001b[39m, \u001b[0m\u001b[33mclient\u001b[0m\u001b[39m=, \u001b[0m\u001b[33mname\u001b[0m\u001b[39m=\u001b[0m\u001b[32m'pmid'\u001b[0m\u001b[39m, \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mtitle\u001b[0m\u001b[39m=\u001b[0m\u001b[32m'Document Pubmed ID'\u001b[0m\u001b[39m, \u001b[0m\u001b[33mvisible_for_annotators\u001b[0m\u001b[39m=\u001b[0m\u001b[3;92mTrue\u001b[0m\u001b[39m, \u001b[0m\u001b[33mtype\u001b[0m\u001b[39m=\u001b[0m\u001b[32m'terms'\u001b[0m\u001b[39m, \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mvalues\u001b[0m\u001b[39m=\u001b[0m\u001b[3;35mNone\u001b[0m\u001b[1;39m)\u001b[0m\u001b[39m, \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[1;35mRemoteTermsMetadataProperty\u001b[0m\u001b[1;39m(\u001b[0m\u001b[33mid\u001b[0m\u001b[39m=\u001b[0m\u001b[1;35mUUID\u001b[0m\u001b[1;39m(\u001b[0m\u001b[32m'a2e6215a-ea19-42bc-a0f4-60ec86b4a88\u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[32mb'\u001b[0m\u001b[1;39m)\u001b[0m\u001b[39m, \u001b[0m\u001b[33mclient\u001b[0m\u001b[39m=, \u001b[0m\u001b[33mname\u001b[0m\u001b[39m=\u001b[0m\u001b[32m'doc_id'\u001b[0m\u001b[39m, \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mtitle\u001b[0m\u001b[39m=\u001b[0m\u001b[32m'Document ID'\u001b[0m\u001b[39m, \u001b[0m\u001b[33mvisible_for_annotators\u001b[0m\u001b[39m=\u001b[0m\u001b[3;91mFalse\u001b[0m\u001b[39m, \u001b[0m\u001b[33mtype\u001b[0m\u001b[39m=\u001b[0m\u001b[32m'terms'\u001b[0m\u001b[39m, \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mvalues\u001b[0m\u001b[39m=\u001b[0m\u001b[3;35mNone\u001b[0m\u001b[1;39m)\u001b[0m\u001b[39m, \u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[1;35mRemoteTermsMetadataProperty\u001b[0m\u001b[1;39m(\u001b[0m\u001b[33mid\u001b[0m\u001b[39m=\u001b[0m\u001b[1;35mUUID\u001b[0m\u001b[1;39m(\u001b[0m\u001b[32m'5499c947-0e23-4c70-8884-9ae73e8811e\u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[32m8'\u001b[0m\u001b[1;39m)\u001b[0m\u001b[39m, \u001b[0m\u001b[33mclient\u001b[0m\u001b[39m=\u001b[0m, \u001b[33mname\u001b[0m=\u001b[32m'annotators'\u001b[0m, \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mtitle\u001b[0m=\u001b[32m'Annotators'\u001b[0m, \u001b[33mvisible_for_annotators\u001b[0m=\u001b[3;92mTrue\u001b[0m, \u001b[33mtype\u001b[0m=\u001b[32m'terms'\u001b[0m, \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mvalues\u001b[0m=\u001b[3;35mNone\u001b[0m\u001b[1m)\u001b[0m\u001b[1m]\u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[33mvectors_settings\u001b[0m=\u001b[1m[\u001b[0m\u001b[1m]\u001b[0m \u001b[2m \u001b[0m\n", - "\u001b[2;36m \u001b[0m \u001b[1m)\u001b[0m \u001b[2m \u001b[0m\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# ex.Workspace.create('llm_extraction')\n", - "\n", - "llm_extraction_dataset = ex.FeedbackDataset(\n", - " fields=[\n", - " ex.TextField(name=\"metadata\", title=\"Extraction steps:\", required=False, use_markdown=True),\n", - " ex.TextField(name=\"extraction\", title=\"Extracted data:\", required=True, use_table=True),\n", - " ex.TextField(name=\"context\", title=\"Relevant attributions (predicted by RAG):\", required=False, use_markdown=True),\n", - " ],\n", - " questions =[\n", - " ex.MultiLabelQuestion(\n", - " name=\"context-relevant\",\n", - " title=\"Which of the document section(s) attributed to this data extraction table?\",\n", - " description=\"Please identify which section in the source PDF the data extract came from, and select the matching section header(s) in this multi-selection list.\",\n", - " type=\"dynamic_multi_label_selection\",\n", - " labels=['Not listed'],\n", - " required=True,\n", - " ),\n", - " ex.MultiLabelQuestion(\n", - " name=\"extraction-source\",\n", - " title=\"Where did the extracted data primarily came from?\",\n", - " labels=[\"Text\", \"Table\", \"Figure\"],\n", - " required=True,\n", - " ),\n", - " ex.TextQuestion(\n", - " name=\"extraction-correction\",\n", - " title=\"Provide a correction to the extracted data:\",\n", - " required=False,\n", - " use_table=True,\n", - " ),\n", - " ex.TextQuestion(\n", - " name=\"notes\",\n", - " title=\"Mention any notes here to record any special case or to justify decisions made in the extraction.\",\n", - " required=False,\n", - " use_markdown=True,\n", - " ),\n", - " ],\n", - " metadata_properties=[\n", - " ex.TermsMetadataProperty(\n", - " name=\"reference\",\n", - " title=\"Reference\",\n", - " visible_for_annotators=True),\n", - " ex.TermsMetadataProperty(\n", - " name=\"type\",\n", - " title=\"Question Type\",\n", - " visible_for_annotators=True),\n", - " ex.TermsMetadataProperty(\n", - " name=\"pmid\",\n", - " title=\"Document Pubmed ID\",\n", - " visible_for_annotators=True),\n", - " ex.TermsMetadataProperty(\n", - " name=\"doc_id\",\n", - " title=\"Document ID\",\n", - " visible_for_annotators=False),\n", - " ex.TermsMetadataProperty(\n", - " name=\"annotators\",\n", - " title=\"Annotators\",\n", - " visible_for_annotators=True),\n", - " ],\n", - ")\n", - "\n", - "llm_extraction_dataset = llm_extraction_dataset.push_to_argilla(\n", - " name=\"2-Data-Extractions\", \n", - " workspace=\"itn-recalibration-scratch\")" - ] - }, - { - "cell_type": "markdown", - "id": "041844f4-8e44-4319-8f34-5aad09437bb2", - "metadata": {}, - "source": [ - "### Review dataset" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "5cccb19c-3af5-401f-852a-0e25b8d33514", - "metadata": {}, - "outputs": [], - "source": [ - "review_dataset = ex.FeedbackDataset(\n", - " fields=[\n", - " ex.TextField(name=\"metadata\", title=\"Metadata:\", required=False, use_markdown=True),\n", - " ex.TextField(name=\"extractions\", title=\"Extractions:\", required=True, use_markdown=True),\n", - " ex.TextField(name=\"metrics\", title=\"Evaluation metrics:\", required=False, use_markdown=True),\n", - " ex.TextField(name=\"alignment\", title=\"GriTS table alignment between gold-standard and LLM+Manual extractions, showing the longest common sequence (LCS) between matched data cells that were used to calculate the Precision and Recall\", \n", - " required=False, use_markdown=True),\n", - " ],\n", - " questions =[\n", - " ex.LabelQuestion(\n", - " name=\"context-relevant\",\n", - " title=\"Did the evaluation metrics correspond qualitatively with the concordance between the gold-standard and putative extractions?\",\n", - " labels=['Yes', 'No'],\n", - " required=True,\n", - " ),\n", - " ex.TextQuestion(\n", - " name=\"notes\",\n", - " title=\"Mention any notes:\",\n", - " required=False,\n", - " use_markdown=True,\n", - " ),\n", - " ],\n", - " metadata_properties=[\n", - " ex.TermsMetadataProperty(\n", - " name=\"reference\",\n", - " title=\"Reference\",\n", - " visible_for_annotators=True),\n", - " ex.TermsMetadataProperty(\n", - " name=\"type\",\n", - " title=\"Question Type\",\n", - " visible_for_annotators=True),\n", - " ex.TermsMetadataProperty(\n", - " name=\"pmid\",\n", - " title=\"Document Pubmed ID\",\n", - " visible_for_annotators=True),\n", - " ex.TermsMetadataProperty(\n", - " name=\"doc_id\",\n", - " title=\"Document ID\",\n", - " visible_for_annotators=False),\n", - " ex.TermsMetadataProperty(\n", - " name=\"annotators\",\n", - " title=\"Annotators\",\n", - " visible_for_annotators=True),\n", - " ],\n", - ")\n", - "\n", - "review_dataset = review_dataset.push_to_argilla(\n", - " name=\"Review-Evaluations\", \n", - " workspace=\"auto-extraction\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "f4b95e87-74c2-493c-8fb7-59b86e334571", - "metadata": {}, - "outputs": [], - "source": [ - "test_dataset = ex.FeedbackDataset(\n", - " fields=[\n", - " ex.TextField(name=\"alignment\",\n", - " required=True, use_markdown=True),\n", - " ],\n", - " questions =[\n", - " ex.LabelQuestion(\n", - " name=\"context-relevant\",\n", - " title=\"Did the evaluation metrics correspond qualitatively with the concordance between the gold-standard and putative extractions?\",\n", - " labels=['Yes', 'No'],\n", - " type='dynamic_label_selection', visible_labels=3,\n", - " required=True,\n", - " ),\n", - " ex.MultiLabelQuestion(\n", - " name=\"segment\",\n", - " title=\"Test\",\n", - " type='dynamic_multi_label_selection', visible_labels=3,\n", - " labels=[],\n", - " required=True,\n", - " ),\n", - " ex.TextQuestion(\n", - " name=\"notes\",\n", - " title=\"Mention any notes:\",\n", - " required=False,\n", - " use_markdown=True,\n", - " ),\n", - " ],\n", - ")\n", - "\n", - "test_dataset = test_dataset.push_to_argilla(\n", - " name=\"Test\", \n", - " workspace=\"auto-extraction\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "86da8a0d-b2b6-4355-b8cd-dac7f33a79db", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.9.19" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} \ No newline at end of file diff --git a/examples/document_extraction/PDF_preprocessing.ipynb b/examples/document_extraction/PDF_preprocessing.ipynb deleted file mode 100644 index 7420b41c3..000000000 --- a/examples/document_extraction/PDF_preprocessing.ipynb +++ /dev/null @@ -1,2908 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "id": "f089250a-b770-4cd2-a7ac-9dcc4a42775b", - "metadata": { - "editable": true, - "scrolled": true, - "slideshow": { - "slide_type": "" - }, - "tags": [] - }, - "outputs": [], - "source": [ - "%load_ext autoreload\n", - "%autoreload 2\n", - "# %load_ext heat" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "id": "e21edbd0-c479-48db-b53d-becdf0cd060b", - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "# %%heat\n", - "from collections import defaultdict, Counter\n", - "import requests, json, rich, re, os, sys, unicodedata, io, hashlib, glob, collections\n", - "from IPython.display import IFrame, HTML, Image, JSON\n", - "from functools import partial\n", - "from tqdm.auto import tqdm\n", - "from pathlib import Path\n", - "from dotenv import load_dotenv\n", - "load_dotenv()\n", - "# sys.path.insert(0, 'src')\n", - "\n", - "import plotly.express as px\n", - "import pandas as pd\n", - "import numpy as np\n", - "\n", - "import extralit as ex\n", - "from extralit.client.feedback.schemas.enums import ResponseStatusFilter\n", - "from extralit.client.feedback.integrations.textdescriptives import TextDescriptivesExtractor\n", - "from extralit.client.feedback.utils import create_token_highlights, audio_to_html, image_to_html, video_to_html\n", - "from extralit.client.feedback.utils import assign_records, assign_workspaces\n", - "\n", - "from pdf2image import convert_from_path\n", - "\n", - "import deepdoctection as dd\n", - "from unstructured.staging.argilla import stage_for_argilla\n", - "from llmsherpa.readers import LayoutPDFReader\n", - "\n", - "from extralit.extraction.models.paper import PaperExtraction, SchemaStructure\n", - "from extralit.preprocessing.methods import unstructured as unstructured \n", - "from extralit.preprocessing.methods import llmsherpa as llmsherpa\n", - "from extralit.preprocessing.methods import nougat as nougat\n", - "from extralit.preprocessing.segment import Segments, FigureSegment\n", - "from extralit.preprocessing.merge_segments import merge_extractions\n", - "from extralit.preprocessing.document import *\n", - "from extralit.convert.json_table import json_to_df, df_to_json\n", - "from extralit.convert.html_table import html_table_to_json\n", - "from extralit.convert.text import remove_markdown_from_string\n", - "from extralit.pipeline.ingest.record import get_record_data\n", - "from extralit.metrics.extraction import grits_from_pandas, grits_multi_tables\n", - "\n", - "from extralit.server.context.vectordb import get_weaviate_client\n", - "\n", - "os.environ[\"PYTORCH_MPS_HIGH_WATERMARK_RATIO\"] = \"0.0\"\n", - "pd.set_option('display.max_rows', 100)\n", - "pd.set_option('display.width', 1500)\n", - "pd.set_option('max_colwidth', 100)" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "id": "cb9cbd73-436b-4a54-8d20-4fa8bc6abc22", - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/var/folders/yg/6jm_z4c91d30k5l7hm3s7h580000gp/T/ipykernel_75182/2468869230.py:9: ResourceWarning: unclosed \n", - " weaviate_client = get_weaviate_client()\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n" - ] - } - ], - "source": [ - "import weaviate\n", - "from extralit.extraction.vector_store import WeaviateVectorStore\n", - "from llama_index.core.vector_stores import (\n", - " MetadataFilter,\n", - " MetadataFilters,\n", - " FilterOperator, ExactMatchFilter,\n", - ")\n", - "\n", - "weaviate_client = get_weaviate_client()" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "id": "9797f734-e7cc-4dd7-87ef-7c66172d31e9", - "metadata": {}, - "outputs": [], - "source": [ - "from llama_index.core import set_global_handler, Settings, callbacks, PromptTemplate\n", - "### comment out langfuse code \n", - "# import langfuse\n", - "# from langfuse.llama_index import LlamaIndexCallbackHandler\n", - "\n", - "# langfuse_callback_handler = LlamaIndexCallbackHandler(\n", - "# public_key=os.environ['LANGFUSE_PUBLIC_KEY'],\n", - "# secret_key=os.environ['LANGFUSE_SECRET_KEY'],\n", - "# host=os.environ['LANGFUSE_HOST'],\n", - "# )\n", - "# if not Settings.callback_manager.handlers:\n", - "# Settings.callback_manager.add_handler(langfuse_callback_handler)\n", - "# set_global_handler(\"langfuse\")\n", - "\n", - "# Ensure the global handler is NOT set to langfuse\n", - "set_global_handler(\"simple\")" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "id": "7a4383b3-540a-4080-88ba-216cbccd9282", - "metadata": {}, - "outputs": [], - "source": [ - "client = ex.init(\n", - " api_url='http://10.24.49.60/',\n", - " api_key=\"386a5806-0182-41f6-8076-f4b557818f0b\",\n", - " workspace='preprocessing',\n", - ")" - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "id": "bcd39e63-cf3d-400a-a450-2701c4e15832", - "metadata": { - "editable": true, - "scrolled": true, - "slideshow": { - "slide_type": "" - }, - "tags": [] - }, - "outputs": [ - { - "data": { - "text/plain": [ - "[UserModel(id=6d8ee721-49b7-4d1f-bf4c-d6b0eb187c62, first_name=Jonny, last_name=Tran, full_name=Jonny Tran, username=jonnytr, role=admin, workspaces=['jonnytr', 'itn-recalibration', 'gold-standard', 'test-extraction', 'preprocessing', 'itn-recalibration-scratch'], inserted_at=2024-01-11 01:48:44.477722, updated_at=2024-03-22 06:56:39.809768),\n", - " UserModel(id=e96c9d89-36f4-4240-a592-9734087371d3, first_name=Amelia, last_name=Bertozzi-Villa, full_name=Amelia Bertozzi-Villa, username=ameliabv, role=admin, workspaces=['ameliabv', 'itn-recalibration', 'gold-standard', 'test-extraction', 'preprocessing', 'itn-recalibration-scratch'], inserted_at=2024-01-11 01:48:44.549157, updated_at=2024-03-22 06:56:39.815293),\n", - " UserModel(id=91b12ed4-2aff-46d6-9eb3-c15d44e00e2a, first_name=Kate, last_name=Battle, full_name=Kate Battle, username=kateb, role=admin, workspaces=['kateb', 'itn-recalibration', 'gold-standard', 'test-extraction', 'preprocessing', 'itn-recalibration-scratch'], inserted_at=2024-01-11 01:48:44.553978, updated_at=2024-03-22 06:56:39.820769)]" - ] - }, - "execution_count": 20, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "remote_dataset = ex.FeedbackDataset.from_argilla(name=\"Table-Preprocessing\", workspace=\"itn-recalibration\")\n", - "\n", - "users = ex.Workspace.from_name('itn-recalibration').users\n", - "users_id_to_username = {u.id: u.username for u in users}\n", - "users" - ] - }, - { - "cell_type": "markdown", - "id": "17374647-df33-4aab-9827-0162e5b522ae", - "metadata": {}, - "source": [ - "# Load papers" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "id": "219e6dd1-cae3-461c-bdad-78a50ca38cac", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "data": { - "text/plain": [ - "(197, 32)" - ] - }, - "execution_count": 13, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "papers = pd.read_parquet('config/extraction_queue_197papers_2024-04-03.parquet')\n", - "extractions = pd.read_csv('data/processed/extractions_preJonny_cleaned.csv', index_col='reference')\n", - "\n", - "papers = papers.assign(collections=papers['collections'].map(', '.join))\n", - "\n", - "papers.shape" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "id": "3155d4ed-b741-4c93-9c35-eeb428f189b3", - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "# Upload PDFs if not already exist in the Extralit database\n", - "# for ref, paper in tqdm(papers.iterrows()):\n", - "# doc = remote_dataset.add_document(ex.Document.from_file(\n", - "# paper.file_path, reference=ref, pmid=paper.pmid, doi=paper.doi, id=paper.get('id')))" - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "id": "bda4d8fc-8814-4ae0-9145-7dc490ffe11c", - "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "bc52eb13e2f54ec1978013affd468883", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/670 [00:00, labels={'text-1': 'Method 1', 'text-2': 'Method 2', 'text-3': 'Method 3', 'text-4': 'Method 4', 'text-5': 'Method 5', 'none': 'None'}, visible_labels=None), MultiLabelQuestion(name='mismatched', title='Which of the method(s) extracted the wrong table/figure? (if any)', description='This indication helps in evaluating these models accuracy', required=False, type=, labels={'text-1': 'Method 1', 'text-2': 'Method 2', 'text-3': 'Method 3', 'text-4': 'Method 4', 'text-5': 'Method 5'}, visible_labels=None, labels_order=), TextQuestion(name='header-correction', title='Correct the table or figure title:', description=None, required=False, type='text', use_markdown=False, use_table=False), TextQuestion(name='text-correction', title='Correct the extracted data:', description=None, required=False, type='text', use_markdown=True, use_table=True), TextQuestion(name='notes', title='Mention any notes here', description=None, required=False, type='text', use_markdown=False, use_table=False)]\n", - " guidelines=None)\n", - " metadata_properties=[TermsMetadataProperty(name='reference', title='Reference', visible_for_annotators=True, type='terms', values=None), TermsMetadataProperty(name='page_number', title='Page Number', visible_for_annotators=True, type='terms', values=None), TermsMetadataProperty(name='number', title='Table/Figure Number', visible_for_annotators=True, type='terms', values=None), TermsMetadataProperty(name='type', title='Element type', visible_for_annotators=True, type='terms', values=None), TermsMetadataProperty(name='pmid', title='Document Pubmed ID', visible_for_annotators=True, type='terms', values=None), TermsMetadataProperty(name='doc_id', title='Document ID', visible_for_annotators=False, type='terms', values=None), FloatMetadataProperty(name='probability', title='Detection probability', visible_for_annotators=True, type='float', min=None, max=None), TermsMetadataProperty(name='annotators', title='annotators', visible_for_annotators=True, type='terms', values=None)])\n", - " vectors_settings=[])\n", - ")" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "from extralit.pipeline.export.dataset import create_preprocessing_dataset\n", - "\n", - "dataset = create_preprocessing_dataset()\n", - "\n", - "remote_dataset = dataset.push_to_argilla(name=\"Table-Preprocessing\", workspace=\"itn-recalibration-scratch\")\n", - "\n", - "# Initialize the TextDescriptivesExtractor\n", - "# tde = TextDescriptivesExtractor(\n", - "# model=\"en\",\n", - "# metrics=['descriptive_stats'],\n", - "# fields=[\"text-1\"],\n", - "# visible_for_annotators=True,\n", - "# show_progress=True,\n", - "# )\n", - "\n", - "# pdf_reader = LayoutPDFReader(\"https://readers.llmsherpa.com/api/document/developer/parseDocument?renderFormat=all\")" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "id": "049797df-0875-4c79-9cf3-71ceaa05a2ba", - "metadata": { - "editable": true, - "scrolled": true, - "slideshow": { - "slide_type": "" - }, - "tags": [] - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "markdown", - "id": "ac0ecee1-12ed-4e00-8f6f-b08e4716ccc5", - "metadata": {}, - "source": [ - "# Update dataset" - ] - }, - { - "cell_type": "markdown", - "id": "7fa5953a-be37-44b5-bcb4-3050c93c0f3f", - "metadata": { - "editable": true, - "slideshow": { - "slide_type": "" - }, - "tags": [] - }, - "source": [ - "## Choose papers queue" - ] - }, - { - "cell_type": "code", - "execution_count": 21, - "id": "79eb1486-bc8a-4de8-82c0-ff72bfa155e1", - "metadata": { - "editable": true, - "slideshow": { - "slide_type": "" - }, - "tags": [] - }, - "outputs": [ - { - "data": { - "text/plain": [ - "'verma2022laboratory.accrombessi2021assessing.ngufor2022comparative.gleave2021piperonyl.diouf2022evaluation.syme2021which.meiwald2022association.gichuki2021bioefficacy.kibondo2022influence.zahouli2023small.toe2018do.nash2021systematic.accrombessi2023efficacy.syme2022pyrethroid.menze2022experimental.gebremariam2021evaluation.briet2020physical.ibrahim2020exploring.mieguim2021insights'" - ] - }, - "execution_count": 21, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# papers_subset = ['Atieli2010effectgambiaeMalaria', Dabire2006personalpyrethroidsMalaria', 'Ochomo2017insecticidekenyaEmerging', 'Vatandoost2013washtestArthropod']\n", - "# papers_subset = ['Canning2023unwantedcountriesStudies', 'Tiruneh2020prevalencemetaanalysisPlos', 'Daley2018addressingintervention', 'Goodson2011changingafricaInfectious']\n", - "# papers_subset = ['ketoh2018efficacy', 'darriet2005pyrethoid', 'magesa1991trial', 'whopes2008report', 'quinones1998permethrin', 'kawada2014small', 'kawada2014preventive', 'randriamaherijaona2015do', 'kilian2011evidence',]\n", - "# papers_subset = ['mbogo1996impact', 'menze2020experimental', 'kitau2012species', 'kilian2008long', 'mnzava2001malaria', 'pmi2018senegal', 'hougard2003efficacy', 'pennetier2013efficacy',]\n", - "# papers_subset = ['whopes2007report', 'ngufor2016efficacy', 'okia2013bioefficacy', 'mosha2008comparative', 'quinones1997anopheles', 'ahoua2012status', 'sreehari2009wash', 'abdulla2005spatial', 'pmi2019nigeria', 'tan2016longitudinal',]\n", - "# papers_subset = ['pmi2019myanmar', 'wills2013physical', 'tokponnon2014impact', 'marchant2002socially', 'pinder2015efficacy', 'nevill1996insecticide', 'muller2006effects', 'terlouw2010impact', 'msuya1991trial', 'tungu2021efficacy',]\n", - "papers_subset = ['hamel2011combination', 'ter2003impact', 'moiroux2014human', 'schellenberg2001effect', 'tamari2020protective', 'yewhalaw2022experimental', 'tungu2021field', 'sanou2021insecticide', 'kouassi2020susceptibility', 'mulatier2019prior', \n", - " 'ngongang2022reduced', 'lorenz2020comparative', 'hien2021evidence', 'ngufor2020efficacy', 'sovi2022physical', 'adageba2022bio', 'githinji2020impact', 'grisales2021pyriproxyfen', 'tungu2021bio', 'tungu2021effectiveness',]\n", - "papers_subset = ['verma2022laboratory', 'accrombessi2021assessing', 'ngufor2022comparative', 'gleave2021piperonyl', 'diouf2022evaluation', 'syme2021which', 'meiwald2022association', 'gichuki2021bioefficacy', 'kibondo2022influence', 'zahouli2023small', 'toe2018do', 'nash2021systematic', 'accrombessi2023efficacy', 'syme2022pyrethroid', 'menze2022experimental', 'gebremariam2021evaluation', 'briet2020physical', 'ibrahim2020exploring', 'mieguim2021insights',]\n", - "'.'.join(papers_subset)" - ] - }, - { - "cell_type": "code", - "execution_count": 22, - "id": "decef88a-4506-4d65-8629-c5fc6e1921e2", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "data": { - "text/plain": [ - "Index(['verma2022laboratory', 'accrombessi2021assessing', 'ngufor2022comparative', 'gleave2021piperonyl', 'diouf2022evaluation', 'syme2021which', 'meiwald2022association', 'gichuki2021bioefficacy', 'kibondo2022influence', 'zahouli2023small', 'toe2018do', 'nash2021systematic', 'accrombessi2023efficacy', 'syme2022pyrethroid', 'menze2022experimental', 'gebremariam2021evaluation', 'briet2020physical', 'ibrahim2020exploring', 'mieguim2021insights'], dtype='object', name='reference')" - ] - }, - "execution_count": 22, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "papers_subset = papers.loc[papers_subset]\n", - "papers_subset.index" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "id": "443939fc-8d9c-4c67-9ce2-79246b467b44", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "(120, 32)" - ] - }, - "execution_count": 18, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "papers_subset = papers.loc[papers.index.difference(papers_uploaded)]\n", - "papers_subset.shape" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "id": "85aee0d5-70a3-4892-9947-3655a49506d6", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "data": { - "text/plain": [ - "['abdella2009does',\n", - " 'abdulla2001impact',\n", - " 'abilio2015bio',\n", - " 'accrombessi2021assessing',\n", - " 'accrombessi2023efficacy',\n", - " 'agossa2014laboratory',\n", - " 'agossa2015impact',\n", - " 'akoton2018experimental',\n", - " 'allossogbe2017who',\n", - " 'alonso1993malaria',\n", - " 'anshebo2014estimation',\n", - " 'asidi2004experimental',\n", - " 'asidi2005experimental',\n", - " 'asidi2012loss',\n", - " 'awolola2014impact',\n", - " 'badolo2012experimental',\n", - " 'bayili2017evaluation',\n", - " 'bayili2019experimental',\n", - " 'birhanu2019bio',\n", - " 'bobanga2013field',\n", - " 'bogh1998permethrin',\n", - " 'boussougou2017physical',\n", - " 'briet2020physical',\n", - " 'camara2018efficacy',\n", - " 'chandre2010field',\n", - " 'chouaibou2006efficacy',\n", - " 'corbel2010field',\n", - " 'curtis2003insecticide',\n", - " 'dalessandro1995mortality',\n", - " 'darriet2011combining',\n", - " 'diouf2022evaluation',\n", - " 'djenontin2009managing',\n", - " 'djenontin2010indoor',\n", - " 'etang2004reduced',\n", - " 'etang2007preliminary',\n", - " 'etang2013evaluation',\n", - " 'etang2016when',\n", - " 'fadel2019combination',\n", - " 'fane2012anopheles',\n", - " 'gebremariam2021evaluation',\n", - " 'gichuki2021bioefficacy',\n", - " 'gleave2021piperonyl',\n", - " 'guillet2001combined',\n", - " 'hassan2008retention',\n", - " 'hauser2019ability',\n", - " 'hawley2003community',\n", - " 'henry2005protective',\n", - " 'hougard2002useful',\n", - " 'howard2000evidence',\n", - " 'hughes2020anopheles',\n", - " 'ibrahim2019high',\n", - " 'ibrahim2020exploring',\n", - " 'jones2012aging',\n", - " 'kawada2014small',\n", - " 'kibondo2022influence',\n", - " 'kilian2015field',\n", - " 'kolaczinski2000comparison',\n", - " 'kouassi2020susceptibility',\n", - " 'koudou2011efficacy',\n", - " 'kulkarni2007efficacy',\n", - " 'kweka2011durability',\n", - " 'kweka2017efficacy',\n", - " 'kweka2019bio',\n", - " 'lindblade2005evaluation',\n", - " 'lines1987experimental',\n", - " 'magbity1997effects',\n", - " 'mahande2018bio',\n", - " 'malima2009behavioural',\n", - " 'malima2013evaluation',\n", - " 'masalu2018potential',\n", - " 'massue2016durability',\n", - " 'maxwell2002effect',\n", - " 'maxwell2006tests',\n", - " 'meiwald2022association',\n", - " 'menze2022experimental',\n", - " 'mieguim2021insights',\n", - " 'mosha2008experimental',\n", - " 'msangi2008effects',\n", - " 'msuya1991trial',\n", - " 'mulatier2019prior',\n", - " 'murray2020barrier',\n", - " 'musa2020long',\n", - " 'nash2021systematic',\n", - " 'nguessan2016chlorfenapyr',\n", - " 'ngufor2014combining',\n", - " 'ngufor2014olyset',\n", - " 'ngufor2017which',\n", - " 'ngufor2022comparative',\n", - " 'obi2020monitoring',\n", - " 'ohashi2012efficacy',\n", - " 'okoyo2015comparing',\n", - " 'okumu2012implications',\n", - " 'omondi2017quantifying',\n", - " 'oumbouke2019evaluation',\n", - " 'oxborough2013itn',\n", - " 'oxborough2015new',\n", - " 'pmi2017madagascar',\n", - " 'pmi2018mozambique',\n", - " 'pmi2018senegal',\n", - " 'pmi2019myanmar',\n", - " 'pmi2019nigeria',\n", - " 'pmi2019tanzania',\n", - " 'randriamaherijaona2017durability',\n", - " 'riveron2018high',\n", - " 'solomon2018bed',\n", - " 'spitzen2017effect',\n", - " 'syme2021which',\n", - " 'syme2022pyrethroid',\n", - " 'tami2004evaluation',\n", - " 'tiono2018efficacy',\n", - " 'toe2018do',\n", - " 'tungu2015evaluation',\n", - " 'vatandoost2006comparative',\n", - " 'verma2022laboratory',\n", - " 'whopes2007report',\n", - " 'whopes2008report',\n", - " 'winkler2012efficacy',\n", - " 'yewhalaw2022experimental',\n", - " 'zahouli2023small',\n", - " 'zhou2016insecticide']" - ] - }, - "execution_count": 17, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "papers_subset.index.tolist()" - ] - }, - { - "cell_type": "markdown", - "id": "075b961c-2d35-4317-b48a-f5afb638c236", - "metadata": { - "scrolled": true - }, - "source": [ - "## Extract segments" - ] - }, - { - "cell_type": "code", - "execution_count": 24, - "id": "8389d02d-7321-4308-be10-ea17d91b37b1", - "metadata": {}, - "outputs": [], - "source": [ - "# nougat_model = nougat.NougatOCR()\n", - "# nougat_model.batch_size = 1\n", - "nougat_model = None" - ] - }, - { - "cell_type": "code", - "execution_count": 25, - "id": "57cd8e2e-4e76-4581-a813-33e83057fe72", - "metadata": { - "editable": true, - "scrolled": true, - "slideshow": { - "slide_type": "" - }, - "tags": [] - }, - "outputs": [ - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "b708665ba6fc4a37814360a3aac592ab", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/19 [00:00PermaNet® (n) %, 95 % CIOlyset® (n) %, 95 % CIAll nets (n) %, 95 % CILLIN age 12 months(14) 77.8, 58.6–96.7†(6) 33.3, 11.6–55.1(20) 55.6, 39.3–71.824 months(7) 38.9, 16.4–61.4(6) 30.0, 9.9–50.1(13) 34.2, 19.1–51.4Minimal effectiveness 12 months(18) 100.0, 100.0–100.0†(14) 77.8, 58.6–97.0(32) 88.9, 78.6–96.924 months(11) 61.1, 38.6–83.6(14) 70.0, 49.9–88.1(25) 65.8, 50.7–80.9*" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 21, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "id = 'tan2016longitudinal'\n", - "i = -1\n", - "table = tables[id]['llmsherpa'].items[i]\n", - "\n", - "print(papers.loc[id, 'file_path'])\n", - "print(table.header, table.number)\n", - "HTML(table.html)" - ] - }, - { - "cell_type": "code", - "execution_count": 23, - "id": "d422ee41-a29e-436c-bf51-cb664f2ceaf3", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "FigureSegment(header='Fig. 2 Correlation of chemical and bioassay results (95 % confidence intervals shown in shaded area)', page_number=10, number=2)" - ] - }, - "execution_count": 23, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "fig = figures['tan2016longitudinal']['pdffigures2'][0]\n", - "fig" - ] - }, - { - "cell_type": "code", - "execution_count": 24, - "id": "e6e8c343-39c6-4c77-bd14-111a8a2084c8", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "data": { - "text/html": [ - "" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 24, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "HTML(image_to_html(fig.image))" - ] - }, - { - "cell_type": "code", - "execution_count": 26, - "id": "fc490766-1f29-4591-be82-1180f2521de5", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:416: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/tan2016longitudinal/tan2016longitudinal-Figure2-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0520 13:54.02 @segment.py:246]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 2 Correlation of chemical and bioassay results (95 % confidence intervals shown in shaded area)\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1311: PydanticDeprecatedSince20: The `schema` method is deprecated; use `model_json_schema` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n" - ] - }, - { - "data": { - "text/plain": [ - "FigureExtractionResponse(summary='The figure shows the correlation between chemical concentrations (Deltamethrin and Permethrin) and bioassay results (Knock down and Mortality) in mosquitoes. The shaded areas represent 95% confidence intervals.', html='\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n
DeltamethrinPermethrin
Knock down (% mosquitoes)
Mortality (% mosquitoes)
Mean insecticide concentration in mg/m²
')" - ] - }, - "execution_count": 26, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "_figure_extraction_response = fig.extract_html_table()" - ] - }, - { - "cell_type": "code", - "execution_count": 27, - "id": "6b5c2d46-8a0d-473d-b605-dc2bbac57f6b", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
DeltamethrinPermethrin
Knock down (% mosquitoes)
Mortality (% mosquitoes)
Mean insecticide concentration in mg/m²
" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 27, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "HTML(fig.html)" - ] - }, - { - "cell_type": "markdown", - "id": "97efd4ef-c6d3-4cd5-a9dd-044c6ee08339", - "metadata": { - "jp-MarkdownHeadingCollapsed": true - }, - "source": [ - "### deepdoctection (experiments)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "e92c5fe3-486e-4296-b636-c144879b1ebf", - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "analyzer =dd.get_dd_analyzer(config_overwrite=[\n", - " \"PT.LAYOUT.WEIGHTS=microsoft/table-transformer-detection/pytorch_model.bin\", # TATR table detection model\n", - " \"PT.ITEM.WEIGHTS=microsoft/table-transformer-structure-recognition/pytorch_model.bin\", # TATR table segmentation model\n", - " \"PT.ITEM.FILTER=['table']\",\n", - " \"OCR.USE_DOCTR=True\", # we disable Tesseract and use DocTr as OCR engine\n", - " \"OCR.USE_TESSERACT=False\",\n", - "])\n", - "\n", - "df = analyzer.analyze(path='data/pdf/Etang_et_al_2007_Trans_RSTMH.pdf')\n", - "df.reset_state()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "9577cb2e-d4cb-4d01-903d-526dc3d4f8b1", - "metadata": {}, - "outputs": [], - "source": [ - "# doc = iter(df)\n", - "page = next(doc)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "f3f98599-3c68-4087-bef5-220bc5cc5ae7", - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "page.annotations[1]._category_name" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "74b33bd9-ae32-411e-b51c-2c25ac792be6", - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "page.annotations[0]._annotation_id" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "ae277688-0848-4c83-9b59-aa7e7605022f", - "metadata": {}, - "outputs": [], - "source": [ - "table.annotation_id" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "f898123d-ea83-4ed4-b065-8e5228ee67cc", - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "table = page.tables[0]\n", - "print(table.html)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "9fe8d5d9-ebd8-4b55-bf98-4a8b6f431270", - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "table.cells" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "f9181c56-6802-40bd-9cdd-bac79bbde616", - "metadata": {}, - "outputs": [], - "source": [ - "page.viz(ignore_default_token_class=True, interactive=True)" - ] - }, - { - "cell_type": "markdown", - "id": "d7235e69-eddd-45f9-bdd8-ec34cbaf479a", - "metadata": { - "editable": true, - "slideshow": { - "slide_type": "" - }, - "tags": [] - }, - "source": [ - "#### Evaluate tables extracted" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "4e940570-fac7-4f80-a329-da823d51e778", - "metadata": { - "editable": true, - "scrolled": true, - "slideshow": { - "slide_type": "" - }, - "tags": [] - }, - "outputs": [], - "source": [ - "df = tables['Etang2007']['unstructured'][0].to_df()\n", - "df = df.dropna(axis=0, how='all').dropna(axis=1, how='all')\n", - "df" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "fa7e5bea-93dd-4ac6-bb93-a892ebc9d538", - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "# for id, paper in tqdm(papers_subset.iterrows(), total=len(papers_subset)):\n", - "# text_segs, table_segs, _ = create_or_load_nougat_segments(paper, nougat_model=nougat_model, load_only=False, save=True)" - ] - }, - { - "cell_type": "markdown", - "id": "203095af-75db-4d00-ab94-3df87c157fb0", - "metadata": {}, - "source": [ - "## Create records" - ] - }, - { - "cell_type": "code", - "execution_count": 26, - "id": "1817cbdf-b1cb-4be7-ae95-9b5ede7bcf78", - "metadata": { - "editable": true, - "scrolled": true, - "slideshow": { - "slide_type": "" - }, - "tags": [] - }, - "outputs": [ - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "95396ae97c1841ce9e59eea7e67699ba", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "0it [00:00, ?it/s]" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/verma2022laboratory/LLINPhaseIVV2022-Figure2-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:04.51 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 2 Schematic flow of work plan\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1311: PydanticDeprecatedSince20: The `schema` method is deprecated; use `model_json_schema` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1135: PydanticDeprecatedSince20: The `parse_raw` method is deprecated; if your data is JSON use `model_validate_json`, otherwise load the data then use `model_validate` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1143: PydanticDeprecatedSince20: `load_str_bytes` is deprecated. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " obj = parse.load_str_bytes(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/verma2022laboratory/LLINPhaseIVV2022-Figure3-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:04.58 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 3 Graph showing % KnockDown (%KD) and % Mortality in cone bioassays to determine the regeneration time of HILNet\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1311: PydanticDeprecatedSince20: The `schema` method is deprecated; use `model_json_schema` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/verma2022laboratory/LLINPhaseIVV2022-Figure4-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:05.02 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 4 Graph showing % KnockDown and % Mortality in wash resistance studies\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/accrombessi2021assessing/figures/figure-4-4.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:05.07 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 1 Study area. Map showing Cove, Zagnanado and Ouinhi Districts, located in Zou department, central Benin, West Africa (Panel a); the 60 study clusters identified with core and buffer area and intervention allocation (Panel b); a minimum of 1000 m area was created between households in adjacent clusters (Panel c). Source of map: Own from the study investigators (CT, JC, MA, ED).\u001b[0m\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "verma2022laboratory 3 tables 3 figures\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1311: PydanticDeprecatedSince20: The `schema` method is deprecated; use `model_json_schema` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1135: PydanticDeprecatedSince20: The `parse_raw` method is deprecated; if your data is JSON use `model_validate_json`, otherwise load the data then use `model_validate` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1143: PydanticDeprecatedSince20: `load_str_bytes` is deprecated. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " obj = parse.load_str_bytes(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/accrombessi2021assessing/Assessing_the_efficacy_of_two_dual_active_ingredients_long_lasting_insecticidal_-Figure1-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:05.14 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 1 Study area. Map showing Cove, Zagnanado and Ouinhi Districts, located in Zou department, central Benin, West Africa (Panel a); the 60 study clusters identified with core and buffer area and intervention allocation (Panel b); a minimum of 1000m area was created between households in adjacent clusters (Panel c). Source of map: Own from the study investigators (CT, JC, MA, ED).\u001b[0m\n", - "\u001b[32m[0621 00:05.22 @staging.py:69]\u001b[0m \u001b[5m\u001b[35mWRN\u001b[0m \u001b[97mAttempting to fix broken JSON: ... 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60\\n \\n \\n\"}\u001b[0m\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "accrombessi2021assessing 2 tables 1 figures\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/ngufor2022comparative/figures/figure-6-7.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:05.23 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 1 Mortality of wild pyrethroid-resistant Anopheles gambiae s.l. in experimental huts in Cove, Benin evaluating different net types. Vertical lines indicate 95% confidence interval estimates whilst bars with the same letter label are not significantly different (P > 0.05)\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1311: PydanticDeprecatedSince20: The `schema` method is deprecated; use `model_json_schema` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1135: PydanticDeprecatedSince20: The `parse_raw` method is deprecated; if your data is JSON use `model_validate_json`, otherwise load the data then use `model_validate` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1143: PydanticDeprecatedSince20: `load_str_bytes` is deprecated. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " obj = parse.load_str_bytes(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/ngufor2022comparative/Comparative_efficacy_of_two_pyrethroid_piperonyl_butoxide_nets_Olyset_Plus_and_-Figure1-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:05.28 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 1 Mortality of wild pyrethroid-resistant Anopheles gambiae s.l. in experimental huts in Cove, Benin evaluating different net types. Vertical lines indicate 95% confidence interval estimates whilst bars with the same letter label are not significantly different (P > 0.05)\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/ngufor2022comparative/figures/figure-7-8.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:05.33 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 2 Blood-feeding rates of wild pyrethroid-resistant Anopheles gambiae s.l. in experimental huts in Cove, Benin evaluating different net types. Vertical lines indicate 95% confidence interval estimates whilst bars with the same letter label are not significantly different (P > 0.05)\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/ngufor2022comparative/Comparative_efficacy_of_two_pyrethroid_piperonyl_butoxide_nets_Olyset_Plus_and_-Figure2-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:05.39 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 2 Blood-feeding rates of wild pyrethroid-resistant Anopheles gambiae s.l. in experimental huts in Cove, Benin evaluating different net types. Vertical lines indicate 95% confidence interval estimates whilst bars with the same letter label are not significantly different (P > 0.05)\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/ngufor2022comparative/figures/figure-9-9.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:05.44 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 3 Mortality (%) of susceptible and resistant strains of An. gambiae s.l. in cone bioassays with Olyset Plus and Olyset Net. S R\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/ngufor2022comparative/Comparative_efficacy_of_two_pyrethroid_piperonyl_butoxide_nets_Olyset_Plus_and_-Figure3-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:05.49 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 3 Mortality (%) of susceptible and resistant strains of An. gambiae s.l. in cone bioassays with Olyset Plus and Olyset Net. S = susceptible, R = resistant\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/ngufor2022comparative/figures/figure-9-10.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:05.57 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 4 Tunnel test mortality (%) of susceptible and resistant strains of Anopheles gambiae s.l. exposed to Olyset Plus vs. Olyset Net\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/ngufor2022comparative/Comparative_efficacy_of_two_pyrethroid_piperonyl_butoxide_nets_Olyset_Plus_and_-Figure4-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:06.01 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 4 Tunnel test mortality (%) of susceptible and resistant strains of Anopheles gambiae s.l. exposed to Olyset Plus vs. Olyset Net\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/ngufor2022comparative/figures/figure-10-11.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:06.08 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 5 Blood-feeding inhibition (%) of susceptible and resistant strains of An. gambiae s.l. in tunnel tests with Olyset Plus and Olyset Net. Blood-feeding inhibition was calculated relative to the control tunnel. S\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/ngufor2022comparative/Comparative_efficacy_of_two_pyrethroid_piperonyl_butoxide_nets_Olyset_Plus_and_-Figure5-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:06.16 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 5 Blood-feeding inhibition (%) of susceptible and resistant strains of An. gambiae s.l. in tunnel tests with Olyset Plus and Olyset Net. Blood-feeding inhibition was calculated relative to the control tunnel. S = susceptible, R = Resistant\u001b[0m\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "ngufor2022comparative 9 tables 5 figures\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/gleave2021piperonyl/CD012776-Figure1-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:06.27 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 1.   Study flow diagram.\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1311: PydanticDeprecatedSince20: The `schema` method is deprecated; use `model_json_schema` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1135: PydanticDeprecatedSince20: The `parse_raw` method is deprecated; if your data is JSON use `model_validate_json`, otherwise load the data then use `model_validate` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1143: PydanticDeprecatedSince20: `load_str_bytes` is deprecated. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " obj = parse.load_str_bytes(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/gleave2021piperonyl/CD012776-Figure2-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:06.34 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 2.   ‘Risk of bias' summary: review authors' judgements about each risk of bias item for each included study.\u001b[0m\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "gleave2021piperonyl 133 tables 2 figures\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/diouf2022evaluation/figures/figure-4-7.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:06.44 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 1 Localities where LLINs were distributed and durability monitored\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1311: PydanticDeprecatedSince20: The `schema` method is deprecated; use `model_json_schema` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1135: PydanticDeprecatedSince20: The `parse_raw` method is deprecated; if your data is JSON use `model_validate_json`, otherwise load the data then use `model_validate` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1143: PydanticDeprecatedSince20: `load_str_bytes` is deprecated. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " obj = parse.load_str_bytes(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/diouf2022evaluation/figures/figure-8-8.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:06.47 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 2 Retained proportions not removed (red), retention after sampling (blue) and cumulative number of nets removed by type and semester after 3 years\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/diouf2022evaluation/Evaluation_of_the_residual_efficacy_and_physical_durability_of_five_long_lasting-Figure2-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:07.06 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 2 Retained proportions not removed (red), retention after sampling (blue) and cumulative number of nets removed by type and semester after 3 years\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/diouf2022evaluation/figures/figure-10-9.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:07.11 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 3 Categories of holes by type and semester after 3 years. Size 1, size 2, size 3\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/diouf2022evaluation/Evaluation_of_the_residual_efficacy_and_physical_durability_of_five_long_lasting-Figure3-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:07.17 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 3 Categories of holes by type and semester after 3 years. Size 1, size 2, size 3\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/diouf2022evaluation/Evaluation_of_the_residual_efficacy_and_physical_durability_of_five_long_lasting-Figure4-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:07.25 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 4 Insecticide concentration in mg/m2 according to the type LLINs and semester\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/diouf2022evaluation/Evaluation_of_the_residual_efficacy_and_physical_durability_of_five_long_lasting-Figure5-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:07.32 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 5 Correlation of chemical and bioassay results by type of LLIN and semester\u001b[0m\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "diouf2022evaluation 8 tables 5 figures\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/syme2021which/figures/figure-9-2.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:07.41 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig 1. Monthly mortality rates of wild, free-flying pyrethroid-resistant Anopheles gambiae sensu lato entering experimental huts with pirimiphos-methyl CS IRS applied alone and in combination with DuraNet1 in Covè, southern Benin. Mortality was cumulated over successive months. Error bars represent 95% CI.\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1311: PydanticDeprecatedSince20: The `schema` method is deprecated; use `model_json_schema` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1135: PydanticDeprecatedSince20: The `parse_raw` method is deprecated; if your data is JSON use `model_validate_json`, otherwise load the data then use `model_validate` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1143: PydanticDeprecatedSince20: `load_str_bytes` is deprecated. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " obj = parse.load_str_bytes(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/syme2021which/pone_0245804_pdf-Figure1-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:07.47 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig 1. Monthly mortality rates of wild, free-flying pyrethroid-resistant Anopheles gambiae sensu lato entering experimental huts with pirimiphos-methyl CS IRS applied alone and in combination with DuraNet1 in Covè, southern Benin. Mortality was cumulated over successive months. Error bars represent 95% CI.\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/syme2021which/pone_0245804_pdf-Figure2-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:07.58 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig 2. Monthly mortality rates of wild, free-flying pyrethroid-resistant Anopheles gambiae sensu lato entering experimental huts with chlorfenapyr IRS applied alone and in combination with DuraNet1 in Covè, southern Benin. Mortality was cumulated over successive months. Error bars represent 95% CI.\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/syme2021which/figures/figure-10-4.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:08.03 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig 3. Monthly mortality rates of wild, free-flying pyrethroid-resistant Anopheles gambiae sensu lato entering experimental huts with bendiocarb IRS applied alone and in combination with DuraNet1 in Covè, southern Benin. Mortality was cumulated over successive months. Error bars represent 95% CI.\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/syme2021which/pone_0245804_pdf-Figure3-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:08.09 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig 3. Monthly mortality rates of wild, free-flying pyrethroid-resistant Anopheles gambiae sensu lato entering experimental huts with bendiocarb IRS applied alone and in combination with DuraNet1 in Covè, southern Benin. Mortality was cumulated over successive months. Error bars represent 95% CI.\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/syme2021which/pone_0245804_pdf-Figure4-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:08.14 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig 4. Mortality (72 h) of laboratory maintained, insecticide-susceptible Anopheles gambiae sensu stricto Kisumu colony exposed to IRS-treated hut walls in monthly, 30 mins wall cone bioassays in experimental huts in Covè, southern Benin. Error bars represent 95% CI. Approximately fifty (50) 2–3 days old mosquitoes were exposed for 30 mins to each IRS treated hut in batches of 10 per cone and mortality recorded after 72 h.\u001b[0m\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "syme2021which 5 tables 4 figures\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/meiwald2022association/figures/figure-4-3.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:08.19 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 2. A, Resistance intensity of field-caught Anopheles gambiae sensu lato (s.l.) after exposure to 1, 2, 5, or 10 times the diagnostic dose of pyrethroid insecticides. Mean knockdown/acute toxicity rates after 30-minute exposure are shown with 95% confidence intervals (CIs). Knockdown or mortality rates at the same dose per insecticide sharing a letter do not differ significantly (P > .05). Mortality rates <90% (lower red line) represent confirmed resistance at the diagnostic dose (1×), and rates <98% (upper red line) indicate moderate to high-intensity resistance or high-intensity resistance at 5× and 10×, respectively, as defined by the World Health Organization [24]. B, Restoration of deltamethrin susceptibility of field-caught A. gambiae s.l. after preexposure to piperonyl butoxide (PBO). Mean knockdown/acute toxicity after 30-minute exposure to 1 or 2 times the diagnostic dose of deltamethrin with 95% CIs. Knockdown/mortality rates do not differ significantly between pyrethroid only and synergist plus pyrethroid sharing a letter (P > .05). Red line at 98% mortality rate represents metabolic resistance mechanisms partially involved [24].\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1311: PydanticDeprecatedSince20: The `schema` method is deprecated; use `model_json_schema` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1135: PydanticDeprecatedSince20: The `parse_raw` method is deprecated; if your data is JSON use `model_validate_json`, otherwise load the data then use `model_validate` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1143: PydanticDeprecatedSince20: `load_str_bytes` is deprecated. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " obj = parse.load_str_bytes(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/meiwald2022association/figures/figure-6-20.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:08.25 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 3. The longevity of field-caught Anopheles gambiae sensu lato after exposure to long-lasting insecticidal nets (LLINs) in World Health Organization cone assays (A) and 1× (B), 5× (C), and 10× (D) the diagnostic dose of pyrethroid insecticides in Centers for Disease Control and Prevention resistance intensity assays. Kaplan-Meier sur- vival curves indicate the proportion alive each day after exposure. Immediate mortality rates after LLIN (60 minutes and 24 hours) or insecticidal exposure (30 or 60 minutes, depending on insecticide) were excluded.\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/meiwald2022association/jiaa699-Figure3-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:08.32 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 3. The longevity of field-caught Anopheles gambiae sensu lato after exposure to long-lasting insecticidal nets (LLINs) in World Health Organization cone assays (A) and 1× (B), 5× (C), and 10× (D) the diagnostic dose of pyrethroid insecticides in Centers for Disease Control and Prevention resistance intensity assays. Kaplan-Meier survival curves indicate the proportion alive each day after exposure. Immediate mortality rates after LLIN (60 minutes and 24 hours) or insecticidal exposure (30 or 60 minutes, depending on insecticide) were excluded.\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/gichuki2021bioefficacy/figures/figure-4-9.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:08.46 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 1 A rectangular net and its individual panels showing positions for cutting netting pieces (positions 1–9 for bioassays; HP1–HP5 for chemical assays)\u001b[0m\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "meiwald2022association 3 tables 2 figures\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1311: PydanticDeprecatedSince20: The `schema` method is deprecated; use `model_json_schema` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1135: PydanticDeprecatedSince20: The `parse_raw` method is deprecated; if your data is JSON use `model_validate_json`, otherwise load the data then use `model_validate` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1143: PydanticDeprecatedSince20: `load_str_bytes` is deprecated. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " obj = parse.load_str_bytes(\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "gichuki2021bioefficacy 7 tables 1 figures\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/kibondo2022influence/figures/figure-7-6.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:09.00 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 2 Mosquito mortality after exposure to Interceptor® and Interceptor® G2 ITNs in Ifakara ambient chamber test (IACT), WHO tunnel test, cone and experimental hut. a An. arabiensis, b Cx. quinquefasciatus, c An. gambiae s.s., d Ae. aegypti\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1311: PydanticDeprecatedSince20: The `schema` method is deprecated; use `model_json_schema` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1135: PydanticDeprecatedSince20: The `parse_raw` method is deprecated; if your data is JSON use `model_validate_json`, otherwise load the data then use `model_validate` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1143: PydanticDeprecatedSince20: `load_str_bytes` is deprecated. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " obj = parse.load_str_bytes(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/kibondo2022influence/Influence_of_testing_modality_on_bioefficacy_for_the_evaluation_of_Interceptor-Figure2-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:09.09 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 2 Mosquito mortality after exposure to Interceptor® and Interceptor® G2 ITNs in Ifakara ambient chamber test (IACT), WHO tunnel test, cone and experimental hut. a An. arabiensis, b Cx. quinquefasciatus, c An. gambiae s.s., d Ae. aegypti\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/kibondo2022influence/figures/figure-10-7.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:09.16 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 3 Mosquito blood-feeding inhibition after exposure to Interceptor and Interceptor® G2 ITNs in Ifakara ambient chamber test (IACT), WHO tunnel test and experimental hut. a An. arabiensis, b Cx. quinquefasciatus, c An. gambiae s.s., d Ae. aegypti\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/kibondo2022influence/Influence_of_testing_modality_on_bioefficacy_for_the_evaluation_of_Interceptor-Figure3-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:09.21 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 3 Mosquito blood-feeding inhibition after exposure to Interceptor and Interceptor® G2 ITNs in Ifakara ambient chamber test (IACT), WHO tunnel test and experimental hut. a An. arabiensis, b Cx. quinquefasciatus, c An. gambiae s.s., d Ae. aegypti\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/kibondo2022influence/figures/figure-12-8.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:09.26 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 4 Comparison of mosquito mortality and blood-feeding inhibition of An. arabiensis in four different experimental hut designs in Ifakara, Tanzania\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/kibondo2022influence/Influence_of_testing_modality_on_bioefficacy_for_the_evaluation_of_Interceptor-Figure4-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:09.32 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 4 Comparison of mosquito mortality and blood-feeding inhibition of An. arabiensis in four different experimental hut designs in Ifakara, Tanzania\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/kibondo2022influence/Influence_of_testing_modality_on_bioefficacy_for_the_evaluation_of_Interceptor-Figure5-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:09.39 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 5 Factors determining bioassay results beyond product characteristics\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/zahouli2023small/Small_scale_field_evaluation_of_PermaNet_Dual_a_long_lasting_net_coated_with-Figure1-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:09.50 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 1 Effects of treatments on blood-feeding (A) and immediate and extended mortality (B) rates in multiple insecticide-resistant Anopheles gambiae from experimental huts in Tiassalé, Côte d’Ivoire. Error bars show the standard error of the mean. Letters indicate the results of the\u001b[0m\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "kibondo2022influence 5 tables 4 figures\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1311: PydanticDeprecatedSince20: The `schema` method is deprecated; use `model_json_schema` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1135: PydanticDeprecatedSince20: The `parse_raw` method is deprecated; if your data is JSON use `model_validate_json`, otherwise load the data then use `model_validate` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1143: PydanticDeprecatedSince20: `load_str_bytes` is deprecated. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " obj = parse.load_str_bytes(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/zahouli2023small/Small_scale_field_evaluation_of_PermaNet_Dual_a_long_lasting_net_coated_with-Figure2-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:09.58 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 2 Mean knock-down (A) and corrected mortality (B) rates in the susceptible Anopheles gambiae s.s. Kisumu strain exposed to net samples using cone bioassays before and after the experimental hut trial in Tiassalé, Côte d’Ivoire. KD60: Knock-down at 60 min. Error bars show the standard error of the mean\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/zahouli2023small/figures/figure-11-9.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:10.04 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 3 Mean knock-down (A) and corrected mortality (B) rates in the pyrethroid-resistant Anopheles gambiae s.l. Tiassalé strain exposed to net samples using cone bioassays before and after the experimental hut trial in Tiassalé, Côte d’Ivoire. KD60: Knock-down at 60 min. Error bars show the standard error of the mean\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/zahouli2023small/Small_scale_field_evaluation_of_PermaNet_Dual_a_long_lasting_net_coated_with-Figure3-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:10.14 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 3 Mean knock-down (A) and corrected mortality (B) rates in the pyrethroid-resistant Anopheles gambiae s.l. Tiassalé strain exposed to net samples using cone bioassays before and after the experimental hut trial in Tiassalé, Côte d’Ivoire. KD60: Knock-down at 60 min. Error bars show the standard error of the mean\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/zahouli2023small/figures/figure-13-10.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:10.27 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 4 Mean blood-feeding inhibition (A) and corrected mortality (B) rates in the susceptible Anopheles gambiae s.s. Kisumu strain exposed to net samples using tunnel tests before and after experimental hut trial in Tiassalé, Côte d’Ivoire. Error bars show the standard error of the mean\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/zahouli2023small/Small_scale_field_evaluation_of_PermaNet_Dual_a_long_lasting_net_coated_with-Figure4-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:10.33 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 4 Mean blood-feeding inhibition (A) and corrected mortality (B) rates in the susceptible Anopheles gambiae s.s. Kisumu strain exposed to net samples using tunnel tests before and after experimental hut trial in Tiassalé, Côte d’Ivoire. Error bars show the standard error of the mean\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/zahouli2023small/figures/figure-14-11.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:10.42 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 5 Mean of blood-feeding inhibition (A) and corrected mortality (B) rates in the pyrethroid-resistant Anopheles gambiae s.l. Tiassalé strain exposed to net samples using tunnel tests before and after experimental hut trial in Tiassalé, Côte d’Ivoire. Error bars show the standard error of the mean\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/zahouli2023small/Small_scale_field_evaluation_of_PermaNet_Dual_a_long_lasting_net_coated_with-Figure5-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:10.49 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 5 Mean of blood-feeding inhibition (A) and corrected mortality (B) rates in the pyrethroid-resistant Anopheles gambiae s.l. Tiassalé strain exposed to net samples using tunnel tests before and after experimental hut trial in Tiassalé, Côte d’Ivoire. Error bars show the standard error of the mean\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/toe2018do/figures/figure-4-2.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:10.58 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 1. Mortality rates (with binomial confidence intervals) after exposure to deltamethrin and permethrin in World Health Organization discriminating dose assays with or without pre-exposure to piperonyl butoxide (PBO) in (A) Vallée du Kou 5 and (B) Tengrela (October 2014). *Significant differences in mortality: P < 0.0001. Numbers in brackets are the total numbers of mosquitoes tested. [Colour figure can be viewed at wileyonlinelibrary.com].\u001b[0m\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "zahouli2023small 4 tables 5 figures\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1311: PydanticDeprecatedSince20: The `schema` method is deprecated; use `model_json_schema` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1135: PydanticDeprecatedSince20: The `parse_raw` method is deprecated; if your data is JSON use `model_validate_json`, otherwise load the data then use `model_validate` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1143: PydanticDeprecatedSince20: `load_str_bytes` is deprecated. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " obj = parse.load_str_bytes(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/toe2018do/Toe_et_al_2018_Medical_and_Veterinary_Entomology-Figure1-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:11.02 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 1. Mortality rates (with binomial confidence intervals) after exposure to deltamethrin and permethrin in World Health Organization discriminating dose assays with or without pre-exposure to piperonyl butoxide (PBO) in (A) Vallée du Kou 5 and (B) Tengrela (October 2014). *Significant differences in mortality: P < 0.0001. Numbers in brackets are the total numbers of mosquitoes tested. [Colour figure can be viewed at wileyonlinelibrary.com].\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/toe2018do/Toe_et_al_2018_Medical_and_Veterinary_Entomology-Figure2-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:11.07 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 2. Expression levels of candidate genes previously associated with pyrethroid resistance in Tengrela and Vallée du Kou 5. The analysis was performed using the 2-ΔΔCt method with data normalized against three control genes and presented as a ratio of expression levels in the Ngousso susceptible laboratory strain. Relative gene expressions were transformed to log scale before plotting to minimize large differences in gene expression. [Colour figure can be viewed at wileyonlinelibrary.com].\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/toe2018do/figures/figure-6-6.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:11.13 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 3. Mean mortality rates with binomial confidence intervals for mosquitoes collected from (A) Tengrela and (B) Vallée du Kou 5 after exposure to longlasting insecticidal nets (LLINs) for 3 min. Significant differences in mortality between pyrethroid-only and pyrethroid plus piperonyl butoxide-treated LLINs are indicated by * (P < 0.001), † (P < 0.0001), n.s. (non-significant), ‡ (P < 0.0001) for the comparison between the sides and top of the PermaNet 3.0. Numbers in brackets are the total numbers of mosquitoes tested. [Colour figure can be viewed at wileyonlinelibrary.com].\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/toe2018do/Toe_et_al_2018_Medical_and_Veterinary_Entomology-Figure3-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:11.19 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 3. Mean mortality rates with binomial confidence intervals for mosquitoes collected from (A) Tengrela and (B) Vallée du Kou 5 after exposure to longlasting insecticidal nets (LLINs) for 3 min. Significant differences in mortality between pyrethroid-only and pyrethroid plus piperonyl butoxide-treated LLINs are indicated by * (P < 0.001), † (P < 0.0001), n.s. (non-significant), ‡ (P < 0.0001) for the comparison between the sides and top of the PermaNet 3.0. Numbers in brackets are the total numbers of mosquitoes tested. [Colour figure can be viewed at wileyonlinelibrary.com].\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/toe2018do/figures/figure-7-9.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:11.23 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 4. Primary outcomes measured in the experimental hut trials in Tengrela and Vallée du Kou 5 (VK5). (A–D) Crude data for the measured outcomes. (A) Entry, number of mosquitoes per night entering a hut. (B) Exit, proportion of mosquitoes collected from the veranda trap. (C) Blood feeding, proportion of mosquitoes found blood-fed. (D) Mortality, proportion of mosquitoes dead at 24 h post-collection. (E–H) These outcomes measured relative to the control (i.e. untreated mosquito net) for both sites combined. (E) Deterrence, the ratio of mosquitoes entering a hut relative to the control hut. (F) Exophily, the odds ratio (OR) for a mosquito being found in the veranda trap. (G) Blood feeding inhibition, the OR for a mosquito being blood-fed. (H) Mortality, the OR for a mosquito being dead in the morning (immediate mortality) or after being caught alive and held for 24 h (delayed mortality). Symbols show the average and whiskers show the limits of the 95% confidence intervals around the average. The dashed line shows the ratio or OR of 1, indicating no association of the outcome with the treatment. The data used to produce the plot together with the P-values are provided in Table S3. [Colour figure can be viewed at wileyonlinelibrary.com].\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/toe2018do/Toe_et_al_2018_Medical_and_Veterinary_Entomology-Figure4-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:11.30 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 4. Primary outcomes measured in the experimental hut trials in Tengrela and Vallée du Kou 5 (VK5). (A–D) Crude data for the measured outcomes. (A) Entry, number of mosquitoes per night entering a hut. (B) Exit, proportion of mosquitoes collected from the veranda trap. (C) Blood feeding, proportion of mosquitoes found blood-fed. (D) Mortality, proportion of mosquitoes dead at 24 h post-collection. (E–H) These outcomes measured relative to the control (i.e. untreated mosquito net) for both sites combined. (E) Deterrence, the ratio of mosquitoes entering a hut relative to the control hut. (F) Exophily, the odds ratio (OR) for a mosquito being found in the veranda trap. (G) Blood feeding inhibition, the OR for a mosquito being blood-fed. (H) Mortality, the OR for a mosquito being dead in the morning (immediate mortality) or after being caught alive and held for 24 h (delayed mortality). Symbols show the average and whiskers show the limits of the 95% confidence intervals around the average. The dashed line shows the ratio or OR of 1, indicating no association of the outcome with the treatment. The data used to produce the plot together with the P-values are provided in Table S3. [Colour figure can be viewed at wileyonlinelibrary.com].\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/toe2018do/figures/figure-8-10.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:11.36 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 5. Outcome measures comparing piperonyl butoxide (PBO)-treated and non-PBO-treated nets from the same manufacturers. Deterrence, the ratio of mosquitoes entering a hut relative to the control hut. Exophily, the odds ratio (OR) for a mosquito being found in the veranda trap. Blood feeding inhibition, the OR for a mosquito being blood-fed. Mortality, the OR for a mosquito being dead in the morning (immediate mortality) or after being caught alive and held for 24 h (delayed mortality). [Colour figure can be viewed at wileyonlinelibrary.com].\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/toe2018do/Toe_et_al_2018_Medical_and_Veterinary_Entomology-Figure5-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:11.41 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 5. Outcome measures comparing piperonyl butoxide (PBO)-treated and non-PBO-treated nets from the same manufacturers. Deterrence, the ratio of mosquitoes entering a hut relative to the control hut. Exophily, the odds ratio (OR) for a mosquito being found in the veranda trap. Blood feeding inhibition, the OR for a mosquito being blood-fed. Mortality, the OR for a mosquito being dead in the morning (immediate mortality) or after being caught alive and held for 24 h (delayed mortality). [Colour figure can be viewed at wileyonlinelibrary.com].\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/nash2021systematic/figures/figure-4-4.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:11.47 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 1. Maps of EHT sites where ITNs and/or IRS have been investigated. Panels show sites across sub-Saharan Africa (A); Eastern Africa (54 trials), including Ethiopia, Tanzania and Madagascar (B); West (80 trials) and Central Africa (1 trial), including The Gambia, Mali, Ivory Coast, Burkina Faso, Togo, Benin, Nigeria and Cameroon (C). Point size indicates the number of studies at each site, whilst point colour denotes the design of hut used, be it East African (red), Ifakara (green) or West African (blue).\u001b[0m\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "toe2018do 4 tables 5 figures\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1311: PydanticDeprecatedSince20: The `schema` method is deprecated; use `model_json_schema` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1135: PydanticDeprecatedSince20: The `parse_raw` method is deprecated; if your data is JSON use `model_validate_json`, otherwise load the data then use `model_validate` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1143: PydanticDeprecatedSince20: `load_str_bytes` is deprecated. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " obj = parse.load_str_bytes(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/nash2021systematic/figures/figure-6-5.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:11.52 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 2. Characteristics of EHT data. A The number of EHTs investigating IRS or ITNs that collected data on each hut design and mosquito species (as reported in the study). Bar colours indicate the design of the hut used in the trial as shown in the legend, be it East African (red), West African (blue) or Ifakara (green). B Summary of the reported mortality observed in hut trials evaluating unwashed pyrethroid-only ITNs and how these change over time. Points are coloured according to the hut design (see A). C Histograms showing the average number of mosquitoes collected per night in the control huts of EHTs. The dotted line represents the mean number collected in trials of each hut design. Note: Some trials collected multiple mosquito species, therefore single trials may be counted more than once in this figure.\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/nash2021systematic/1_s20_S2667114X21000418_main-Figure2-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:12.01 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 2. Characteristics of EHT data. A The number of EHTs investigating IRS or ITNs that collected data on each hut design and mosquito species (as reported in the study). Bar colours indicate the design of the hut used in the trial as shown in the legend, be it East African (red), West African (blue) or Ifakara (green). B Summary of the reported mortality observed in hut trials evaluating unwashed pyrethroid-only ITNs and how these change over time. Points are coloured according to the hut design (see A). C Histograms showing the average number of mosquitoes collected per night in the control huts of EHTs. The dotted line represents the mean number collected in trials of each hut design. Note: Some trials collected multiple mosquito species, therefore single trials may be counted more than once in this figure.\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/nash2021systematic/figures/figure-7-6.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:12.07 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 3. Entomological outcomes as predicted by bioassay survival. A Comparison of the level of pyrethroid resistance as measured using a discriminating dose bioassay and the percentage of mosquitoes which enter a hut with a pyrethroid-only ITN and survive 24 h after being collected. Solid lines show the fitted relationship using either the logistic (green) or log-logistic (yellow) models. Vertical and horizontal lines show 95% confidence interval estimates for each data point. B-C The rela- tionship between EHT survival (24 h post-collection, unless the ITN incorporated the insecticide chlorfenapyr, in which case 72-h survival was used) and the probability of being caught inside a control hut relative to a hut with any type of ITN (where anywhere above the grey dashed-line indicates more mosquitoes were caught in the control hut) (B), mosquitoes successfully feeding and surviving (C), or exiting the hut without feeding (D). The point size in B-D is proportional to the total number of mosquitoes collected in the trial and coloured according to hut design: East (red) or West (blue). Solid lines in A-D show the best-fit relationship whilst the lighter shaded area indicates 95% credible intervals for the best-fit curves. E-F The models from A-D were combined to summarise how the average probability that blood-feeding mosquitoes will be killed, exit without feeding, deterred from entering or successfully blood-feed, varies with bioassay survival. The relationship be- tween bioassay and EHT survival is highly uncertain, so both the logistic model (E) and the log-logistic model (F) are presented.\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/nash2021systematic/1_s20_S2667114X21000418_main-Figure3-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:12.17 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 3. Entomological outcomes as predicted by bioassay survival. A Comparison of the level of pyrethroid resistance as measured using a discriminating dose bioassay and the percentage of mosquitoes which enter a hut with a pyrethroid-only ITN and survive 24 h after being collected. Solid lines show the fitted relationship using either the logistic (green) or log-logistic (yellow) models. Vertical and horizontal lines show 95% confidence interval estimates for each data point. B-C The relationship between EHT survival (24 h post-collection, unless the ITN incorporated the insecticide chlorfenapyr, in which case 72-h survival was used) and the probability of being caught inside a control hut relative to a hut with any type of ITN (where anywhere above the grey dashed-line indicates more mosquitoes were caught in the control hut) (B), mosquitoes successfully feeding and surviving (C), or exiting the hut without feeding (D). The point size in B-D is proportional to the total number of mosquitoes collected in the trial and coloured according to hut design: East (red) or West (blue). Solid lines in A-D show the best-fit relationship whilst the lighter shaded area indicates 95% credible intervals for the best-fit curves. E-F The models from A-D were combined to summarise how the average probability that blood-feeding mosquitoes will be killed, exit without feeding, deterred from entering or successfully blood-feed, varies with bioassay survival. The relationship between bioassay and EHT survival is highly uncertain, so both the logistic model (E) and the log-logistic model (F) are presented.\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/nash2021systematic/figures/figure-8-7.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:12.31 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 4. Entomological outcomes as predicted by bioassay survival according to East and West African hut designs. A Comparison of the level of pyrethroid resistance as measured using a discriminating dose bioassay and the percentage of mosquitoes which enter a hut and survive 24 h. Solid lines show the fitted relationship for the East (red) and West (blue) African hut design assuming the log-logistic function. Comparable plots showing the logistic function are provided in Supplementary file 1: Fig. S7A. B-C The relationship between EHT survival (24 h post-collection, unless the ITN incorporated the insecticide chlorfenapyr, in which case 72-h survival was used) and the probability of being caught inside a control hut relative to a hut with any type of ITN (where anywhere above the grey dashed-line indicates more mosquitoes were caught in the control hut) (B), mosquitoes successfully feeding and surviving (C), or exiting the hut without feeding (D). The point size in B-D is proportional to the total number of mosquitoes collected in the trial and coloured according to hut design. Solid lines in A-D show the best-fit relationship whilst the lighter shaded area indicates 95% credible intervals for the best-fit curves. E-F The models from A-D were combined to summarise how the average probability that blood-feeding mosquitoes will be killed, exit without feeding, deterred from entering or successfully blood-feed, varies with bioassay survival for either East (E) or West (F) African hut design. Both (E-F) show the log-logistic model, see Supplementary file 1: Figs. S7B–C for models using the logistic function.\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/nash2021systematic/1_s20_S2667114X21000418_main-Figure4-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:12.41 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 4. Entomological outcomes as predicted by bioassay survival according to East and West African hut designs. A Comparison of the level of pyrethroid resistance as measured using a discriminating dose bioassay and the percentage of mosquitoes which enter a hut and survive 24 h. Solid lines show the fitted relationship for the East (red) and West (blue) African hut design assuming the log-logistic function. Comparable plots showing the logistic function are provided in Supplementary file 1: Fig. S7A. B-C The relationship between EHT survival (24 h post-collection, unless the ITN incorporated the insecticide chlorfenapyr, in which case 72-h survival was used) and the probability of being caught inside a control hut relative to a hut with any type of ITN (where anywhere above the grey dashed-line indicates more mosquitoes were caught in the control hut) (B), mosquitoes successfully feeding and surviving (C), or exiting the hut without feeding (D). The point size in B-D is proportional to the total number of mosquitoes collected in the trial and coloured according to hut design. Solid lines in A-D show the best-fit relationship whilst the lighter shaded area indicates 95% credible intervals for the best-fit curves. E-F The models from A-D were combined to summarise how the average probability that blood-feeding mosquitoes will be killed, exit without feeding, deterred from entering or successfully blood-feed, varies with bioassay survival for either East (E) or West (F) African hut design. Both (E-F) show the log-logistic model, see Supplementary file 1: Figs. S7B–C for models using the logistic function.\u001b[0m\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "nash2021systematic 6 tables 4 figures\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/menze2022experimental/figures/figure-4-5.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:12.53 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 2. Association between the CYP6P9a/b and the ability to survive exposure to Olyset nets after WHO tubes cone assays. (A) Tube assay CYP6P9a and mortality. Role of CYP6P9a in pyrethroid resistance with samples from the WHO tube. Distribution of the CYP6P9a genotypes according to resistance phenotypes. (B) Tube assay CYP6P9b and mortality. Role of CYP6P9b in pyrethroid resistance with samples from the WHO tube. Distribution of the CYP6P9b genotypes according to resistance phenotypes. (C) Cone assay CYP6P9a and mortality. Genotype distribution of CYP6P9a between alive and dead mosquitoes after exposure to Olyset with the cone test, showing the significant ability of mosquitoes carrying the RR genotype in order to survive compared to SS (RR vs. SS: p < 0.001). (D) Cone assay CYP6P9a and mortality allele. Allelic frequency of CYP6P9a between alive and dead mosquitoes after exposure to Olyset with the cone test, showing the significant ability of the CYP6P9a_R_-resistant mosquitoes to survive compared to their susceptible counterparts CYP6P9a_S. (E) Cone assay CYP6P9b and mortality. Genotype distribution of CYP6P9b between alive and dead mosquitoes after exposure to Olyset using the cone test, showing strong association (RR vs. SS: p < 0.001).\u001b[0m\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "accrombessi2023efficacy 8 tables 0 figures\n", - "syme2022pyrethroid 8 tables 0 figures\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1311: PydanticDeprecatedSince20: The `schema` method is deprecated; use `model_json_schema` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1135: PydanticDeprecatedSince20: The `parse_raw` method is deprecated; if your data is JSON use `model_validate_json`, otherwise load the data then use `model_validate` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1143: PydanticDeprecatedSince20: `load_str_bytes` is deprecated. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " obj = parse.load_str_bytes(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/menze2022experimental/pathogens_11_00638_v2-Figure2-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:13.04 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 2. Association between the CYP6P9a/b and the ability to survive exposure to Olyset nets after WHO tubes cone assays. (A) Tube assay CYP6P9a and mortality. Role of CYP6P9a in pyrethroid resistance with samples from the WHO tube. Distribution of the CYP6P9a genotypes according to resistance phenotypes. (B) Tube assay CYP6P9b and mortality. Role of CYP6P9b in pyrethroid resistance with samples from the WHO tube. Distribution of the CYP6P9b genotypes according to resistance phenotypes. (C) Cone assay CYP6P9a and mortality. Genotype distribution of CYP6P9a between alive and dead mosquitoes after exposure to Olyset with the cone test, showing the significant ability of mosquitoes carrying the RR genotype in order to survive compared to SS (RR vs. SS: p < 0.001). (D) Cone assay CYP6P9a and mortality allele. Allelic frequency of CYP6P9a between alive and dead mosquitoes after exposure to Olyset with the cone test, showing the significant ability of the CYP6P9a_R_-resistant mosquitoes to survive compared to their susceptible counterparts CYP6P9a_S. (E) Cone assay CYP6P9b and mortality. Genotype distribution of CYP6P9b between\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/menze2022experimental/figures/figure-5-6.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:13.09 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 3. Association between the CYP6P9a/b and the ability to survive exposure to Olyset Plus nets after cone assays. (A) Genotype distribution of CYP6P9a between alive and dead mosquitoes after exposure to Olyset Plus with the cone test, showing the significant ability of the mosquitoes to carry the RR genotype to survive compared to SS (p < 0.001). (B) Allelic frequency of CYP6P9a between alive and dead mosquitoes after exposure to Olyset Plus with the cone test, showing the significant ability of the CYP6P9a_R_-resistant mosquitoes to survive compared to their susceptible counterparts CYP6P9a_S. (C) Genotype distribution of CYP6P9b between alive and dead mosquitoes after exposure to Olyset Plus using the cone test, showing the significant ability of the mosquitoes carrying the RR genotype to survive compared to SS (p < 0.001).\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/menze2022experimental/pathogens_11_00638_v2-Figure3-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:13.13 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 3. Association between the CYP6P9a/b and the ability to survive exposure to Olyset Plus nets after cone assays. (A) Genotype distribution of CYP6P9a between alive and dead mosquitoes after exposure to Olyset Plus with the cone test, showing the significant ability of the mosquitoes to carry the RR genotype to survive compared to SS (p < 0.001). (B) Allelic frequency of CYP6P9a between alive and dead mosquitoes after exposure to Olyset Plus with the cone test, showing the significant ability of the CYP6P9a_R_-resistant mosquitoes to survive compared to their susceptible counterparts CYP6P9a_S. (C) Genotype distribution of CYP6P9b between alive and dead mosquitoes after\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/menze2022experimental/pathogens_11_00638_v2-Figure4-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:13.23 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 4. Association between 6.5 kb SV and the ability to survive against exposure to Olyset and Olyset Plus nets using cone assays. (A) Distribution of 6.5 kb SV genotypes between dead and alive mosquitoes after exposure to Olyset, showing that 6.5 kb SV_R allows mosquitoes to survive significantly better against exposure to this net. (B) Allelic frequency of 6.5 kb SV between alive and dead mosquitoes after exposure to Olyset with the cone test, showing the significant ability of the 6.5 kb SV _R_-resistant mosquitoes to survive compared to their susceptible counterparts 6.5 kb SV _S. (C) Distribution of 6.5 kb SV genotypes between dead and alive mosquitoes after exposure to the Olyset Plus net. (D) Allelic frequency of 6.5 kb SV between alive and dead mosquitoes after exposure to Olyset Plus with the cone test, showing the significant ability of the 6.5 kb SV _R_-resistant mosquitoes to survive compared to their susceptible counterparts 6.5 kb SV _S.\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/menze2022experimental/figures/figure-7-8.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:13.30 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 5. Impact of both CYP6P9a and CYP6P9b on the efficacy of bed nets in the experimental hut trial. (A) Genotype distribution of CYP6P9a between alive and dead mosquitoes after exposure to Olyset, showing strong association (RR vs. SS: p < 0.001). (B) Allelic frequency of CYP6P9a between alive and dead mosquitoes after exposure to Olyset with experimental hut trial, showing the significant ability of the CYP6P9a_R_-resistant mosquitoes to survive compared to their susceptible counterparts CYP6P9a_S. (C) Association between CYP6P9a and ability to blood-feed when exposed to Olyset. The CYP6P9a-R allele increases the strength of resistant mosquitoes by taking a blood meal in contrast to the susceptible ones when exposed to Olyset net. (D) Association between CYP6P9b and ability to survive exposure to Olyset in the experimental hut trial. (E) Allelic frequency of CYP6P9b between alive and dead mosquitoes after exposure to Olyset with the experimental hut trial, showing the significant ability of the CYP6P9b_R_-resistant mosquitoes to survive compared to their susceptible counterparts CYP6P9b_S. (F) Association between duplicated CYP6P9b gene and ability to blood-feed when exposed to Olyset in the experimental hut trial. The CYP6P9b-R allele increases the strength of resistant mosquitoes by taking a blood meal in contrast to the susceptible ones when exposed to Olyset.\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/menze2022experimental/pathogens_11_00638_v2-Figure5-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:13.36 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 5. Impact of both CYP6P9a and CYP6P9b on the efficacy of bed nets in the experimental hut trial. (A) Genotype distribution of CYP6P9a between alive and dead mosquitoes after exposure to Olyset, showing strong association (RR vs. SS: p < 0.001). (B) Allelic frequency of CYP6P9a between alive and dead mosquitoes after exposure to Olyset with experimental hut trial, showing the significant ability of the CYP6P9a_R_-resistant mosquitoes to survive compared to their susceptible counterparts CYP6P9a_S. (C) Association between CYP6P9a and ability to blood-feed when exposed to Olyset. The CYP6P9a-R allele increases the strength of resistant mosquitoes by taking a blood meal in contrast to the susceptible ones when exposed to Olyset net. (D) Association between CYP6P9b and ability to survive exposure to Olyset in the experimental hut trial. (E) Allelic frequency of CYP6P9b between alive and dead mosquitoes after exposure to Olyset with the experimental hut trial, showing the significant ability of the CYP6P9b_R_-resistant mosquitoes to survive compared to their susceptible counterparts CYP6P9b_S. (F) Association between duplicated CYP6P9b gene and ability to blood-feed when exposed to Olyset in the experimental hut trial. The CYP6P9b-R allele increases the strength of resistant mosquitoes by taking a blood meal in contrast to the susceptible ones when exposed to Olyset.\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/menze2022experimental/figures/figure-9-9.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:13.44 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 6. Impact of the 6.5 kb SV-based metabolic resistance on bed nets’ efficacy in experimental hut trials. (A) Distribution of 6.5 kb SV genotypes between dead and alive mosquitoes after expo- sure to Olyset net, showing that 6.5 kb SV _R allows mosquitoes to survive significant better after exposure to this insecticide-treated net. (B) Allelic frequency of 6.5 kb SV between alive and dead mosquitoes after exposure to Olyset with experimental hut trial, showing the significant ability of the 6.5 kb SV _R_-resistant mosquitoes to survive compared to their susceptible counterparts 6.5 kb SV _S. (C) Distribution of 6.5 kb SV genotypes between the blood fed (BF) and unfed (UF) mosquitoes after exposure to Olyset (OL), showing that 6.5 kb SV_R significantly allows mosquitoes to blood-feed in the presence of this insecticide-treated net. (D) Allelic frequency of 6.5 kb SV between alive and dead mosquitoes after exposure to Olyset with the experimental hut trial, showing the ability of the 6.5 kb SV _R_-resistant mosquitoes to blood-feed significantly better compared to their susceptible counterparts\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/menze2022experimental/pathogens_11_00638_v2-Figure6-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:13.50 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 6. Impact of the 6.5 kb SV-based metabolic resistance on bed nets’ efficacy in experimental hut trials. (A) Distribution of 6.5 kb SV genotypes between dead and alive mosquitoes after exposure to Olyset net, showing that 6.5 kb SV _R allows mosquitoes to survive significant better after exposure to this insecticide-treated net. (B) Allelic frequency of 6.5 kb SV between alive and dead mosquitoes after exposure to Olyset with experimental hut trial, showing the significant ability of the 6.5 kb SV _R_-resistant mosquitoes to survive compared to their susceptible counterparts 6.5 kb SV _S. (C) Distribution of 6.5 kb SV genotypes between the blood fed (BF) and unfed (UF) mosquitoes after exposure to Olyset (OL), showing that 6.5 kb SV_R significantly allows mosquitoes to bloodfeed in the presence of this insecticide-treated net. (D) Allelic frequency of 6.5 kb SV between alive and dead mosquitoes after exposure to Olyset with the experimental hut trial, showing the ability of the 6.5 kb SV _R_-resistant mosquitoes to blood-feed significantly better compared to their susceptible counterparts 6.5 kb SV _S. (E) Distribution of 6.5 kb SV genotypes between blood-fed (BF) and unfed (UF) mosquitoes after exposure to Olyset Plus, showing that 6.5 kb SV_R significantly allows mosquitoes to blood-feed in the presence of this insecticide-treated net. (F) Allelic frequency\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/gebremariam2021evaluation/figures/figure-3-3.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:14.00 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 1. Experimental hut design of the study.\u001b[0m\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "menze2022experimental 1 tables 5 figures\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1311: PydanticDeprecatedSince20: The `schema` method is deprecated; use `model_json_schema` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1135: PydanticDeprecatedSince20: The `parse_raw` method is deprecated; if your data is JSON use `model_validate_json`, otherwise load the data then use `model_validate` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1143: PydanticDeprecatedSince20: `load_str_bytes` is deprecated. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " obj = parse.load_str_bytes(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/gebremariam2021evaluation/gebremariam_et_al_2021_evaluation_of_long_lasting_insecticidal_nets_duranetr_under_laboratory_and_semi_field-Figure1-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:14.03 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 1. Experimental hut design of the study.\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/gebremariam2021evaluation/figures/figure-4-4.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:14.06 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 2. Mean percent knockdown and mortality of An. arabiensis exposed in 3 minutes cone bioassay to DuraNet®, Jimma, and southwestern Ethiopia.\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/gebremariam2021evaluation/gebremariam_et_al_2021_evaluation_of_long_lasting_insecticidal_nets_duranetr_under_laboratory_and_semi_field-Figure2-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:14.17 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 2. Mean percent knockdown and mortality of An. arabiensis exposed in 3 minutes cone bioassay to DuraNet®, Jimma, and\u001b[0m\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "gebremariam2021evaluation 3 tables 2 figures\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/briet2020physical/figures/figure-5-7.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:14.22 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 1 Causal diagram for factors determining the effects of LLINs on malaria transmission. Solid lines indicate the main causal relationships between the measured quantities; dashed lines indicate which factors impact malaria transmission (via relationships estimated from experimental hut data and captured in the mathematical model)\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1311: PydanticDeprecatedSince20: The `schema` method is deprecated; use `model_json_schema` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1135: PydanticDeprecatedSince20: The `parse_raw` method is deprecated; if your data is JSON use `model_validate_json`, otherwise load the data then use `model_validate` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1143: PydanticDeprecatedSince20: `load_str_bytes` is deprecated. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " obj = parse.load_str_bytes(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/briet2020physical/figures/figure-7-8.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:14.27 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 2 Survival (1‑attrition) (a), use of nets currently in the household (b), proportion of original cohort of nets in use (c), mean of the natural log of estimated hole area (d), reduction in vectorial capacity of pyrethroid susceptible mosquitoes (e), and reduction in vectorial capacity of pyrethroid resistant mosquitoes (f), by country\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/briet2020physical/Attrition_physical_integrity_and_insecticidal_activity_of_long_lasting__insecti-Figure2-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:14.40 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 2 Survival (1‑attrition) (a), use of nets currently in the household (b), proportion of original cohort of nets in use (c), mean of the natural log of estimated hole area (d), reduction in vectorial capacity of pyrethroid susceptible mosquitoes (e), and reduction in vectorial capacity of pyrethroid resistant mosquitoes (f), by country\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/briet2020physical/figures/figure-8-9.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:14.51 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 3 Persistence of active ingredients by LLIN brand\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/briet2020physical/Attrition_physical_integrity_and_insecticidal_activity_of_long_lasting__insecti-Figure4-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:15.00 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 4 Lethality in cone tests and calibration of active ingredient content. The lethality and calibration curves are shown only for four specific LLIN brands. The lines for the other LLIN brands are very close to that for PermaNet 2.0\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/briet2020physical/figures/figure-11-11.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:15.05 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 5 Predicted entomological effects of holed and intact LLINs. a Pyrethroid resistant mosquitoes. b Pyrethroid sensitive mosquitoes. The vertical black line corresponds to the target active agent content for PermaNet 2.0. The continuous lines correspond to intact LLINs and the dashed lines to LLINs with a holed area of 50 cm2. The effect size, on the vertical axis is the proportion by which availability of humans to mosquitoes is reduced, or killing of mosquitoes increased, when the LLIN is in use\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/ibrahim2020exploring/figures/figure-3-3.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:15.10 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 1. A map showing the sampling locality (Gajerar Giwa) in the Sahel of northern Nigeria.\u001b[0m\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "briet2020physical 10 tables 5 figures\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1311: PydanticDeprecatedSince20: The `schema` method is deprecated; use `model_json_schema` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1135: PydanticDeprecatedSince20: The `parse_raw` method is deprecated; if your data is JSON use `model_validate_json`, otherwise load the data then use `model_validate` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1143: PydanticDeprecatedSince20: `load_str_bytes` is deprecated. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " obj = parse.load_str_bytes(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/ibrahim2020exploring/genes_11_00454_pdf-Figure1-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:15.12 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 1. ap sho ing the sa pling locality ( ajerar i a) in the Sahel of northern igeria.\u001b[0m\n", - "\u001b[32m[0621 00:15.17 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 1. A map showing the sampling locality (Gajerar Giwa) in the Sahel of northern Nigeria.\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/ibrahim2020exploring/figures/figure-8-4.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:15.20 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 2. Resistance profiles of F1 An. funestus females. (a). Results of WHO susceptibility bioassays with various insecticides. Results are the average of percentage mortalities from four replicates each ± standard error of mean (SEM); (b). Results of the cone bioassays with PermaNet 3.0 (side and roof), PermaNet Net. Results are the average of percentage Plus and Olyset mortalities ± SEM of five replicates; (c). Effect of pre-exposure of synergist piperonylbutoxide (PBO) against permethrin and diethyl maleate (DEM) against DDT (dichlorodiphenyltrichloroethane). Results are the average of percentage mortalities from four replicates each ± SEM. **** = statistically significant at P < 0.0001, in a two-tailed Chi-square test between results from synergised bioassay and conventional bioassays; (d). Time-course bioassay for LT50 estimation/test for strength of permethrin resistance.\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/ibrahim2020exploring/genes_11_00454_pdf-Figure2-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:15.27 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 2. Resistance profiles of F1 An. funestus females. (a). Results of WHO susceptibility bioassays with various insecticides. Results are the average of percentage mortalities from four replicates each ± standard error of mean (SEM); (b). Results of the cone bioassays with PermaNet®3.0 (side and roof), PermaNet®2.0, Olyset®Plus and Olyset®Net. Results are the average of percentage mortalities ± SEM of five replicates; (c). Effect of pre-exposure of synergist piperonylbutoxide (PBO) against permethrin and diethyl aleate (DEM) against DDT (dichlorodiphenyltrichloroethane). Results are the verage of percent g mortaliti s from four replicate each ± SEM. **** = statistically significant at P < 0 0001, in a two-tailed Chi-square test between results fr m syn rgised b o ssay and conventional bioassays; (d). Time-course bioassay for LT50 estimation/test for strength of permethrin resistance.\u001b[0m\n", - "\u001b[32m[0621 00:15.33 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 2. Resistance profiles of F1 An. funestus females. (a). Results of WHO susceptibility bioassays with various insecticides. Results are the average of percentage mortalities from four replicates each ± standard error of mean (SEM); (b). Results of the cone bioassays with PermaNet® 3.0 (side and roof), PermaNet® 2.0, Olyset® Plus and Olyset® Net. Results are the average of percentage mortalities ± SEM of five replicates; (c). Effect of pre-exposure of synergist piperonylbutoxide (PBO) against permethrin and diethyl maleate (DEM) against DDT (dichlorodiphenyltrichloroethane). Results are the average of percentage mortalities from four replicates each ± SEM. **** = statistically significant at P < 0.0001, in a two-tailed Chi-square test between results from synergised bioassay and conventional bioassays; (d). Time-course bioassay for LT50 estimation/test for strength of permethrin resistance.\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/ibrahim2020exploring/genes_11_00454_pdf-Figure3-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:15.40 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 3. enotyping of L119F STe2 utation. (a): distribution of the 119F utation a ong the 44 rando ly selected F0 fe ales; (b): the 119F utation genotype for 12 each of T-alive and -dead F1 fe ales, o ozygote resistant, RS = heterozygote resistant, and SS = susceptible; (c): agarose-gel s i t e 119 e t e istri ti fr allele-s ecific ( - ), t a el: 12 -ali e 1 f l s ( , , 6, and 8–12 are R , 1, 4, 5 and 7 are RS), bott m panel: 12 DDT-dea F1 females (13, 4, 5, 7, 9, 21– 4 are RS, 16 and 18 are SS, and 20 failed).\u001b[0m\n", - "\u001b[32m[0621 00:15.46 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Figure 3. Genotyping of L119F GSTe2 mutation. (a): distribution of the 119F mutation among the 44 randomly selected F0 females; (b): the 119F mutation genotype for 12 each of DDT-alive and -dead F1 females, RR = homozygote resistant, RS = heterozygote resistant, and SS = susceptible; c: agarose-gel showing the L119F genotype distribution from allele-specific PCR (AS-PCR), top panel: 12 DDT-alive F1 females (2, 3, 6, and 8–12 are RR, 1, 4, 5 and 7 are RS), bottom panel: 12 DDT-dead F1 females (13, 14, 15, 17, 19, 21–24 are RS, 16 and 18 are SS, and 20 failed).\u001b[0m\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "ibrahim2020exploring 0 tables 6 figures\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/mieguim2021insights/figures/figure-4-7.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:15.52 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 1. Seasonal relative abundance of Anopheles mosquito species in Mvoua. S1 short dry season, S2 long rainy season, S3 long dry season, S4 short rainy season\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1311: PydanticDeprecatedSince20: The `schema` method is deprecated; use `model_json_schema` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1135: PydanticDeprecatedSince20: The `parse_raw` method is deprecated; if your data is JSON use `model_validate_json`, otherwise load the data then use `model_validate` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " warnings.warn(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/pydantic/main.py:1143: PydanticDeprecatedSince20: `load_str_bytes` is deprecated. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.7/migration/\n", - " obj = parse.load_str_bytes(\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/mieguim2021insights/figures/figure-5-8.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:15.57 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 2 Seasonal variation in human biting behavior of malaria vectors in Mvoua from August 2018 to April 2019. In Inside (homes), Out outside, S1–S4 as defined in Fig. 1\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/pdffigure2/mieguim2021insights/Insights_into_factors_sustaining_persistence_of_high_malaria_transmission_in__fo-Figure2-1.png'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:16.05 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 2 Seasonal variation in human biting behavior of malaria vectors in Mvoua from August 2018 to April 2019. In Inside (homes), Out outside, S1–S4 as defined in Fig. 1\u001b[0m\n", - "/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/core/readers/file/base.py:535: ResourceWarning: unclosed file <_io.BufferedReader name='/Users/jonnytr/Projects/ITN-recal-data-extraction/data/preprocessing/unstructured/mieguim2021insights/figures/figure-6-9.jpg'>\n", - " docs = reader.load_data(input_file, **kwargs)\n", - "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n", - "\u001b[32m[0621 00:16.12 @segment.py:251]\u001b[0m \u001b[32mINF\u001b[0m \u001b[97mExtracting figure table: Fig. 3 Anopheles funestus and An. gambiae (s.l.) night‑biting cycle in Mvoua from August 2018 to April 2019\u001b[0m\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "mieguim2021insights 4 tables 3 figures\n" - ] - }, - { - "data": { - "text/plain": [ - "285" - ] - }, - "execution_count": 26, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "from llama_index.core import global_handler\n", - "records = []\n", - "\n", - "for ref, paper in tqdm(papers_subset.iterrows()):\n", - " doc = remote_dataset.add_document(ex.Document.from_file(\n", - " paper.file_path, reference=ref, pmid=paper.pmid, doi=paper.doi, id=paper.get('id')))\n", - " \n", - " metadata = {\"reference\": paper.name}\n", - " if isinstance(doc.pmid, (str, int)) and doc.pmid != 'nan':\n", - " metadata['pmid'] = doc.pmid\n", - " elif doc.id:\n", - " metadata['doc_id'] = str(doc.id)\n", - "\n", - " # Table segments\n", - " table_alignments = merge_extractions(\n", - " deepdoctection=tables[ref]['deepdoctection'],\n", - " unstructured=tables[ref]['unstructured'],\n", - " llmsherpa=tables[ref]['llmsherpa'],\n", - " nougat=tables[ref]['nougat'],\n", - " pdffigures2=tables[ref]['pdffigures2'],\n", - " )\n", - " table_records = table_alignments.to_records(dataset=remote_dataset, metadata=metadata)\n", - " records.extend(table_records)\n", - "\n", - " # Figure segments\n", - " ### comment out langfuse code \n", - " # global_handler.set_trace_params(\n", - " # name=f\"preprocess-{ref}\",\n", - " # session_id=ref,\n", - " # user_id='jonnytr',\n", - " # )\n", - " figure_segments = merge_extractions(\n", - " unstructured=figures[ref]['unstructured'],\n", - " pdffigures2=figures[ref]['pdffigures2'],\n", - " )\n", - " for alignment in figure_segments.items:\n", - " for source, segment in alignment.extractions.items():\n", - " if os.path.exists(segment.image) and segment.header:\n", - " _figure_extraction_response = segment.extract_html_table()\n", - " \n", - " figure_records = figure_segments.to_records(dataset=remote_dataset, metadata=metadata)\n", - " records.extend(figure_records)\n", - "\n", - " print(paper.name, len(table_records), 'tables', len(figure_records), 'figures')\n", - "\n", - "records = [r for r in records if r is not None]\n", - "len(records)" - ] - }, - { - "cell_type": "code", - "execution_count": 29, - "id": "638c5a8a-8815-4d2d-aed7-1056ea1a284d", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "data": { - "text/html": [ - "
Pushing records to Extralit... ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━  90% 0:00:04\n",
-                            "
\n" - ], - "text/plain": [ - "Pushing records to Extralit... \u001b[38;2;249;38;114m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m\u001b[38;2;249;38;114m╸\u001b[0m\u001b[38;5;237m━━━━\u001b[0m \u001b[35m 90%\u001b[0m \u001b[36m0:00:04\u001b[0m\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
\n"
-                        ],
-                        "text/plain": []
-                    },
-                    "metadata": {},
-                    "output_type": "display_data"
-                },
-                {
-                    "data": {
-                        "text/html": [
-                            "
\n",
-                            "
\n" - ], - "text/plain": [ - "\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "remote_dataset.add_records(records)" - ] - }, - { - "cell_type": "markdown", - "id": "f922936f-3ac0-4111-9049-d7c57945964b", - "metadata": {}, - "source": [ - "## Update Records" - ] - }, - { - "cell_type": "code", - "execution_count": 121, - "id": "43444fd9-a88c-40ec-8c2d-8fe2abd21bf2", - "metadata": { - "editable": true, - "scrolled": true, - "slideshow": { - "slide_type": "" - }, - "tags": [] - }, - "outputs": [ - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "24b6e0660e2842d0982fcf84bc77a4f8", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/840 [00:00╭─────────────────────────────── Traceback (most recent call last) ────────────────────────────────╮\n", - " in <module>:30 \n", - " \n", - " 27 │ │ │ ] \n", - " 28 │ │ ) \n", - " 29 │ │ \n", - " 30 │ │ nodes = vector_store.get_nodes(filters=filters) \n", - " 31 │ │ if nodes: \n", - " 32 │ │ │ # record.external_id = nodes[0].id_ \n", - " 33 │ │ │ print('record.external_id', nodes[0].id_ == record.id, len(nodes), header) \n", - " \n", - " /Users/jonnytr/Projects/extralit/src/extralit/extraction/vector_store.py:107 in get_nodes \n", - " \n", - " 104 def get_nodes(self, node_ids: Optional[List[str]] = None, filters: Optional[Metadata \n", - " 105 │ │ │ -> List[BaseNode]: \n", - " 106 │ │ collection = self._client.collections.get(self.index_name) \n", - " 107 │ │ all_properties = get_all_properties(self._client, self.index_name) \n", - " 108 │ │ \n", - " 109 │ │ if filters is not None: \n", - " 110 │ │ │ filters = _to_weaviate_filter(filters) \n", - " \n", - " /Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/vector_stores/weaviate/utils. \n", - " py:96 in get_all_properties \n", - " \n", - " 93 if not client.collections.exists(class_name): \n", - " 94 │ │ raise ValueError(f\"{class_name} schema does not exist.\") \n", - " 95 \n", - " 96 properties = client.collections.get(class_name).config.get().properties \n", - " 97 return [p.name for p in properties] \n", - " 98 \n", - " 99 \n", - " \n", - " /Users/jonnytr/micromamba/lib/python3.10/site-packages/weaviate/collections/config.py:81 in get \n", - " \n", - " 78 │ │ │ │ If Weaviate reports a non-OK status. \n", - " 79 │ │ \"\"\" \n", - " 80 │ │ _validate_input([_ValidateArgument(expected=[bool], name=\"simple\", value=simple) \n", - " 81 │ │ schema = self.__get() \n", - " 82 │ │ if simple: \n", - " 83 │ │ │ return _collection_config_simple_from_json(schema) \n", - " 84 │ │ return _collection_config_from_json(schema) \n", - " \n", - " /Users/jonnytr/micromamba/lib/python3.10/site-packages/weaviate/collections/config.py:49 in \n", - " __get \n", - " \n", - " 46 │ │ self.__tenant = tenant \n", - " 47 \n", - " 48 def __get(self) -> Dict[str, Any]: \n", - " 49 │ │ response = self.__connection.get( \n", - " 50 │ │ │ path=f\"/schema/{self._name}\", \n", - " 51 │ │ │ error_msg=\"Collection configuration could not be retrieved.\", \n", - " 52 │ │ │ status_codes=_ExpectedStatusCodes(ok_in=200, error=\"Get collection configura \n", - " \n", - " /Users/jonnytr/micromamba/lib/python3.10/site-packages/weaviate/connect/v4.py:561 in get \n", - " \n", - " 558 │ │ \n", - " 559 │ │ request_url = self.url + self._api_version_path + path \n", - " 560 │ │ \n", - " 561 │ │ return self.__send( \n", - " 562 │ │ │ \"GET\", url=request_url, params=params, error_msg=error_msg, status_codes=sta \n", - " 563 │ │ ) \n", - " 564 \n", - " \n", - " /Users/jonnytr/micromamba/lib/python3.10/site-packages/weaviate/connect/v4.py:449 in __send \n", - " \n", - " 446 │ │ │ │ params=params, \n", - " 447 │ │ │ │ headers=self.__get_latest_headers(), \n", - " 448 │ │ │ ) \n", - " 449 │ │ │ res = self._client.send(req) \n", - " 450 │ │ │ if status_codes is not None and res.status_code not in status_codes.ok: \n", - " 451 │ │ │ │ raise UnexpectedStatusCodeError(error_msg, response=res) \n", - " 452 │ │ │ return cast(Response, res) \n", - " \n", - " /Users/jonnytr/micromamba/lib/python3.10/site-packages/httpx/_client.py:914 in send \n", - " \n", - " 911 │ │ \n", - " 912 │ │ auth = self._build_request_auth(request, auth) \n", - " 913 │ │ \n", - " 914 │ │ response = self._send_handling_auth( \n", - " 915 │ │ │ request, \n", - " 916 │ │ │ auth=auth, \n", - " 917 │ │ │ follow_redirects=follow_redirects, \n", - " \n", - " /Users/jonnytr/micromamba/lib/python3.10/site-packages/httpx/_client.py:942 in \n", - " _send_handling_auth \n", - " \n", - " 939 │ │ │ request = next(auth_flow) \n", - " 940 │ │ │ \n", - " 941 │ │ │ while True: \n", - " 942 │ │ │ │ response = self._send_handling_redirects( \n", - " 943 │ │ │ │ │ request, \n", - " 944 │ │ │ │ │ follow_redirects=follow_redirects, \n", - " 945 │ │ │ │ │ history=history, \n", - " \n", - " /Users/jonnytr/micromamba/lib/python3.10/site-packages/httpx/_client.py:979 in \n", - " _send_handling_redirects \n", - " \n", - " 976 │ │ │ for hook in self._event_hooks[\"request\"]: \n", - " 977 │ │ │ │ hook(request) \n", - " 978 │ │ │ \n", - " 979 │ │ │ response = self._send_single_request(request) \n", - " 980 │ │ │ try: \n", - " 981 │ │ │ │ for hook in self._event_hooks[\"response\"]: \n", - " 982 │ │ │ │ │ hook(response) \n", - " \n", - " /Users/jonnytr/micromamba/lib/python3.10/site-packages/httpx/_client.py:1015 in \n", - " _send_single_request \n", - " \n", - " 1012 │ │ │ ) \n", - " 1013 │ │ \n", - " 1014 │ │ with request_context(request=request): \n", - " 1015 │ │ │ response = transport.handle_request(request) \n", - " 1016 │ │ \n", - " 1017 │ │ assert isinstance(response.stream, SyncByteStream) \n", - " 1018 \n", - " \n", - " /Users/jonnytr/micromamba/lib/python3.10/site-packages/httpx/_transports/default.py:233 in \n", - " handle_request \n", - " \n", - " 230 │ │ │ extensions=request.extensions, \n", - " 231 │ │ ) \n", - " 232 │ │ with map_httpcore_exceptions(): \n", - " 233 │ │ │ resp = self._pool.handle_request(req) \n", - " 234 │ │ \n", - " 235 │ │ assert isinstance(resp.stream, typing.Iterable) \n", - " 236 \n", - " \n", - " /Users/jonnytr/micromamba/lib/python3.10/site-packages/httpcore/_sync/connection_pool.py:216 in \n", - " handle_request \n", - " \n", - " 213 │ │ │ │ closing = self._assign_requests_to_connections() \n", - " 214 │ │ │ \n", - " 215 │ │ │ self._close_connections(closing) \n", - " 216 │ │ │ raise exc from None \n", - " 217 │ │ \n", - " 218 │ │ # Return the response. Note that in this case we still have to manage \n", - " 219 │ │ # the point at which the response is closed. \n", - " \n", - " /Users/jonnytr/micromamba/lib/python3.10/site-packages/httpcore/_sync/connection_pool.py:196 in \n", - " handle_request \n", - " \n", - " 193 │ │ │ │ \n", - " 194 │ │ │ │ try: \n", - " 195 │ │ │ │ │ # Send the request on the assigned connection. \n", - " 196 │ │ │ │ │ response = connection.handle_request( \n", - " 197 │ │ │ │ │ │ pool_request.request \n", - " 198 │ │ │ │ │ ) \n", - " 199 │ │ │ │ except ConnectionNotAvailable: \n", - " \n", - " /Users/jonnytr/micromamba/lib/python3.10/site-packages/httpcore/_sync/connection.py:101 in \n", - " handle_request \n", - " \n", - " 98 │ │ │ self._connect_failed = True \n", - " 99 │ │ │ raise exc \n", - " 100 │ │ \n", - " 101 │ │ return self._connection.handle_request(request) \n", - " 102 \n", - " 103 def _connect(self, request: Request) -> NetworkStream: \n", - " 104 │ │ timeouts = request.extensions.get(\"timeout\", {}) \n", - " \n", - " /Users/jonnytr/micromamba/lib/python3.10/site-packages/httpcore/_sync/http11.py:143 in \n", - " handle_request \n", - " \n", - " 140 │ │ │ with ShieldCancellation(): \n", - " 141 │ │ │ │ with Trace(\"response_closed\", logger, request) as trace: \n", - " 142 │ │ │ │ │ self._response_closed() \n", - " 143 │ │ │ raise exc \n", - " 144 \n", - " 145 # Sending the request... \n", - " 146 \n", - " \n", - " /Users/jonnytr/micromamba/lib/python3.10/site-packages/httpcore/_sync/http11.py:113 in \n", - " handle_request \n", - " \n", - " 110 │ │ │ │ │ reason_phrase, \n", - " 111 │ │ │ │ │ headers, \n", - " 112 │ │ │ │ │ trailing_data, \n", - " 113 │ │ │ │ ) = self._receive_response_headers(**kwargs) \n", - " 114 │ │ │ │ trace.return_value = ( \n", - " 115 │ │ │ │ │ http_version, \n", - " 116 │ │ │ │ │ status, \n", - " \n", - " /Users/jonnytr/micromamba/lib/python3.10/site-packages/httpcore/_sync/http11.py:186 in \n", - " _receive_response_headers \n", - " \n", - " 183 │ │ timeout = timeouts.get(\"read\", None) \n", - " 184 │ │ \n", - " 185 │ │ while True: \n", - " 186 │ │ │ event = self._receive_event(timeout=timeout) \n", - " 187 │ │ │ if isinstance(event, h11.Response): \n", - " 188 │ │ │ │ break \n", - " 189 │ │ │ if ( \n", - " \n", - " /Users/jonnytr/micromamba/lib/python3.10/site-packages/httpcore/_sync/http11.py:224 in \n", - " _receive_event \n", - " \n", - " 221 │ │ │ │ event = self._h11_state.next_event() \n", - " 222 │ │ │ \n", - " 223 │ │ │ if event is h11.NEED_DATA: \n", - " 224 │ │ │ │ data = self._network_stream.read( \n", - " 225 │ │ │ │ │ self.READ_NUM_BYTES, timeout=timeout \n", - " 226 │ │ │ │ ) \n", - " 227 \n", - " \n", - " /Users/jonnytr/micromamba/lib/python3.10/site-packages/httpcore/_backends/sync.py:126 in read \n", - " \n", - " 123 │ │ exc_map: ExceptionMapping = {socket.timeout: ReadTimeout, OSError: ReadError} \n", - " 124 │ │ with map_exceptions(exc_map): \n", - " 125 │ │ │ self._sock.settimeout(timeout) \n", - " 126 │ │ │ return self._sock.recv(max_bytes) \n", - " 127 \n", - " 128 def write(self, buffer: bytes, timeout: typing.Optional[float] = None) -> None: \n", - " 129 │ │ if not buffer: \n", - "╰──────────────────────────────────────────────────────────────────────────────────────────────────╯\n", - "KeyboardInterrupt\n", - "\n" - ], - "text/plain": [ - "\u001b[31m╭─\u001b[0m\u001b[31m──────────────────────────────\u001b[0m\u001b[31m \u001b[0m\u001b[1;31mTraceback \u001b[0m\u001b[1;2;31m(most recent call last)\u001b[0m\u001b[31m \u001b[0m\u001b[31m───────────────────────────────\u001b[0m\u001b[31m─╮\u001b[0m\n", - "\u001b[31m│\u001b[0m in \u001b[92m\u001b[0m:\u001b[94m30\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m27 \u001b[0m\u001b[2m│ │ │ \u001b[0m] \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m28 \u001b[0m\u001b[2m│ │ \u001b[0m) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m29 \u001b[0m\u001b[2m│ │ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m30 \u001b[2m│ │ \u001b[0mnodes = vector_store.get_nodes(filters=filters) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m31 \u001b[0m\u001b[2m│ │ \u001b[0m\u001b[94mif\u001b[0m nodes: \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m32 \u001b[0m\u001b[2m│ │ │ \u001b[0m\u001b[2m# record.external_id = nodes[0].id_\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m33 \u001b[0m\u001b[2m│ │ │ \u001b[0m\u001b[96mprint\u001b[0m(\u001b[33m'\u001b[0m\u001b[33mrecord.external_id\u001b[0m\u001b[33m'\u001b[0m, nodes[\u001b[94m0\u001b[0m].id_ == record.id, \u001b[96mlen\u001b[0m(nodes), header) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2;33m/Users/jonnytr/Projects/extralit/src/extralit/extraction/\u001b[0m\u001b[1;33mvector_store.py\u001b[0m:\u001b[94m107\u001b[0m in \u001b[92mget_nodes\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m104 \u001b[0m\u001b[2m│ \u001b[0m\u001b[94mdef\u001b[0m \u001b[92mget_nodes\u001b[0m(\u001b[96mself\u001b[0m, node_ids: Optional[List[\u001b[96mstr\u001b[0m]] = \u001b[94mNone\u001b[0m, filters: Optional[Metadata \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m105 \u001b[0m\u001b[2m│ │ │ \u001b[0m-> List[BaseNode]: \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m106 \u001b[0m\u001b[2m│ │ \u001b[0mcollection = \u001b[96mself\u001b[0m._client.collections.get(\u001b[96mself\u001b[0m.index_name) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m107 \u001b[2m│ │ \u001b[0mall_properties = get_all_properties(\u001b[96mself\u001b[0m._client, \u001b[96mself\u001b[0m.index_name) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m108 \u001b[0m\u001b[2m│ │ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m109 \u001b[0m\u001b[2m│ │ \u001b[0m\u001b[94mif\u001b[0m filters \u001b[95mis\u001b[0m \u001b[95mnot\u001b[0m \u001b[94mNone\u001b[0m: \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m110 \u001b[0m\u001b[2m│ │ │ \u001b[0mfilters = _to_weaviate_filter(filters) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2;33m/Users/jonnytr/micromamba/lib/python3.10/site-packages/llama_index/vector_stores/weaviate/\u001b[0m\u001b[1;33mutils.\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[1;33mpy\u001b[0m:\u001b[94m96\u001b[0m in \u001b[92mget_all_properties\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 93 \u001b[0m\u001b[2m│ \u001b[0m\u001b[94mif\u001b[0m \u001b[95mnot\u001b[0m client.collections.exists(class_name): \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 94 \u001b[0m\u001b[2m│ │ \u001b[0m\u001b[94mraise\u001b[0m \u001b[96mValueError\u001b[0m(\u001b[33mf\u001b[0m\u001b[33m\"\u001b[0m\u001b[33m{\u001b[0mclass_name\u001b[33m}\u001b[0m\u001b[33m schema does not exist.\u001b[0m\u001b[33m\"\u001b[0m) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 95 \u001b[0m\u001b[2m│ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m 96 \u001b[2m│ \u001b[0mproperties = client.collections.get(class_name).config.get().properties \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 97 \u001b[0m\u001b[2m│ \u001b[0m\u001b[94mreturn\u001b[0m [p.name \u001b[94mfor\u001b[0m p \u001b[95min\u001b[0m properties] \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 98 \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 99 \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2;33m/Users/jonnytr/micromamba/lib/python3.10/site-packages/weaviate/collections/\u001b[0m\u001b[1;33mconfig.py\u001b[0m:\u001b[94m81\u001b[0m in \u001b[92mget\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 78 \u001b[0m\u001b[2;33m│ │ │ │ \u001b[0m\u001b[33mIf Weaviate reports a non-OK status.\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 79 \u001b[0m\u001b[2;33m│ │ \u001b[0m\u001b[33m\"\"\"\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 80 \u001b[0m\u001b[2m│ │ \u001b[0m_validate_input([_ValidateArgument(expected=[\u001b[96mbool\u001b[0m], name=\u001b[33m\"\u001b[0m\u001b[33msimple\u001b[0m\u001b[33m\"\u001b[0m, value=simple) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m 81 \u001b[2m│ │ \u001b[0mschema = \u001b[96mself\u001b[0m.__get() \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 82 \u001b[0m\u001b[2m│ │ \u001b[0m\u001b[94mif\u001b[0m simple: \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 83 \u001b[0m\u001b[2m│ │ │ \u001b[0m\u001b[94mreturn\u001b[0m _collection_config_simple_from_json(schema) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 84 \u001b[0m\u001b[2m│ │ \u001b[0m\u001b[94mreturn\u001b[0m _collection_config_from_json(schema) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2;33m/Users/jonnytr/micromamba/lib/python3.10/site-packages/weaviate/collections/\u001b[0m\u001b[1;33mconfig.py\u001b[0m:\u001b[94m49\u001b[0m in \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[92m__get\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 46 \u001b[0m\u001b[2m│ │ \u001b[0m\u001b[96mself\u001b[0m.__tenant = tenant \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 47 \u001b[0m\u001b[2m│ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 48 \u001b[0m\u001b[2m│ \u001b[0m\u001b[94mdef\u001b[0m \u001b[92m__get\u001b[0m(\u001b[96mself\u001b[0m) -> Dict[\u001b[96mstr\u001b[0m, Any]: \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m 49 \u001b[2m│ │ \u001b[0mresponse = \u001b[96mself\u001b[0m.__connection.get( \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 50 \u001b[0m\u001b[2m│ │ │ \u001b[0mpath=\u001b[33mf\u001b[0m\u001b[33m\"\u001b[0m\u001b[33m/schema/\u001b[0m\u001b[33m{\u001b[0m\u001b[96mself\u001b[0m._name\u001b[33m}\u001b[0m\u001b[33m\"\u001b[0m, \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 51 \u001b[0m\u001b[2m│ │ │ \u001b[0merror_msg=\u001b[33m\"\u001b[0m\u001b[33mCollection configuration could not be retrieved.\u001b[0m\u001b[33m\"\u001b[0m, \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 52 \u001b[0m\u001b[2m│ │ │ \u001b[0mstatus_codes=_ExpectedStatusCodes(ok_in=\u001b[94m200\u001b[0m, error=\u001b[33m\"\u001b[0m\u001b[33mGet collection configura\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2;33m/Users/jonnytr/micromamba/lib/python3.10/site-packages/weaviate/connect/\u001b[0m\u001b[1;33mv4.py\u001b[0m:\u001b[94m561\u001b[0m in \u001b[92mget\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m558 \u001b[0m\u001b[2m│ │ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m559 \u001b[0m\u001b[2m│ │ \u001b[0mrequest_url = \u001b[96mself\u001b[0m.url + \u001b[96mself\u001b[0m._api_version_path + path \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m560 \u001b[0m\u001b[2m│ │ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m561 \u001b[2m│ │ \u001b[0m\u001b[94mreturn\u001b[0m \u001b[96mself\u001b[0m.__send( \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m562 \u001b[0m\u001b[2m│ │ │ \u001b[0m\u001b[33m\"\u001b[0m\u001b[33mGET\u001b[0m\u001b[33m\"\u001b[0m, url=request_url, params=params, error_msg=error_msg, status_codes=sta \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m563 \u001b[0m\u001b[2m│ │ \u001b[0m) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m564 \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2;33m/Users/jonnytr/micromamba/lib/python3.10/site-packages/weaviate/connect/\u001b[0m\u001b[1;33mv4.py\u001b[0m:\u001b[94m449\u001b[0m in \u001b[92m__send\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m446 \u001b[0m\u001b[2m│ │ │ │ \u001b[0mparams=params, \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m447 \u001b[0m\u001b[2m│ │ │ │ \u001b[0mheaders=\u001b[96mself\u001b[0m.__get_latest_headers(), \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m448 \u001b[0m\u001b[2m│ │ │ \u001b[0m) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m449 \u001b[2m│ │ │ \u001b[0mres = \u001b[96mself\u001b[0m._client.send(req) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m450 \u001b[0m\u001b[2m│ │ │ \u001b[0m\u001b[94mif\u001b[0m status_codes \u001b[95mis\u001b[0m \u001b[95mnot\u001b[0m \u001b[94mNone\u001b[0m \u001b[95mand\u001b[0m res.status_code \u001b[95mnot\u001b[0m \u001b[95min\u001b[0m status_codes.ok: \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m451 \u001b[0m\u001b[2m│ │ │ │ \u001b[0m\u001b[94mraise\u001b[0m UnexpectedStatusCodeError(error_msg, response=res) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m452 \u001b[0m\u001b[2m│ │ │ \u001b[0m\u001b[94mreturn\u001b[0m cast(Response, res) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2;33m/Users/jonnytr/micromamba/lib/python3.10/site-packages/httpx/\u001b[0m\u001b[1;33m_client.py\u001b[0m:\u001b[94m914\u001b[0m in \u001b[92msend\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 911 \u001b[0m\u001b[2m│ │ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 912 \u001b[0m\u001b[2m│ │ \u001b[0mauth = \u001b[96mself\u001b[0m._build_request_auth(request, auth) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 913 \u001b[0m\u001b[2m│ │ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m 914 \u001b[2m│ │ \u001b[0mresponse = \u001b[96mself\u001b[0m._send_handling_auth( \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 915 \u001b[0m\u001b[2m│ │ │ \u001b[0mrequest, \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 916 \u001b[0m\u001b[2m│ │ │ \u001b[0mauth=auth, \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 917 \u001b[0m\u001b[2m│ │ │ \u001b[0mfollow_redirects=follow_redirects, \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2;33m/Users/jonnytr/micromamba/lib/python3.10/site-packages/httpx/\u001b[0m\u001b[1;33m_client.py\u001b[0m:\u001b[94m942\u001b[0m in \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[92m_send_handling_auth\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 939 \u001b[0m\u001b[2m│ │ │ \u001b[0mrequest = \u001b[96mnext\u001b[0m(auth_flow) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 940 \u001b[0m\u001b[2m│ │ │ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 941 \u001b[0m\u001b[2m│ │ │ \u001b[0m\u001b[94mwhile\u001b[0m \u001b[94mTrue\u001b[0m: \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m 942 \u001b[2m│ │ │ │ \u001b[0mresponse = \u001b[96mself\u001b[0m._send_handling_redirects( \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 943 \u001b[0m\u001b[2m│ │ │ │ │ \u001b[0mrequest, \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 944 \u001b[0m\u001b[2m│ │ │ │ │ \u001b[0mfollow_redirects=follow_redirects, \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 945 \u001b[0m\u001b[2m│ │ │ │ │ \u001b[0mhistory=history, \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2;33m/Users/jonnytr/micromamba/lib/python3.10/site-packages/httpx/\u001b[0m\u001b[1;33m_client.py\u001b[0m:\u001b[94m979\u001b[0m in \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[92m_send_handling_redirects\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 976 \u001b[0m\u001b[2m│ │ │ \u001b[0m\u001b[94mfor\u001b[0m hook \u001b[95min\u001b[0m \u001b[96mself\u001b[0m._event_hooks[\u001b[33m\"\u001b[0m\u001b[33mrequest\u001b[0m\u001b[33m\"\u001b[0m]: \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 977 \u001b[0m\u001b[2m│ │ │ │ \u001b[0mhook(request) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 978 \u001b[0m\u001b[2m│ │ │ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m 979 \u001b[2m│ │ │ \u001b[0mresponse = \u001b[96mself\u001b[0m._send_single_request(request) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 980 \u001b[0m\u001b[2m│ │ │ \u001b[0m\u001b[94mtry\u001b[0m: \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 981 \u001b[0m\u001b[2m│ │ │ │ \u001b[0m\u001b[94mfor\u001b[0m hook \u001b[95min\u001b[0m \u001b[96mself\u001b[0m._event_hooks[\u001b[33m\"\u001b[0m\u001b[33mresponse\u001b[0m\u001b[33m\"\u001b[0m]: \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 982 \u001b[0m\u001b[2m│ │ │ │ │ \u001b[0mhook(response) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2;33m/Users/jonnytr/micromamba/lib/python3.10/site-packages/httpx/\u001b[0m\u001b[1;33m_client.py\u001b[0m:\u001b[94m1015\u001b[0m in \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[92m_send_single_request\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m1012 \u001b[0m\u001b[2m│ │ │ \u001b[0m) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m1013 \u001b[0m\u001b[2m│ │ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m1014 \u001b[0m\u001b[2m│ │ \u001b[0m\u001b[94mwith\u001b[0m request_context(request=request): \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m1015 \u001b[2m│ │ │ \u001b[0mresponse = transport.handle_request(request) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m1016 \u001b[0m\u001b[2m│ │ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m1017 \u001b[0m\u001b[2m│ │ \u001b[0m\u001b[94massert\u001b[0m \u001b[96misinstance\u001b[0m(response.stream, SyncByteStream) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m1018 \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2;33m/Users/jonnytr/micromamba/lib/python3.10/site-packages/httpx/_transports/\u001b[0m\u001b[1;33mdefault.py\u001b[0m:\u001b[94m233\u001b[0m in \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[92mhandle_request\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m230 \u001b[0m\u001b[2m│ │ │ \u001b[0mextensions=request.extensions, \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m231 \u001b[0m\u001b[2m│ │ \u001b[0m) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m232 \u001b[0m\u001b[2m│ │ \u001b[0m\u001b[94mwith\u001b[0m map_httpcore_exceptions(): \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m233 \u001b[2m│ │ │ \u001b[0mresp = \u001b[96mself\u001b[0m._pool.handle_request(req) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m234 \u001b[0m\u001b[2m│ │ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m235 \u001b[0m\u001b[2m│ │ \u001b[0m\u001b[94massert\u001b[0m \u001b[96misinstance\u001b[0m(resp.stream, typing.Iterable) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m236 \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2;33m/Users/jonnytr/micromamba/lib/python3.10/site-packages/httpcore/_sync/\u001b[0m\u001b[1;33mconnection_pool.py\u001b[0m:\u001b[94m216\u001b[0m in \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[92mhandle_request\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m213 \u001b[0m\u001b[2m│ │ │ │ \u001b[0mclosing = \u001b[96mself\u001b[0m._assign_requests_to_connections() \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m214 \u001b[0m\u001b[2m│ │ │ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m215 \u001b[0m\u001b[2m│ │ │ \u001b[0m\u001b[96mself\u001b[0m._close_connections(closing) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m216 \u001b[2m│ │ │ \u001b[0m\u001b[94mraise\u001b[0m exc \u001b[94mfrom\u001b[0m \u001b[94mNone\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m217 \u001b[0m\u001b[2m│ │ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m218 \u001b[0m\u001b[2m│ │ \u001b[0m\u001b[2m# Return the response. Note that in this case we still have to manage\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m219 \u001b[0m\u001b[2m│ │ \u001b[0m\u001b[2m# the point at which the response is closed.\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2;33m/Users/jonnytr/micromamba/lib/python3.10/site-packages/httpcore/_sync/\u001b[0m\u001b[1;33mconnection_pool.py\u001b[0m:\u001b[94m196\u001b[0m in \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[92mhandle_request\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m193 \u001b[0m\u001b[2m│ │ │ │ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m194 \u001b[0m\u001b[2m│ │ │ │ \u001b[0m\u001b[94mtry\u001b[0m: \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m195 \u001b[0m\u001b[2m│ │ │ │ │ \u001b[0m\u001b[2m# Send the request on the assigned connection.\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m196 \u001b[2m│ │ │ │ │ \u001b[0mresponse = connection.handle_request( \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m197 \u001b[0m\u001b[2m│ │ │ │ │ │ \u001b[0mpool_request.request \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m198 \u001b[0m\u001b[2m│ │ │ │ │ \u001b[0m) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m199 \u001b[0m\u001b[2m│ │ │ │ \u001b[0m\u001b[94mexcept\u001b[0m ConnectionNotAvailable: \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2;33m/Users/jonnytr/micromamba/lib/python3.10/site-packages/httpcore/_sync/\u001b[0m\u001b[1;33mconnection.py\u001b[0m:\u001b[94m101\u001b[0m in \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[92mhandle_request\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 98 \u001b[0m\u001b[2m│ │ │ \u001b[0m\u001b[96mself\u001b[0m._connect_failed = \u001b[94mTrue\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m 99 \u001b[0m\u001b[2m│ │ │ \u001b[0m\u001b[94mraise\u001b[0m exc \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m100 \u001b[0m\u001b[2m│ │ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m101 \u001b[2m│ │ \u001b[0m\u001b[94mreturn\u001b[0m \u001b[96mself\u001b[0m._connection.handle_request(request) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m102 \u001b[0m\u001b[2m│ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m103 \u001b[0m\u001b[2m│ \u001b[0m\u001b[94mdef\u001b[0m \u001b[92m_connect\u001b[0m(\u001b[96mself\u001b[0m, request: Request) -> NetworkStream: \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m104 \u001b[0m\u001b[2m│ │ \u001b[0mtimeouts = request.extensions.get(\u001b[33m\"\u001b[0m\u001b[33mtimeout\u001b[0m\u001b[33m\"\u001b[0m, {}) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2;33m/Users/jonnytr/micromamba/lib/python3.10/site-packages/httpcore/_sync/\u001b[0m\u001b[1;33mhttp11.py\u001b[0m:\u001b[94m143\u001b[0m in \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[92mhandle_request\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m140 \u001b[0m\u001b[2m│ │ │ \u001b[0m\u001b[94mwith\u001b[0m ShieldCancellation(): \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m141 \u001b[0m\u001b[2m│ │ │ │ \u001b[0m\u001b[94mwith\u001b[0m Trace(\u001b[33m\"\u001b[0m\u001b[33mresponse_closed\u001b[0m\u001b[33m\"\u001b[0m, logger, request) \u001b[94mas\u001b[0m trace: \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m142 \u001b[0m\u001b[2m│ │ │ │ │ \u001b[0m\u001b[96mself\u001b[0m._response_closed() \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m143 \u001b[2m│ │ │ \u001b[0m\u001b[94mraise\u001b[0m exc \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m144 \u001b[0m\u001b[2m│ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m145 \u001b[0m\u001b[2m│ \u001b[0m\u001b[2m# Sending the request...\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m146 \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2;33m/Users/jonnytr/micromamba/lib/python3.10/site-packages/httpcore/_sync/\u001b[0m\u001b[1;33mhttp11.py\u001b[0m:\u001b[94m113\u001b[0m in \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[92mhandle_request\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m110 \u001b[0m\u001b[2m│ │ │ │ │ \u001b[0mreason_phrase, \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m111 \u001b[0m\u001b[2m│ │ │ │ │ \u001b[0mheaders, \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m112 \u001b[0m\u001b[2m│ │ │ │ │ \u001b[0mtrailing_data, \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m113 \u001b[2m│ │ │ │ \u001b[0m) = \u001b[96mself\u001b[0m._receive_response_headers(**kwargs) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m114 \u001b[0m\u001b[2m│ │ │ │ \u001b[0mtrace.return_value = ( \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m115 \u001b[0m\u001b[2m│ │ │ │ │ \u001b[0mhttp_version, \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m116 \u001b[0m\u001b[2m│ │ │ │ │ \u001b[0mstatus, \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2;33m/Users/jonnytr/micromamba/lib/python3.10/site-packages/httpcore/_sync/\u001b[0m\u001b[1;33mhttp11.py\u001b[0m:\u001b[94m186\u001b[0m in \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[92m_receive_response_headers\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m183 \u001b[0m\u001b[2m│ │ \u001b[0mtimeout = timeouts.get(\u001b[33m\"\u001b[0m\u001b[33mread\u001b[0m\u001b[33m\"\u001b[0m, \u001b[94mNone\u001b[0m) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m184 \u001b[0m\u001b[2m│ │ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m185 \u001b[0m\u001b[2m│ │ \u001b[0m\u001b[94mwhile\u001b[0m \u001b[94mTrue\u001b[0m: \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m186 \u001b[2m│ │ │ \u001b[0mevent = \u001b[96mself\u001b[0m._receive_event(timeout=timeout) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m187 \u001b[0m\u001b[2m│ │ │ \u001b[0m\u001b[94mif\u001b[0m \u001b[96misinstance\u001b[0m(event, h11.Response): \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m188 \u001b[0m\u001b[2m│ │ │ │ \u001b[0m\u001b[94mbreak\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m189 \u001b[0m\u001b[2m│ │ │ \u001b[0m\u001b[94mif\u001b[0m ( \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2;33m/Users/jonnytr/micromamba/lib/python3.10/site-packages/httpcore/_sync/\u001b[0m\u001b[1;33mhttp11.py\u001b[0m:\u001b[94m224\u001b[0m in \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[92m_receive_event\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m221 \u001b[0m\u001b[2m│ │ │ │ \u001b[0mevent = \u001b[96mself\u001b[0m._h11_state.next_event() \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m222 \u001b[0m\u001b[2m│ │ │ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m223 \u001b[0m\u001b[2m│ │ │ \u001b[0m\u001b[94mif\u001b[0m event \u001b[95mis\u001b[0m h11.NEED_DATA: \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m224 \u001b[2m│ │ │ │ \u001b[0mdata = \u001b[96mself\u001b[0m._network_stream.read( \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m225 \u001b[0m\u001b[2m│ │ │ │ │ \u001b[0m\u001b[96mself\u001b[0m.READ_NUM_BYTES, timeout=timeout \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m226 \u001b[0m\u001b[2m│ │ │ │ \u001b[0m) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m227 \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2;33m/Users/jonnytr/micromamba/lib/python3.10/site-packages/httpcore/_backends/\u001b[0m\u001b[1;33msync.py\u001b[0m:\u001b[94m126\u001b[0m in \u001b[92mread\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m123 \u001b[0m\u001b[2m│ │ \u001b[0mexc_map: ExceptionMapping = {socket.timeout: ReadTimeout, \u001b[96mOSError\u001b[0m: ReadError} \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m124 \u001b[0m\u001b[2m│ │ \u001b[0m\u001b[94mwith\u001b[0m map_exceptions(exc_map): \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m125 \u001b[0m\u001b[2m│ │ │ \u001b[0m\u001b[96mself\u001b[0m._sock.settimeout(timeout) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[31m❱ \u001b[0m126 \u001b[2m│ │ │ \u001b[0m\u001b[94mreturn\u001b[0m \u001b[96mself\u001b[0m._sock.recv(max_bytes) \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m127 \u001b[0m\u001b[2m│ \u001b[0m \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m128 \u001b[0m\u001b[2m│ \u001b[0m\u001b[94mdef\u001b[0m \u001b[92mwrite\u001b[0m(\u001b[96mself\u001b[0m, buffer: \u001b[96mbytes\u001b[0m, timeout: typing.Optional[\u001b[96mfloat\u001b[0m] = \u001b[94mNone\u001b[0m) -> \u001b[94mNone\u001b[0m: \u001b[31m│\u001b[0m\n", - "\u001b[31m│\u001b[0m \u001b[2m129 \u001b[0m\u001b[2m│ │ \u001b[0m\u001b[94mif\u001b[0m \u001b[95mnot\u001b[0m buffer: \u001b[31m│\u001b[0m\n", - "\u001b[31m╰──────────────────────────────────────────────────────────────────────────────────────────────────╯\u001b[0m\n", - "\u001b[1;91mKeyboardInterrupt\u001b[0m\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "record_updates = []\n", - "\n", - "for record in tqdm(remote_dataset.records):\n", - " metadata = record.metadata\n", - " data = get_record_data(record, fields='header', answers='header-correction')\n", - " header = data.get('header-correction', data.get('header'))\n", - " \n", - " if 'number' in metadata:\n", - " metadata['number'] = metadata['number'].replace('FigureSegment', 'Figure').replace('TableSegment', 'Table')\n", - " \n", - " if 'type' in metadata:\n", - " metadata['type'] = metadata['type'].replace('FigureSegment', 'figure').replace('TableSegment', 'table').lower()\n", - " elif 'table' in metadata.get('number', '').lower() or 'figure' in metadata.get('number', '').lower():\n", - " metadata['type'] = metadata['number'].split(' ')[0].lower()\n", - " else:\n", - " metadata['type'] = 'table'\n", - " \n", - " record.metadata = metadata \n", - " \n", - " record_updates.append(record)\n", - "len(record_updates)" - ] - }, - { - "cell_type": "code", - "execution_count": 117, - "id": "fa69261e-9783-4070-a2bc-67025b5b9596", - "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "d075cf03ad3d4af39a473665d5ef9bd1", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "Output()" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
\n"
-                        ],
-                        "text/plain": []
-                    },
-                    "metadata": {},
-                    "output_type": "display_data"
-                },
-                {
-                    "data": {
-                        "text/html": [
-                            "
\n",
-                            "
\n" - ], - "text/plain": [ - "\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "remote_dataset.records.update(record_updates)" - ] - }, - { - "cell_type": "markdown", - "id": "03b51eb4-cf6f-41ba-a623-a4190728ed69", - "metadata": { - "jp-MarkdownHeadingCollapsed": true - }, - "source": [ - "# Evaluate OCR Accuracy" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "0af04a2f-91a0-4ee1-855e-454cf9b3a666", - "metadata": { - "editable": true, - "scrolled": true, - "slideshow": { - "slide_type": "" - }, - "tags": [] - }, - "outputs": [], - "source": [ - "results = {}\n", - "count = 0\n", - "for reference in tqdm(papers_uploaded):\n", - " pred_tables = get_paper_tables(papers.loc[reference], remote_dataset, select='ranking')\n", - " true_tables = get_paper_tables(papers.loc[reference], remote_dataset, select='text-correction')\n", - " count += len(pred_tables)\n", - "\n", - " if len(pred_tables) != len(true_tables): \n", - " print(len(pred_tables), len(true_tables))\n", - "\n", - " pred_tables = [seg.html for seg in pred_tables.items]\n", - " true_tables = [seg.html for seg in true_tables.items]\n", - " results[reference] = grits_multi_tables(true_tables, pred_tables).mean().to_frame().T\n", - "\n", - "results = pd.concat(results).droplevel(level=1, axis=0)\n", - "metrics.mean(0).to_frame().T.map('{:.1%}'.format)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "991f60a8-2b46-49cd-a04b-ac59a1eb613b", - "metadata": {}, - "outputs": [], - "source": [ - "pred_tables" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "8a74cf1d-92d7-426c-96b2-aec678811bd6", - "metadata": {}, - "outputs": [], - "source": [ - "count/sum(table_counts.values()), count, sum(table_counts.values())" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "0fc26c0e-7a9b-4757-b480-4db5ab2d025f", - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "table_counts = {}\n", - "figure_counts = {}\n", - "for reference in papers_uploaded:\n", - " tables = get_paper_tables(papers.loc[reference], remote_dataset, select='text-correction', skip_status=None)\n", - " if not tables: continue\n", - " table_counts[reference] = max([table.number for table in tables.items if table.number and 'table' in table.header.lower()], default=0)\n", - " figure_counts[reference] = max([table.number for table in tables.items if table.number and table.header.lower().strip().startswith('fig')], default=0)\n", - "\n", - "sum(figure_counts.values()), sum(table_counts.values())" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "7d96f35f-0496-4feb-b1a2-9a49745efe40", - "metadata": {}, - "outputs": [], - "source": [ - "figure_counts" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "1f485ca6-d8cf-4cee-9388-2ff398a851b6", - "metadata": {}, - "outputs": [], - "source": [ - "results = {}\n", - "durations = {}\n", - "count = 0\n", - "for reference in tqdm(papers_uploaded):\n", - " pred_tables = get_paper_tables(papers.loc[reference], remote_dataset, select='ranking')\n", - " true_tables = get_paper_tables(papers.loc[reference], remote_dataset, select='text-correction')\n", - " count += len(pred_tables)\n", - "\n", - " if len(pred_tables) != len(true_tables): \n", - " print(len(pred_tables), len(true_tables))\n", - "\n", - " for i, (pred_table, true_table) in enumerate(zip(pred_tables.items, true_tables.items)):\n", - " results[(reference, i)] = grits_multi_tables([true_table.html], [pred_table.html])\n", - " durations[(reference, i)] = pred_table.duration\n", - "\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "66e63bc4-10dc-42e9-9ad5-ac18afa93b1f", - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "metrics = pd.concat(results).droplevel(level=-1, axis=0)\n", - "durations = pd.Series(durations, name='duration')\n", - "metrics.loc[durations.index, 'duration (s)'] = durations.values\n", - "metrics.columns = metrics.columns.map(lambda x: '_'.join(x).strip('_'))\n", - "metrics" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "7fdf6c68-0694-426d-905e-740212962f9c", - "metadata": {}, - "outputs": [], - "source": [ - "durations_m = durations.groupby(level=0).sum() / 60\n", - "px.box(durations_m, orientation='h', width=500, height=220, \n", - " title='Manual table correction time per paper')\\\n", - " .update_xaxes(title='duration (minutes)', dtick=5)\\\n", - " .update_yaxes(title='')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "00f379d8-bc18-4673-88f2-856cdcbc9ec3", - "metadata": {}, - "outputs": [], - "source": [ - "px.scatter(metrics.assign(grits_top_f1=metrics['grits_top_f1']*100,\n", - " grits_con_f1=metrics['grits_con_f1']*100),\n", - " title='Manual correction time per table depends
on OCR quality',\n", - " x='grits_top_f1',\n", - " y='duration (s)',\n", - " trendline='ols',\n", - " range_x=[100, 60],\n", - " range_y=[0, 800],\n", - " width=500,\n", - " height=400)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.9.19" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} \ No newline at end of file diff --git a/examples/document_extraction/setup_workspace.ipynb b/examples/document_extraction/setup_workspace.ipynb index c59dd9376..0d630cf95 100644 --- a/examples/document_extraction/setup_workspace.ipynb +++ b/examples/document_extraction/setup_workspace.ipynb @@ -1,580 +1,568 @@ { - "cells": [ - { - "cell_type": "markdown", - "id": "f9d7358b", - "metadata": {}, - "source": [ - "# Setting Up Workspaces in Extralit\n", - "\n", - "In this tutorial, we will learn how to set up and manage workspaces in Extralit using the default credentials on a fresh installation. It will walk you through the following steps:\n", - "\n", - "1. Connecting to Extralit with default credentials 🔑\n", - "2. Creating your first workspace 🏗️\n", - "3. Listing available workspaces 📋\n", - "4. Adding PDF documents to the workspace 📄\n", - "5. Creating and uploading a schema 📊\n", - "6. Running PDF preprocessing 🔍\n", - "7. Running LLM extractions 🤖\n", - "\n", - "![Extralit Workspace Management](https://raw.githubusercontent.com/argilla-io/argilla/main/docs/assets/argilla_workspace_management.png)\n", - "\n", - "## Introduction\n", - "\n", - "A **workspace** is a space inside your Extralit instance where authorized users can collaborate on datasets. Workspaces are accessible through both the Python SDK and the UI. When you first install Extralit, you'll need to create workspaces to organize your data and user access.\n", - "\n", - "For more details on workspace management, refer to the [Extralit documentation](https://docs.extralit.ai/latest/admin_guide/workspace/).\n", - "\n", - "Let's get started!\n" - ] - }, - { - "cell_type": "markdown", - "id": "5601c172", - "metadata": {}, - "source": [ - "## 1. Connecting to Extralit\n", - "\n", - "First, we need to import the Extralit library and connect to our instance using the default credentials." - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "id": "ce009aae", - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/jonny/micromamba/envs/extralit/lib/python3.9/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\n", - " from .autonotebook import tqdm as notebook_tqdm\n" - ] - }, - { - "ename": "ConnectError", - "evalue": "[Errno 61] Connection refused", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mConnectError\u001b[0m Traceback (most recent call last)", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/httpx/_transports/default.py:67\u001b[0m, in \u001b[0;36mmap_httpcore_exceptions\u001b[0;34m()\u001b[0m\n\u001b[1;32m 66\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m---> 67\u001b[0m \u001b[38;5;28;01myield\u001b[39;00m\n\u001b[1;32m 68\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m exc:\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/httpx/_transports/default.py:231\u001b[0m, in \u001b[0;36mHTTPTransport.handle_request\u001b[0;34m(self, request)\u001b[0m\n\u001b[1;32m 230\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m map_httpcore_exceptions():\n\u001b[0;32m--> 231\u001b[0m resp \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_pool\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mhandle_request\u001b[49m\u001b[43m(\u001b[49m\u001b[43mreq\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 233\u001b[0m \u001b[38;5;28;01massert\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(resp\u001b[38;5;241m.\u001b[39mstream, typing\u001b[38;5;241m.\u001b[39mIterable)\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/httpcore/_sync/connection_pool.py:256\u001b[0m, in \u001b[0;36mConnectionPool.handle_request\u001b[0;34m(self, request)\u001b[0m\n\u001b[1;32m 255\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_close_connections(closing)\n\u001b[0;32m--> 256\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m exc \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[1;32m 258\u001b[0m \u001b[38;5;66;03m# Return the response. Note that in this case we still have to manage\u001b[39;00m\n\u001b[1;32m 259\u001b[0m \u001b[38;5;66;03m# the point at which the response is closed.\u001b[39;00m\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/httpcore/_sync/connection_pool.py:236\u001b[0m, in \u001b[0;36mConnectionPool.handle_request\u001b[0;34m(self, request)\u001b[0m\n\u001b[1;32m 234\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[1;32m 235\u001b[0m \u001b[38;5;66;03m# Send the request on the assigned connection.\u001b[39;00m\n\u001b[0;32m--> 236\u001b[0m response \u001b[38;5;241m=\u001b[39m \u001b[43mconnection\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mhandle_request\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 237\u001b[0m \u001b[43m \u001b[49m\u001b[43mpool_request\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mrequest\u001b[49m\n\u001b[1;32m 238\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 239\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m ConnectionNotAvailable:\n\u001b[1;32m 240\u001b[0m \u001b[38;5;66;03m# In some cases a connection may initially be available to\u001b[39;00m\n\u001b[1;32m 241\u001b[0m \u001b[38;5;66;03m# handle a request, but then become unavailable.\u001b[39;00m\n\u001b[1;32m 242\u001b[0m \u001b[38;5;66;03m#\u001b[39;00m\n\u001b[1;32m 243\u001b[0m \u001b[38;5;66;03m# In this case we clear the connection and try again.\u001b[39;00m\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/httpcore/_sync/connection.py:101\u001b[0m, in \u001b[0;36mHTTPConnection.handle_request\u001b[0;34m(self, request)\u001b[0m\n\u001b[1;32m 100\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_connect_failed \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mTrue\u001b[39;00m\n\u001b[0;32m--> 101\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m exc\n\u001b[1;32m 103\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_connection\u001b[38;5;241m.\u001b[39mhandle_request(request)\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/httpcore/_sync/connection.py:78\u001b[0m, in \u001b[0;36mHTTPConnection.handle_request\u001b[0;34m(self, request)\u001b[0m\n\u001b[1;32m 77\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_connection \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[0;32m---> 78\u001b[0m stream \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_connect\u001b[49m\u001b[43m(\u001b[49m\u001b[43mrequest\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 80\u001b[0m ssl_object \u001b[38;5;241m=\u001b[39m stream\u001b[38;5;241m.\u001b[39mget_extra_info(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mssl_object\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/httpcore/_sync/connection.py:124\u001b[0m, in \u001b[0;36mHTTPConnection._connect\u001b[0;34m(self, request)\u001b[0m\n\u001b[1;32m 123\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m Trace(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mconnect_tcp\u001b[39m\u001b[38;5;124m\"\u001b[39m, logger, request, kwargs) \u001b[38;5;28;01mas\u001b[39;00m trace:\n\u001b[0;32m--> 124\u001b[0m stream \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_network_backend\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mconnect_tcp\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 125\u001b[0m trace\u001b[38;5;241m.\u001b[39mreturn_value \u001b[38;5;241m=\u001b[39m stream\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/httpcore/_backends/sync.py:215\u001b[0m, in \u001b[0;36mSyncBackend.connect_tcp\u001b[0;34m(self, host, port, timeout, local_address, socket_options)\u001b[0m\n\u001b[1;32m 214\u001b[0m sock\u001b[38;5;241m.\u001b[39msetsockopt(\u001b[38;5;241m*\u001b[39moption) \u001b[38;5;66;03m# pragma: no cover\u001b[39;00m\n\u001b[0;32m--> 215\u001b[0m sock\u001b[38;5;241m.\u001b[39msetsockopt(socket\u001b[38;5;241m.\u001b[39mIPPROTO_TCP, socket\u001b[38;5;241m.\u001b[39mTCP_NODELAY, \u001b[38;5;241m1\u001b[39m)\n\u001b[1;32m 216\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m SyncStream(sock)\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/contextlib.py:137\u001b[0m, in \u001b[0;36m_GeneratorContextManager.__exit__\u001b[0;34m(self, typ, value, traceback)\u001b[0m\n\u001b[1;32m 136\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 137\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mgen\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mthrow\u001b[49m\u001b[43m(\u001b[49m\u001b[43mtyp\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mvalue\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mtraceback\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 138\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mStopIteration\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m exc:\n\u001b[1;32m 139\u001b[0m \u001b[38;5;66;03m# Suppress StopIteration *unless* it's the same exception that\u001b[39;00m\n\u001b[1;32m 140\u001b[0m \u001b[38;5;66;03m# was passed to throw(). This prevents a StopIteration\u001b[39;00m\n\u001b[1;32m 141\u001b[0m \u001b[38;5;66;03m# raised inside the \"with\" statement from being suppressed.\u001b[39;00m\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/httpcore/_exceptions.py:14\u001b[0m, in \u001b[0;36mmap_exceptions\u001b[0;34m(map)\u001b[0m\n\u001b[1;32m 13\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(exc, from_exc):\n\u001b[0;32m---> 14\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m to_exc(exc) \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mexc\u001b[39;00m\n\u001b[1;32m 15\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m\n", - "\u001b[0;31mConnectError\u001b[0m: [Errno 61] Connection refused", - "\nThe above exception was the direct cause of the following exception:\n", - "\u001b[0;31mConnectError\u001b[0m Traceback (most recent call last)", - "Cell \u001b[0;32mIn[1], line 11\u001b[0m\n\u001b[1;32m 8\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mpathlib\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m Path\n\u001b[1;32m 10\u001b[0m \u001b[38;5;66;03m# Connect to Extralit using default credentials\u001b[39;00m\n\u001b[0;32m---> 11\u001b[0m client \u001b[38;5;241m=\u001b[39m \u001b[43mrg\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mExtralit\u001b[49m\u001b[43m(\u001b[49m\u001b[43mapi_url\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mhttp://localhost:6900/\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mapi_key\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mextralit.apikey\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[1;32m 13\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mSuccessfully connected to Extralit at \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mclient\u001b[38;5;241m.\u001b[39mapi_url\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m)\n", - "File \u001b[0;32m~/Projects/extralit/argilla/src/argilla/client.py:73\u001b[0m, in \u001b[0;36mExtralit.__init__\u001b[0;34m(self, api_url, api_key, timeout, retries, **http_client_args)\u001b[0m\n\u001b[1;32m 51\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21m__init__\u001b[39m(\n\u001b[1;32m 52\u001b[0m \u001b[38;5;28mself\u001b[39m,\n\u001b[1;32m 53\u001b[0m api_url: Optional[\u001b[38;5;28mstr\u001b[39m] \u001b[38;5;241m=\u001b[39m DEFAULT_HTTP_CONFIG\u001b[38;5;241m.\u001b[39mapi_url,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 57\u001b[0m \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mhttp_client_args,\n\u001b[1;32m 58\u001b[0m ) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 59\u001b[0m \u001b[38;5;250m \u001b[39m\u001b[38;5;124;03m\"\"\"Inits the `Extralit` client.\u001b[39;00m\n\u001b[1;32m 60\u001b[0m \n\u001b[1;32m 61\u001b[0m \u001b[38;5;124;03m Args:\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 71\u001b[0m \u001b[38;5;124;03m before raising an exception. Defaults to `5`.\u001b[39;00m\n\u001b[1;32m 72\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n\u001b[0;32m---> 73\u001b[0m \u001b[38;5;28;43msuper\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[38;5;21;43m__init__\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43mapi_url\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mapi_url\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mapi_key\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mapi_key\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mtimeout\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mtimeout\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mretries\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mretries\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mhttp_client_args\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 75\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_set_default(\u001b[38;5;28mself\u001b[39m)\n", - "File \u001b[0;32m~/Projects/extralit/argilla/src/argilla/_api/_client.py:146\u001b[0m, in \u001b[0;36mAPIClient.__init__\u001b[0;34m(self, api_url, api_key, timeout, retries, **http_client_args)\u001b[0m\n\u001b[1;32m 143\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mapi \u001b[38;5;241m=\u001b[39m ExtralitAPI(\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mhttp_client)\n\u001b[1;32m 145\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 146\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_validate_connection\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 147\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m UnauthorizedError \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[1;32m 148\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m ExtralitCredentialsError() \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01me\u001b[39;00m\n", - "File \u001b[0;32m~/Projects/extralit/argilla/src/argilla/_api/_client.py:160\u001b[0m, in \u001b[0;36mAPIClient._validate_connection\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 159\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21m_validate_connection\u001b[39m(\u001b[38;5;28mself\u001b[39m) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[0;32m--> 160\u001b[0m user \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mapi\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43musers\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget_me\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 161\u001b[0m message \u001b[38;5;241m=\u001b[39m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mLogged in as \u001b[39m\u001b[38;5;132;01m{\u001b[39;00muser\u001b[38;5;241m.\u001b[39musername\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m with the role \u001b[39m\u001b[38;5;132;01m{\u001b[39;00muser\u001b[38;5;241m.\u001b[39mrole\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 162\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mlog(message\u001b[38;5;241m=\u001b[39mmessage, level\u001b[38;5;241m=\u001b[39mlogging\u001b[38;5;241m.\u001b[39mINFO)\n", - "File \u001b[0;32m~/Projects/extralit/argilla/src/argilla/_exceptions/_api.py:91\u001b[0m, in \u001b[0;36mapi_error_handler.._handler_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 89\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21m_handler_wrapper\u001b[39m(\u001b[38;5;241m*\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs):\n\u001b[1;32m 90\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m---> 91\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mfunc\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 92\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m HTTPStatusError \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[1;32m 93\u001b[0m _error_switch(status_code\u001b[38;5;241m=\u001b[39me\u001b[38;5;241m.\u001b[39mresponse\u001b[38;5;241m.\u001b[39mstatus_code, error_detail\u001b[38;5;241m=\u001b[39me\u001b[38;5;241m.\u001b[39mresponse\u001b[38;5;241m.\u001b[39mtext)\n", - "File \u001b[0;32m~/Projects/extralit/argilla/src/argilla/_api/_users.py:90\u001b[0m, in \u001b[0;36mUsersAPI.get_me\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 88\u001b[0m \u001b[38;5;129m@api_error_handler\u001b[39m\n\u001b[1;32m 89\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21mget_me\u001b[39m(\u001b[38;5;28mself\u001b[39m) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m UserModel:\n\u001b[0;32m---> 90\u001b[0m response \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mhttp_client\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43m/api/v1/me\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[1;32m 91\u001b[0m response\u001b[38;5;241m.\u001b[39mraise_for_status()\n\u001b[1;32m 92\u001b[0m response_json \u001b[38;5;241m=\u001b[39m response\u001b[38;5;241m.\u001b[39mjson()\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/httpx/_client.py:1055\u001b[0m, in \u001b[0;36mClient.get\u001b[0;34m(self, url, params, headers, cookies, auth, follow_redirects, timeout, extensions)\u001b[0m\n\u001b[1;32m 1038\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21mget\u001b[39m(\n\u001b[1;32m 1039\u001b[0m \u001b[38;5;28mself\u001b[39m,\n\u001b[1;32m 1040\u001b[0m url: URLTypes,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 1048\u001b[0m extensions: typing\u001b[38;5;241m.\u001b[39mOptional[RequestExtensions] \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m,\n\u001b[1;32m 1049\u001b[0m ) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m Response:\n\u001b[1;32m 1050\u001b[0m \u001b[38;5;250m \u001b[39m\u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 1051\u001b[0m \u001b[38;5;124;03m Send a `GET` request.\u001b[39;00m\n\u001b[1;32m 1052\u001b[0m \n\u001b[1;32m 1053\u001b[0m \u001b[38;5;124;03m **Parameters**: See `httpx.request`.\u001b[39;00m\n\u001b[1;32m 1054\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n\u001b[0;32m-> 1055\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mrequest\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 1056\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mGET\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1057\u001b[0m \u001b[43m \u001b[49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1058\u001b[0m \u001b[43m \u001b[49m\u001b[43mparams\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mparams\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1059\u001b[0m \u001b[43m \u001b[49m\u001b[43mheaders\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mheaders\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1060\u001b[0m \u001b[43m \u001b[49m\u001b[43mcookies\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcookies\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1061\u001b[0m \u001b[43m \u001b[49m\u001b[43mauth\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mauth\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1062\u001b[0m \u001b[43m \u001b[49m\u001b[43mfollow_redirects\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mfollow_redirects\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1063\u001b[0m \u001b[43m \u001b[49m\u001b[43mtimeout\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mtimeout\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1064\u001b[0m \u001b[43m \u001b[49m\u001b[43mextensions\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mextensions\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1065\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/httpx/_client.py:828\u001b[0m, in \u001b[0;36mClient.request\u001b[0;34m(self, method, url, content, data, files, json, params, headers, cookies, auth, follow_redirects, timeout, extensions)\u001b[0m\n\u001b[1;32m 813\u001b[0m warnings\u001b[38;5;241m.\u001b[39mwarn(message, \u001b[38;5;167;01mDeprecationWarning\u001b[39;00m)\n\u001b[1;32m 815\u001b[0m request \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mbuild_request(\n\u001b[1;32m 816\u001b[0m method\u001b[38;5;241m=\u001b[39mmethod,\n\u001b[1;32m 817\u001b[0m url\u001b[38;5;241m=\u001b[39murl,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 826\u001b[0m extensions\u001b[38;5;241m=\u001b[39mextensions,\n\u001b[1;32m 827\u001b[0m )\n\u001b[0;32m--> 828\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msend\u001b[49m\u001b[43m(\u001b[49m\u001b[43mrequest\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mauth\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mauth\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mfollow_redirects\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mfollow_redirects\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/httpx/_client.py:915\u001b[0m, in \u001b[0;36mClient.send\u001b[0;34m(self, request, stream, auth, follow_redirects)\u001b[0m\n\u001b[1;32m 907\u001b[0m follow_redirects \u001b[38;5;241m=\u001b[39m (\n\u001b[1;32m 908\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mfollow_redirects\n\u001b[1;32m 909\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(follow_redirects, UseClientDefault)\n\u001b[1;32m 910\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m follow_redirects\n\u001b[1;32m 911\u001b[0m )\n\u001b[1;32m 913\u001b[0m auth \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_build_request_auth(request, auth)\n\u001b[0;32m--> 915\u001b[0m response \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_send_handling_auth\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 916\u001b[0m \u001b[43m \u001b[49m\u001b[43mrequest\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 917\u001b[0m \u001b[43m \u001b[49m\u001b[43mauth\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mauth\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 918\u001b[0m \u001b[43m \u001b[49m\u001b[43mfollow_redirects\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mfollow_redirects\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 919\u001b[0m \u001b[43m \u001b[49m\u001b[43mhistory\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m[\u001b[49m\u001b[43m]\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 920\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 921\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[1;32m 922\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m stream:\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/httpx/_client.py:943\u001b[0m, in \u001b[0;36mClient._send_handling_auth\u001b[0;34m(self, request, auth, follow_redirects, history)\u001b[0m\n\u001b[1;32m 940\u001b[0m request \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mnext\u001b[39m(auth_flow)\n\u001b[1;32m 942\u001b[0m \u001b[38;5;28;01mwhile\u001b[39;00m \u001b[38;5;28;01mTrue\u001b[39;00m:\n\u001b[0;32m--> 943\u001b[0m response \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_send_handling_redirects\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 944\u001b[0m \u001b[43m \u001b[49m\u001b[43mrequest\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 945\u001b[0m \u001b[43m \u001b[49m\u001b[43mfollow_redirects\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mfollow_redirects\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 946\u001b[0m \u001b[43m \u001b[49m\u001b[43mhistory\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mhistory\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 947\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 948\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[1;32m 949\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/httpx/_client.py:980\u001b[0m, in \u001b[0;36mClient._send_handling_redirects\u001b[0;34m(self, request, follow_redirects, history)\u001b[0m\n\u001b[1;32m 977\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m hook \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_event_hooks[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mrequest\u001b[39m\u001b[38;5;124m\"\u001b[39m]:\n\u001b[1;32m 978\u001b[0m hook(request)\n\u001b[0;32m--> 980\u001b[0m response \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_send_single_request\u001b[49m\u001b[43m(\u001b[49m\u001b[43mrequest\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 981\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[1;32m 982\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m hook \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_event_hooks[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mresponse\u001b[39m\u001b[38;5;124m\"\u001b[39m]:\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/httpx/_client.py:1016\u001b[0m, in \u001b[0;36mClient._send_single_request\u001b[0;34m(self, request)\u001b[0m\n\u001b[1;32m 1011\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mRuntimeError\u001b[39;00m(\n\u001b[1;32m 1012\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mAttempted to send an async request with a sync Client instance.\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 1013\u001b[0m )\n\u001b[1;32m 1015\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m request_context(request\u001b[38;5;241m=\u001b[39mrequest):\n\u001b[0;32m-> 1016\u001b[0m response \u001b[38;5;241m=\u001b[39m \u001b[43mtransport\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mhandle_request\u001b[49m\u001b[43m(\u001b[49m\u001b[43mrequest\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1018\u001b[0m \u001b[38;5;28;01massert\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(response\u001b[38;5;241m.\u001b[39mstream, SyncByteStream)\n\u001b[1;32m 1020\u001b[0m response\u001b[38;5;241m.\u001b[39mrequest \u001b[38;5;241m=\u001b[39m request\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/httpx/_transports/default.py:231\u001b[0m, in \u001b[0;36mHTTPTransport.handle_request\u001b[0;34m(self, request)\u001b[0m\n\u001b[1;32m 218\u001b[0m req \u001b[38;5;241m=\u001b[39m httpcore\u001b[38;5;241m.\u001b[39mRequest(\n\u001b[1;32m 219\u001b[0m method\u001b[38;5;241m=\u001b[39mrequest\u001b[38;5;241m.\u001b[39mmethod,\n\u001b[1;32m 220\u001b[0m url\u001b[38;5;241m=\u001b[39mhttpcore\u001b[38;5;241m.\u001b[39mURL(\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 228\u001b[0m extensions\u001b[38;5;241m=\u001b[39mrequest\u001b[38;5;241m.\u001b[39mextensions,\n\u001b[1;32m 229\u001b[0m )\n\u001b[1;32m 230\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m map_httpcore_exceptions():\n\u001b[0;32m--> 231\u001b[0m resp \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_pool\u001b[38;5;241m.\u001b[39mhandle_request(req)\n\u001b[1;32m 233\u001b[0m \u001b[38;5;28;01massert\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(resp\u001b[38;5;241m.\u001b[39mstream, typing\u001b[38;5;241m.\u001b[39mIterable)\n\u001b[1;32m 235\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m Response(\n\u001b[1;32m 236\u001b[0m status_code\u001b[38;5;241m=\u001b[39mresp\u001b[38;5;241m.\u001b[39mstatus,\n\u001b[1;32m 237\u001b[0m headers\u001b[38;5;241m=\u001b[39mresp\u001b[38;5;241m.\u001b[39mheaders,\n\u001b[1;32m 238\u001b[0m stream\u001b[38;5;241m=\u001b[39mResponseStream(resp\u001b[38;5;241m.\u001b[39mstream),\n\u001b[1;32m 239\u001b[0m extensions\u001b[38;5;241m=\u001b[39mresp\u001b[38;5;241m.\u001b[39mextensions,\n\u001b[1;32m 240\u001b[0m )\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/contextlib.py:137\u001b[0m, in \u001b[0;36m_GeneratorContextManager.__exit__\u001b[0;34m(self, typ, value, traceback)\u001b[0m\n\u001b[1;32m 135\u001b[0m value \u001b[38;5;241m=\u001b[39m typ()\n\u001b[1;32m 136\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 137\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mgen\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mthrow\u001b[49m\u001b[43m(\u001b[49m\u001b[43mtyp\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mvalue\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mtraceback\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 138\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mStopIteration\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m exc:\n\u001b[1;32m 139\u001b[0m \u001b[38;5;66;03m# Suppress StopIteration *unless* it's the same exception that\u001b[39;00m\n\u001b[1;32m 140\u001b[0m \u001b[38;5;66;03m# was passed to throw(). This prevents a StopIteration\u001b[39;00m\n\u001b[1;32m 141\u001b[0m \u001b[38;5;66;03m# raised inside the \"with\" statement from being suppressed.\u001b[39;00m\n\u001b[1;32m 142\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m exc \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m value\n", - "File \u001b[0;32m~/micromamba/envs/extralit/lib/python3.9/site-packages/httpx/_transports/default.py:84\u001b[0m, in \u001b[0;36mmap_httpcore_exceptions\u001b[0;34m()\u001b[0m\n\u001b[1;32m 81\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m\n\u001b[1;32m 83\u001b[0m message \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mstr\u001b[39m(exc)\n\u001b[0;32m---> 84\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m mapped_exc(message) \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mexc\u001b[39;00m\n", - "\u001b[0;31mConnectError\u001b[0m: [Errno 61] Connection refused" - ] - } - ], - "source": [ - "import extralit as ex\n", - "import extralit as ex\n", - "import pandas as pd\n", - "import pandera as pa\n", - "from pandera.typing import Index, Series\n", - "import os\n", - "import tempfile\n", - "from pathlib import Path\n", - "\n", - "# Connect to Extralit using default credentials\n", - "client = ex.Extralit(api_url=\"http://localhost:6900/\", api_key='extralit.apikey')\n", - "\n", - "print(f\"Successfully connected to Extralit at {client.api_url}\")" - ] - }, - { - "cell_type": "markdown", - "id": "fcdd3afe", - "metadata": {}, - "source": [ - "## 2. Creating Your First Workspace\n", - "\n", - "After connecting to Extralit, let's create our first workspace. We'll define a new `Workspace` object and call the `create()` method." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "64b5f09b", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Workspace 'test-workspace' created successfully with ID: df91e2b9-c712-4474-af82-891478f23d40\n" - ] - } - ], - "source": [ - "# Define a new workspace\n", - "workspace_name = \"test_workspace\"\n", - "new_workspace = ex.Workspace(name=workspace_name, client=client)\n", - "\n", - "# Create the workspace\n", - "created_workspace = new_workspace.create()\n", - "\n", - "print(f\"Workspace '{workspace_name}' created successfully with ID: {created_workspace.id}\")" - ] - }, - { - "cell_type": "markdown", - "id": "c937e5c7", - "metadata": {}, - "source": [ - "## 3. Listing Available Workspaces\n", - "\n", - "Now, let's check all the workspaces available in our Extralit instance." - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "id": "d4df67d6", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Total number of workspaces: 1\n", - "\n" - ] - }, - { - "data": { - "text/html": [ - "

Workspaces

nameidupdated_at
test-workspacedf91e2b9-c712-4474-af82-891478f23d402025-04-16T01:27:58.174591
" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 9, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# List all workspaces\n", - "workspaces = client.workspaces\n", - "\n", - "# Display workspace information\n", - "print(f\"Total number of workspaces: {len(workspaces)}\\n\")\n", - "\n", - "# In a notebook, this will display a table with workspace information\n", - "workspaces" - ] - }, - { - "cell_type": "markdown", - "id": "8ca5b2b8", - "metadata": {}, - "source": [ - "## 4. Adding PDF Documents to the Workspace\n", - "\n", - "Let's add two PDF documents to our workspace. For this tutorial, we'll create temporary PDF files. In a real-world scenario, you'd use actual scientific papers." - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "id": "59084a6d", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Created reference CSV at /tmp/references.csv\n" - ] - }, - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
referencefile_pathtitleauthorsyear
0smith2023first/tmp/sample1.pdfStudy on Sample DataSmith, J.2023
1johnson2022analysis/tmp/sample2.pdfAnalysis of Experimental ResultsJohnson, A.2022
\n", - "
" - ], - "text/plain": [ - " reference file_path title \\\n", - "0 smith2023first /tmp/sample1.pdf Study on Sample Data \n", - "1 johnson2022analysis /tmp/sample2.pdf Analysis of Experimental Results \n", - "\n", - " authors year \n", - "0 Smith, J. 2023 \n", - "1 Johnson, A. 2022 " - ] - }, - "execution_count": 10, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# In a real-world scenario, you would use actual PDFs. Here we'll create temp files\n", - "# Define the paths for our temporary PDF files\n", - "temp_dir = tempfile.gettempdir()\n", - "pdf_file1 = Path(temp_dir) / \"sample1.pdf\"\n", - "pdf_file2 = Path(temp_dir) / \"sample2.pdf\"\n", - "\n", - "# Create empty PDF files - in reality, these would be your actual PDFs\n", - "with open(pdf_file1, \"wb\") as f:\n", - " f.write(b\"%PDF-1.5\\n%Example Document 1\")\n", - " \n", - "with open(pdf_file2, \"wb\") as f:\n", - " f.write(b\"%PDF-1.5\\n%Example Document 2\")\n", - "\n", - "# Create a reference dataframe with metadata for the PDFs\n", - "references_df = pd.DataFrame({\n", - " \"reference\": [\"smith2023first\", \"johnson2022analysis\"],\n", - " \"file_path\": [str(pdf_file1), str(pdf_file2)],\n", - " \"title\": [\"Study on Sample Data\", \"Analysis of Experimental Results\"],\n", - " \"authors\": [\"Smith, J.\", \"Johnson, A.\"],\n", - " \"year\": [2023, 2022]\n", - "})\n", - "\n", - "# Save the dataframe to a temporary CSV file\n", - "references_csv = Path(temp_dir) / \"references.csv\"\n", - "references_df.to_csv(references_csv, index=False)\n", - "\n", - "print(f\"Created reference CSV at {references_csv}\")\n", - "references_df" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "abc8562f", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "Workspace(id=UUID('df91e2b9-c712-4474-af82-891478f23d40') inserted_at=datetime.datetime(2025, 4, 16, 1, 27, 58, 174591) updated_at=datetime.datetime(2025, 4, 16, 1, 27, 58, 174591) name='test-workspace')" - ] - }, - "execution_count": 15, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "new_workspace" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "a147c6c2", - "metadata": {}, - "outputs": [], - "source": [ - "# Import the documents into the workspace\n", - "# For demonstration purposes, we'll use the extralit client directly\n", - "# Initialize the extralit client with the same credentials\n", - "extralit_client = ex.Extralit(api_url=\"http://localhost:6900/\", api_key='extralit.apikey')\n", - "\n", - "# Import the documents\n", - "result = extralit_client.import_documents(\n", - " workspace=workspace_name,\n", - " papers=str(references_csv),\n", - " metadatas=[\"title\", \"authors\", \"year\"]\n", - ")\n", - "\n", - "print(f\"Imported {len(result)} documents into workspace '{workspace_name}'\")" - ] - }, - { - "cell_type": "markdown", - "id": "98a2025d", - "metadata": {}, - "source": [ - "## 5. Creating and Uploading a Schema\n", - "\n", - "Now, let's create a simple schema to define the structure of the data we want to extract from our documents." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "f15f4b2f", - "metadata": {}, - "outputs": [], - "source": [ - "# Define a simple schema using Pandera\n", - "class Publication(pa.DataFrameModel):\n", - " \"\"\"\n", - " General information about the publication, extracted once per paper.\n", - " \"\"\"\n", - " reference: Index[str] = pa.Field(unique=True, check_name=True)\n", - " title: Series[str] = pa.Field()\n", - " authors: Series[str] = pa.Field()\n", - " publication_year: Series[int] = pa.Field(ge=1900, le=2100)\n", - " doi: Series[str] = pa.Field(nullable=True)\n", - " \n", - " class Config:\n", - " singleton = {'enabled': True} # Indicates this is a document-level schema\n", - "\n", - "# Define a second schema for experimental data\n", - "class ExperimentalData(pa.DataFrameModel):\n", - " \"\"\"\n", - " Experimental data extracted from the paper, may appear multiple times.\n", - " \"\"\"\n", - " experiment_id: Series[str] = pa.Field()\n", - " sample_size: Series[int] = pa.Field(gt=0)\n", - " study_type: Series[str] = pa.Field()\n", - " result_value: Series[float] = pa.Field()\n", - " significance: Series[float] = pa.Field(le=1.0, ge=0.0)\n", - "\n", - "# Create a schema structure object\n", - "from extralit.extraction.models.schema import SchemaStructure\n", - "\n", - "# Save schemas to a temporary JSON file\n", - "schema_file = Path(temp_dir) / \"schemas.json\"\n", - "schema_structure = SchemaStructure(schemas={\"Publication\": Publication, \"ExperimentalData\": ExperimentalData})\n", - "schema_structure.to_json(schema_file)\n", - "\n", - "print(f\"Created schema file at {schema_file}\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "dc61a1ab", - "metadata": {}, - "outputs": [], - "source": [ - "# Upload the schema to the workspace\n", - "result = extralit_client.upload_schemas(\n", - " workspace=workspace_name,\n", - " schemas=str(schema_file)\n", - ")\n", - "\n", - "print(f\"Uploaded schemas to workspace '{workspace_name}'\")" - ] - }, - { - "cell_type": "markdown", - "id": "7a92c20d", - "metadata": {}, - "source": [ - "## 6. Running PDF Preprocessing\n", - "\n", - "Next, let's run the PDF preprocessing step to extract text and table content from our documents." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "768e7176", - "metadata": {}, - "outputs": [], - "source": [ - "# Run PDF preprocessing\n", - "from extralit.preprocessing.pdf import process_pdfs\n", - "\n", - "# Get the references from our dataframe\n", - "references = references_df[\"reference\"].tolist()\n", - "\n", - "# Run the preprocessing step\n", - "preprocessing_result = process_pdfs(\n", - " workspace=workspace_name,\n", - " references=references,\n", - " text_ocr=[\"default\"], # Using the default text OCR model\n", - " table_ocr=[\"default\"], # Using the default table OCR model\n", - " output_dataset=\"PDF_Preprocessing_Results\"\n", - ")\n", - "\n", - "print(f\"Preprocessing completed for {len(preprocessing_result)} documents\")" - ] - }, - { - "cell_type": "markdown", - "id": "44aa776d", - "metadata": {}, - "source": [ - "## 7. Running LLM Extractions\n", - "\n", - "Finally, let's run the LLM extraction step to extract structured data according to our schema." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "19221abe", - "metadata": {}, - "outputs": [], - "source": [ - "# Run LLM extractions\n", - "from extralit.extraction.llm import extract_data\n", - "\n", - "# Run the extraction step\n", - "extraction_result = extract_data(\n", - " workspace=workspace_name,\n", - " references=references,\n", - " output_dataset=\"Data_Extraction_Results\"\n", - ")\n", - "\n", - "print(f\"LLM extractions completed for {len(extraction_result)} documents\")" - ] - }, - { - "cell_type": "markdown", - "id": "c1b6ec61", - "metadata": {}, - "source": [ - "## 8. Checking Extraction Results\n", - "\n", - "Let's check the results of our extractions by listing the datasets created and viewing the extracted data." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "4dbb695d", - "metadata": {}, - "outputs": [], - "source": [ - "# List datasets in the workspace\n", - "datasets = extralit_client.list_datasets(workspace=workspace_name)\n", - "print(f\"Datasets in workspace '{workspace_name}':\\n\")\n", - "for dataset in datasets:\n", - " print(f\"- {dataset.name} ({dataset.id})\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "6eee019d", - "metadata": {}, - "outputs": [], - "source": [ - "# Export the extracted data\n", - "extracted_data = extralit_client.export_data(\n", - " workspace=workspace_name,\n", - " output=\"temp_output.csv\" # This will save the data to a CSV file\n", - ")\n", - "\n", - "# Display the extracted data\n", - "if isinstance(extracted_data, dict):\n", - " for schema_name, data_df in extracted_data.items():\n", - " print(f\"\\nExtracted data for schema '{schema_name}':\\n\")\n", - " display(data_df)\n", - "else:\n", - " print(\"\\nExtracted data:\")\n", - " display(extracted_data)" - ] - }, - { - "cell_type": "markdown", - "id": "7a30a5ea", - "metadata": {}, - "source": [ - "## Conclusion\n", - "\n", - "Congratulations! You've successfully tested the primary functionalities of Extralit with default credentials on a fresh install. You have:\n", - "\n", - "1. Connected to Extralit with default credentials\n", - "2. Created a workspace\n", - "3. Added PDF documents\n", - "4. Created and uploaded a schema\n", - "5. Run PDF preprocessing\n", - "6. Run LLM extractions\n", - "7. Checked the extraction results\n", - "\n", - "This workflow demonstrates the basic process of using Extralit for data extraction from scientific papers. In a real-world scenario, you would upload actual scientific papers and create more complex schemas tailored to your specific data extraction needs.\n", - "\n", - "For more detailed information, refer to the [Extralit documentation](https://docs.extralit.ai/latest/)." - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.11.13" - } + "cells": [ + { + "cell_type": "markdown", + "id": "f9d7358b", + "metadata": {}, + "source": [ + "# Setting Up Workspaces in Extralit\n", + "\n", + "In this tutorial, we will learn how to set up and manage workspaces in Extralit using the default credentials on a fresh installation. It will walk you through the following steps:\n", + "\n", + "1. Connecting to Extralit with default credentials 🔑\n", + "2. Creating your first workspace 🏗️\n", + "3. Listing available workspaces 📋\n", + "4. Adding PDF documents to the workspace 📄\n", + "5. Creating and uploading a schema 📊\n", + "6. Running PDF preprocessing 🔍\n", + "7. Running LLM extractions 🤖\n", + "\n", + "![Extralit Workspace Management](https://raw.githubusercontent.com/argilla-io/argilla/main/docs/assets/argilla_workspace_management.png)\n", + "\n", + "## Introduction\n", + "\n", + "A **workspace** is a space inside your Extralit instance where authorized users can collaborate on datasets. Workspaces are accessible through both the Python SDK and the UI. When you first install Extralit, you'll need to create workspaces to organize your data and user access.\n", + "\n", + "For more details on workspace management, refer to the [Extralit documentation](https://docs.extralit.ai/latest/admin_guide/workspace/).\n", + "\n", + "Let's get started!\n" + ] + }, + { + "cell_type": "markdown", + "id": "5601c172", + "metadata": {}, + "source": [ + "## 1. Connecting to Extralit\n", + "\n", + "First, we need to import the Extralit library and connect to our instance using the default credentials." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "ce009aae", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Successfully connected to Extralit at http://localhost:6900/\n" + ] + } + ], + "source": [ + "import extralit as ex\n", + "import pandas as pd\n", + "import pandera as pa\n", + "from pandera.typing import Index, Series\n", + "import tempfile\n", + "from pathlib import Path\n", + "\n", + "# Connect to Extralit using default credentials\n", + "client = ex.Extralit(api_url=\"http://localhost:6900/\", api_key='extralit.apikey')\n", + "\n", + "print(f\"Successfully connected to Extralit at {client.api_url}\")" + ] + }, + { + "cell_type": "markdown", + "id": "fcdd3afe", + "metadata": {}, + "source": [ + "## 2. Creating Your First Workspace\n", + "\n", + "After connecting to Extralit, let's create our first workspace. We'll define a new `Workspace` object and call the `create()` method." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "64b5f09b", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Workspace 'extralit' already exists. Using the existing workspace.\n" + ] + } + ], + "source": [ + "# Define a new workspace\n", + "workspace_name = \"extralit\"\n", + "try:\n", + " new_workspace = ex.Workspace(name=workspace_name, client=client)\n", + "\n", + " # Create the workspace\n", + " workspace = new_workspace.create()\n", + "\n", + " print(f\"Workspace '{workspace_name}' created successfully with ID: {created_workspace.id}\")\n", + "except Exception as e:\n", + " print(f\"Workspace '{workspace_name}' already exists. Using the existing workspace.\")\n", + " workspace = client.workspaces(workspace_name)" + ] + }, + { + "cell_type": "markdown", + "id": "c937e5c7", + "metadata": {}, + "source": [ + "## 3. Listing Available Datsets\n", + "\n", + "Now, let's check all the Datatsts available in the workspace\n" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "d4df67d6", + "metadata": {}, + "outputs": [], + "source": [ + "# List all workspaces\n", + "dataset = client.datasets(\"imdb\")\n", + "dataset.settings.to_json(\"./datasets/imdb/settings.json\")" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "77a5690b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Settings(guidelines=None, allow_extra_metadata=False, distribution=OverlapTaskDistribution(min_submitted=1), fields=[], questions=[], vectors=[], metadata=[])" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "dataset.settings" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0cc75d87", + "metadata": {}, + "outputs": [ + { + "ename": "KeyError", + "evalue": "'reference'", + "output_type": "error", + "traceback": [ + "\u001b[31m---------------------------------------------------------------------------\u001b[39m", + "\u001b[31mKeyError\u001b[39m Traceback (most recent call last)", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[4]\u001b[39m\u001b[32m, line 1\u001b[39m\n\u001b[32m----> \u001b[39m\u001b[32m1\u001b[39m \u001b[43mdataset\u001b[49m\u001b[43m.\u001b[49m\u001b[43mto_disk\u001b[49m\u001b[43m(\u001b[49m\u001b[33;43m\"\u001b[39;49m\u001b[33;43m./extralit-dataset/\u001b[39;49m\u001b[33;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/Projects/extralit/extralit/src/extralit/datasets/_io/_disk.py:59\u001b[39m, in \u001b[36mDiskImportExportMixin.to_disk\u001b[39m\u001b[34m(self, path, with_records)\u001b[39m\n\u001b[32m 57\u001b[39m \u001b[38;5;28mself\u001b[39m.settings.to_json(path=settings_path)\n\u001b[32m 58\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m with_records:\n\u001b[32m---> \u001b[39m\u001b[32m59\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43mrecords\u001b[49m\u001b[43m.\u001b[49m\u001b[43mto_json\u001b[49m\u001b[43m(\u001b[49m\u001b[43mpath\u001b[49m\u001b[43m=\u001b[49m\u001b[43mrecords_path\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 61\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m path\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/Projects/extralit/extralit/src/extralit/records/_dataset_records.py:391\u001b[39m, in \u001b[36mDatasetRecords.to_json\u001b[39m\u001b[34m(self, path)\u001b[39m\n\u001b[32m 380\u001b[39m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34mto_json\u001b[39m(\u001b[38;5;28mself\u001b[39m, path: Union[Path, \u001b[38;5;28mstr\u001b[39m]) -> Path:\n\u001b[32m 381\u001b[39m \u001b[38;5;250m \u001b[39m\u001b[33;03m\"\"\"\u001b[39;00m\n\u001b[32m 382\u001b[39m \u001b[33;03m Export the records to a file on disk.\u001b[39;00m\n\u001b[32m 383\u001b[39m \n\u001b[32m (...)\u001b[39m\u001b[32m 389\u001b[39m \n\u001b[32m 390\u001b[39m \u001b[33;03m \"\"\"\u001b[39;00m\n\u001b[32m--> \u001b[39m\u001b[32m391\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\u001b[43m.\u001b[49m\u001b[43mto_json\u001b[49m\u001b[43m(\u001b[49m\u001b[43mpath\u001b[49m\u001b[43m=\u001b[49m\u001b[43mpath\u001b[49m\u001b[43m)\u001b[49m\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/Projects/extralit/extralit/src/extralit/records/_dataset_records.py:159\u001b[39m, in \u001b[36mDatasetRecordsIterator.to_json\u001b[39m\u001b[34m(self, path)\u001b[39m\n\u001b[32m 158\u001b[39m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34mto_json\u001b[39m(\u001b[38;5;28mself\u001b[39m, path: Union[Path, \u001b[38;5;28mstr\u001b[39m]) -> Path:\n\u001b[32m--> \u001b[39m\u001b[32m159\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mJsonIO\u001b[49m\u001b[43m.\u001b[49m\u001b[43mto_json\u001b[49m\u001b[43m(\u001b[49m\u001b[43mrecords\u001b[49m\u001b[43m=\u001b[49m\u001b[38;5;28;43mlist\u001b[39;49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mpath\u001b[49m\u001b[43m=\u001b[49m\u001b[43mpath\u001b[49m\u001b[43m)\u001b[49m\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/Projects/extralit/extralit/src/extralit/records/_io/_json.py:41\u001b[39m, in \u001b[36mJsonIO.to_json\u001b[39m\u001b[34m(records, path)\u001b[39m\n\u001b[32m 38\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m path.exists():\n\u001b[32m 39\u001b[39m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mFileExistsError\u001b[39;00m(\u001b[33mf\u001b[39m\u001b[33m\"\u001b[39m\u001b[33mFile \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mpath\u001b[38;5;132;01m}\u001b[39;00m\u001b[33m already exists.\u001b[39m\u001b[33m\"\u001b[39m)\n\u001b[32m---> \u001b[39m\u001b[32m41\u001b[39m record_dicts = \u001b[43mGenericIO\u001b[49m\u001b[43m.\u001b[49m\u001b[43mto_list\u001b[49m\u001b[43m(\u001b[49m\u001b[43mrecords\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mflatten\u001b[49m\u001b[43m=\u001b[49m\u001b[38;5;28;43;01mFalse\u001b[39;49;00m\u001b[43m)\u001b[49m\n\u001b[32m 42\u001b[39m \u001b[38;5;28;01mwith\u001b[39;00m \u001b[38;5;28mopen\u001b[39m(path, \u001b[33m\"\u001b[39m\u001b[33mw\u001b[39m\u001b[33m\"\u001b[39m) \u001b[38;5;28;01mas\u001b[39;00m f:\n\u001b[32m 43\u001b[39m json.dump(record_dicts, f)\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/Projects/extralit/extralit/src/extralit/records/_io/_generic.py:41\u001b[39m, in \u001b[36mGenericIO.to_list\u001b[39m\u001b[34m(records, flatten)\u001b[39m\n\u001b[32m 39\u001b[39m dataset_records: \u001b[38;5;28mlist\u001b[39m = []\n\u001b[32m 40\u001b[39m \u001b[38;5;28;01mfor\u001b[39;00m record \u001b[38;5;129;01min\u001b[39;00m records:\n\u001b[32m---> \u001b[39m\u001b[32m41\u001b[39m record_dict = \u001b[43mGenericIO\u001b[49m\u001b[43m.\u001b[49m\u001b[43m_record_to_dict\u001b[49m\u001b[43m(\u001b[49m\u001b[43mrecord\u001b[49m\u001b[43m=\u001b[49m\u001b[43mrecord\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mflatten\u001b[49m\u001b[43m=\u001b[49m\u001b[43mflatten\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 42\u001b[39m records_schema.update([k \u001b[38;5;28;01mfor\u001b[39;00m k \u001b[38;5;129;01min\u001b[39;00m record_dict])\n\u001b[32m 43\u001b[39m dataset_records.append(record_dict)\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/Projects/extralit/extralit/src/extralit/records/_io/_generic.py:104\u001b[39m, in \u001b[36mGenericIO._record_to_dict\u001b[39m\u001b[34m(record, flatten)\u001b[39m\n\u001b[32m 101\u001b[39m record_dict[\u001b[33m\"\u001b[39m\u001b[33mscore\u001b[39m\u001b[33m\"\u001b[39m] = score\n\u001b[32m 102\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m record_dict\n\u001b[32m--> \u001b[39m\u001b[32m104\u001b[39m record_dict = \u001b[43mrecord\u001b[49m\u001b[43m.\u001b[49m\u001b[43mto_dict\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 105\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m flatten:\n\u001b[32m 106\u001b[39m record_dict.update(\n\u001b[32m 107\u001b[39m **record_dict.pop(\u001b[33m\"\u001b[39m\u001b[33mfields\u001b[39m\u001b[33m\"\u001b[39m, {}),\n\u001b[32m 108\u001b[39m **record_dict.pop(\u001b[33m\"\u001b[39m\u001b[33mmetadata\u001b[39m\u001b[33m\"\u001b[39m, {}),\n\u001b[32m 109\u001b[39m **record_dict.pop(\u001b[33m\"\u001b[39m\u001b[33mvectors\u001b[39m\u001b[33m\"\u001b[39m, {}),\n\u001b[32m 110\u001b[39m )\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/Projects/extralit/extralit/src/extralit/records/_resource.py:199\u001b[39m, in \u001b[36mRecord.to_dict\u001b[39m\u001b[34m(self)\u001b[39m\n\u001b[32m 197\u001b[39m server_id = \u001b[38;5;28mstr\u001b[39m(\u001b[38;5;28mself\u001b[39m._model.id) \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m._model.id \u001b[38;5;28;01melse\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[32m 198\u001b[39m status = \u001b[38;5;28mself\u001b[39m.status\n\u001b[32m--> \u001b[39m\u001b[32m199\u001b[39m fields = \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43mfields\u001b[49m\u001b[43m.\u001b[49m\u001b[43mto_dict\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 200\u001b[39m metadata = \u001b[38;5;28mself\u001b[39m.metadata.to_dict()\n\u001b[32m 201\u001b[39m suggestions = \u001b[38;5;28mself\u001b[39m.suggestions.to_dict()\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/Projects/extralit/extralit/src/extralit/records/_resource.py:307\u001b[39m, in \u001b[36mRecordFields.to_dict\u001b[39m\u001b[34m(self)\u001b[39m\n\u001b[32m 305\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m value \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[32m 306\u001b[39m \u001b[38;5;28;01mcontinue\u001b[39;00m\n\u001b[32m--> \u001b[39m\u001b[32m307\u001b[39m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43m_is_image\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkey\u001b[49m\u001b[43m)\u001b[49m:\n\u001b[32m 308\u001b[39m fields[key] = cast_image(value)\n\u001b[32m 309\u001b[39m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28mself\u001b[39m._is_chat(key):\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/Projects/extralit/extralit/src/extralit/records/_resource.py:322\u001b[39m, in \u001b[36mRecordFields._is_image\u001b[39m\u001b[34m(self, key)\u001b[39m\n\u001b[32m 320\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28mself\u001b[39m.record.dataset:\n\u001b[32m 321\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mFalse\u001b[39;00m\n\u001b[32m--> \u001b[39m\u001b[32m322\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43mrecord\u001b[49m\u001b[43m.\u001b[49m\u001b[43mdataset\u001b[49m\u001b[43m.\u001b[49m\u001b[43msettings\u001b[49m\u001b[43m.\u001b[49m\u001b[43mschema\u001b[49m\u001b[43m[\u001b[49m\u001b[43mkey\u001b[49m\u001b[43m]\u001b[49m.type == \u001b[33m\"\u001b[39m\u001b[33mimage\u001b[39m\u001b[33m\"\u001b[39m\n", + "\u001b[31mKeyError\u001b[39m: 'reference'" + ] + } + ], + "source": [ + "dataset.to_disk(\"./datasets/\")" + ] + }, + { + "cell_type": "markdown", + "id": "8ca5b2b8", + "metadata": {}, + "source": [ + "## 4. Adding PDF Documents to the Workspace\n", + "\n", + "Let's add two PDF documents to our workspace. For this tutorial, we'll create temporary PDF files. In a real-world scenario, you'd use actual scientific papers." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "59084a6d", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Created reference CSV at /tmp/references.csv\n" + ] }, - "nbformat": 4, - "nbformat_minor": 5 -} \ No newline at end of file + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
referencefile_pathtitleauthorsyear
0smith2023first/tmp/sample1.pdfStudy on Sample DataSmith, J.2023
1johnson2022analysis/tmp/sample2.pdfAnalysis of Experimental ResultsJohnson, A.2022
\n", + "
" + ], + "text/plain": [ + " reference file_path title \\\n", + "0 smith2023first /tmp/sample1.pdf Study on Sample Data \n", + "1 johnson2022analysis /tmp/sample2.pdf Analysis of Experimental Results \n", + "\n", + " authors year \n", + "0 Smith, J. 2023 \n", + "1 Johnson, A. 2022 " + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# In a real-world scenario, you would use actual PDFs. Here we'll create temp files\n", + "# Define the paths for our temporary PDF files\n", + "temp_dir = tempfile.gettempdir()\n", + "pdf_file1 = Path(temp_dir) / \"sample1.pdf\"\n", + "pdf_file2 = Path(temp_dir) / \"sample2.pdf\"\n", + "\n", + "# Create empty PDF files - in reality, these would be your actual PDFs\n", + "with open(pdf_file1, \"wb\") as f:\n", + " f.write(b\"%PDF-1.5\\n%Example Document 1\")\n", + " \n", + "with open(pdf_file2, \"wb\") as f:\n", + " f.write(b\"%PDF-1.5\\n%Example Document 2\")\n", + "\n", + "# Create a reference dataframe with metadata for the PDFs\n", + "references_df = pd.DataFrame({\n", + " \"reference\": [\"smith2023first\", \"johnson2022analysis\"],\n", + " \"file_path\": [str(pdf_file1), str(pdf_file2)],\n", + " \"title\": [\"Study on Sample Data\", \"Analysis of Experimental Results\"],\n", + " \"authors\": [\"Smith, J.\", \"Johnson, A.\"],\n", + " \"year\": [2023, 2022]\n", + "})\n", + "\n", + "# Save the dataframe to a temporary CSV file\n", + "references_csv = Path(temp_dir) / \"references.csv\"\n", + "references_df.to_csv(references_csv, index=False)\n", + "\n", + "print(f\"Created reference CSV at {references_csv}\")\n", + "references_df" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "abc8562f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Workspace(id=UUID('df91e2b9-c712-4474-af82-891478f23d40') inserted_at=datetime.datetime(2025, 4, 16, 1, 27, 58, 174591) updated_at=datetime.datetime(2025, 4, 16, 1, 27, 58, 174591) name='test-workspace')" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "new_workspace" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a147c6c2", + "metadata": {}, + "outputs": [], + "source": [ + "# Import the documents into the workspace\n", + "# For demonstration purposes, we'll use the extralit client directly\n", + "# Initialize the extralit client with the same credentials\n", + "extralit_client = ex.Extralit(api_url=\"http://localhost:6900/\", api_key='extralit.apikey')\n", + "\n", + "# Import the documents\n", + "result = extralit_client.import_documents(\n", + " workspace=workspace_name,\n", + " papers=str(references_csv),\n", + " metadatas=[\"title\", \"authors\", \"year\"]\n", + ")\n", + "\n", + "print(f\"Imported {len(result)} documents into workspace '{workspace_name}'\")" + ] + }, + { + "cell_type": "markdown", + "id": "98a2025d", + "metadata": {}, + "source": [ + "## 5. Creating and Uploading a Schema\n", + "\n", + "Now, let's create a simple schema to define the structure of the data we want to extract from our documents." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f15f4b2f", + "metadata": {}, + "outputs": [], + "source": [ + "# Define a simple schema using Pandera\n", + "class Publication(pa.DataFrameModel):\n", + " \"\"\"\n", + " General information about the publication, extracted once per paper.\n", + " \"\"\"\n", + " reference: Index[str] = pa.Field(unique=True, check_name=True)\n", + " title: Series[str] = pa.Field()\n", + " authors: Series[str] = pa.Field()\n", + " publication_year: Series[int] = pa.Field(ge=1900, le=2100)\n", + " doi: Series[str] = pa.Field(nullable=True)\n", + " \n", + " class Config:\n", + " singleton = {'enabled': True} # Indicates this is a document-level schema\n", + "\n", + "# Define a second schema for experimental data\n", + "class ExperimentalData(pa.DataFrameModel):\n", + " \"\"\"\n", + " Experimental data extracted from the paper, may appear multiple times.\n", + " \"\"\"\n", + " experiment_id: Series[str] = pa.Field()\n", + " sample_size: Series[int] = pa.Field(gt=0)\n", + " study_type: Series[str] = pa.Field()\n", + " result_value: Series[float] = pa.Field()\n", + " significance: Series[float] = pa.Field(le=1.0, ge=0.0)\n", + "\n", + "# Create a schema structure object\n", + "from extralit.extraction.models.schema import SchemaStructure\n", + "\n", + "# Save schemas to a temporary JSON file\n", + "schema_file = Path(temp_dir) / \"schemas.json\"\n", + "schema_structure = SchemaStructure(schemas={\"Publication\": Publication, \"ExperimentalData\": ExperimentalData})\n", + "schema_structure.to_json(schema_file)\n", + "\n", + "print(f\"Created schema file at {schema_file}\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "dc61a1ab", + "metadata": {}, + "outputs": [], + "source": [ + "# Upload the schema to the workspace\n", + "result = extralit_client.upload_schemas(\n", + " workspace=workspace_name,\n", + " schemas=str(schema_file)\n", + ")\n", + "\n", + "print(f\"Uploaded schemas to workspace '{workspace_name}'\")" + ] + }, + { + "cell_type": "markdown", + "id": "7a92c20d", + "metadata": {}, + "source": [ + "## 6. Running PDF Preprocessing\n", + "\n", + "Next, let's run the PDF preprocessing step to extract text and table content from our documents." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "768e7176", + "metadata": {}, + "outputs": [], + "source": [ + "# Run PDF preprocessing\n", + "from extralit.preprocessing.pdf import process_pdfs\n", + "\n", + "# Get the references from our dataframe\n", + "references = references_df[\"reference\"].tolist()\n", + "\n", + "# Run the preprocessing step\n", + "preprocessing_result = process_pdfs(\n", + " workspace=workspace_name,\n", + " references=references,\n", + " text_ocr=[\"default\"], # Using the default text OCR model\n", + " table_ocr=[\"default\"], # Using the default table OCR model\n", + " output_dataset=\"PDF_Preprocessing_Results\"\n", + ")\n", + "\n", + "print(f\"Preprocessing completed for {len(preprocessing_result)} documents\")" + ] + }, + { + "cell_type": "markdown", + "id": "44aa776d", + "metadata": {}, + "source": [ + "## 7. Running LLM Extractions\n", + "\n", + "Finally, let's run the LLM extraction step to extract structured data according to our schema." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "19221abe", + "metadata": {}, + "outputs": [], + "source": [ + "# Run LLM extractions\n", + "from extralit.extraction.llm import extract_data\n", + "\n", + "# Run the extraction step\n", + "extraction_result = extract_data(\n", + " workspace=workspace_name,\n", + " references=references,\n", + " output_dataset=\"Data_Extraction_Results\"\n", + ")\n", + "\n", + "print(f\"LLM extractions completed for {len(extraction_result)} documents\")" + ] + }, + { + "cell_type": "markdown", + "id": "c1b6ec61", + "metadata": {}, + "source": [ + "## 8. Checking Extraction Results\n", + "\n", + "Let's check the results of our extractions by listing the datasets created and viewing the extracted data." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4dbb695d", + "metadata": {}, + "outputs": [], + "source": [ + "# List datasets in the workspace\n", + "datasets = extralit_client.list_datasets(workspace=workspace_name)\n", + "print(f\"Datasets in workspace '{workspace_name}':\\n\")\n", + "for dataset in datasets:\n", + " print(f\"- {dataset.name} ({dataset.id})\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "6eee019d", + "metadata": {}, + "outputs": [], + "source": [ + "# Export the extracted data\n", + "extracted_data = extralit_client.export_data(\n", + " workspace=workspace_name,\n", + " output=\"temp_output.csv\" # This will save the data to a CSV file\n", + ")\n", + "\n", + "# Display the extracted data\n", + "if isinstance(extracted_data, dict):\n", + " for schema_name, data_df in extracted_data.items():\n", + " print(f\"\\nExtracted data for schema '{schema_name}':\\n\")\n", + " display(data_df)\n", + "else:\n", + " print(\"\\nExtracted data:\")\n", + " display(extracted_data)" + ] + }, + { + "cell_type": "markdown", + "id": "7a30a5ea", + "metadata": {}, + "source": [ + "## Conclusion\n", + "\n", + "Congratulations! You've successfully tested the primary functionalities of Extralit with default credentials on a fresh install. You have:\n", + "\n", + "1. Connected to Extralit with default credentials\n", + "2. Created a workspace\n", + "3. Added PDF documents\n", + "4. Created and uploaded a schema\n", + "5. Run PDF preprocessing\n", + "6. Run LLM extractions\n", + "7. Checked the extraction results\n", + "\n", + "This workflow demonstrates the basic process of using Extralit for data extraction from scientific papers. In a real-world scenario, you would upload actual scientific papers and create more complex schemas tailored to your specific data extraction needs.\n", + "\n", + "For more detailed information, refer to the [Extralit documentation](https://docs.extralit.ai/latest/)." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.13" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/extralit-frontend/CHANGELOG.md b/extralit-frontend/CHANGELOG.md index e8a4fa3ba..9644bf474 100644 --- a/extralit-frontend/CHANGELOG.md +++ b/extralit-frontend/CHANGELOG.md @@ -14,7 +14,8 @@ These are the section headers that we use: * "Security" in case of vulnerabilities. --> -## [Extralit] [0.6.1](https://github.com/extralit/extralit/compare/v0.5.0...v0.6.1) + +## [Extralit] [Unreleased](https://github.com/extralit/extralit/compare/v0.5.0...v0.6.1) ### Changed - Refactored the frontend to use a single fetchDocument method that queries documents by any identifier and workspace, replacing the previous fetchDocumentByID and fetchDocumentByPubmedID methods. The view model and use case now expect and handle the new API response format diff --git a/extralit-frontend/components/base/base-breadcrumbs/BaseBreadcrumbs.vue b/extralit-frontend/components/base/base-breadcrumbs/BaseBreadcrumbs.vue index 681e017c1..a606a8379 100644 --- a/extralit-frontend/components/base/base-breadcrumbs/BaseBreadcrumbs.vue +++ b/extralit-frontend/components/base/base-breadcrumbs/BaseBreadcrumbs.vue @@ -33,7 +33,7 @@ - + diff --git a/extralit-frontend/components/base/base-code/BaseCode.vue b/extralit-frontend/components/base/base-code/BaseCode.vue index cdda30036..59d42df95 100644 --- a/extralit-frontend/components/base/base-code/BaseCode.vue +++ b/extralit-frontend/components/base/base-code/BaseCode.vue @@ -1,9 +1,9 @@ diff --git a/extralit-frontend/components/features/documents/useDocumentsListViewModel.ts b/extralit-frontend/components/features/documents/useDocumentsListViewModel.ts index 0bc7c2473..a9586ac8d 100644 --- a/extralit-frontend/components/features/documents/useDocumentsListViewModel.ts +++ b/extralit-frontend/components/features/documents/useDocumentsListViewModel.ts @@ -3,6 +3,7 @@ * Handles document loading and grouping logic */ +import { ref, computed, watch, onMounted } from "@nuxtjs/composition-api"; import { useResolve } from "ts-injecty"; import { GetDocumentsByWorkspaceUseCase } from "~/v1/domain/usecases/get-documents-by-workspace-use-case"; import { Document } from "~/v1/domain/entities/document/Document"; @@ -13,65 +14,132 @@ export interface DocumentGroup { metadata: Record | null; } -export function useDocumentsListViewModel() { +export const useDocumentsListViewModel = (props: { workspaceId: string }) => { const getDocumentsByWorkspaceUseCase = useResolve(GetDocumentsByWorkspaceUseCase); - return { - // Use cases - getDocumentsByWorkspaceUseCase, + // Reactive state + const documents = ref([]); + const isLoading = ref(false); + const error = ref(null); - // Document loading - async loadDocuments(workspaceId: string): Promise { - return await getDocumentsByWorkspaceUseCase.execute(workspaceId); - }, + // Computed properties + const groupedDocuments = computed(() => { + return groupDocumentsByReference(documents.value); + }); - // Document grouping logic - groupDocumentsByReference(documents: Document[]): DocumentGroup[] { - const groups = new Map(); - - documents.forEach((document) => { - const key = document.reference || "no-reference"; - - if (!groups.has(key)) { - groups.set(key, { - reference: document.reference, - documents: [], - metadata: document.metadata, - }); - } - - groups.get(key)!.documents.push(document); - }); - - return Array.from(groups.values()).sort((a, b) => { - // Sort by reference, with 'no-reference' at the end - if (!a.reference && b.reference) return 1; - if (a.reference && !b.reference) return -1; - if (!a.reference && !b.reference) return 0; - return a.reference.localeCompare(b.reference); - }); - }, + const totalFiles = computed(() => { + return documents.value.length; + }); - // Statistics calculation - calculateStats(documents: Document[]) { - const groupedDocuments = this.groupDocumentsByReference(documents); - return { - totalReferences: groupedDocuments.length, - totalFiles: documents.length, - }; - }, + const stats = computed(() => { + const grouped = groupDocumentsByReference(documents.value); + return { + totalReferences: grouped.length, + totalFiles: documents.value.length, + }; + }); + + // Document loading + const loadDocuments = async () => { + if (!props.workspaceId) { + documents.value = []; + return; + } + + isLoading.value = true; + error.value = null; + + try { + const response = await getDocumentsByWorkspaceUseCase.execute(props.workspaceId); + documents.value = response; + } catch (err) { + // eslint-disable-next-line no-console + console.error("Failed to load documents:", err); + error.value = "Failed to load documents. Please try again."; + documents.value = []; + } finally { + isLoading.value = false; + } + }; + + // Document grouping logic + const groupDocumentsByReference = (docs: Document[]): DocumentGroup[] => { + const groups = new Map(); + + docs.forEach((document) => { + const key = document.reference || "no-reference"; + + if (!groups.has(key)) { + groups.set(key, { + reference: document.reference, + documents: [], + metadata: document.metadata, + }); + } + + groups.get(key)!.documents.push(document); + }); - // Document actions - openDocument(document: Document) { - if (document.url) { - window.open(document.url, "_blank"); + return Array.from(groups.values()).sort((a, b) => { + // Sort by reference, with 'no-reference' at the end + if (!a.reference && b.reference) return 1; + if (a.reference && !b.reference) return -1; + if (!a.reference && !b.reference) return 0; + return a.reference.localeCompare(b.reference); + }); + }; + + // Document actions + const openDocument = (document: Document) => { + if (document.url) { + window.open(document.url, "_blank"); + } + }; + + // Watch for workspace changes and reload data + watch( + () => props.workspaceId, + async (newWorkspaceId, oldWorkspaceId) => { + // Load data when workspace changes, including from null to a value + if (newWorkspaceId && newWorkspaceId !== oldWorkspaceId) { + await loadDocuments(); } }, + { immediate: false } + ); + + // Load data on component mount only if workspace is available + onMounted(async () => { + if (props.workspaceId) { + await loadDocuments(); + } + }); + + // Retry mechanism for error recovery + const retryLoad = async () => { + await loadDocuments(); }; -} -// Backward compatibility export -export const getDocumentsByWorkspace = async (workspaceId: string): Promise => { - const viewModel = useDocumentsListViewModel(); - return await viewModel.loadDocuments(workspaceId); + // Public method to refresh the documents list + const refresh = async () => { + await loadDocuments(); + }; + + return { + // Reactive state + documents, + isLoading, + error, + + // Computed properties + groupedDocuments, + totalFiles, + stats, + + // Methods + loadDocuments, + openDocument, + retryLoad, + refresh, + }; }; diff --git a/extralit-frontend/components/features/import/analysis/ImportAnalysisTable.vue b/extralit-frontend/components/features/import/analysis/ImportAnalysisTable.vue index cf23c7264..81f23e14a 100644 --- a/extralit-frontend/components/features/import/analysis/ImportAnalysisTable.vue +++ b/extralit-frontend/components/features/import/analysis/ImportAnalysisTable.vue @@ -82,7 +82,7 @@ export default { default: null, }, pdfData: { - type: Object, + type: Object as () => { matchedFiles: any[] } | null, default: () => ({ matchedFiles: [] }), }, workspace: { @@ -401,8 +401,6 @@ export default { return files.join(", "); }, - - getStatusText(status: string) { const statusMap = { add: "Add", @@ -449,9 +447,6 @@ export default { } }, - - - formatColumnTitle(fieldName: string) { // Convert field names to readable titles return fieldName @@ -460,9 +455,6 @@ export default { .trim(); }, - - - emitUpdate() { const confirmedDocuments: Record = {}; const documentActions = { ...this.documentActions, ...this.localDocumentActions }; @@ -562,6 +554,19 @@ export default { this.localDocumentActions = {}; }, + // Add missing methods + retryAnalysis() { + if (this.$refs.viewModel && this.$refs.viewModel.retryAnalysis) { + this.$refs.viewModel.retryAnalysis(); + } + }, + + reset() { + this.resetLocalState(); + if (this.$refs.viewModel && this.$refs.viewModel.reset) { + this.$refs.viewModel.reset(); + } + }, // Helper method to prepare data for ImportHistoryCreate payload getImportHistoryData() { @@ -613,11 +618,8 @@ export default { }, setup(props) { - const viewModel = useImportAnalysisTableViewModel(props); - return { - ...viewModel, - }; - } + return useImportAnalysisTableViewModel(props); + }, }; diff --git a/extralit-frontend/components/features/import/analysis/useImportAnalysisTableViewModel.ts b/extralit-frontend/components/features/import/analysis/useImportAnalysisTableViewModel.ts index db4a20985..99eb2e8eb 100644 --- a/extralit-frontend/components/features/import/analysis/useImportAnalysisTableViewModel.ts +++ b/extralit-frontend/components/features/import/analysis/useImportAnalysisTableViewModel.ts @@ -5,7 +5,16 @@ import type { ImportAnalysisResponse, ImportStatus } from "~/v1/domain/entities/ import { Workspace } from "~/v1/domain/entities/workspace/Workspace"; import { TableData } from "~/v1/domain/entities/table/TableData"; -export function useImportAnalysisTableViewModel(props: any) { +export const useImportAnalysisTableViewModel = (props: { + workspace: Workspace | null; + dataframeData: TableData | null; + pdfData: { + matchedFiles: any[]; + } | null; +}) => { + const importAnalysisUseCase = useResolve(GetImportAnalysisUseCase); + + // Reactive state const isAnalyzing = ref(false); const hasError = ref(false); const errorMessage = ref(""); @@ -13,8 +22,17 @@ export function useImportAnalysisTableViewModel(props: any) { const documentActions = ref>({}); const lastAnalysisKey = ref(""); // Track last analysis to prevent duplicates - const importAnalysisUseCase = useResolve(GetImportAnalysisUseCase); + // Computed properties + const hasRequiredData = () => { + return ( + props.workspace && + props.dataframeData && + props.dataframeData.data.length > 0 && + props.pdfData?.matchedFiles?.length > 0 + ); + }; + // Methods const reset = () => { isAnalyzing.value = false; hasError.value = false; @@ -58,7 +76,7 @@ export function useImportAnalysisTableViewModel(props: any) { actions[reference] = docInfo.status; }); documentActions.value = actions; - } catch (error) { + } catch (error: any) { hasError.value = true; errorMessage.value = error.message || "Failed to analyze import"; } finally { @@ -91,7 +109,7 @@ export function useImportAnalysisTableViewModel(props: any) { newVal.dataframeLength !== oldVal.dataframeLength || newVal.matchedFilesLength !== oldVal.matchedFilesLength ) { - analyzeImport(props.workspace, props.dataframeData, props.pdfData.matchedFiles); + analyzeImport(props.workspace!, props.dataframeData!, props.pdfData!.matchedFiles); } } }, @@ -99,13 +117,19 @@ export function useImportAnalysisTableViewModel(props: any) { ); return { + // Reactive state isAnalyzing, hasError, errorMessage, analysisResult, documentActions, + + // Computed properties + hasRequiredData, + + // Methods reset, analyzeImport, retryAnalysis, }; -} +}; diff --git a/extralit-frontend/components/features/import/history/ImportHistoryList.vue b/extralit-frontend/components/features/import/history/ImportHistoryList.vue index 09765c098..04c2be05f 100644 --- a/extralit-frontend/components/features/import/history/ImportHistoryList.vue +++ b/extralit-frontend/components/features/import/history/ImportHistoryList.vue @@ -1,12 +1,5 @@ diff --git a/extralit-frontend/translation/en.js b/extralit-frontend/translation/en.js index da4167871..156a781ac 100644 --- a/extralit-frontend/translation/en.js +++ b/extralit-frontend/translation/en.js @@ -130,6 +130,7 @@ export default { "hf-login": "Sign in with Hugging Face", sign_in_with_username: "Sign in with username", cancel: "Cancel", + confirmCancel: "Are you sure you want to cancel? Any unsaved changes will be lost.", continue: "Continue", delete: "Delete", exportToHub: "Push to Hub", @@ -141,9 +142,6 @@ export default { datasetSettings: "Dataset settings", }, }, - common: { - confirmCancel: "Are you sure you want to cancel? Any unsaved changes will be lost.", - }, to_submit_complete_required: "To submit complete \nrequired responses", some_records_failed_to_annotate: "Some records failed to annotate", changes_no_submit: "You didn't submit your changes", @@ -297,6 +295,9 @@ export default { datasets: "Datasets", documents: "Documents", }, + document: { + notFound: "Document not found", + }, import: { title: "Import Documents to {workspaceName} Workspace", historyTitle: "Import History", diff --git a/extralit-frontend/v1/di/di.ts b/extralit-frontend/v1/di/di.ts index e7b40a862..96c46d206 100644 --- a/extralit-frontend/v1/di/di.ts +++ b/extralit-frontend/v1/di/di.ts @@ -39,7 +39,7 @@ import { useWorkspaces } from "@/v1/infrastructure/storage/WorkspaceStorage"; import { GetHfDatasetCreationUseCase } from "~/v1/domain/usecases/get-hf-dataset-creation-use-case"; import { GetDatasetsUseCase } from "@/v1/domain/usecases/get-datasets-use-case"; import { GetDatasetByIdUseCase } from "@/v1/domain/usecases/get-dataset-by-id-use-case"; -import { GetDocumentByIdUseCase } from "@/v1/domain/usecases/get-document-by-id-use-case"; +import { GetDocumentByRecordMetadataUseCase } from "~/v1/domain/usecases/get-document-by-record-metadata-use-case"; import { GetDocumentsByWorkspaceUseCase } from "@/v1/domain/usecases/get-documents-by-workspace-use-case"; import { GetLLMExtractionUseCase } from "@/v1/domain/usecases/get-extraction-completion-use-case"; import { GetExtractionSchemaUseCase } from "@/v1/domain/usecases/get-extraction-schema-use-case"; @@ -115,7 +115,7 @@ export const loadDependencyContainer = (context: Context) => { register(GetDatasetsUseCase).withDependencies(DatasetRepository, useDatasets).build(), - register(GetDocumentByIdUseCase).withDependencies(DocumentRepository, useDocument).build(), + register(GetDocumentByRecordMetadataUseCase).withDependencies(DocumentRepository, useDocument).build(), register(GetDocumentsByWorkspaceUseCase).withDependency(DocumentRepository).build(), diff --git a/extralit-frontend/v1/domain/services/FileMatchingService.ts b/extralit-frontend/v1/domain/services/FileMatchingService.ts index 90732da5e..d483622b4 100644 --- a/extralit-frontend/v1/domain/services/FileMatchingService.ts +++ b/extralit-frontend/v1/domain/services/FileMatchingService.ts @@ -1,3 +1,4 @@ +import { TableData } from "../entities/table/TableData"; import type { IFileMatchingService, FileMatchResult, FileMatchingResult } from "./IFileMatchingService"; import type { ParsedEntry } from "./IFileParsingService"; @@ -14,7 +15,8 @@ interface PrefixMatchResult { } export class PdfMatchingService implements IFileMatchingService { - matchFiles(files: File[], dataframeData): FileMatchingResult { + matchFiles(files: File[], dataframeData: TableData): FileMatchingResult { + // @ts-ignore const entries: ParsedEntry[] = dataframeData?.data || []; if (!entries || entries.length === 0 || files.length === 0) { @@ -29,13 +31,14 @@ export class PdfMatchingService implements IFileMatchingService { // Track which references have been matched to support multiple files per reference const referenceFileCount = new Map(); - const processedFiles = new Set(); + // Track which files have been used to ensure one-to-one file-to-bib-entry matching + const usedFiles = new Set(); - // Phase 1: Maximum prefix path matching (highest priority) - const prefixMatches = this.findMaximumPrefixMatches(files, entries); + // Phase 1: Maximum prefix path matching for entries with file attributes + const prefixMatches = this.findMaximumPrefixMatches(files, entries, usedFiles); for (const match of prefixMatches) { - if (!processedFiles.has(match.file)) { + if (!usedFiles.has(match.file)) { matchedFiles.push({ file: match.file, bibEntry: match.entry, @@ -46,49 +49,32 @@ export class PdfMatchingService implements IFileMatchingService { // Track multiple files per reference const currentCount = referenceFileCount.get(match.entry.reference) || 0; referenceFileCount.set(match.entry.reference, currentCount + 1); - processedFiles.add(match.file); + usedFiles.add(match.file); // Mark file as used } } - // Phase 2: Webkit path matching for remaining files - const remainingFiles = files.filter((file) => !processedFiles.has(file)); + // Phase 2: Exact matching for remaining files against all entries + const remainingFiles = files.filter((file) => !usedFiles.has(file)); for (const file of remainingFiles) { - const webkitMatch = this.findWebkitPathMatch(file, entries); - if (webkitMatch) { + const exactMatch = this.findExactMatch(file, entries, usedFiles); + if (exactMatch) { matchedFiles.push({ file, - bibEntry: webkitMatch.entry, - matchType: webkitMatch.type, - confidence: webkitMatch.confidence, + bibEntry: exactMatch.entry, + matchType: exactMatch.type, + confidence: exactMatch.confidence, }); - const currentCount = referenceFileCount.get(webkitMatch.entry.reference) || 0; - referenceFileCount.set(webkitMatch.entry.reference, currentCount + 1); - processedFiles.add(file); + const currentCount = referenceFileCount.get(exactMatch.entry.reference) || 0; + referenceFileCount.set(exactMatch.entry.reference, currentCount + 1); + usedFiles.add(file); // Mark file as used } } - // Phase 3: Other matching methods for remaining files - const finalRemainingFiles = files.filter((file) => !processedFiles.has(file)); - - for (const file of finalRemainingFiles) { - const match = this.findBestNonWebkitMatch(file, entries); - if (match) { - matchedFiles.push({ - file, - bibEntry: match.entry, - matchType: match.type, - confidence: match.confidence, - }); - - const currentCount = referenceFileCount.get(match.entry.reference) || 0; - referenceFileCount.set(match.entry.reference, currentCount + 1); - processedFiles.add(file); - } else { - unmatchedFiles.push(file); - } - } + // Add remaining unmatched files + const finalRemainingFiles = files.filter((file) => !usedFiles.has(file)); + unmatchedFiles.push(...finalRemainingFiles); // Sort matched files by confidence (highest first), then by reference for grouping matchedFiles.sort((a, b) => { @@ -105,12 +91,12 @@ export class PdfMatchingService implements IFileMatchingService { } /** - * Find maximum prefix path matches for all files against all entries - * This method implements the core maximum prefix matching algorithm + * Find maximum prefix path matches for entries with file attributes */ private findMaximumPrefixMatches( files: File[], - entries: ParsedEntry[] + entries: ParsedEntry[], + usedFiles: Set = new Set() ): Array<{ file: File; entry: ParsedEntry; @@ -124,6 +110,13 @@ export class PdfMatchingService implements IFileMatchingService { confidence: number; }> = []; + // Only process entries that have file attributes + const entriesWithFiles = entries.filter((entry) => entry.filePaths && entry.filePaths.length > 0); + + if (entriesWithFiles.length === 0) { + return matches; + } + // Create a map of all possible file-entry combinations with their prefix match scores const allCombinations: Array<{ file: File; @@ -132,12 +125,13 @@ export class PdfMatchingService implements IFileMatchingService { }> = []; for (const file of files) { + // Skip files that are already matched + if (usedFiles.has(file)) continue; + const filePath: string = (file as any).webkitRelativePath || file.name; const importFilePath = this.normalizePath(filePath); - for (const entry of entries) { - if (!entry.filePaths || entry.filePaths.length === 0) continue; - + for (const entry of entriesWithFiles) { for (const bibFilePath of entry.filePaths) { const importBibPath = this.normalizePath(bibFilePath); const prefixResult = this.calculateMaximumPrefixMatch(importFilePath, importBibPath); @@ -162,14 +156,14 @@ export class PdfMatchingService implements IFileMatchingService { }); // Progressive file addition with deduplication - const usedFiles = new Set(); + const localUsedFiles = new Set(); const referenceFileCounts = new Map(); for (const combination of allCombinations) { const { file, entry, prefixResult } = combination; // Skip if file is already matched with higher confidence - if (usedFiles.has(file)) continue; + if (localUsedFiles.has(file)) continue; // Allow multiple files per reference, but ensure quality matches const currentFileCount = referenceFileCounts.get(entry.reference) || 0; @@ -185,7 +179,7 @@ export class PdfMatchingService implements IFileMatchingService { confidence: prefixResult.confidence, }); - usedFiles.add(file); + localUsedFiles.add(file); referenceFileCounts.set(entry.reference, currentFileCount + 1); } } @@ -193,6 +187,120 @@ export class PdfMatchingService implements IFileMatchingService { return matches; } + /** + * Find exact matches for remaining files against all entries + */ + private findExactMatch(file: File, entries: ParsedEntry[], usedFiles: Set = new Set()): MatchCandidate | null { + // Skip if file is already matched + if (usedFiles.has(file)) { + return null; + } + + const fileName: string = file.name.toLowerCase().replace(/\.pdf$/, ""); + let bestMatch: MatchCandidate | null = null; + let bestConfidence = 0; + + for (const entry of entries) { + const matches = [ + this.checkReferenceSubstringMatch(fileName, entry.reference), + this.checkTitleSubstringMatch(fileName, entry.title), + ].filter(Boolean); + + if (matches.length > 0) { + const bestFileMatch = matches.reduce((best, current) => + current.confidence > best.confidence ? current : best + ); + + if (bestFileMatch.confidence > bestConfidence) { + bestMatch = { + entry, + type: bestFileMatch.type, + confidence: bestFileMatch.confidence, + }; + bestConfidence = bestFileMatch.confidence; + } + } + } + + return bestConfidence >= 0.9 ? bestMatch : null; + } + + /** + * Check if filename contains the reference as a substring + */ + private checkReferenceSubstringMatch( + fileName: string, + reference?: string + ): { type: string; confidence: number } | null { + if (!reference) return null; + + const refKey = reference.toLowerCase(); + + // Check for exact match first + if (fileName === refKey) { + return { type: "exact_reference", confidence: 1.0 }; + } + + // Check if filename contains reference as substring, but only if it's a significant match + if (fileName.includes(refKey)) { + // Calculate how much of the filename the reference represents + const referenceRatio = refKey.length / fileName.length; + + // Only accept if reference represents at least 60% of the filename + // This prevents short references from matching long filenames inappropriately + if (referenceRatio >= 0.6) { + return { type: "reference_substring", confidence: 0.9 }; + } + + // For less significant matches, reduce confidence + if (referenceRatio >= 0.4) { + return { type: "reference_substring", confidence: 0.7 }; + } + } + + return null; + } + + /** + * Check if filename contains normalized title words as substrings + */ + private checkTitleSubstringMatch(fileName: string, title?: string): { type: string; confidence: number } | null { + if (!title) return null; + + const cleanTitle = title + .toLowerCase() + .replace(/[_\-\s]+/g, " ") + .trim(); + + const cleanFileName = fileName.replace(/[_\-\s]+/g, " ").trim(); + + // Check for exact match first + if (cleanFileName === cleanTitle) { + return { type: "exact_title", confidence: 1.0 }; + } + + // Split title into words and check if filename contains each word + const titleWords = cleanTitle.split(" ").filter((word) => word.length > 2); + + if (titleWords.length === 0) return null; + + let matchedWords = 0; + for (const titleWord of titleWords) { + if (cleanFileName.includes(titleWord)) { + matchedWords++; + } + } + + if (matchedWords > 0) { + const confidence = matchedWords / titleWords.length; + if (confidence >= 0.6) { + return { type: "title_substring", confidence: confidence * 0.8 }; + } + } + + return null; + } + /** * Calculate maximum prefix match between two import paths */ @@ -241,7 +349,7 @@ export class PdfMatchingService implements IFileMatchingService { } } - // If no exact suffix match, try filename similarity + // If no exact suffix match, try exact filename match if (maxPrefixLength === 0) { const fileName = filePathParts[filePathParts.length - 1]; const bibFileName = bibPathParts[bibPathParts.length - 1]; @@ -251,11 +359,20 @@ export class PdfMatchingService implements IFileMatchingService { const cleanFileName = fileName.replace(/\.pdf$/i, ""); const cleanBibFileName = bibFileName.replace(/\.pdf$/i, ""); - const similarity = this.calculateStringSimilarity(cleanFileName, cleanBibFileName); - if (similarity >= 0.8) { + // Check for exact filename match + if (cleanFileName === cleanBibFileName) { return { prefixLength: 1, - confidence: similarity * 0.7, // Lower confidence for filename-only matches + confidence: 0.8, // Lower confidence for filename-only matches + type: "filename_similarity", + }; + } + + // Check for similar filenames (e.g., with version suffixes) + if (cleanFileName.includes(cleanBibFileName) || cleanBibFileName.includes(cleanFileName)) { + return { + prefixLength: 1, + confidence: 0.7, // Even lower confidence for similar filenames type: "filename_similarity", }; } @@ -289,205 +406,9 @@ export class PdfMatchingService implements IFileMatchingService { return { prefixLength: 0, confidence: 0, type: "no_match" }; } - private findWebkitPathMatch(file: File, entries: ParsedEntry[]): MatchCandidate | null { - const filePath: string = (file as any).webkitRelativePath || file.name; - - for (const entry of entries) { - const webkitMatch = this.checkWebkitPathMatch(filePath, entry.filePaths); - if (webkitMatch) { - return { - entry, - type: webkitMatch.type, - confidence: webkitMatch.confidence, - }; - } - } - return null; - } - - private findBestNonWebkitMatch(file: File, entries: ParsedEntry[]): MatchCandidate | null { - const fileName: string = file.name.toLowerCase().replace(/\.pdf$/, ""); - let bestMatch: MatchCandidate | null = null; - let bestConfidence = 0; - - for (const entry of entries) { - const matches = [ - this.checkFileFieldMatch(fileName, entry.filePaths), - this.checkExactMatch(fileName, entry.reference), - this.checkTitleMatch(fileName, entry.title), - ].filter(Boolean); - - if (matches.length > 0) { - const bestFileMatch = matches.reduce((best, current) => - current.confidence > best.confidence ? current : best - ); - - if (bestFileMatch.confidence > bestConfidence) { - bestMatch = { - entry, - type: bestFileMatch.type, - confidence: bestFileMatch.confidence, - }; - bestConfidence = bestFileMatch.confidence; - } - } - } - - return bestConfidence >= 0.6 ? bestMatch : null; - } - - private checkWebkitPathMatch( - filePath: string, - parsedFilePaths?: string[] - ): { type: string; confidence: number } | null { - if (!parsedFilePaths || parsedFilePaths.length === 0) return null; - - const importFilePath = this.normalizePath(filePath); - - for (const bibFilePath of parsedFilePaths) { - const importBibPath = this.normalizePath(bibFilePath); - - // Use the same maximum prefix matching logic for consistency - const prefixResult = this.calculateMaximumPrefixMatch(importFilePath, importBibPath); - - if (prefixResult.confidence >= 0.8) { - return { - type: `webkit_${prefixResult.type}`, - confidence: prefixResult.confidence * 0.95, // Slightly lower than maximum prefix matches - }; - } - - // Fallback to filename similarity for webkit paths - const filePathName = this.extractFileNameFromPath(importFilePath); - const bibPathName = this.extractFileNameFromPath(importBibPath); - - if (filePathName && bibPathName) { - const similarity = this.calculateStringSimilarity(filePathName, bibPathName); - if (similarity >= 0.9) { - return { type: "webkit_path_filename", confidence: similarity * 0.85 }; - } - } - } - - return null; - } - - private checkFileFieldMatch( - fileName: string, - parsedFilePaths?: string[] - ): { type: string; confidence: number } | null { - if (!parsedFilePaths || parsedFilePaths.length === 0) return null; - - for (const filePath of parsedFilePaths) { - const pathFileName = this.extractFileNameFromPath(filePath); - if (pathFileName) { - const cleanPathFileName = pathFileName.toLowerCase().replace(/\.pdf$/, ""); - - if (fileName === cleanPathFileName) { - return { type: "file_field_parsed", confidence: 0.95 }; - } - - const similarity = this.calculateStringSimilarity(fileName, cleanPathFileName); - if (similarity >= 0.8) { - return { type: "file_field_parsed", confidence: similarity * 0.9 }; - } - } - } - - return null; - } - - private checkExactMatch(fileName: string, reference?: string): { type: string; confidence: number } | null { - if (!reference) return null; - - const refKey = reference.toLowerCase(); - if (fileName === refKey) { - return { type: "exact", confidence: 1.0 }; - } - return null; - } - - private checkTitleMatch(fileName: string, title?: string): { type: string; confidence: number } | null { - if (!title) return null; - - const cleanTitle = title - .toLowerCase() - .replace(/[^\w\s]/g, " ") - .replace(/\s+/g, " ") - .trim(); - - const cleanFileName = fileName - .replace(/[^\w\s]/g, " ") - .replace(/\s+/g, " ") - .trim(); - - const titleWords = cleanTitle.split(" ").filter((word) => word.length > 3); - const fileWords = cleanFileName.split(" "); - - let matchedWords = 0; - for (const titleWord of titleWords) { - if (fileWords.some((fileWord) => fileWord.includes(titleWord) || titleWord.includes(fileWord))) { - matchedWords++; - } - } - - if (titleWords.length > 0) { - const confidence = matchedWords / titleWords.length; - if (confidence >= 0.6) { - return { type: "title", confidence: confidence * 0.8 }; - } - } - - return null; - } - - private calculateStringSimilarity(str1: string, str2: string): number { - const longer = str1.length > str2.length ? str1 : str2; - const shorter = str1.length > str2.length ? str2 : str1; - - if (longer.length === 0) return 1.0; - - const distance = this.levenshteinDistance(longer, shorter); - return (longer.length - distance) / longer.length; - } - - private levenshteinDistance(str1: string, str2: string): number { - const matrix: number[][] = []; - - for (let i = 0; i <= str2.length; i++) { - matrix[i] = [i]; - } - - for (let j = 0; j <= str1.length; j++) { - matrix[0][j] = j; - } - - for (let i = 1; i <= str2.length; i++) { - for (let j = 1; j <= str1.length; j++) { - if (str2.charAt(i - 1) === str1.charAt(j - 1)) { - matrix[i][j] = matrix[i - 1][j - 1]; - } else { - matrix[i][j] = Math.min(matrix[i - 1][j - 1] + 1, matrix[i][j - 1] + 1, matrix[i - 1][j] + 1); - } - } - } - - return matrix[str2.length][str1.length]; - } - private normalizePath(path: string): string { if (!path) return ""; return path.toLowerCase().replace(/\\/g, "/").replace(/\/+/g, "/").replace(/^\/*/, "").replace(/\/*$/, "").trim(); } - - private extractFileNameFromPath(path: string): string | null { - if (!path) return null; - - const importPath = this.normalizePath(path); - const parts = importPath.split("/"); - const fileName = parts[parts.length - 1]; - - return fileName ? fileName.replace(/\.pdf$/, "") : null; - } } diff --git a/extralit-frontend/v1/domain/usecases/get-document-by-id-use-case.ts b/extralit-frontend/v1/domain/usecases/get-document-by-record-metadata-use-case.ts similarity index 63% rename from extralit-frontend/v1/domain/usecases/get-document-by-id-use-case.ts rename to extralit-frontend/v1/domain/usecases/get-document-by-record-metadata-use-case.ts index c26ac8292..3c38dd346 100644 --- a/extralit-frontend/v1/domain/usecases/get-document-by-id-use-case.ts +++ b/extralit-frontend/v1/domain/usecases/get-document-by-record-metadata-use-case.ts @@ -2,12 +2,38 @@ import { Segment } from "../entities/document/Document"; import { IDocumentStorage } from "../services/IDocumentStorage"; import { DocumentRepository } from "@/v1/infrastructure/repositories/DocumentRepository"; -export class GetDocumentByIdUseCase { +export class GetDocumentByRecordMetadataUseCase { constructor( private readonly documentRepository: DocumentRepository, private readonly documentStorage: IDocumentStorage ) { } + createParams( + metadata: Record | null, + workspaceId: string + ): { + workspace_id: string; + doc_id?: string; + pmid?: string; + doi?: string; + reference?: string; + } { + const params: { + workspace_id: string; + doc_id?: string; + pmid?: string; + doi?: string; + reference?: string; + } = { workspace_id: workspaceId }; + + if (metadata?.reference) params.reference = metadata.reference; + if (metadata?.doc_id) params.doc_id = metadata.doc_id; + if (metadata?.pmid) params.pmid = metadata.pmid; + if (metadata?.doi) params.doi = metadata.doi; + + return params; + } + async setDocument(params: { workspace_id: string; doc_id?: string; @@ -18,7 +44,7 @@ export class GetDocumentByIdUseCase { const documents = await this.documentRepository.getDocuments(params); if (documents.length === 0) { - throw new Error("No documents found with the provided criteria"); + return null; } // For now, we'll use the first document found diff --git a/extralit-server/CHANGELOG.md b/extralit-server/CHANGELOG.md index dcbe2f64b..9dedca1d2 100644 --- a/extralit-server/CHANGELOG.md +++ b/extralit-server/CHANGELOG.md @@ -14,7 +14,7 @@ These are the section headers that we use: * "Security" in case of vulnerabilities. --> -## [Extralit] [0.6.1](https://github.com/extralit/extralit/compare/v0.5.0...v0.6.1) +## [Extralit] [Unreleased](https://github.com/extralit/extralit/compare/v0.5.0...v0.6.1) ### Added - Introduced presigned URL generation for document access in `get_document` function, ensuring valid file URLs. diff --git a/extralit/CHANGELOG.md b/extralit/CHANGELOG.md index 940c72271..2281581dc 100644 --- a/extralit/CHANGELOG.md +++ b/extralit/CHANGELOG.md @@ -14,9 +14,18 @@ These are the section headers that we use: * "Security" in case of vulnerabilities. --> -## [Extralit] [0.6.1](https://github.com/extralit/extralit/compare/v0.5.0...v0.6.1) + +## [Extralit] [Unreleased](https://github.com/extralit/extralit/compare/v0.5.0...v0.6.1) ### Changed - Updated backend document fetching logic to use the new unified endpoint, including improved input validation and error messages +- Refactored document handling to use `GetDocumentByRecordMetadataUseCase` for improved document fetching + +### Fixed +- Fixed document panel behavior and handling of missing documents +- Improved error handling and validation for document operations +- Fixed import analysis table display issues +- Enhanced component state persistence across import modal steps + ## [Extralit] [0.6.0](https://github.com/extralit/extralit/compare/v0.5.0...v0.6.0) diff --git a/extralit/pdm.lock b/extralit/pdm.lock index fef71b678..6957d1cd0 100644 --- a/extralit/pdm.lock +++ b/extralit/pdm.lock @@ -5,7 +5,7 @@ groups = ["default", "dev"] strategy = [] lock_version = "4.5.0" -content_hash = "sha256:4eed977ec0ae819f547f71e5131d350c7686fa2a8399a998cb62994db78d442c" +content_hash = "sha256:835ce32222428fd6dcc0dd37ce61240d8bfdb2b32bc0d64bdf350073b75d3b60" [[metadata.targets]] requires_python = ">=3.9.2,<3.14" @@ -3006,15 +3006,6 @@ files = [ {file = "multidict-6.4.4.tar.gz", hash = "sha256:69ee9e6ba214b5245031b76233dd95408a0fd57fdb019ddcc1ead4790932a8e8"}, ] -[[package]] -name = "multimethod" -version = "1.10" -summary = "" -files = [ - {file = "multimethod-1.10-py3-none-any.whl", hash = "sha256:afd84da9c3d0445c84f827e4d63ad42d17c6d29b122427c6dee9032ac2d2a0d4"}, - {file = "multimethod-1.10.tar.gz", hash = "sha256:daa45af3fe257f73abb69673fd54ddeaf31df0eb7363ad6e1251b7c9b192d8c5"}, -] - [[package]] name = "multiprocess" version = "0.70.16" @@ -3350,37 +3341,34 @@ files = [ [[package]] name = "pandera" -version = "0.19.3" +version = "0.26.0" summary = "" dependencies = [ - "multimethod", - "numpy", "packaging", - "pandas", "pydantic", "typeguard", + "typing-extensions", "typing-inspect", - "wrapt", ] files = [ - {file = "pandera-0.19.3-py3-none-any.whl", hash = "sha256:4ff2f0446f4b8dd7c2fa2aac547044911f4957d137456bfe2b281ccd02cc5ff5"}, - {file = "pandera-0.19.3.tar.gz", hash = "sha256:1bf9dc8a30525cb5bc77edb7d6a044cc59d59c3ef405517825cf6b04c6160c07"}, + {file = "pandera-0.26.0-py3-none-any.whl", hash = "sha256:85e4ab058e8e6c1f13f364450e080fcb52c8320bb40ca952342ac8709d1a7a4e"}, + {file = "pandera-0.26.0.tar.gz", hash = "sha256:37dbca1e53d12f70e576c45d886a31e454b48990c40d92c3466c26d28141b07b"}, ] [[package]] name = "pandera" -version = "0.19.3" +version = "0.26.0" extras = ["io"] summary = "" dependencies = [ "black", "frictionless", - "pandera==0.19.3", + "pandera==0.26.0", "pyyaml", ] files = [ - {file = "pandera-0.19.3-py3-none-any.whl", hash = "sha256:4ff2f0446f4b8dd7c2fa2aac547044911f4957d137456bfe2b281ccd02cc5ff5"}, - {file = "pandera-0.19.3.tar.gz", hash = "sha256:1bf9dc8a30525cb5bc77edb7d6a044cc59d59c3ef405517825cf6b04c6160c07"}, + {file = "pandera-0.26.0-py3-none-any.whl", hash = "sha256:85e4ab058e8e6c1f13f364450e080fcb52c8320bb40ca952342ac8709d1a7a4e"}, + {file = "pandera-0.26.0.tar.gz", hash = "sha256:37dbca1e53d12f70e576c45d886a31e454b48990c40d92c3466c26d28141b07b"}, ] [[package]] diff --git a/extralit/pyproject.toml b/extralit/pyproject.toml index e2865f785..399898bf0 100644 --- a/extralit/pyproject.toml +++ b/extralit/pyproject.toml @@ -35,8 +35,8 @@ dependencies = [ "pypandoc ~= 1.13", "beautifulsoup4 ~= 4.12.2", "pandas ~= 2.2.2", - "pandera[io] ~= 0.19.3", - "numpy >= 1.26.4,<2.0.0", + "pandera[io] >= 0.21.0, < 0.27.0", + "numpy >= 1.26.4", "spacy ~= 3.7.2; python_version < '3.13'", "spacy >= 3.8.0; python_version >= '3.13' and python_version < '3.13.3'", # Install spaCy with wheels only for Python 3.13.3+ diff --git a/extralit/src/extralit/_api/_workspaces.py b/extralit/src/extralit/_api/_workspaces.py index 3b671d73e..debe41064 100644 --- a/extralit/src/extralit/_api/_workspaces.py +++ b/extralit/src/extralit/_api/_workspaces.py @@ -462,7 +462,7 @@ def list_schemas( if not schema_files.objects: logger.info(f"No valid schemas found in workspace '{workspace_name}' with prefix '{prefix}'") - return SchemaStructure(schemas=[]) + return SchemaStructure(schemas=[], singleton_schema=None) # Filter by exclude list if exclude: @@ -475,7 +475,9 @@ def list_schemas( # Group by schema name to get the latest version schema_versions = {} for obj in schema_files.objects: - schema_name = obj.object_name + # Extract the actual schema name from the object path + # object_name is like "schemas/test_schema_name", we want just "test_schema_name" + schema_name = os.path.basename(obj.object_name) if schema_name not in schema_versions or ( obj.last_modified and schema_versions[schema_name].last_modified @@ -487,6 +489,8 @@ def list_schemas( schemas = {} for obj in schema_versions.values(): try: + # The object_name includes the full path (e.g., "schemas/test_schema_name") + # We need to use the full path for get_file since that's how it was stored file_response = self.get_file(workspace_name, obj.object_name) # Skip empty content @@ -498,9 +502,10 @@ def list_schemas( schema_json = file_response.content.decode("utf-8") schema = pa.DataFrameSchema.from_json(schema_json) - # Add to dictionary - schemas[schema.name] = schema - logger.debug(f"Successfully loaded schema '{schema.name}' from '{obj.object_name}'") + # Add to dictionary using the actual schema name (without prefix) + schema_name = os.path.basename(obj.object_name) + schemas[schema_name] = schema + logger.debug(f"Successfully loaded schema '{schema_name}' from '{obj.object_name}'") except FileNotFoundError: logger.debug(f"Schema file '{obj.object_name}' not found in workspace '{workspace_name}'") @@ -510,7 +515,18 @@ def list_schemas( continue logger.info(f"Successfully loaded {len(schemas)} schemas from workspace '{workspace_name}'") - return SchemaStructure(schemas=list(schemas.values())) + + # Ensure all schemas are proper DataFrameSchema instances + schema_list = [] + for schema in schemas.values(): + if isinstance(schema, pa.DataFrameSchema): + schema_list.append(schema) + else: + logger.warning( + f"Schema {getattr(schema, 'name', 'unknown')} is not a DataFrameSchema instance, skipping" + ) + + return SchemaStructure(schemas=schema_list, singleton_schema=None) except Exception as e: logger.error(f"Unexpected error loading schemas from workspace '{workspace_name}': {str(e)}") diff --git a/extralit/src/extralit/datasets/_io/_disk.py b/extralit/src/extralit/datasets/_io/_disk.py index 3068c5b18..862867fae 100644 --- a/extralit/src/extralit/datasets/_io/_disk.py +++ b/extralit/src/extralit/datasets/_io/_disk.py @@ -159,11 +159,15 @@ def _load_dataset_model(cls, path: Path): @classmethod def _define_child_paths(cls, path: Union[Path, str]) -> Tuple[Path, Path, Path]: - path = Path(path) - if not path.is_dir(): - raise NotADirectoryError(f"Path {path} is not a directory") + path = Path(os.path.expanduser(str(path))) + + # Resolve ~ in the path if present main_path = path / cls._DEFAULT_CONFIG_REPO_DIR - main_path.mkdir(exist_ok=True) + main_path.mkdir(parents=True, exist_ok=True) + + if not main_path.is_dir(): + raise NotADirectoryError(f"Path {path} is not a directory") + dataset_path = path / cls._DEFAULT_DATASET_PATH settings_path = path / cls._DEFAULT_SETTINGS_PATH records_path = path / cls._DEFAULT_RECORDS_PATH diff --git a/extralit/src/extralit/settings/_resource.py b/extralit/src/extralit/settings/_resource.py index ce2d24d67..ea3f8b659 100644 --- a/extralit/src/extralit/settings/_resource.py +++ b/extralit/src/extralit/settings/_resource.py @@ -251,8 +251,7 @@ def to_json(self, path: Union[Path, str]) -> None: """ if not isinstance(path, Path): path = Path(path) - if path.exists(): - raise FileExistsError(f"File {path} already exists") + path.parent.mkdir(parents=True, exist_ok=True) with open(path, "w") as file: json.dump(self.serialize(), file)