diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c19f4615e4fdf7264831da8ea80d30995e9c3e9b..f2eb1bd3c5c336c62d110d5a93bb6624ab7de367 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,6 +2,8 @@ stages: - prepare - test - build + - dockerize + - deploy default: image: nikolaik/python-nodejs:python3.11-nodejs19-alpine @@ -30,12 +32,12 @@ install:js: policy: push script: - pnpm install - # only: - # changes: - # - pnpm-lock.yaml - # - .gitlab-ci.yml - # - apps/**/* - # - libs/**/* +# only: +# changes: +# - pnpm-lock.yaml +# - .gitlab-ci.yml +# - apps/**/* +# - libs/**/* # refs: # - main # - merge_requests @@ -85,3 +87,38 @@ build-prod: - dist/apps/web script: - pnpm build + +build-docker: + image: docker:latest + services: + - name: docker:dind + alias: dockerdaemon + before_script: + - '' + stage: dockerize + tags: + - docker + # only: + # - main + script: + - echo "$CI_REGISTRY_PASSWORD" | docker login https://$CI_REGISTRY --username $CI_REGISTRY_USER --password-stdin + - cd ./apps/web + - docker build --progress plain -t $CI_REGISTRY/graphpolaris/frontend:latest . + - docker push $CI_REGISTRY/graphpolaris/frontend:latest + dependencies: + - build-prod + variables: + # Tell docker CLI how to talk to Docker daemon. + DOCKER_HOST: tcp://dockerdaemon:2375/ + # Use the overlayfs driver for improved performance. + DOCKER_DRIVER: overlay2 + # Disable TLS since we're running inside local network. + DOCKER_TLS_CERTDIR: "" + +# deploy: +# stage: deploy +# script: +# - ./deploy.sh +# # only: +# # - main +# environment: production diff --git a/apps/web/src/app/app.tsx b/apps/web/src/app/app.tsx index 171a7a690c6d1c951bcde069e77c2e6a855a996e..122676d5e5e1b342aaf752d5522405f6825ccb1a 100644 --- a/apps/web/src/app/app.tsx +++ b/apps/web/src/app/app.tsx @@ -22,6 +22,7 @@ import { useQueryAPI, useQuerybuilderGraph, useQuerybuilderGraphology, + useQuerybuilderHash, useSchemaAPI, useSessionCache, } from '@graphpolaris/shared/lib/data-access'; @@ -31,7 +32,8 @@ import Broker from '@graphpolaris/shared/lib/data-access/socket/broker'; import { SchemaFromBackend } from '@graphpolaris/shared/lib/model/backend'; import { domain } from '../environments/variables'; import { QueryMultiGraphExport } from '@graphpolaris/shared/lib/querybuilder/graph/graphology/utils'; -import { GraphQueryResultFromBackend } from '@graphpolaris/shared/lib/data-access/store/graphQueryResultSlice'; +import { GraphQueryResultFromBackend, resetGraphQueryResults } from '@graphpolaris/shared/lib/data-access/store/graphQueryResultSlice'; +import { clearQB } from '@graphpolaris/shared/lib/data-access/store/querybuilderSlice'; export function App() { const { AuthorizeFromCache, auth } = useAuthorization(domain); @@ -41,6 +43,7 @@ export function App() { const dispatch = useAppDispatch(); const session = useSessionCache(); const query = useQuerybuilderGraph(); + const queryHash = useQuerybuilderHash(); const ws = useRef(new WebSocketHandler(domain)); useEffect(() => { @@ -83,13 +86,16 @@ export function App() { useEffect(() => { // New query if (session?.currentDatabase && query) { - api_query.execute(Query2BackendQuery(session.currentDatabase, query)); + if (query.edges.length === 0) { + dispatch(resetGraphQueryResults()); + + } else api_query.execute(Query2BackendQuery(session.currentDatabase, query)); } - }, [query]); + }, [queryHash]); return ( <div className="h-screen w-screen"> - {!auth.authorized && <LoginScreen />} + {auth.authorized === false && <LoginScreen />} <div className={ 'flex h-screen w-screen overflow-hidden ' + diff --git a/apps/web/src/app/panels/Visualization.tsx b/apps/web/src/app/panels/Visualization.tsx index 53fefc57274fc78b68920763ecb2901f21ecd3af..1b38008d91f23d3b85774e4da24e03e32da5f36d 100644 --- a/apps/web/src/app/panels/Visualization.tsx +++ b/apps/web/src/app/panels/Visualization.tsx @@ -36,9 +36,9 @@ export const VisualizationPanel = () => { Remove mock result </button> </div> */} - <div className="h-[48rem] overflow-y-scroll"> - <RawJSONVis /> - {/* <NodeLinkVis /> */} + <div className="h-[48rem] overflow-y-auto"> + {/* <RawJSONVis /> */} + <NodeLinkVis /> </div> {/* <SemanticSubstrates /> */} {/* <div /> */} diff --git a/apps/web/src/components/login/loginScreen.tsx b/apps/web/src/components/login/loginScreen.tsx index 9bf756ad5fe82cba5a0ecfa3ca60e1966795f21f..82f2d7fbb27f3542f2c194dec9a511bd26eefded 100644 --- a/apps/web/src/components/login/loginScreen.tsx +++ b/apps/web/src/components/login/loginScreen.tsx @@ -2,6 +2,7 @@ import { useAuthorizationCache } from '@graphpolaris/shared/lib/data-access'; import { useAuthorization } from '@graphpolaris/shared/lib/data-access/authorization'; import { domain } from '../../environments/variables'; import styled from 'styled-components'; +import EmailIcon from '@mui/icons-material/Email'; const Wrapper = styled.div` font-family: Arial, serif; @@ -69,33 +70,7 @@ const LoginScreen = () => { const { SetAccessToken } = useAuthorization(domain); const openSignInWindow = (url: string) => { - // remove any existing event listeners - window.removeEventListener('auth_message', receiveMessage); - - // window features - const strWindowFeatures = - 'toolbar=no, menubar=no, width=600, height=700, top=100, left=100'; - - window.open(url, 'Google Oauth', strWindowFeatures); - - // add the listener for receiving a message from the popup - window.addEventListener( - 'auth_message', - (event) => receiveMessage(event), - false - ); - }; - - const receiveMessage = (event: any) => { - // Do we trust the sender of this message? (might be - // different from what we originally opened) - if (window.location.hostname !== event.detail.origin) { - return; - } - console.log(event.detail.token); - - // Set access token - SetAccessToken(event.detail.token); + window.location.assign(url); }; return ( @@ -106,7 +81,7 @@ const LoginScreen = () => { <img onClick={() => openSignInWindow( - 'https://api.graphpolaris.com/user/sign-in?provider=1' + 'https://api.graphpolaris.com/user/sign-in?provider=1&callback=https://local.graphpolaris.com:4200/' ) } src="assets/login-screen/google.png" @@ -115,18 +90,21 @@ const LoginScreen = () => { <img onClick={() => openSignInWindow( - 'https://api.graphpolaris.com/user/sign-in?provider=2' + 'https://api.graphpolaris.com/user/sign-in?provider=2&callback=https://local.graphpolaris.com:4200/' ) } src="assets/login-screen/github.png" alt="sign up with github" /> + <button className='btn bg-gray-400 rounded-md p-1'> + <EmailIcon /> + </button> <p onClick={() => openSignInWindow('https://api.graphpolaris.com/user/create_free/') } > - Developer + Demo </p> </Content> </Wrapper> diff --git a/apps/web/src/components/navbar/navbar.tsx b/apps/web/src/components/navbar/navbar.tsx index 8c78781d500e58d183ec094bd21ad511056ff6d4..69b72e093c4230bcb1079c0b224780cee0675f70 100644 --- a/apps/web/src/components/navbar/navbar.tsx +++ b/apps/web/src/components/navbar/navbar.tsx @@ -39,6 +39,7 @@ import { useSchemaAPI, useSessionCache, } from '@graphpolaris/shared/lib/data-access'; +import { domain } from '../../environments/variables'; /** NavbarComponentProps is an interface containing the NavbarViewModel. */ export interface NavbarComponentProps { @@ -61,8 +62,8 @@ export const Navbar = (props: NavbarComponentProps) => { const theme = useTheme(); const auth = useAuthorizationCache(); const session = useSessionCache(); - const api = useDatabaseAPI(); - const schemaApi = useSchemaAPI(); + const api = useDatabaseAPI(domain); + const schemaApi = useSchemaAPI(domain); const dispatch = useAppDispatch(); useEffect(() => { diff --git a/libs/shared/lib/data-access/api/schema.ts b/libs/shared/lib/data-access/api/schema.ts index 02495e7ca30f7d58a67bf95bb3d2d1985e5674fc..2a4e00b4c4d85f4b1b9fdb9aa66405d9be0fabad 100644 --- a/libs/shared/lib/data-access/api/schema.ts +++ b/libs/shared/lib/data-access/api/schema.ts @@ -15,7 +15,7 @@ export const useSchemaAPI = (domain: string) => { const request = { databaseName, - cached: false, + cached: true, }; const response = await fetch(`https://${domain}/schema/`, { diff --git a/libs/shared/lib/data-access/authorization/authorizationHook.tsx b/libs/shared/lib/data-access/authorization/authorizationHook.tsx index 76fce13fa6d8bb23afad1e5f5b234b6640cb6933..d607d375ab61df6c457be2ec78a8e8b74072fe1a 100644 --- a/libs/shared/lib/data-access/authorization/authorizationHook.tsx +++ b/libs/shared/lib/data-access/authorization/authorizationHook.tsx @@ -1,7 +1,7 @@ import { useEffect, useState } from 'react'; import { useAppDispatch, useAuthorizationCache } from '../store'; import { dispatch } from 'd3'; -import { authorized, updateAccessToken } from '../store/authSlice'; +import { authorized, unauthorized, updateAccessToken } from '../store/authSlice'; /** * getNewAccessToken gets a new access token using the refresh-token cookie @@ -56,7 +56,7 @@ export type useIsAuthorizedState = { userID?: string; sessionID?: string; accessToken: string; - authorized: boolean; + authorized?: boolean; }; export function useAuthorization(domain: string) { @@ -172,6 +172,10 @@ export function useAuthorization(domain: string) { authorized: true, }) ); + } else { + await dispatch( + unauthorized() + ); } return authResponse.success; diff --git a/libs/shared/lib/data-access/store/authSlice.ts b/libs/shared/lib/data-access/store/authSlice.ts index 273c498e299f58cbf191b8b4d21f72c909b89d03..19dbb398142df1a67ce1638ee3b614a9276ab5fa 100644 --- a/libs/shared/lib/data-access/store/authSlice.ts +++ b/libs/shared/lib/data-access/store/authSlice.ts @@ -6,7 +6,7 @@ import { useIsAuthorizedState } from '../authorization'; // Define the initial state using that type export const initialState: useIsAuthorizedState = { - authorized: false, + authorized: undefined, accessToken: '', }; @@ -23,12 +23,15 @@ export const authSlice = createSlice({ state.accessToken = action.payload.accessToken; state.sessionID = action.payload.sessionID; state.userID = action.payload.userID; + }, + unauthorized(state) { + state.authorized = false; } }, }); export const { - updateAccessToken, authorized + updateAccessToken, authorized, unauthorized } = authSlice.actions; // Other code such as selectors can use the imported `RootState` type diff --git a/libs/shared/lib/data-access/store/hooks.ts b/libs/shared/lib/data-access/store/hooks.ts index 3e40cdb45fdb073b264d49735bf106c6fb504a3b..e4095282ce3a875e3e274b1b5f6f54d774963bbc 100644 --- a/libs/shared/lib/data-access/store/hooks.ts +++ b/libs/shared/lib/data-access/store/hooks.ts @@ -10,6 +10,7 @@ import { configState } from '@graphpolaris/shared/lib/data-access/store/configSl import { selectQuerybuilderGraph, selectQuerybuilderGraphology, + selectQuerybuilderHash, } from '@graphpolaris/shared/lib/data-access/store/querybuilderSlice'; import { sessionCacheState } from './sessionSlice'; import { authState } from './authSlice'; @@ -32,6 +33,8 @@ export const useQuerybuilderGraphology = () => useAppSelector(selectQuerybuilderGraphology); export const useQuerybuilderGraph = () => useAppSelector(selectQuerybuilderGraph); +export const useQuerybuilderHash = () => + useAppSelector(selectQuerybuilderHash); // Overall Configuration of the app export const useConfig = () => useAppSelector(configState); diff --git a/libs/shared/lib/data-access/store/querybuilderSlice.ts b/libs/shared/lib/data-access/store/querybuilderSlice.ts index 9e1f176c7b6e229cd4b3b466bdc5ed74c65932d4..26488a2dac2ccfcc473330595dd8ab3be8c99a30 100644 --- a/libs/shared/lib/data-access/store/querybuilderSlice.ts +++ b/libs/shared/lib/data-access/store/querybuilderSlice.ts @@ -6,6 +6,7 @@ import { QueryMultiGraph, QueryMultiGraphExport, } from '@graphpolaris/shared/lib/querybuilder/graph/graphology/utils'; +import { json } from 'd3'; // Define the initial state using that type export const initialState = { @@ -90,6 +91,16 @@ export const selectQuerybuilderGraph = ( return state.querybuilder.graphologySerialized as QueryMultiGraphExport; }; +/** Select the querybuilder nodes and convert it to a graphology object */ +export const selectQuerybuilderHash = ( + state: RootState +): any => { + return JSON.stringify({ + nodes: state.querybuilder.graphologySerialized.nodes.map(n => ({ key: n.key })), + edges: state.querybuilder.graphologySerialized.edges.map(n => ({ key: n.key, source: n.source, target: n.target })) + }); +}; + // /** // * selects the SchemaLayout enum // * @param {GraphLayout} state diff --git a/libs/shared/lib/data-access/store/schemaSlice.ts b/libs/shared/lib/data-access/store/schemaSlice.ts index f2a64c896f94dde193b8e3f5632269b22f9868a6..14a5e8446cf8dfd4916d9f807474775a9074b121 100644 --- a/libs/shared/lib/data-access/store/schemaSlice.ts +++ b/libs/shared/lib/data-access/store/schemaSlice.ts @@ -3,7 +3,7 @@ import Graph, { MultiGraph } from 'graphology'; import { SerializedGraph } from 'graphology-types'; import { SchemaFromBackend } from '@graphpolaris/shared/lib/model/backend'; import type { RootState } from './store'; -import { AllLayoutAlgorithms } from '@graphpolaris/shared/lib/graph-layout'; +import { AllLayoutAlgorithms, CytoscapeLayoutAlgorithms } from '@graphpolaris/shared/lib/graph-layout'; import { QueryMultiGraph } from '@graphpolaris/shared/lib/querybuilder/graph/graphology/utils'; import { SchemaUtils } from '../../schema/schema-utils'; @@ -12,8 +12,8 @@ import { SchemaUtils } from '../../schema/schema-utils'; // Define the initial state using that type export const initialState = { graphologySerialized: new MultiGraph().export(), - // layoutName: 'Cytoscape_fcose', - layoutName: 'Cytoscape_cise' as AllLayoutAlgorithms, + // layoutName: 'Cytoscape_fcose', + layoutName: CytoscapeLayoutAlgorithms.KLAY as AllLayoutAlgorithms, }; export const schemaSlice = createSlice({ diff --git a/libs/shared/lib/graph-layout/cytoscape-layouts.ts b/libs/shared/lib/graph-layout/cytoscape-layouts.ts index 759b6fc11cc1cea3f6466f3d4b13aad3d19c8141..b56db8e714c8ea8c793ee876cf3a0cc1b6ca7d90 100644 --- a/libs/shared/lib/graph-layout/cytoscape-layouts.ts +++ b/libs/shared/lib/graph-layout/cytoscape-layouts.ts @@ -22,13 +22,14 @@ cytoscape.use(elk); export type CytoscapeProvider = 'Cytoscape'; -export type CytoscapeLayoutAlgorithms = - | `${CytoscapeProvider}_klay` - | `${CytoscapeProvider}_dagre` - | `${CytoscapeProvider}_elk` - | `${CytoscapeProvider}_fcose` - | `${CytoscapeProvider}_cose-bilkent` - | `${CytoscapeProvider}_cise`; +export enum CytoscapeLayoutAlgorithms { + KLAY = 'Cytoscape_klay', + DAGRE = 'Cytoscape_dagre', + ELK = 'Cytoscape_elk', + FCOSE = 'Cytoscape_fcose', + COSE_BILKENT = 'Cytoscape_cose-bilkent', + CISE = 'Cytoscape_cise', +} type CytoNode = { data: { diff --git a/libs/shared/lib/graph-layout/layout-creator-usecase.ts b/libs/shared/lib/graph-layout/layout-creator-usecase.ts index 7370db47f1fb4b90cc43ddf62eec595c03847faf..a2153477723cd7775b97e15b42253b5d8e4a71be 100644 --- a/libs/shared/lib/graph-layout/layout-creator-usecase.ts +++ b/libs/shared/lib/graph-layout/layout-creator-usecase.ts @@ -22,10 +22,10 @@ export type AllLayoutAlgorithms = export type AlgorithmToLayoutProvider<Algorithm extends AllLayoutAlgorithms> = Algorithm extends GraphologyLayoutAlgorithms - ? Graphology - : Algorithm extends CytoscapeLayoutAlgorithms - ? Cytoscape - : Cytoscape | Graphology; + ? Graphology + : Algorithm extends CytoscapeLayoutAlgorithms + ? Cytoscape + : Cytoscape | Graphology; export interface ILayoutFactory<Algorithm extends AllLayoutAlgorithms> { createLayout: ( diff --git a/libs/shared/lib/mock-data/index.ts b/libs/shared/lib/mock-data/index.ts index ff61dba14cf43369d29303cd9b2d4c1efa28a9a7..0cf536cece63899b3c7c08db98e7194cbadbdef2 100644 --- a/libs/shared/lib/mock-data/index.ts +++ b/libs/shared/lib/mock-data/index.ts @@ -1,6 +1,3 @@ export * from './schema'; -export * from './query-result/big2ndChamberQueryResult'; -export * from './query-result/bigMockQueryResults'; -export * from './query-result/mockQueryResults'; -export * from './query-result/smallFlightsQueryResults'; +export * from './query-result'; diff --git a/libs/shared/lib/mock-data/query-result/big2ndChamberQueryResult.ts b/libs/shared/lib/mock-data/query-result/big2ndChamberQueryResult.ts index 5bc3599b3630b642d33bb4828b5e5bb763cedab5..877c9cb84364e9793733a478861ce9296c57bbaa 100644 --- a/libs/shared/lib/mock-data/query-result/big2ndChamberQueryResult.ts +++ b/libs/shared/lib/mock-data/query-result/big2ndChamberQueryResult.ts @@ -10,8 +10,8 @@ * See testing plan for more details.*/ /** Mock elements used for testing the query results. */ -export const big2ndChamberQueryResult = { - links: [ +export const big2ndChamberQueryResult:GraphQueryResultFromBackend = { + edges: [ { from: 'kamerleden/148', id: 'onderdeel_van/1100', diff --git a/libs/shared/lib/mock-data/query-result/index.ts b/libs/shared/lib/mock-data/query-result/index.ts new file mode 100644 index 0000000000000000000000000000000000000000..33ea29d3a34135d4a037e55d358bf6caf7f4fa61 --- /dev/null +++ b/libs/shared/lib/mock-data/query-result/index.ts @@ -0,0 +1,5 @@ +export * from './mockLargeQueryResults' +export * from './big2ndChamberQueryResult' +export * from './bigMockQueryResults' +export * from './mockQueryResults' +export * from './smallFlightsQueryResults' \ No newline at end of file diff --git a/libs/shared/lib/mock-data/query-result/mockLargeQueryResults.ts b/libs/shared/lib/mock-data/query-result/mockLargeQueryResults.ts new file mode 100644 index 0000000000000000000000000000000000000000..d21140f2d78f12f8b7cf705a9ffc039b109d23de --- /dev/null +++ b/libs/shared/lib/mock-data/query-result/mockLargeQueryResults.ts @@ -0,0 +1,4758 @@ +/** + * This program has been developed by students from the bachelor Computer Science at + * Utrecht University within the Software Project course. + * © Copyright Utrecht University (Department of Information and Computing Sciences) + */ + +export const mockLargeQueryResults: GraphQueryResultFromBackend = { + "edges": [ + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14514", + "to": "855" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14570", + "to": "883" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14558", + "to": "877" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14452", + "to": "824" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14582", + "to": "889" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14498", + "to": "847" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14526", + "to": "861" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14600", + "to": "898" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14472", + "to": "834" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14520", + "to": "858" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14580", + "to": "888" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14604", + "to": "900" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14524", + "to": "860" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14528", + "to": "862" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14586", + "to": "891" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14460", + "to": "828" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14506", + "to": "851" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14568", + "to": "882" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14598", + "to": "897" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14606", + "to": "901" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14538", + "to": "867" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14512", + "to": "854" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14560", + "to": "878" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14482", + "to": "839" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14522", + "to": "859" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14546", + "to": "871" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14478", + "to": "837" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14572", + "to": "884" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14504", + "to": "850" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14464", + "to": "830" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14510", + "to": "853" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14562", + "to": "879" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14552", + "to": "874" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14592", + "to": "894" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14496", + "to": "846" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14556", + "to": "876" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14566", + "to": "881" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14594", + "to": "895" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14516", + "to": "856" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14576", + "to": "886" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14564", + "to": "880" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14500", + "to": "848" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14540", + "to": "868" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14492", + "to": "844" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14470", + "to": "833" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14608", + "to": "902" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14458", + "to": "827" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14518", + "to": "857" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14584", + "to": "890" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14474", + "to": "835" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14550", + "to": "873" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14462", + "to": "829" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14536", + "to": "866" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14534", + "to": "865" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14548", + "to": "872" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14542", + "to": "869" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14530", + "to": "863" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14486", + "to": "841" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14554", + "to": "875" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14602", + "to": "899" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14588", + "to": "892" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14484", + "to": "840" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14502", + "to": "849" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14454", + "to": "825" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14476", + "to": "836" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14488", + "to": "842" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14490", + "to": "843" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14466", + "to": "831" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14508", + "to": "852" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14574", + "to": "885" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14480", + "to": "838" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14544", + "to": "870" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14468", + "to": "832" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14578", + "to": "887" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14532", + "to": "864" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14456", + "to": "826" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14590", + "to": "893" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14596", + "to": "896" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "219", + "id": "14494", + "to": "845" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14650", + "to": "923" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14654", + "to": "925" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14756", + "to": "976" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14698", + "to": "947" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14704", + "to": "950" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14746", + "to": "971" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14640", + "to": "918" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14732", + "to": "964" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14626", + "to": "911" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14730", + "to": "963" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14684", + "to": "940" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14666", + "to": "931" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14766", + "to": "981" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14610", + "to": "903" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14676", + "to": "936" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14632", + "to": "914" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14708", + "to": "952" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14616", + "to": "906" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14622", + "to": "909" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14712", + "to": "954" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14738", + "to": "967" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14618", + "to": "907" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14740", + "to": "968" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14752", + "to": "974" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14702", + "to": "949" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14644", + "to": "920" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14762", + "to": "979" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14628", + "to": "912" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14744", + "to": "970" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14764", + "to": "980" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14748", + "to": "972" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14646", + "to": "921" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14694", + "to": "945" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14664", + "to": "930" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14726", + "to": "961" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14662", + "to": "929" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14642", + "to": "919" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14680", + "to": "938" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14722", + "to": "959" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14750", + "to": "973" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14612", + "to": "904" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14636", + "to": "916" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14634", + "to": "915" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14710", + "to": "953" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14620", + "to": "908" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14670", + "to": "933" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14652", + "to": "924" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14656", + "to": "926" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14624", + "to": "910" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14674", + "to": "935" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14706", + "to": "951" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14678", + "to": "937" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14728", + "to": "962" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14668", + "to": "932" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14742", + "to": "969" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14714", + "to": "955" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14688", + "to": "942" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14716", + "to": "956" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14690", + "to": "943" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14672", + "to": "934" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14734", + "to": "965" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14724", + "to": "960" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14760", + "to": "978" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14630", + "to": "913" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14736", + "to": "966" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14686", + "to": "941" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14682", + "to": "939" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14768", + "to": "982" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14758", + "to": "977" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14700", + "to": "948" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14720", + "to": "958" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14718", + "to": "957" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14692", + "to": "944" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14614", + "to": "905" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14658", + "to": "927" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14660", + "to": "928" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14696", + "to": "946" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14638", + "to": "917" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14754", + "to": "975" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "220", + "id": "14648", + "to": "922" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "221", + "id": "14784", + "to": "990" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "221", + "id": "14770", + "to": "983" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "221", + "id": "14786", + "to": "991" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "221", + "id": "14780", + "to": "988" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "221", + "id": "14776", + "to": "986" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "221", + "id": "14774", + "to": "985" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "221", + "id": "14782", + "to": "989" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "221", + "id": "14790", + "to": "993" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "221", + "id": "14772", + "to": "984" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "221", + "id": "14778", + "to": "987" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "221", + "id": "14788", + "to": "992" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14866", + "to": "1031" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14900", + "to": "1048" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14856", + "to": "1026" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14840", + "to": "1018" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14942", + "to": "1069" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14904", + "to": "1050" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14836", + "to": "1016" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14874", + "to": "1035" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14810", + "to": "1003" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14858", + "to": "1027" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14872", + "to": "1034" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14846", + "to": "1021" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14808", + "to": "1002" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14860", + "to": "1028" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14804", + "to": "1000" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14820", + "to": "1008" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14884", + "to": "1040" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14896", + "to": "1046" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14882", + "to": "1039" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14818", + "to": "1007" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14794", + "to": "995" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14830", + "to": "1013" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14902", + "to": "1049" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14908", + "to": "1052" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14792", + "to": "994" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14834", + "to": "1015" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14898", + "to": "1047" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14924", + "to": "1060" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14864", + "to": "1030" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14892", + "to": "1044" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14850", + "to": "1023" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14852", + "to": "1024" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14848", + "to": "1022" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14844", + "to": "1020" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14842", + "to": "1019" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14862", + "to": "1029" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14894", + "to": "1045" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14906", + "to": "1051" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14936", + "to": "1066" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14868", + "to": "1032" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14822", + "to": "1009" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14932", + "to": "1064" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14824", + "to": "1010" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14912", + "to": "1054" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14930", + "to": "1063" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14802", + "to": "999" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14886", + "to": "1041" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14814", + "to": "1005" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14934", + "to": "1065" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14806", + "to": "1001" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14800", + "to": "998" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14838", + "to": "1017" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14878", + "to": "1037" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14914", + "to": "1055" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14928", + "to": "1062" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14938", + "to": "1067" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14854", + "to": "1025" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14944", + "to": "1070" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14918", + "to": "1057" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14796", + "to": "996" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14812", + "to": "1004" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14876", + "to": "1036" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14910", + "to": "1053" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14888", + "to": "1042" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14926", + "to": "1061" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14828", + "to": "1012" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14832", + "to": "1014" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14870", + "to": "1033" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14798", + "to": "997" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14922", + "to": "1059" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14940", + "to": "1068" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14880", + "to": "1038" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14890", + "to": "1043" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14826", + "to": "1011" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14920", + "to": "1058" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14916", + "to": "1056" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "223", + "id": "14816", + "to": "1006" + }, + { + "attributes": { + "Type": "IS_COUNTRY" + }, + "from": "224", + "id": "15028", + "to": "1112" + } + ], + "nodes": [ + { + "attributes": { + "labels": [ + "COUNTRY" + ], + "name": "Afghanistan" + }, + "id": "219" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "855" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "883" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "877" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "824" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "889" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "847" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "861" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "898" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "834" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "858" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "888" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "900" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "860" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "862" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "891" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "828" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "851" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "882" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "897" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -22.74920634920636, + "text": "\n\nThe life expectancy in Afghanistan was impacted by various factors during the period of 1980 to 1989. Here are some of the factors that played a significant role:\n\n1. Soviet-Afghan War: The Soviet-Afghan War lasted from 1979 to 1989 and resulted in significant casualties and displacement of civilians. The war had a severe impact on public health, with widespread disruption of health services, lack of access to clean water and sanitation facilities, and increased exposure to infectious diseases.\n\n2. Refugee crisis: The conflict in Afghanistan caused a massive refugee crisis, with millions of Afghans fleeing to neighboring countries such as Pakistan and Iran. The conditions in refugee camps were often poor, with limited access to basic necessities such as food, water, and medical care.\n\n3. Economic instability: Afghanistan's economy was unstable during this period, with frequent droughts, low agricultural yields, and limited access to trade and investment. Poverty was widespread, and many people lacked access to basic necessities such as food, shelter, and healthcare.\n\n4. Political instability: Afghanistan was also facing political instability during this time, with various factions competing for power. The resulting violence and instability had a severe impact on public health and safety.\n\n5. Infectious diseases: Infectious diseases such as tuberculosis, cholera, and malaria were widespread in Afghanistan during this period, partly due to the breakdown of health services and poor living conditions.\n\nOverall, the combination of war, refugee crisis, economic instability, political instability, and infectious diseases had a significant impact on life expectancy in Afghanistan during the period from 1980 to 1989. The situation was further exacerbated by limited access to healthcare and other basic services, as well as the disruption of infrastructure and social systems.", + "type": "valley" + }, + "id": "901" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "867" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "854" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "878" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "839" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "859" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "871" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "837" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "884" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "850" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "830" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "853" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "879" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "874" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "894" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "846" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "876" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "881" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "895" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "856" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "886" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "880" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "848" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "868" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "844" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "833" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -22.74920634920636, + "text": "\n\nThe life expectancy in Afghanistan was impacted by various factors during the period of 1980 to 1989. Here are some of the factors that played a significant role:\n\n1. Soviet-Afghan War: The Soviet-Afghan War lasted from 1979 to 1989 and resulted in significant casualties and displacement of civilians. The war had a severe impact on public health, with widespread disruption of health services, lack of access to clean water and sanitation facilities, and increased exposure to infectious diseases.\n\n2. Refugee crisis: The conflict in Afghanistan caused a massive refugee crisis, with millions of Afghans fleeing to neighboring countries such as Pakistan and Iran. The conditions in refugee camps were often poor, with limited access to basic necessities such as food, water, and medical care.\n\n3. Economic instability: Afghanistan's economy was unstable during this period, with frequent droughts, low agricultural yields, and limited access to trade and investment. Poverty was widespread, and many people lacked access to basic necessities such as food, shelter, and healthcare.\n\n4. Political instability: Afghanistan was also facing political instability during this time, with various factions competing for power. The resulting violence and instability had a severe impact on public health and safety.\n\n5. Infectious diseases: Infectious diseases such as tuberculosis, cholera, and malaria were widespread in Afghanistan during this period, partly due to the breakdown of health services and poor living conditions.\n\nOverall, the combination of war, refugee crisis, economic instability, political instability, and infectious diseases had a significant impact on life expectancy in Afghanistan during the period from 1980 to 1989. The situation was further exacerbated by limited access to healthcare and other basic services, as well as the disruption of infrastructure and social systems.", + "type": "valley" + }, + "id": "902" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "827" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "857" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "890" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "835" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "873" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "829" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "866" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "865" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "872" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "869" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "863" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "841" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "875" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "899" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "892" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "840" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "849" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "825" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "836" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "842" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "843" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "831" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "852" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "885" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "838" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "870" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "832" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "887" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "864" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "826" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "893" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "896" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -43.31641216392037, + "text": "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", + "type": "valley" + }, + "id": "845" + }, + { + "attributes": { + "labels": [ + "COUNTRY" + ], + "name": "Albania" + }, + "id": "220" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "923" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "925" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "976" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "947" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "950" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "971" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "918" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "964" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "911" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "963" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "940" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "931" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": 17.640000000000025, + "text": "\n\nAlbania underwent significant changes during the period from 1935 to 1949, which likely had an impact on life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. World War II: Albania was occupied by Italy and later Germany during World War II, which led to significant destruction of infrastructure and displacement of civilians. The war had a severe impact on public health, with widespread disruption of health services, lack of access to clean water and sanitation facilities, and increased exposure to infectious diseases.\n\n2. Communist regime: After World War II, Albania came under communist rule, which led to significant changes in the country's social and economic systems. While the communist government invested in healthcare and education, the country also experienced political repression and economic isolation, which could have affected life expectancy.\n\n3. Economic instability: Albania's economy was unstable during this period, with frequent droughts, low agricultural yields, and limited access to trade and investment. Poverty was widespread, and many people lacked access to basic necessities such as food, shelter, and healthcare.\n\n4. Infectious diseases: Infectious diseases such as tuberculosis, cholera, and malaria were still widespread in Albania during this period, partly due to the breakdown of health services and poor living conditions.\n\n5. Health care: Albania's healthcare system improved during this period, with the communist government investing in healthcare infrastructure and training more healthcare professionals. However, access to healthcare was still limited in many rural areas, and healthcare quality varied widely.\n\nOverall, the combination of war, communist rule, economic instability, infectious diseases, and healthcare challenges likely had an impact on life expectancy in Albania during the period from 1935 to 1949. The specific impacts of each factor are difficult to determine without more detailed data.", + "type": "peak" + }, + "id": "981" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "903" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "936" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "914" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "952" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "906" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "909" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "954" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "967" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "907" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "968" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "974" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "949" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "920" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "979" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "912" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "970" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": 17.640000000000025, + "text": "\n\nAlbania underwent significant changes during the period from 1935 to 1949, which likely had an impact on life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. World War II: Albania was occupied by Italy and later Germany during World War II, which led to significant destruction of infrastructure and displacement of civilians. The war had a severe impact on public health, with widespread disruption of health services, lack of access to clean water and sanitation facilities, and increased exposure to infectious diseases.\n\n2. Communist regime: After World War II, Albania came under communist rule, which led to significant changes in the country's social and economic systems. While the communist government invested in healthcare and education, the country also experienced political repression and economic isolation, which could have affected life expectancy.\n\n3. Economic instability: Albania's economy was unstable during this period, with frequent droughts, low agricultural yields, and limited access to trade and investment. Poverty was widespread, and many people lacked access to basic necessities such as food, shelter, and healthcare.\n\n4. Infectious diseases: Infectious diseases such as tuberculosis, cholera, and malaria were still widespread in Albania during this period, partly due to the breakdown of health services and poor living conditions.\n\n5. Health care: Albania's healthcare system improved during this period, with the communist government investing in healthcare infrastructure and training more healthcare professionals. However, access to healthcare was still limited in many rural areas, and healthcare quality varied widely.\n\nOverall, the combination of war, communist rule, economic instability, infectious diseases, and healthcare challenges likely had an impact on life expectancy in Albania during the period from 1935 to 1949. The specific impacts of each factor are difficult to determine without more detailed data.", + "type": "peak" + }, + "id": "980" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "972" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "921" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "945" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "930" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "961" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "929" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "919" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "938" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "959" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "973" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "904" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "916" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "915" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "953" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "908" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "933" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "924" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "926" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "910" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "935" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "951" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "937" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "962" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "932" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "969" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "955" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "942" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "956" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "943" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "934" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "965" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "960" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "978" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "913" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "966" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "941" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "939" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -14.76923076923077, + "text": "\n\nAlbania underwent significant changes during the period from 1942 to 1949, which likely had an impact on life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. World War II: Albania was occupied by Italy and later Germany during World War II, which led to significant destruction of infrastructure and displacement of civilians. The war had a severe impact on public health, with widespread disruption of health services, lack of access to clean water and sanitation facilities, and increased exposure to infectious diseases.\n\n2. Communist regime: After World War II, Albania came under communist rule, which led to significant changes in the country's social and economic systems. While the communist government invested in healthcare and education, the country also experienced political repression and economic isolation, which could have affected life expectancy.\n\n3. Economic instability: Albania's economy was unstable during this period, with frequent droughts, low agricultural yields, and limited access to trade and investment. Poverty was widespread, and many people lacked access to basic necessities such as food, shelter, and healthcare.\n\n4. Infectious diseases: Infectious diseases such as tuberculosis, cholera, and malaria were still widespread in Albania during this period, partly due to the breakdown of health services and poor living conditions.\n\n5. Health care: Albania's healthcare system improved during this period, with the communist government investing in healthcare infrastructure and training more healthcare professionals. However, access to healthcare was still limited in many rural areas, and healthcare quality varied widely.\n\n6. Repression and political violence: The communist government of Albania engaged in political repression, including the execution of political opponents and imprisonment of those deemed to be dissidents. This repression could have led to increased mortality and reduced life expectancy.\n\nOverall, the combination of war, communist rule, economic instability, infectious diseases, healthcare challenges, and political repression likely had an impact on life expectancy in Albania during the period from 1942 to 1949. The specific impacts of each factor are difficult to determine without more detailed data.", + "type": "valley" + }, + "id": "982" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "977" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "948" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "958" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "957" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "944" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "905" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "927" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "928" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "946" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "917" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "975" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -32, + "text": "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "922" + }, + { + "attributes": { + "labels": [ + "COUNTRY" + ], + "name": "Algeria" + }, + "id": "221" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -23.348484848484848, + "text": "Data on life expectancy in Algeria during the period from 1912 to 1927 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. French colonization: Algeria was still under French colonial rule during this period, and the colonial authorities continued to implement significant changes to the country's social and economic systems. This included the introduction of new infrastructure and economic development projects, but also included forced labor, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. World War I: Algeria, as a French colony, was involved in World War I, and the conflict likely led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\n3. Infectious diseases: Algeria was still affected by a range of infectious diseases during this period, including cholera, typhoid fever, and tuberculosis, which could have impacted life expectancy.\n\n4. Limited access to healthcare: Healthcare services were limited in Algeria during this period, and many people lacked access to basic healthcare services.\n\n5. Nutrition: Poor nutrition and food insecurity were also common in Algeria during this period, which could have contributed to lower life expectancy.\n\n6. Economic changes: The introduction of new economic policies and infrastructure projects under French colonial rule could have had both positive and negative impacts on life expectancy, depending on the specific context and implementation of these changes.\n\nOverall, the combination of French colonization, World War I, infectious diseases, limited access to healthcare, poor nutrition, and economic changes could have impacted life expectancy in Algeria during the period from 1912 to 1927. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "990" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -15.590909090909093, + "text": "\n\nData on life expectancy in Algeria during the period from 1844 to 1855 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. French colonization: In 1830, France invaded and occupied Algeria, which led to significant changes in the country's social and economic systems. The French colonization led to large-scale displacement of the local population, and many Algerians were forced to work in difficult and dangerous conditions. This could have had an impact on life expectancy.\n\n2. War and conflict: Algeria experienced several periods of conflict during this period, including the French conquest of Algeria, which lasted until 1847. These conflicts led to significant loss of life and displacement of civilians, which could have impacted life expectancy.\n\n3. Infectious diseases: Algeria was still affected by a range of infectious diseases during this period, including cholera, plague, and tuberculosis, which could have impacted life expectancy.\n\n4. Limited access to healthcare: Healthcare services were limited in Algeria during this period, and many people lacked access to basic healthcare services.\n\n5. Nutrition: Poor nutrition and food insecurity were also common in Algeria during this period, which could have contributed to lower life expectancy.\n\nOverall, the combination of French colonization, war and conflict, infectious diseases, limited access to healthcare, and poor nutrition could have impacted life expectancy in Algeria during the period from 1844 to 1855. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "983" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": 23.68621794871796, + "text": "Data on life expectancy in Algeria during the period from 1920 to 1933 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. French colonization: Algeria was still under French colonial rule during this period, and the colonial authorities continued to implement significant changes to the country's social and economic systems. This included the introduction of new infrastructure and economic development projects, but also included forced labor, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. World War I aftermath: The aftermath of World War I, including the Treaty of Versailles, led to significant changes in the political and economic systems of Europe, which could have impacted Algeria and its population.\n\n3. Infectious diseases: Algeria was still affected by a range of infectious diseases during this period, including cholera, typhoid fever, and tuberculosis, which could have impacted life expectancy.\n\n4. Limited access to healthcare: Healthcare services were limited in Algeria during this period, and many people lacked access to basic healthcare services.\n\n5. Nutrition: Poor nutrition and food insecurity were also common in Algeria during this period, which could have contributed to lower life expectancy.\n\n6. Economic changes: The introduction of new economic policies and infrastructure projects under French colonial rule could have had both positive and negative impacts on life expectancy, depending on the specific context and implementation of these changes.\n\nOverall, the combination of French colonization, World War I aftermath, infectious diseases, limited access to healthcare, poor nutrition, and economic changes could have impacted life expectancy in Algeria during the period from 1920 to 1933. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "peak" + }, + "id": "991" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": 13.225000000000014, + "text": "Data on life expectancy in Algeria during the period from 1907 to 1919 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. French colonization: Algeria was still under French colonial rule during this period, and the colonial authorities continued to implement significant changes to the country's social and economic systems. This included the introduction of new infrastructure and economic development projects, but also included forced labor, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. World War I: Algeria, as a French colony, was involved in World War I, and the conflict likely led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\n3. Infectious diseases: Algeria was still affected by a range of infectious diseases during this period, including cholera, typhoid fever, and tuberculosis, which could have impacted life expectancy.\n\n4. Limited access to healthcare: Healthcare services were limited in Algeria during this period, and many people lacked access to basic healthcare services.\n\n5. Nutrition: Poor nutrition and food insecurity were also common in Algeria during this period, which could have contributed to lower life expectancy.\n\n6. Economic changes: The introduction of new economic policies and infrastructure projects under French colonial rule could have had both positive and negative impacts on life expectancy, depending on the specific context and implementation of these changes.\n\nOverall, the combination of French colonization, World War I, infectious diseases, limited access to healthcare, poor nutrition, and economic changes could have impacted life expectancy in Algeria during the period from 1907 to 1919. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "peak" + }, + "id": "988" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": 13.225000000000014, + "text": "Data on life expectancy in Algeria during the period from 1907 to 1919 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. French colonization: Algeria was still under French colonial rule during this period, and the colonial authorities continued to implement significant changes to the country's social and economic systems. This included the introduction of new infrastructure and economic development projects, but also included forced labor, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. World War I: Algeria, as a French colony, was involved in World War I, and the conflict likely led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\n3. Infectious diseases: Algeria was still affected by a range of infectious diseases during this period, including cholera, typhoid fever, and tuberculosis, which could have impacted life expectancy.\n\n4. Limited access to healthcare: Healthcare services were limited in Algeria during this period, and many people lacked access to basic healthcare services.\n\n5. Nutrition: Poor nutrition and food insecurity were also common in Algeria during this period, which could have contributed to lower life expectancy.\n\n6. Economic changes: The introduction of new economic policies and infrastructure projects under French colonial rule could have had both positive and negative impacts on life expectancy, depending on the specific context and implementation of these changes.\n\nOverall, the combination of French colonization, World War I, infectious diseases, limited access to healthcare, poor nutrition, and economic changes could have impacted life expectancy in Algeria during the period from 1907 to 1919. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "peak" + }, + "id": "986" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -10.173333333333332, + "text": "Data on life expectancy in Algeria during the period from 1902 to 1910 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. French colonization: Algeria was still under French colonial rule during this period, and the colonial authorities continued to implement significant changes to the country's social and economic systems. This included the introduction of new infrastructure and economic development projects, but also included forced labor, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. War and conflict: Algeria experienced several periods of conflict during this period, including the Second Moroccan Crisis in 1905, which led to significant loss of life and displacement of civilians, which could have impacted life expectancy.\n\n3. Infectious diseases: Algeria was still affected by a range of infectious diseases during this period, including cholera, typhoid fever, and tuberculosis, which could have impacted life expectancy.\n\n4. Limited access to healthcare: Healthcare services were limited in Algeria during this period, and many people lacked access to basic healthcare services.\n\n5. Nutrition: Poor nutrition and food insecurity were also common in Algeria during this period, which could have contributed to lower life expectancy.\n\n6. Urbanization and industrialization: Algeria underwent significant urbanization and industrialization during this period, which could have both positive and negative impacts on life expectancy. While the growth of urban areas could have led to improvements in healthcare and access to resources, it could also have increased exposure to environmental hazards and contributed to poor living conditions.\n\nOverall, the combination of French colonization, war and conflict, infectious diseases, limited access to healthcare, poor nutrition, and urbanization and industrialization could have impacted life expectancy in Algeria during the period from 1902 to 1910. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "985" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -23.348484848484848, + "text": "Data on life expectancy in Algeria during the period from 1912 to 1927 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. French colonization: Algeria was still under French colonial rule during this period, and the colonial authorities continued to implement significant changes to the country's social and economic systems. This included the introduction of new infrastructure and economic development projects, but also included forced labor, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. World War I: Algeria, as a French colony, was involved in World War I, and the conflict likely led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\n3. Infectious diseases: Algeria was still affected by a range of infectious diseases during this period, including cholera, typhoid fever, and tuberculosis, which could have impacted life expectancy.\n\n4. Limited access to healthcare: Healthcare services were limited in Algeria during this period, and many people lacked access to basic healthcare services.\n\n5. Nutrition: Poor nutrition and food insecurity were also common in Algeria during this period, which could have contributed to lower life expectancy.\n\n6. Economic changes: The introduction of new economic policies and infrastructure projects under French colonial rule could have had both positive and negative impacts on life expectancy, depending on the specific context and implementation of these changes.\n\nOverall, the combination of French colonization, World War I, infectious diseases, limited access to healthcare, poor nutrition, and economic changes could have impacted life expectancy in Algeria during the period from 1912 to 1927. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "989" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": 10.681776133210011, + "text": "Data on life expectancy in Algeria during the period from 1937 to 1948 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. World War II: Algeria, as a French colony, was involved in World War II, and the conflict likely led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\n2. French colonization: Algeria was still under French colonial rule during this period, and the colonial authorities continued to implement significant changes to the country's social and economic systems. This included the introduction of new infrastructure and economic development projects, but also included forced labor, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n3. Infectious diseases: Algeria was still affected by a range of infectious diseases during this period, including cholera, typhoid fever, and tuberculosis, which could have impacted life expectancy.\n\n4. Limited access to healthcare: Healthcare services were limited in Algeria during this period, and many people lacked access to basic healthcare services.\n\n5. Nutrition: Poor nutrition and food insecurity were also common in Algeria during this period, which could have contributed to lower life expectancy.\n\n6. Economic changes: The introduction of new economic policies and infrastructure projects under French colonial rule could have had both positive and negative impacts on life expectancy, depending on the specific context and implementation of these changes.\n\nOverall, the combination of World War II, French colonization, infectious diseases, limited access to healthcare, poor nutrition, and economic changes could have impacted life expectancy in Algeria during the period from 1937 to 1948. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "peak" + }, + "id": "993" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -34.41025641025641, + "text": "Data on life expectancy in Algeria during the period from 1863 to 1874 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. French colonization: Algeria was under French colonial rule during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the introduction of new infrastructure and economic development projects, but also included forced labor, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. War and conflict: Algeria experienced several periods of conflict during this period, including the Mokrani Revolt in 1871, which led to significant loss of life and displacement of civilians, which could have impacted life expectancy.\n\n3. Infectious diseases: Algeria was still affected by a range of infectious diseases during this period, including cholera, typhoid fever, and tuberculosis, which could have impacted life expectancy.\n\n4. Limited access to healthcare: Healthcare services were limited in Algeria during this period, and many people lacked access to basic healthcare services.\n\n5. Nutrition: Poor nutrition and food insecurity were also common in Algeria during this period, which could have contributed to lower life expectancy.\n\n6. Economic changes: The introduction of new economic policies and infrastructure projects under French colonial rule could have had both positive and negative impacts on life expectancy, depending on the specific context and implementation of these changes.\n\nOverall, the combination of French colonization, war and conflict, infectious diseases, limited access to healthcare, poor nutrition, and economic changes could have impacted life expectancy in Algeria during the period from 1863 to 1874. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "984" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": 13.225000000000014, + "text": "Data on life expectancy in Algeria during the period from 1907 to 1919 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. French colonization: Algeria was still under French colonial rule during this period, and the colonial authorities continued to implement significant changes to the country's social and economic systems. This included the introduction of new infrastructure and economic development projects, but also included forced labor, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. World War I: Algeria, as a French colony, was involved in World War I, and the conflict likely led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\n3. Infectious diseases: Algeria was still affected by a range of infectious diseases during this period, including cholera, typhoid fever, and tuberculosis, which could have impacted life expectancy.\n\n4. Limited access to healthcare: Healthcare services were limited in Algeria during this period, and many people lacked access to basic healthcare services.\n\n5. Nutrition: Poor nutrition and food insecurity were also common in Algeria during this period, which could have contributed to lower life expectancy.\n\n6. Economic changes: The introduction of new economic policies and infrastructure projects under French colonial rule could have had both positive and negative impacts on life expectancy, depending on the specific context and implementation of these changes.\n\nOverall, the combination of French colonization, World War I, infectious diseases, limited access to healthcare, poor nutrition, and economic changes could have impacted life expectancy in Algeria during the period from 1907 to 1919. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "peak" + }, + "id": "987" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": 10.681776133210011, + "text": "Data on life expectancy in Algeria during the period from 1937 to 1948 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. World War II: Algeria, as a French colony, was involved in World War II, and the conflict likely led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\n2. French colonization: Algeria was still under French colonial rule during this period, and the colonial authorities continued to implement significant changes to the country's social and economic systems. This included the introduction of new infrastructure and economic development projects, but also included forced labor, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n3. Infectious diseases: Algeria was still affected by a range of infectious diseases during this period, including cholera, typhoid fever, and tuberculosis, which could have impacted life expectancy.\n\n4. Limited access to healthcare: Healthcare services were limited in Algeria during this period, and many people lacked access to basic healthcare services.\n\n5. Nutrition: Poor nutrition and food insecurity were also common in Algeria during this period, which could have contributed to lower life expectancy.\n\n6. Economic changes: The introduction of new economic policies and infrastructure projects under French colonial rule could have had both positive and negative impacts on life expectancy, depending on the specific context and implementation of these changes.\n\nOverall, the combination of World War II, French colonization, infectious diseases, limited access to healthcare, poor nutrition, and economic changes could have impacted life expectancy in Algeria during the period from 1937 to 1948. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "peak" + }, + "id": "992" + }, + { + "attributes": { + "labels": [ + "COUNTRY" + ], + "name": "Angola" + }, + "id": "223" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1031" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1048" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1026" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1018" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1069" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1050" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1016" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1035" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1003" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1027" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1034" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1021" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1002" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1028" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1000" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1008" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1040" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1046" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1039" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1007" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "995" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1013" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1049" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1052" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "994" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1015" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1047" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1060" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1030" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1044" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1023" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1024" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1022" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1020" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1019" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1029" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1045" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1051" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1066" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1032" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1009" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1064" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1010" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1054" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1063" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "999" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1041" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1005" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1065" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1001" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "998" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1017" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1037" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1055" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1062" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1067" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1025" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1070" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1057" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "996" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1004" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1036" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1053" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1042" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1061" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1012" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1014" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1033" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "997" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1059" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1068" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1038" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1043" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1011" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1058" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1056" + }, + { + "attributes": { + "labels": [ + "FINDING" + ], + "score": -36.19366228070176, + "text": "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", + "type": "valley" + }, + "id": "1006" + }, + { + "attributes": { + "labels": [ + "COUNTRY" + ], + "name": "Antigua and Barbuda" + }, + "id": "224" + } + ] +}; diff --git a/libs/shared/lib/querybuilder/query-utils/query-utils.ts b/libs/shared/lib/querybuilder/query-utils/query-utils.ts index b081210b4dac7a57a3929c58f511d13477183bb1..b029d65bfadb28406a8d1b7c4f36f465377f62f2 100644 --- a/libs/shared/lib/querybuilder/query-utils/query-utils.ts +++ b/libs/shared/lib/querybuilder/query-utils/query-utils.ts @@ -40,7 +40,7 @@ export function Query2BackendQuery(databaseName: string, graph: QueryMultiGraphE relations: relations, groupBys: [], // TODO machineLearning: [], // TODO - limit: 5000, // TODO + limit: 500, // TODO }; console.log(result, graph); diff --git a/libs/shared/lib/schema/panel/schema.tsx b/libs/shared/lib/schema/panel/schema.tsx index cfe8a15d193cd00ace1362d3588dc82680022e9a..9725938629c3e8c2c4d255b8e592e9ff790c989c 100644 --- a/libs/shared/lib/schema/panel/schema.tsx +++ b/libs/shared/lib/schema/panel/schema.tsx @@ -87,8 +87,8 @@ export const Schema = (props: Props) => { // console.log('dbSchema', schemaGraphology, schemaGraphology.order); // }, [schemaGraphology]); - const toggleNodeQualityPopup = (id: string) => {}; - const toggleAttributeAnalyticsPopupMenu = (id: string) => {}; + const toggleNodeQualityPopup = (id: string) => { }; + const toggleAttributeAnalyticsPopupMenu = (id: string) => { }; function updateLayout() { const layoutFactory = new LayoutFactory(); @@ -107,6 +107,9 @@ export const Schema = (props: Props) => { } // console.log(schemaGraphology.export()); + console.log(schemaLayout); + + updateLayout(); const expandedSchema = schemaExpandRelation(schemaGraphology); layout.current?.layout(expandedSchema); diff --git a/libs/shared/lib/schema/pills/nodes/relation/relation.module.scss b/libs/shared/lib/schema/pills/nodes/relation/relation.module.scss index ee72b9c8a70a92b33e2aa58d20f8c1ee39c4b278..37835ab2df17f8a2eda7126d637ca43556904ac6 100644 --- a/libs/shared/lib/schema/pills/nodes/relation/relation.module.scss +++ b/libs/shared/lib/schema/pills/nodes/relation/relation.module.scss @@ -3,7 +3,7 @@ $width: 145; .relationNode { - height: 26px; + height: 36px; display: flex; font-family: monospace; font-weight: bold; diff --git a/libs/shared/lib/vis/nodelink/NodeLinkViewModel.tsx b/libs/shared/lib/vis/nodelink/NodeLinkViewModel.tsx index 935edb243cc65614e920a6e3a2ed61564e5a585c..a7f98e93e76d36f081c52700c76817199d7fc4af 100644 --- a/libs/shared/lib/vis/nodelink/NodeLinkViewModel.tsx +++ b/libs/shared/lib/vis/nodelink/NodeLinkViewModel.tsx @@ -411,9 +411,10 @@ export default class NodeLinkViewModel { node.gfx = new PIXI.Graphics(); node.selected = selected; const lineColour = selected - ? this.theme.palette.custom.nodeHighlightedEdge - : this.theme.palette.custom.visBackground; + ? this.theme.palette.custom.nodeHighlightedEdge.replace('#', '') + : this.theme.palette.custom.visBackground.replace('#', ''); const lineWidth = selected ? 3 : 1.5; + node.gfx.lineStyle(lineWidth, Number('0x' + lineColour)); //check if not undefined. if (node.cluster) { @@ -855,9 +856,9 @@ export default class NodeLinkViewModel { * @returns {number} A number corresponding to a color in the d3 color scheme. */ public colour = (num: number) => { - //num = num % 4; + num = num % 20; const col = this.theme.palette.custom.nodes[num]; - return Number('0x' + col); + return Number('0x' + col.replace('#', '')); }; //MACHINE LEARNING-------------------------------------------------------------------------------------------------- diff --git a/libs/shared/lib/vis/nodelink/ResultNodeLinkParserUseCase.tsx b/libs/shared/lib/vis/nodelink/ResultNodeLinkParserUseCase.tsx index 1a185ac4be0fb6cc6a5fb31d685866156cac5e51..dc8cbdca68e19128d7a12f40d922e1631f321488 100644 --- a/libs/shared/lib/vis/nodelink/ResultNodeLinkParserUseCase.tsx +++ b/libs/shared/lib/vis/nodelink/ResultNodeLinkParserUseCase.tsx @@ -227,9 +227,12 @@ export default class ResultNodeLinkParserUseCase { data = { ...data, ...mlExtra }; nodes.push(data); } + + // Filter unique edges and transform to LinkTypes // List for all links let links: LinkType[] = []; + let allNodeIds = new Set(nodes.map(n => n.id)); // Parse ml edges if (queryResult.mlEdges != undefined) { const uniqueMLEdges = ParseToUniqueEdges.parse(queryResult.mlEdges, true); @@ -247,13 +250,15 @@ export default class ResultNodeLinkParserUseCase { // Parse normal edges const uniqueEdges = ParseToUniqueEdges.parse(queryResult.edges, false); for (let i = 0; i < uniqueEdges.length; i++) { - const toAdd: LinkType = { - source: uniqueEdges[i].from, - target: uniqueEdges[i].to, - value: uniqueEdges[i].count, - mlEdge: false, - }; - links.push(toAdd); + if (allNodeIds.has(uniqueEdges[i].from) && allNodeIds.has(uniqueEdges[i].to)) { + const toAdd: LinkType = { + source: uniqueEdges[i].from, + target: uniqueEdges[i].to, + value: uniqueEdges[i].count, + mlEdge: false, + }; + links.push(toAdd); + } } //TODO: is this in use? diff --git a/libs/shared/lib/vis/nodelink/nodelinkvis.stories.tsx b/libs/shared/lib/vis/nodelink/nodelinkvis.stories.tsx index 988444d377a29d5d1bd6df8de559bdad08906cc7..f8f03714acab9abdd10687ef18c8de72c598882b 100644 --- a/libs/shared/lib/vis/nodelink/nodelinkvis.stories.tsx +++ b/libs/shared/lib/vis/nodelink/nodelinkvis.stories.tsx @@ -15,6 +15,7 @@ import { GraphPolarisThemeProvider } from '../../data-access/theme'; import { big2ndChamberQueryResult, smallFlightsQueryResults, + mockLargeQueryResults } from '../../mock-data'; const Component: Meta<typeof NodeLinkVis> = { @@ -49,59 +50,57 @@ const Mockstore = configureStore({ }, }); -const Template: ComponentStory<typeof NodeLinkVis> = (args) => ( - <NodeLinkVis {...args} /> -); +export const TestWithData = { + args: { + loading: false, + }, + play: async () => { + const dispatch = Mockstore.dispatch; + dispatch( + assignNewGraphQueryResult({ + nodes: [ + { id: 'agent/007', attributes: { name: 'Daniel Craig' } }, + { id: 'villain', attributes: { name: 'Le Chiffre' } }, + ], + edges: [ + { from: 'agent/007', to: 'villain', attributes: { name: 'Escape' } }, + ], + }) + ) + } +} -export const TestWithData = Template.bind({}); -TestWithData.args = { - loading: false, -}; -TestWithData.play = async () => { - const dispatch = Mockstore.dispatch; - dispatch( - assignNewGraphQueryResult({ - nodes: [ - { id: 'agent/007', attributes: { name: 'Daniel Craig' } }, - { id: 'villain', attributes: { name: 'Le Chiffre' } }, - ], - edges: [ - { from: 'agent/007', to: 'villain', attributes: { name: 'Escape' } }, - ], - }) - ); +export const TestWithNoData = { + args: { loading: false }, play: async () => { + const dispatch = Mockstore.dispatch; + dispatch( + assignNewGraphQueryResult({ + nodes: [], + edges: [], + }) + ); + } }; -export const TestWithNoData = Template.bind({}); -TestWithNoData.args = { - loading: false, -}; -TestWithNoData.play = async () => { - const dispatch = Mockstore.dispatch; - dispatch( - assignNewGraphQueryResult({ - nodes: [], - edges: [], - }) - ); +export const TestWithBig2ndChamber = { + args: { loading: false }, play: async () => { + const dispatch = Mockstore.dispatch; + dispatch(assignNewGraphQueryResult(big2ndChamberQueryResult)); + } }; -export const TestWithBig2ndChamber = Template.bind({}); -TestWithBig2ndChamber.args = { - loading: false, -}; -TestWithBig2ndChamber.play = async () => { - const dispatch = Mockstore.dispatch; - dispatch(assignNewGraphQueryResult(big2ndChamberQueryResult)); +export const TestWithSmallFlights = { + args: { loading: false }, play: async () => { + const dispatch = Mockstore.dispatch; + dispatch(assignNewGraphQueryResult(smallFlightsQueryResults)); + } }; -export const TestWithSmallFlights = Template.bind({}); -TestWithSmallFlights.args = { - loading: false, -}; -TestWithSmallFlights.play = async () => { - const dispatch = Mockstore.dispatch; - dispatch(assignNewGraphQueryResult(smallFlightsQueryResults)); +export const TestWithLargeQueryResult = { + args: { loading: false }, play: async () => { + const dispatch = Mockstore.dispatch; + dispatch(assignNewGraphQueryResult(mockLargeQueryResults)); + } }; // export const Loading = Template.bind({}); diff --git a/libs/shared/lib/vis/nodelink/nodelinkvis.tsx b/libs/shared/lib/vis/nodelink/nodelinkvis.tsx index a1805f7b50dfbdde372500669a26d7afa67197dc..0dc526debddecaa5f85301fb019aece9241eeeeb 100644 --- a/libs/shared/lib/vis/nodelink/nodelinkvis.tsx +++ b/libs/shared/lib/vis/nodelink/nodelinkvis.tsx @@ -130,14 +130,14 @@ export const NodeLinkVis = React.memo((props: Props) => { return ( <> - <input + {/* <input onChange={(v) => dispatch(changePrimary({ main: v.currentTarget.value })) } type="color" name="head" value={theme.palette.primary.main} - /> + /> */} {loading && ( <div style={{ diff --git a/libs/shared/lib/vis/rawjsonvis/rawjsonvis.stories.tsx b/libs/shared/lib/vis/rawjsonvis/rawjsonvis.stories.tsx index e66fde6f44adaefdd3da1b1ca37cf38c7e4c6ce9..69f6ca4caa5828107e4bc9740ee2d09efb608ebc 100644 --- a/libs/shared/lib/vis/rawjsonvis/rawjsonvis.stories.tsx +++ b/libs/shared/lib/vis/rawjsonvis/rawjsonvis.stories.tsx @@ -12,6 +12,7 @@ import { import { configureStore } from '@reduxjs/toolkit'; import { Provider } from 'react-redux'; import { GraphPolarisThemeProvider } from '../../data-access/theme'; +import { mockLargeQueryResults } from '../../mock-data/query-result' const Component: Meta<typeof RawJSONVis> = { /* 👇 The title prop is optional. @@ -36,42 +37,50 @@ const Mockstore = configureStore({ }, }); -const Template: ComponentStory<typeof RawJSONVis> = (args) => ( - <RawJSONVis {...args} /> -); +export const SimpleData = { + args: { + loading: false, + }, + play: async () => { + const dispatch = Mockstore.dispatch; + dispatch( + assignNewGraphQueryResult({ + nodes: [ + { id: 'agent/007', attributes: { name: 'Daniel Craig' } }, + { id: 'villain', attributes: { name: 'Le Chiffre' } }, + ], + edges: [], + }) + ); + } +} -export const TestWithData = Template.bind({}); -TestWithData.args = { - loading: false, -}; -TestWithData.play = async () => { - const dispatch = Mockstore.dispatch; - dispatch( - assignNewGraphQueryResult({ - nodes: [ - { id: 'agent/007', attributes: { name: 'Daniel Craig' } }, - { id: 'villain', attributes: { name: 'Le Chiffre' } }, - ], - edges: [], - }) - ); -}; +export const LargeData = { + args: { + loading: false, + }, + play: async () => { + const dispatch = Mockstore.dispatch; + dispatch( + assignNewGraphQueryResult(mockLargeQueryResults) + ); + } +} -export const Loading = Template.bind({}); -Loading.args = { - loading: true, -}; +export const Loading = { + args: { + loading: true, + }, +} -export const Empty = Template.bind({}); -Empty.args = { - // Shaping the stories through args composition. - // Inherited data coming from the Loading story. - ...Loading.args, - loading: false, -}; -Empty.play = async () => { - const dispatch = store.dispatch; - dispatch(resetGraphQueryResults()); -}; +export const Empty = { + args: { + loading: false, + }, + play: async () => { + const dispatch = store.dispatch; + dispatch(resetGraphQueryResults()); + } +} export default Component; diff --git a/package.json b/package.json index b88691351ed1f1796b10cd3e57b270ce8e935e61..f4b9b79bbb2a5c18998db39ade2783c0ccd2c251 100644 --- a/package.json +++ b/package.json @@ -7,11 +7,11 @@ "libs/*" ], "scripts": { - "build": "turbo run build", - "dev": "turbo run dev", - "sb": "turbo run sb", - "lint": "turbo run lint", - "test": "turbo run test", + "build": "turbo run build --no-daemon", + "dev": "turbo run dev --no-daemon", + "sb": "turbo run sb --no-daemon", + "lint": "turbo run lint --no-daemon", + "test": "turbo run test --no-daemon", "format": "prettier --write \"**/*.{ts,tsx,md}\"", "prepare": "husky install" },