From 70264e4855b51945f59104d9cc6ad0de331f1c98 Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Mon, 16 Aug 2021 10:31:53 +0200 Subject: [PATCH 01/50] Updates from skeleton app --- .env | 6 +- README.md | 10 +- cypress/integration/example-page.spec.js | 12 +- cypress/support/commands.js | 2 +- i18n/en.pot | 14 +- i18n/es.po | 21 +- package.json | 60 +- src/CompositionRoot.ts | 35 + src/app-config.ts | 24 +- src/data/entities/Instance.ts | 21 + .../repositories/InstanceDefaultRepository.ts | 47 + src/domain/entities/Either.ts | 68 + src/domain/entities/Future.ts | 118 + src/domain/entities/Ref.ts | 9 + src/domain/entities/User.ts | 18 + src/domain/repositories/InstanceRepository.ts | 8 + src/domain/usecases/GetCurrentUserUseCase.ts | 12 + .../usecases/GetInstanceVersionUseCase.ts | 11 + src/index.tsx | 8 +- src/scripts/example.ts | 2 +- src/types/d2-ui.d.ts | 2 +- src/types/utils.ts | 66 + src/utils/cache.ts | 104 + src/utils/codec.ts | 137 ++ src/utils/d2-api.ts | 20 +- src/utils/futures.ts | 11 + src/utils/tests.tsx | 29 +- src/utils/uid.ts | 59 + src/webapp/components/card-grid/CardGrid.tsx | 50 + src/webapp/components/card-grid/MenuCard.tsx | 74 + .../components/page-header/PageHeader.tsx | 50 +- src/webapp/contexts/app-context.ts | 7 +- src/webapp/pages/Router.tsx | 19 + src/webapp/pages/app/App.css | 13 + src/webapp/pages/app/App.tsx | 86 + src/webapp/pages/app/AppConfig.ts | 21 + .../pages/app/themes/dhis2-legacy.theme.ts | 63 + src/webapp/pages/app/themes/dhis2.theme.ts | 91 + src/webapp/pages/example/ExamplePage.tsx | 21 + .../pages/example/__tests__/Example.spec.tsx | 47 +- src/webapp/pages/landing/LandingPage.tsx | 36 +- yarn.lock | 1953 +++++++++++------ 42 files changed, 2646 insertions(+), 819 deletions(-) create mode 100644 src/CompositionRoot.ts create mode 100644 src/data/entities/Instance.ts create mode 100644 src/data/repositories/InstanceDefaultRepository.ts create mode 100644 src/domain/entities/Either.ts create mode 100644 src/domain/entities/Future.ts create mode 100644 src/domain/entities/Ref.ts create mode 100644 src/domain/entities/User.ts create mode 100644 src/domain/repositories/InstanceRepository.ts create mode 100644 src/domain/usecases/GetCurrentUserUseCase.ts create mode 100644 src/domain/usecases/GetInstanceVersionUseCase.ts create mode 100644 src/types/utils.ts create mode 100644 src/utils/cache.ts create mode 100644 src/utils/codec.ts create mode 100644 src/utils/futures.ts create mode 100644 src/utils/uid.ts create mode 100644 src/webapp/components/card-grid/CardGrid.tsx create mode 100644 src/webapp/components/card-grid/MenuCard.tsx create mode 100644 src/webapp/pages/Router.tsx create mode 100644 src/webapp/pages/app/App.css create mode 100644 src/webapp/pages/app/App.tsx create mode 100644 src/webapp/pages/app/AppConfig.ts create mode 100644 src/webapp/pages/app/themes/dhis2-legacy.theme.ts create mode 100644 src/webapp/pages/app/themes/dhis2.theme.ts create mode 100644 src/webapp/pages/example/ExamplePage.tsx diff --git a/.env b/.env index 264e5cc..e99a73e 100644 --- a/.env +++ b/.env @@ -1,4 +1,8 @@ BROWSER=false PORT=8081 SKIP_PREFLIGHT_CHECK=true -REACT_APP_DHIS2_BASE_URL=http://dev2.eyeseetea.com:8085/ +REACT_APP_DHIS2_BASE_URL=https://dev.eyeseetea.com/play + +CYPRESS_DHIS2_AUTH='admin:district' +CYPRESS_EXTERNAL_API="https://dev.eyeseetea.com/play" +CYPRESS_ROOT_URL=http://localhost:8081 diff --git a/README.md b/README.md index 39f4a79..1ab9db1 100644 --- a/README.md +++ b/README.md @@ -8,17 +8,15 @@ $ yarn install ## Development -Start development server: +Start a development server using a DHIS2 instance in http://localhost:8080: ``` $ PORT=8081 REACT_APP_DHIS2_BASE_URL="http://localhost:8080" yarn start ``` -Linting: +Now in your browser, go to `http://localhost:8081`. -``` -$ yarn lint -``` +NOTE: Create a file `.env.local` (copy it from `.env`) to set custom environment variables so you can simply run `yarn start`. ## Tests @@ -69,8 +67,6 @@ $ yarn build-webapp ### i18n ``` -$ yarn update-po -# ... add/edit translations in i18n/*.po files ... $ yarn localize ``` diff --git a/cypress/integration/example-page.spec.js b/cypress/integration/example-page.spec.js index adecce8..e046e1d 100644 --- a/cypress/integration/example-page.spec.js +++ b/cypress/integration/example-page.spec.js @@ -3,16 +3,10 @@ context("Example page", () => { before(() => { cy.login("admin"); - cy.visit("#/for"); + cy.visit("/"); }); - it("increments counter when button clicked", () => { - cy.contains("+1").click(); - cy.contains("Value=1"); - }); - - it("shows feedback when button clicked", () => { - cy.contains("Click to show feedback").click(); - cy.contains("Some info"); + it("should contain sections", () => { + cy.contains("Section"); }); }); diff --git a/cypress/support/commands.js b/cypress/support/commands.js index fe946ab..00f3100 100644 --- a/cypress/support/commands.js +++ b/cypress/support/commands.js @@ -57,7 +57,7 @@ Cypress.on("uncaught:exception", (err, runnable) => { Cypress.Commands.add("waitForStep", stepName => { cy.contains(stepName).should($el => { - console.log($el); + console.debug($el); expect($el.attr("class")).to.contain("current-step", `Current step should be ${stepName}`); }); }); diff --git a/i18n/en.pot b/i18n/en.pot index 9bafd74..f41d956 100644 --- a/i18n/en.pot +++ b/i18n/en.pot @@ -5,20 +5,20 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -"POT-Creation-Date: 2020-11-11T10:10:17.826Z\n" -"PO-Revision-Date: 2020-11-11T10:10:17.826Z\n" +"POT-Creation-Date: 2021-08-12T06:57:21.921Z\n" +"PO-Revision-Date: 2021-08-12T06:57:21.921Z\n" -msgid "Back" +msgid "Add" msgstr "" -msgid "Help" +msgid "List" msgstr "" -msgid "Click to show feedback" +msgid "Back" msgstr "" -msgid "Add" +msgid "Help" msgstr "" -msgid "List" +msgid "Hello {{name}}" msgstr "" diff --git a/i18n/es.po b/i18n/es.po index fec2990..e9ad77d 100644 --- a/i18n/es.po +++ b/i18n/es.po @@ -1,27 +1,24 @@ msgid "" msgstr "" "Project-Id-Version: i18next-conv\n" -"POT-Creation-Date: 2020-11-11T10:10:17.826Z\n" +"POT-Creation-Date: 2021-08-12T06:57:21.921Z\n" "PO-Revision-Date: 2018-10-25T09:02:35.143Z\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -msgid "Back" -msgstr "Volver" - -msgid "Help" -msgstr "Ayuda" - -msgid "Click to show feedback" -msgstr "Toca para ver feedback" - msgid "Add" msgstr "Añadir" msgid "List" msgstr "Listar" -#~ msgid "configuration" -#~ msgstr "Configuración" +msgid "Back" +msgstr "Volver" + +msgid "Help" +msgstr "Ayuda" + +msgid "Hello {{name}}" +msgstr "" diff --git a/package.json b/package.json index ff58732..1608b46 100644 --- a/package.json +++ b/package.json @@ -14,69 +14,73 @@ "@dhis2/d2-i18n": "1.1.0", "@dhis2/d2-i18n-extract": "1.0.8", "@dhis2/d2-i18n-generate": "1.2.0", - "@dhis2/ui": "6.9.0", + "@dhis2/ui": "6.12.0", "@eyeseetea/d2-api": "1.8.5", "@eyeseetea/d2-ui-components": "2.6.6", - "@material-ui/core": "4.11.4", + "@material-ui/core": "4.12.3", "@material-ui/icons": "4.11.2", - "@material-ui/lab": "4.0.0-alpha.58", + "@material-ui/lab": "4.0.0-alpha.60", "@material-ui/styles": "4.11.4", "axios": "0.21.1", "classnames": "2.3.1", "d2": "31.10.0", "d2-manifest": "1.0.0", + "fluture": "14.0.0", "font-awesome": "4.7.0", "lodash": "4.17.21", "postcss-rtl": "1.7.3", + "purify-ts": "1.0.0", + "purify-ts-extra-codec": "0.6.0", "react": "17.0.2", "react-dom": "17.0.2", "react-router-dom": "5.2.0", "react-scripts": "4.0.3", "styled-components": "5.3.0", - "styled-jsx": "3.4.4" + "styled-jsx": "3.4.5" }, "devDependencies": { - "@babel/core": "7.14.6", + "@babel/core": "7.14.8", "@babel/preset-typescript": "7.14.5", "@testing-library/jest-dom": "5.14.1", - "@testing-library/react": "11.2.7", - "@types/argparse": "2.0.8", + "@testing-library/react": "12.0.0", + "@types/argparse": "2.0.10", "@types/axios-mock-adapter": "1.10.0", - "@types/classnames": "2.3.0", - "@types/jest": "26.0.23", - "@types/lodash": "4.14.170", - "@types/material-ui": "0.21.8", - "@types/md5": "2.3.0", - "@types/node": "15.12.2", - "@types/react": "17.0.11", - "@types/react-dom": "17.0.7", - "@types/react-router-dom": "5.1.7", - "@types/styled-components": "5.1.10", - "@typescript-eslint/eslint-plugin": "4.27.0", - "@typescript-eslint/parser": "4.27.0", + "@types/classnames": "2.3.1", + "@types/jest": "26.0.24", + "@types/lodash": "4.14.172", + "@types/material-ui": "0.21.9", + "@types/md5": "2.3.1", + "@types/node": "16.4.10", + "@types/react": "17.0.15", + "@types/react-dom": "17.0.9", + "@types/react-router-dom": "5.1.8", + "@types/styled-components": "5.1.11", + "@typescript-eslint/eslint-plugin": "4.29.0", + "@typescript-eslint/parser": "4.29.0", "argparse": "2.0.1", "axios-mock-adapter": "1.19.0", "babel-core": "6.26.3", "babel-eslint": "10.1.0", - "cypress": "7.5.0", + "cypress": "8.1.0", "cypress-xpath": "1.6.2", - "eslint": "7.28.0", + "eslint": "7.32.0", "eslint-config-prettier": "8.3.0", "eslint-config-react-app": "6.0.0", "eslint-plugin-cypress": "2.11.3", - "eslint-plugin-flowtype": "5.7.2", + "eslint-plugin-flowtype": "5.9.0", "eslint-plugin-import": "2.23.4", "eslint-plugin-jsx-a11y": "6.4.1", "eslint-plugin-prettier": "3.4.0", "eslint-plugin-react": "7.24.0", "eslint-plugin-react-hooks": "4.2.0", - "husky": "6.0.0", - "jest": "27.0.4", - "prettier": "2.3.1", + "http-proxy-middleware": "^2.0.1", + "husky": "7.0.1", + "jest": "27.0.6", + "prettier": "2.3.2", "react-test-renderer": "17.0.2", - "ts-jest": "27.0.3", - "ts-node": "10.0.0", - "typescript": "4.3.2", + "ts-jest": "27.0.4", + "ts-node": "10.1.0", + "typescript": "4.3.5", "wait-on": "5.3.0" }, "scripts": { diff --git a/src/CompositionRoot.ts b/src/CompositionRoot.ts new file mode 100644 index 0000000..a49c88f --- /dev/null +++ b/src/CompositionRoot.ts @@ -0,0 +1,35 @@ +import { Instance } from "./data/entities/Instance"; +import { InstanceDefaultRepository } from "./data/repositories/InstanceDefaultRepository"; +import { GetCurrentUserUseCase } from "./domain/usecases/GetCurrentUserUseCase"; +import { GetInstanceVersionUseCase } from "./domain/usecases/GetInstanceVersionUseCase"; + +export function getCompositionRoot(instance: Instance) { + const instanceRepository = new InstanceDefaultRepository(instance); + + return { + instance: getExecute({ + getCurrentUser: new GetCurrentUserUseCase(instanceRepository), + getVersion: new GetInstanceVersionUseCase(instanceRepository), + }), + }; +} + +export type CompositionRoot = ReturnType; + +function getExecute, Key extends keyof UseCases>( + useCases: UseCases +): { [K in Key]: UseCases[K]["execute"] } { + const keys = Object.keys(useCases) as Key[]; + const initialOutput = {} as { [K in Key]: UseCases[K]["execute"] }; + + return keys.reduce((output, key) => { + const useCase = useCases[key]; + const execute = useCase.execute.bind(useCase) as UseCases[typeof key]["execute"]; + output[key] = execute; + return output; + }, initialOutput); +} + +export interface UseCase { + execute: Function; +} diff --git a/src/app-config.ts b/src/app-config.ts index 35668a4..c228dbd 100644 --- a/src/app-config.ts +++ b/src/app-config.ts @@ -1,5 +1,3 @@ -import { AppConfig } from "./webapp/components/app/AppConfig"; - export const appConfig: AppConfig = { appKey: "dhis2-app-skeleton", appearance: { @@ -21,3 +19,25 @@ export const appConfig: AppConfig = { feedbackOptions: {}, }, }; + +export interface AppConfig { + appKey: string; + appearance: { + showShareButton: boolean; + }; + feedback?: { + token: string[]; + createIssue: boolean; + sendToDhis2UserGroups: string[]; + issues: { + repository: string; + title: string; + body: string; + }; + snapshots: { + repository: string; + branch: string; + }; + feedbackOptions: object; + }; +} diff --git a/src/data/entities/Instance.ts b/src/data/entities/Instance.ts new file mode 100644 index 0000000..a734d07 --- /dev/null +++ b/src/data/entities/Instance.ts @@ -0,0 +1,21 @@ +export interface InstanceData { + url: string; + username?: string; + password?: string; +} + +export class Instance { + public readonly url: string; + private username: string | undefined; + private password: string | undefined; + + constructor(data: InstanceData) { + this.url = data.url; + this.username = data.username; + this.password = data.password; + } + + public get auth(): { username: string; password: string } | undefined { + return this.username && this.password ? { username: this.username, password: this.password } : undefined; + } +} diff --git a/src/data/repositories/InstanceDefaultRepository.ts b/src/data/repositories/InstanceDefaultRepository.ts new file mode 100644 index 0000000..8855ec4 --- /dev/null +++ b/src/data/repositories/InstanceDefaultRepository.ts @@ -0,0 +1,47 @@ +import { D2Api } from "@eyeseetea/d2-api/2.34"; +import { FutureData } from "../../domain/entities/Future"; +import { User } from "../../domain/entities/User"; +import { InstanceRepository } from "../../domain/repositories/InstanceRepository"; +import { cache } from "../../utils/cache"; +import { getD2APiFromInstance } from "../../utils/d2-api"; +import { apiToFuture } from "../../utils/futures"; +import { Instance } from "../entities/Instance"; + +export class InstanceDefaultRepository implements InstanceRepository { + private api: D2Api; + + constructor(instance: Instance) { + this.api = getD2APiFromInstance(instance); + } + + public getBaseUrl(): string { + return this.api.baseUrl; + } + + @cache() + public getCurrentUser(): FutureData { + return apiToFuture( + this.api.currentUser.get({ + fields: { + id: true, + displayName: true, + userGroups: { id: true, name: true }, + userCredentials: { + username: true, + userRoles: { id: true, name: true, authorities: true }, + }, + }, + }) + ).map(user => ({ + id: user.id, + name: user.displayName, + userGroups: user.userGroups, + ...user.userCredentials, + })); + } + + @cache() + public getInstanceVersion(): FutureData { + return apiToFuture(this.api.system.info).map(({ version }) => version); + } +} diff --git a/src/domain/entities/Either.ts b/src/domain/entities/Either.ts new file mode 100644 index 0000000..cd1ede3 --- /dev/null +++ b/src/domain/entities/Either.ts @@ -0,0 +1,68 @@ +type EitherValueError = { type: "error"; error: Error; data?: never }; +type EitherValueSuccess = { type: "success"; error?: never; data: Data }; +type EitherValue = EitherValueError | EitherValueSuccess; + +type MatchObject = { + success: (data: Data) => Res; + error: (error: Error) => Res; +}; + +export class Either { + constructor(public value: EitherValue) {} + + match(matchObj: MatchObject): Res { + switch (this.value.type) { + case "success": + return matchObj.success(this.value.data); + case "error": + return matchObj.error(this.value.error); + } + } + + isError(): this is this & { value: EitherValueError } { + return this.value.type === "error"; + } + + isSuccess(): this is this & { value: EitherValueSuccess } { + return this.value.type === "success"; + } + + map(fn: (data: Data) => Data1): Either { + return this.flatMap(data => new Either({ type: "success", data: fn(data) })); + } + + mapError(fn: (error: Error) => Error1): Either { + return this.flatMapError(error => new Either({ type: "error", error: fn(error) })); + } + + flatMap(fn: (data: Data) => Either): Either { + return this.match({ + success: data => fn(data), + error: () => this as Either, + }); + } + + flatMapError(fn: (error: Error) => Either): Either { + return this.match({ + success: () => this as Either, + error: error => fn(error), + }); + } + + static error(error: Error) { + return new Either({ type: "error", error }); + } + + static success(data: Data) { + return new Either({ type: "success", data }); + } + + static map2( + [either1, either2]: [Either, Either], + fn: (data1: Data1, data2: Data2) => Res + ): Either { + return either1.flatMap(data1 => { + return either2.map(data2 => fn(data1, data2)); + }); + } +} diff --git a/src/domain/entities/Future.ts b/src/domain/entities/Future.ts new file mode 100644 index 0000000..6209a24 --- /dev/null +++ b/src/domain/entities/Future.ts @@ -0,0 +1,118 @@ +import * as fluture from "fluture"; +import _ from "lodash"; +import { Either } from "purify-ts"; + +export class Future { + private constructor(private instance: fluture.FutureInstance) {} + + run(onSuccess: Fn, onError: Fn): Cancel { + return fluture.fork(onError)(onSuccess)(this.instance); + } + + map(mapper: (data: D) => D2): Future { + const instance2 = fluture.map(mapper)(this.instance) as fluture.FutureInstance; + return new Future(instance2); + } + + bimap(dataMapper: (data: D) => D2, errorMapper: (error: E) => E2): Future { + const instance2 = fluture.bimap(errorMapper)(dataMapper)(this.instance); + return new Future(instance2); + } + + flatMap(mapper: (data: D) => Future): Future { + const chainMapper = fluture.chain(data => mapper(data).instance); + return new Future(chainMapper(this.instance)); + } + + flatMapError(mapper: (error: E) => Future): Future { + const chainRejMapper = fluture.chainRej(error => mapper(error).instance); + return new Future(chainRejMapper(this.instance)); + } + + toPromise(): Promise { + return new Promise((resolve, reject) => { + this.run(resolve, reject); + }); + } + + runAsync(): Promise<{ data?: D; error?: E }> { + return new Promise(resolve => { + this.run( + data => resolve({ data }), + error => resolve({ error }) + ); + }); + } + + /* Static methods */ + static noCancel: Cancel = () => {}; + + static fromComputation(computation: Computation): Future { + return new Future(fluture.Future((reject, resolve) => computation(resolve, reject))); + } + + static fromPurifyEither(input: Either): Future { + return new Future( + fluture.Future((reject, resolve) => { + if (input.isRight()) resolve(input.extract()); + else if (input.isLeft()) reject(input.extract()); + return () => {}; + }) + ); + } + + static success(data: D): Future { + return new Future(fluture.resolve(data)); + } + + static error(error: E): Future { + return new Future(fluture.reject(error)); + } + + static join2(future1: Future, future2: Future): Future { + const instance = fluture.both(future1.instance)(future2.instance); + return new Future(instance); + } + + static parallel( + futures: Array>, + options: { maxConcurrency?: number } = {} + ): Future> { + const { maxConcurrency = 10 } = options; + const parallel = fluture.parallel(maxConcurrency); + const instance = parallel(futures.map(future => future.instance)); + return new Future(instance); + } + + static joinObj>>( + futuresObj: FuturesObj, + options: { maxConcurrency?: number } = {} + ): JoinObj { + const { maxConcurrency = 10 } = options; + const parallel = fluture.parallel(maxConcurrency); + const keys = _.keys(futuresObj); + const futures = _.values(futuresObj); + const flutures = parallel(futures.map(future => future.instance)); + const futureObj = new Future(flutures).map(values => _.zipObject(keys, values)); + return futureObj as JoinObj; + } + + static futureMap(inputValues: T[], mapper: (value: T, index: number) => Future): Future { + return this.parallel(inputValues.map((value, index) => mapper(value, index))); + } +} + +type JoinObj>> = Future< + ExtractFutureError, + { [K in keyof Futures]: ExtractFutureData } +>; + +export type ExtractFutureData = F extends Future ? D : never; +export type ExtractFutureError = F extends Future ? E : never; + +type Fn = (value: T) => void; + +export type Cancel = () => void; + +export type Computation = (resolve: Fn, reject: Fn) => fluture.Cancel; +export type FutureData = Future; diff --git a/src/domain/entities/Ref.ts b/src/domain/entities/Ref.ts new file mode 100644 index 0000000..8b95ca2 --- /dev/null +++ b/src/domain/entities/Ref.ts @@ -0,0 +1,9 @@ +export type Id = string; + +export interface Ref { + id: Id; +} + +export interface NamedRef extends Ref { + name: string; +} diff --git a/src/domain/entities/User.ts b/src/domain/entities/User.ts new file mode 100644 index 0000000..5024056 --- /dev/null +++ b/src/domain/entities/User.ts @@ -0,0 +1,18 @@ +import _ from "lodash"; +import { NamedRef } from "./Ref"; + +export interface User { + id: string; + name: string; + username: string; + userRoles: UserRole[]; + userGroups: NamedRef[]; +} + +export interface UserRole extends NamedRef { + authorities: string[]; +} + +export const isSuperAdmin = (user: User): boolean => { + return _.some(user.userRoles, ({ authorities }) => authorities.includes("ALL")); +}; diff --git a/src/domain/repositories/InstanceRepository.ts b/src/domain/repositories/InstanceRepository.ts new file mode 100644 index 0000000..2d7d6ef --- /dev/null +++ b/src/domain/repositories/InstanceRepository.ts @@ -0,0 +1,8 @@ +import { FutureData } from "../entities/Future"; +import { User } from "../entities/User"; + +export interface InstanceRepository { + getBaseUrl(): string; + getCurrentUser(): FutureData; + getInstanceVersion(): FutureData; +} diff --git a/src/domain/usecases/GetCurrentUserUseCase.ts b/src/domain/usecases/GetCurrentUserUseCase.ts new file mode 100644 index 0000000..2964f8a --- /dev/null +++ b/src/domain/usecases/GetCurrentUserUseCase.ts @@ -0,0 +1,12 @@ +import { UseCase } from "../../CompositionRoot"; +import { FutureData } from "../entities/Future"; +import { User } from "../entities/User"; +import { InstanceRepository } from "../repositories/InstanceRepository"; + +export class GetCurrentUserUseCase implements UseCase { + constructor(private instanceRepository: InstanceRepository) {} + + public execute(): FutureData { + return this.instanceRepository.getCurrentUser(); + } +} diff --git a/src/domain/usecases/GetInstanceVersionUseCase.ts b/src/domain/usecases/GetInstanceVersionUseCase.ts new file mode 100644 index 0000000..0440b8d --- /dev/null +++ b/src/domain/usecases/GetInstanceVersionUseCase.ts @@ -0,0 +1,11 @@ +import { UseCase } from "../../CompositionRoot"; +import { FutureData } from "../entities/Future"; +import { InstanceRepository } from "../repositories/InstanceRepository"; + +export class GetInstanceVersionUseCase implements UseCase { + constructor(private instanceRepository: InstanceRepository) {} + + public execute(): FutureData { + return this.instanceRepository.getInstanceVersion(); + } +} diff --git a/src/index.tsx b/src/index.tsx index 8970f82..44ade6a 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -4,8 +4,9 @@ import axios from "axios"; import { init } from "d2"; import _ from "lodash"; import ReactDOM from "react-dom"; +import { Instance } from "./data/entities/Instance"; import { getD2APiFromInstance } from "./utils/d2-api"; -import App from "./webapp/components/app/App"; +import App from "./webapp/pages/app/App"; async function getBaseUrl() { if (process.env.NODE_ENV === "development") { @@ -34,7 +35,8 @@ async function main() { try { const d2 = await init({ baseUrl: baseUrl + "/api", schemas: [] }); - const api = getD2APiFromInstance({ type: "local", url: baseUrl }); + const instance = new Instance({ url: baseUrl }); + const api = getD2APiFromInstance(instance); Object.assign(window, { d2, api }); const userSettings = await api.get<{ keyUiLocale: string }>("/userSettings").getData(); @@ -42,7 +44,7 @@ async function main() { ReactDOM.render( - + , document.getElementById("root") ); diff --git a/src/scripts/example.ts b/src/scripts/example.ts index f6bc64e..c9e50c3 100644 --- a/src/scripts/example.ts +++ b/src/scripts/example.ts @@ -15,7 +15,7 @@ async function main() { try { const args = parser.parse_args(); const contents = fs.readFileSync(args.input_file, "utf8"); - console.log(contents); + console.debug(contents); } catch (err) { console.error(err); process.exit(1); diff --git a/src/types/d2-ui.d.ts b/src/types/d2-ui.d.ts index b0feb49..c80113f 100644 --- a/src/types/d2-ui.d.ts +++ b/src/types/d2-ui.d.ts @@ -1,3 +1,3 @@ declare module "@dhis2/ui" { - export function HeaderBar(props: { className?: string; appName: string }): React.ReactElement; + export function HeaderBar(props: { className?: string; appName?: string }): React.ReactElement; } diff --git a/src/types/utils.ts b/src/types/utils.ts new file mode 100644 index 0000000..2a0bbdd --- /dev/null +++ b/src/types/utils.ts @@ -0,0 +1,66 @@ +import { JSXElementConstructor, ComponentProps } from "react"; + +export type Maybe = T | undefined | null; + +export type Dictionary = Record; + +export type PartialBy = Omit & Partial>; + +export type RequireAtLeastOne = Pick> & + { + [K in Keys]-?: Required> & Partial>>; + }[Keys]; + +/* Like Partial, but recursive on object values */ +export type RecursivePartial = { + [P in keyof T]?: T[P] extends (infer U)[] + ? RecursivePartial[] + : T[P] extends object + ? RecursivePartial + : T[P]; +}; + +/* +Extract properties from an object of a certain type: + type Person = {name: string, age: number, address: string}, + type StringFields = GetPropertiesByType + // "name" | "address" +*/ +export type GetPropertiesByType = { + [Key in keyof T]: T[Key] extends FieldType ? Key : never; +}[keyof T]; + +export type RequiredProps = { + [P in keyof T]-?: NonNullable; +}; + +export type ComponentParameter< + ObjectType extends keyof JSX.IntrinsicElements | JSXElementConstructor, + Prop extends keyof ComponentProps +> = ComponentProps[Prop]; + +export function isValueInUnionType(value: S, values: readonly T[]): value is T { + return (values as readonly S[]).indexOf(value) >= 0; +} + +export function fromPairs(pairs: Array<[Key, Value]>): Record { + const empty = {} as Record; + return pairs.reduce((acc, [key, value]) => ({ ...acc, [key]: value }), empty); +} + +export function getKeys(obj: T): Array { + return Object.keys(obj) as Array; +} + +/* Define only the value type of an object and infer the keys: + // values :: Record<"key1" | "key2", {value: string}> + const values = recordOf<{value: string}>()({ + key1: {value: "1"}, + key2: {value: "2"}, + }) +*/ +export function recordOf() { + return function (obj: { [K in keyof Obj]: T }) { + return obj; + }; +} diff --git a/src/utils/cache.ts b/src/utils/cache.ts new file mode 100644 index 0000000..36ad6fb --- /dev/null +++ b/src/utils/cache.ts @@ -0,0 +1,104 @@ +import _ from "lodash"; +import { Dictionary } from "../types/utils"; + +type ArgumentsCache = Map; +type FunctionCache = Map; +type MethodCache = Map; + +// Cache that stores a map of serialized arguments with their results under function descriptors +const methodCache: MethodCache = new Map(); +const functionCache: FunctionCache = new Map(); + +interface CacheOptions { + maxArgs?: number; +} + +// Decorator to cache class properties and methods +export const cache = (options: CacheOptions = {}): any => + function (_target: unknown, _key: string | symbol, descriptor: PropertyDescriptor) { + const prop = descriptor.value ? "value" : "get"; + const originalFunction = descriptor[prop]; + const map: FunctionCache = new Map(); + + descriptor[prop] = function (...args: unknown[]) { + // Serialize arguments to build a key + const { maxArgs = args.length } = options; + const position = Math.max(0, maxArgs); + const key = JSON.stringify(sort(args.slice(0, position))); + + // Create a new map if it's the first time the instance has been cached + if (!map.has(this)) map.set(this, new Map()); + const cache = map.get(this); + + // If there's a memoized value, return it instead of re-calculating + const memoizedValue = cache?.get(key); + if (memoizedValue) return memoizedValue; + + // Compute the default value, store it and return it + const result = originalFunction.apply(this, args); + cache?.set(key, result); + return result; + }; + + methodCache.set(descriptor[prop], map); + + return descriptor; + }; + +// Wrapper to memoize functions +export function memoize(fn: (...args: Args) => U) { + const map: ArgumentsCache = new Map(); + + const result = function (this: Obj, ...args: Args) { + const key = JSON.stringify(args); + if (map.has(key)) return map.get(key); + + const result = fn.apply(this, args); + map.set(key, result); + return result; + }; + + functionCache.set(result, map); + + return result; +} + +// Function to clear memoized storage +export const clearCache = (fn: Function, instance?: Dictionary) => { + // Clear method entries + const methodEntries = methodCache.get(fn); + if (methodEntries && !instance) throw new Error("Cache clear must forward instance"); + if (methodEntries) methodEntries?.get(instance)?.clear(); + + // Clear function entries + const functionEntries = functionCache.get(fn); + if (functionEntries) functionEntries.clear(); +}; + +// Define a lazy cached property of an object +export function defineLazyCachedProperty( + object: Obj, + name: Key, + get: () => Res +): void { + let cachedValue: Res | undefined = undefined; + + Object.defineProperty(object, name, { + get: () => { + if (!cachedValue) cachedValue = get(); + return cachedValue; + }, + enumerable: true, + configurable: true, + }); +} + +function sort(item: unknown): unknown { + if (Array.isArray(item)) { + return _(item).map(sort).sort(); + } else if (typeof item === "object") { + return _(item).mapValues(sort).toPairs().sortBy(0).fromPairs().value(); + } else { + return item; + } +} diff --git a/src/utils/codec.ts b/src/utils/codec.ts new file mode 100644 index 0000000..e6b309a --- /dev/null +++ b/src/utils/codec.ts @@ -0,0 +1,137 @@ +import { isFunction } from "lodash"; +import { + array, + Codec, + date, + Either as PurifyEither, + enumeration, + exactly, + identity, + intersect, + lazy, + Left, + maybe, + nonEmptyList, + nullable, + nullType, + number, + oneOf, + optional, + record, + Right, + string, + unknown, +} from "purify-ts"; +import { + chainCodec, + DateFromStringFormatOf, + FormattedStringFromDate, + Integer, + IntegerFromString, + Interface, + JsonFromString, + NonEmptyString, + NumberFromString, + NumberRangedIn, + StringLengthRangedIn, +} from "purify-ts-extra-codec"; +import { Either } from "../domain/entities/Either"; + +type DefaultValue = T | (() => T); + +export const decodeModel = (model: Codec, value: unknown): Either => { + try { + const either = model.decode(value); + + if (either.isRight()) { + return Either.success(either.extract()); + } + + return Either.error(either.leftOrDefault("Couldn't decode input")); + } catch (error) { + console.error(error); + return Either.error("Couldn't read JSON"); + } +}; + +const optionalSafe = (codec: Codec, defaultValue: DefaultValue): Codec => { + const decode = (input: unknown): PurifyEither => { + if (input === undefined) { + const value = isFunction(defaultValue) ? defaultValue() : defaultValue; + return PurifyEither.of(value); + } else { + return codec.decode(input); + } + }; + + // Need to force type due private _isOptional flag + return { ...codec, decode, _isOptional: true } as Codec; +}; + +const booleanFromString = Codec.custom({ + decode: value => { + if (String(value).toLowerCase() === "true") return Right(true); + if (String(value).toLowerCase() === "false") return Right(false); + return Left(`${value} is not a parsable boolean`); + }, + encode: value => `${value}`, +}); + +const undefinedType = Codec.custom({ + decode: value => (value === undefined ? Right(value) : Left(`${value} is not undefined`)), + encode: identity, + schema: () => ({ type: "null" }), +}); + +export const trueType = Codec.custom({ + decode: value => (typeof value === "boolean" && value === true ? Right(value) : Left(`${value} is not true`)), + encode: identity, + schema: () => ({ type: "boolean" }), +}); + +export const falseType = Codec.custom({ + decode: value => (typeof value === "boolean" && value === false ? Right(value) : Left(`${value} is not false`)), + encode: identity, + schema: () => ({ type: "boolean" }), +}); + +export const Schema = { + object: Interface, + stringObject: JsonFromString, + array, + nonEmptyArray: nonEmptyList, + dictionary: record, + string, + nonEmptyString: NonEmptyString, + stringLength: StringLengthRangedIn, + integer: oneOf([Integer, IntegerFromString]), + number: oneOf([number, NumberFromString]), + numberBetween: NumberRangedIn, + boolean: booleanFromString, + true: trueType, + false: falseType, + null: nullType, + undefined: undefinedType, + unknown, + date, + formattedDate: FormattedStringFromDate, + stringDate: DateFromStringFormatOf, + oneOf, + optional, + optionalSafe, + nullable, + enum: enumeration, + exact: exactly, + extend: intersect, + maybe, + chain: chainCodec, + custom: Codec.custom, + lazy, +}; + +export declare type FromType = { + [P in keyof Required]: Pick extends Required> ? T[P] : T[P] | undefined; +}; + +export { Codec, parseError as parseSchemaError } from "purify-ts"; +export type { DecodeError as SchemaDecodeError } from "purify-ts"; diff --git a/src/utils/d2-api.ts b/src/utils/d2-api.ts index 0811a65..eb76e4d 100644 --- a/src/utils/d2-api.ts +++ b/src/utils/d2-api.ts @@ -1,4 +1,5 @@ import _ from "lodash"; +import { Instance } from "../data/entities/Instance"; import { D2Api } from "../types/d2-api"; export function getMajorVersion(version: string): number { @@ -7,21 +8,6 @@ export function getMajorVersion(version: string): number { return Number(apiVersion); } -export function getD2APiFromInstance(instance: DhisInstance) { - const auth = - instance.type === "external" ? { username: instance.username, password: instance.password } : undefined; - - return new D2Api({ baseUrl: instance.url, auth, backend: "fetch" }); +export function getD2APiFromInstance(instance: Instance) { + return new D2Api({ baseUrl: instance.url, auth: instance.auth, backend: "fetch" }); } - -export type DhisInstance = - | { - type: "local"; - url: string; - } - | { - type: "external"; - url: string; - username: string; - password: string; - }; diff --git a/src/utils/futures.ts b/src/utils/futures.ts new file mode 100644 index 0000000..067a2ed --- /dev/null +++ b/src/utils/futures.ts @@ -0,0 +1,11 @@ +import { CancelableResponse } from "@eyeseetea/d2-api/repositories/CancelableResponse"; +import { Future, FutureData } from "../domain/entities/Future"; + +export function apiToFuture(res: CancelableResponse): FutureData { + return Future.fromComputation((resolve, reject) => { + res.getData() + .then(resolve) + .catch(err => reject(err ? err.message : "Unknown error")); + return res.cancel; + }); +} diff --git a/src/utils/tests.tsx b/src/utils/tests.tsx index f76553b..af169de 100644 --- a/src/utils/tests.tsx +++ b/src/utils/tests.tsx @@ -1,25 +1,20 @@ import { render, RenderResult } from "@testing-library/react"; import { SnackbarProvider } from "@eyeseetea/d2-ui-components"; import { ReactNode } from "react"; -import { getCompositionRoot } from "../compositionRoot"; +import { getCompositionRoot } from "../CompositionRoot"; import { getMockApi } from "../types/d2-api"; import { AppContext, AppContextState } from "../webapp/contexts/app-context"; -import { User } from "./../models/User"; +import { Instance } from "../data/entities/Instance"; +import { User } from "../domain/entities/User"; -export function getTestUser() { - return new User({ +export function getTestUser(): User { + return { id: "xE7jOejl9FI", - displayName: "John Traore", + name: "John Traore", username: "admin", - organisationUnits: [ - { - level: 1, - id: "ImspTQPwCqd", - path: "/ImspTQPwCqd", - }, - ], + userGroups: [], userRoles: [], - }); + }; } export function getTestConfig() { @@ -31,16 +26,18 @@ export function getTestD2() { } export function getTestContext() { - const { api, mock } = getMockApi(); + // Mock api was working with axios but not with fetch + const { api } = getMockApi(); + const instance = new Instance({ url: "http://localhost:8080" }); const context = { api: api, d2: getTestD2(), currentUser: getTestUser(), config: getTestConfig(), - compositionRoot: getCompositionRoot(api), + compositionRoot: getCompositionRoot(instance), }; - return { mock, api, context }; + return { api, context }; } export function getReactComponent(children: ReactNode, context: AppContextState): RenderResult { diff --git a/src/utils/uid.ts b/src/utils/uid.ts new file mode 100644 index 0000000..8030e0e --- /dev/null +++ b/src/utils/uid.ts @@ -0,0 +1,59 @@ +import _ from "lodash"; +// @ts-ignore +import MD5 from "md5.js"; + +// DHIS2 UID :: /^[a-zA-Z][a-zA-Z0-9]{10}$/ +const asciiLetters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; +const asciiNumbers = "0123456789"; +const asciiLettersAndNumbers = asciiLetters + asciiNumbers; +const uidSize = 10; +const range = Array.from(new Array(uidSize).keys()); +const uidStructure = [asciiLetters, ...range.map(() => asciiLettersAndNumbers)]; +const maxHashValue = uidStructure.map(cs => cs.length).reduce((acc, n) => acc * n, 1); + +/* Return pseudo-random UID from seed string */ +export function getUid(seed: string): string { + const md5hash: string = new MD5().update(seed).digest("hex"); + const nHashChars = Math.ceil(Math.log(maxHashValue) / Math.log(16)); + const hashInteger = parseInt(md5hash.slice(0, nHashChars), 16); + const result = uidStructure.reduce( + (acc, chars) => { + const { n, uid } = acc; + const nChars = chars.length; + const quotient = Math.floor(n / nChars); + const remainder = n % nChars; + const uidChar = chars[remainder]; + return { n: quotient, uid: uid + uidChar }; + }, + { n: hashInteger, uid: "" } + ); + + return result.uid; +} + +function randomWithMax(max: number) { + return Math.floor(Math.random() * max); +} + +export function generateUid(): string { + // First char should be a letter + let randomChars = asciiLetters.charAt(randomWithMax(asciiLetters.length)); + + for (let i = 1; i <= uidSize; i += 1) { + randomChars += asciiLettersAndNumbers.charAt(randomWithMax(asciiLettersAndNumbers.length)); + } + + return randomChars; +} + +const fullUidRegex = /^[a-zA-Z]{1}[a-zA-Z0-9]{10}$/; +const uidRegex = /[a-zA-Z]{1}[a-zA-Z0-9]{10}/g; + +export function isValidUid(code: string | undefined | null): boolean { + return !!code && fullUidRegex.test(code); +} + +export function extractUids(code: string | undefined | null): string[] { + const matches = code?.matchAll(uidRegex); + return _.compact(Array.from(matches ?? []).map(([string]) => string)); +} diff --git a/src/webapp/components/card-grid/CardGrid.tsx b/src/webapp/components/card-grid/CardGrid.tsx new file mode 100644 index 0000000..ed4c7c9 --- /dev/null +++ b/src/webapp/components/card-grid/CardGrid.tsx @@ -0,0 +1,50 @@ +import React from "react"; +import styled from "styled-components"; +import { PageHeader } from "../page-header/PageHeader"; +import { MenuCard, MenuCardProps } from "./MenuCard"; + +export const CardGrid: React.FC = ({ title, cards, onBackClick }) => { + return ( + + {!!title && } + + + {cards.map(({ key, title, children }) => ( +
+ {!!title && {title}} + + {children.map(props => ( + + ))} +
+ ))} +
+
+ ); +}; + +export interface CardGridProps { + cards: Card[]; + title?: string; + onBackClick?: () => void; +} + +export interface Card { + title?: string; + key: string; + children: MenuCardProps[]; +} + +const Container = styled.div` + margin-left: 30px; + display: flex; + flex-direction: column; +`; + +const Title = styled.h1` + font-size: 24px; + font-weight: 300; + color: rgba(0, 0, 0, 0.87); + padding: 15px 0px 15px; + margin: 0; +`; diff --git a/src/webapp/components/card-grid/MenuCard.tsx b/src/webapp/components/card-grid/MenuCard.tsx new file mode 100644 index 0000000..27c1524 --- /dev/null +++ b/src/webapp/components/card-grid/MenuCard.tsx @@ -0,0 +1,74 @@ +import { + Card as MUICard, + CardActions as MUICardActions, + CardContent as MUICardContent, + CardHeader as MUICardHeader, + IconButton, + Tooltip, +} from "@material-ui/core"; +import AddIcon from "@material-ui/icons/Add"; +import ViewListIcon from "@material-ui/icons/ViewList"; +import React from "react"; +import styled from "styled-components"; +import i18n from "../../../locales"; + +export const MenuCard: React.FC = ({ name, description, addAction, listAction = () => {} }) => { + return ( + +
+ + {description} + + + {addAction && ( + + + + + + )} + + {listAction && ( + + + + + + )} + + + ); +}; + +export interface MenuCardProps { + name: string; + description?: string; + addAction?: () => void; + listAction?: () => void; +} + +const Card = styled(MUICard)` + padding: 0; + margin: 0.5rem; + float: left; + width: 230px; +`; + +const Content = styled(MUICardContent)` + height: 120px; + padding: 0.5rem 1rem; + font-size: 14px; +`; + +const Actions = styled(MUICardActions)` + margin-left: auto; +`; + +const Header = styled(MUICardHeader)` + padding: 1rem; + height: auto; + border-bottom: 1px solid #ddd; + cursor: pointer; + font-size: 15px; + font-weight: 500; +`; diff --git a/src/webapp/components/page-header/PageHeader.tsx b/src/webapp/components/page-header/PageHeader.tsx index 560851d..e07f6bb 100644 --- a/src/webapp/components/page-header/PageHeader.tsx +++ b/src/webapp/components/page-header/PageHeader.tsx @@ -1,29 +1,31 @@ -import { ButtonProps, Icon, IconButton, Tooltip } from "@material-ui/core"; +import { ButtonProps, Icon, IconButton as MUIIConButton, Tooltip } from "@material-ui/core"; import { Variant } from "@material-ui/core/styles/createTypography"; import Typography from "@material-ui/core/Typography"; import { DialogButton } from "@eyeseetea/d2-ui-components"; import React from "react"; import i18n from "../../../locales"; +import styled from "styled-components"; -const PageHeader: React.FC = ({ variant = "h5", title, onBackClick, helpText, children }) => { +export const PageHeader: React.FC = ({ variant = "h5", title, onBackClick, helpText, children }) => { return (
{!!onBackClick && ( - arrow_back - + )} - + {title} - </Typography> - {helpText && renderHelpButton(helpText)} + + + {helpText && } + {children}
); @@ -36,28 +38,28 @@ export interface PageHeaderProps { helpText?: string; } -const styles = { - backArrow: { paddingTop: 10, marginBottom: 5 }, - help: { marginBottom: 8 }, - text: { display: "inline-block", fontWeight: 300 }, -}; +const Title = styled(Typography)` + display: inline-block; + font-weight: 300; +`; -const Button = ({ onClick }: ButtonProps) => ( +const Button: React.FC = ({ onClick }) => ( - + help ); -const renderHelpButton = (helpText: string) => ( - +const HelpButton: React.FC<{ text: string }> = ({ text }) => ( + ); -export default PageHeader; +const IconButton = styled(MUIIConButton)` + margin-bottom: 8px; +`; + +const BackButton = styled(IconButton)` + padding-top: 10px; + margin-bottom: 5px; +`; diff --git a/src/webapp/contexts/app-context.ts b/src/webapp/contexts/app-context.ts index 20a271c..fb7ec33 100644 --- a/src/webapp/contexts/app-context.ts +++ b/src/webapp/contexts/app-context.ts @@ -1,13 +1,10 @@ import React, { useContext } from "react"; -import { User } from "../../models/User"; +import { CompositionRoot } from "../../CompositionRoot"; +import { User } from "../../domain/entities/User"; import { D2Api } from "../../types/d2-api"; -import { CompositionRoot } from "../../compositionRoot"; -import { Config } from "../../domain/entities/config"; export interface AppContextState { api: D2Api; - d2: object; - config: Config; currentUser: User; compositionRoot: CompositionRoot; } diff --git a/src/webapp/pages/Router.tsx b/src/webapp/pages/Router.tsx new file mode 100644 index 0000000..754cf63 --- /dev/null +++ b/src/webapp/pages/Router.tsx @@ -0,0 +1,19 @@ +import { HashRouter, Route, Switch } from "react-router-dom"; +import { ExamplePage } from "./example/ExamplePage"; +import { LandingPage } from "./landing/LandingPage"; + +export const Router = () => { + return ( + + + } + /> + + {/* Default route */} + } /> + + + ); +}; diff --git a/src/webapp/pages/app/App.css b/src/webapp/pages/app/App.css new file mode 100644 index 0000000..4f0ed8f --- /dev/null +++ b/src/webapp/pages/app/App.css @@ -0,0 +1,13 @@ +html { + background-color: #f3f3f3; + font-family: Roboto, Arial, sans-serif; + overflow-y: scroll; +} + +body { + margin: 0; +} + +li { + line-height: 1.75; +} diff --git a/src/webapp/pages/app/App.tsx b/src/webapp/pages/app/App.tsx new file mode 100644 index 0000000..ca372be --- /dev/null +++ b/src/webapp/pages/app/App.tsx @@ -0,0 +1,86 @@ +import { HeaderBar } from "@dhis2/ui"; +import { SnackbarProvider } from "@eyeseetea/d2-ui-components"; +import { MuiThemeProvider } from "@material-ui/core/styles"; +import _ from "lodash"; +//@ts-ignore +import OldMuiThemeProvider from "material-ui/styles/MuiThemeProvider"; +import React, { useEffect, useState } from "react"; +import { appConfig } from "../../../app-config"; +import { getCompositionRoot } from "../../../CompositionRoot"; +import { Instance } from "../../../data/entities/Instance"; +import { D2Api } from "../../../types/d2-api"; +import Share from "../../components/share/Share"; +import { AppContext, AppContextState } from "../../contexts/app-context"; +import { Router } from "../Router"; +import "./App.css"; +import { AppConfig } from "./AppConfig"; +import muiThemeLegacy from "./themes/dhis2-legacy.theme"; +import { muiTheme } from "./themes/dhis2.theme"; + +const App: React.FC = ({ api, d2, instance }) => { + const [showShareButton, setShowShareButton] = useState(false); + const [loading, setLoading] = useState(true); + const [appContext, setAppContext] = useState(null); + + useEffect(() => { + async function setup() { + const compositionRoot = getCompositionRoot(instance); + const { data: currentUser } = await compositionRoot.instance.getCurrentUser().runAsync(); + if (!currentUser) throw new Error("User not logged in"); + + const isShareButtonVisible = _(appConfig).get("appearance.showShareButton") || false; + + setAppContext({ api, currentUser, compositionRoot }); + setShowShareButton(isShareButtonVisible); + initFeedbackTool(d2, appConfig); + setLoading(false); + } + setup(); + }, [d2, api, instance]); + + if (loading) return null; + + return ( + + + + + +
+ + + +
+ + +
+
+
+ ); +}; + +export type AppProps = { api: D2Api; d2: D2; instance: Instance }; + +type D2 = object; + +declare global { + interface Window { + $: { + feedbackDhis2(d2: D2, appKey: string, feedbackOptions: object): void; + }; + } +} + +function initFeedbackTool(d2: D2, appConfig: AppConfig): void { + const appKey = _(appConfig).get("appKey"); + + if (appConfig && appConfig.feedback) { + const feedbackOptions = { + ...appConfig.feedback, + i18nPath: "feedback-tool/i18n", + }; + window.$.feedbackDhis2(d2, appKey, feedbackOptions); + } +} + +export default React.memo(App); diff --git a/src/webapp/pages/app/AppConfig.ts b/src/webapp/pages/app/AppConfig.ts new file mode 100644 index 0000000..e861158 --- /dev/null +++ b/src/webapp/pages/app/AppConfig.ts @@ -0,0 +1,21 @@ +export interface AppConfig { + appKey: string; + appearance: { + showShareButton: boolean; + }; + feedback?: { + token: string[]; + createIssue: boolean; + sendToDhis2UserGroups: string[]; + issues: { + repository: string; + title: string; + body: string; + }; + snapshots: { + repository: string; + branch: string; + }; + feedbackOptions: object; + }; +} diff --git a/src/webapp/pages/app/themes/dhis2-legacy.theme.ts b/src/webapp/pages/app/themes/dhis2-legacy.theme.ts new file mode 100644 index 0000000..7d4ed0d --- /dev/null +++ b/src/webapp/pages/app/themes/dhis2-legacy.theme.ts @@ -0,0 +1,63 @@ +import { + cyan100, + cyan500, + cyan700, + darkBlack, + grey100, + grey400, + grey500, + orange500, + white, +} from "material-ui/styles/colors"; +import { fade } from "material-ui/utils/colorManipulator"; +import Spacing from "material-ui/styles/spacing"; +import getMuiTheme from "material-ui/styles/getMuiTheme"; +import { MuiTheme } from "material-ui/styles"; + +const theme = { + spacing: Spacing, + fontFamily: "Roboto, sans-serif", + palette: { + primary1Color: cyan500, + primary2Color: cyan700, + primary3Color: cyan100, + accent1Color: orange500, + accent2Color: grey100, + accent3Color: grey500, + textColor: darkBlack, + alternateTextColor: white, + canvasColor: white, + borderColor: grey400, + disabledColor: fade(darkBlack, 0.3), + }, +}; + +function createAppTheme(style: MuiTheme) { + return { + sideBar: { + backgroundColor: "#F3F3F3", + backgroundColorItem: "transparent", + backgroundColorItemActive: style.palette?.accent2Color, + textColor: style.palette?.textColor, + textColorActive: "#276696", + borderStyle: "1px solid #e1e1e1", + }, + forms: { + minWidth: 350, + maxWidth: 900, + }, + formFields: { + secondaryColor: style.palette?.accent3Color, + }, + tabs: { + backgroundColor: "#E4E4E4", + inkBarColor: style.palette?.accent1Color, + textColor: "#666666", + }, + }; +} + +const muiTheme = getMuiTheme(theme); +const appTheme = createAppTheme(muiTheme); + +export default Object.assign({}, muiTheme, appTheme); diff --git a/src/webapp/pages/app/themes/dhis2.theme.ts b/src/webapp/pages/app/themes/dhis2.theme.ts new file mode 100644 index 0000000..a0cdade --- /dev/null +++ b/src/webapp/pages/app/themes/dhis2.theme.ts @@ -0,0 +1,91 @@ +import { createMuiTheme } from "@material-ui/core/styles"; + +// Color palette from https://projects.invisionapp.com/share/A7LT4TJYETS#/screens/302550228_Color +export const colors = { + accentPrimary: "#1976d2", + accentPrimaryDark: "#004BA0", + accentPrimaryLight: "#63A4FF", + accentPrimaryLightest: "#EAF4FF", + + accentSecondary: "#fb8c00", + accentSecondaryLight: "#f57c00", + accentSecondaryDark: "#ff9800", + + black: "#000000", + greyBlack: "#494949", + grey: "#9E9E9E", + greyLight: "#E0E0E0", + greyDisabled: "#8E8E8E", + blueGrey: "#ECEFF1", + snow: "#F4F6F8", + white: "#FFFFFF", // Not included in palette! + + negative: "#E53935", + warning: "#F19C02", + positive: "#3D9305", + info: "#EAF4FF", +}; + +export const palette = { + common: { + white: colors.white, + black: colors.black, + }, + action: { + active: colors.greyBlack, + disabled: colors.greyDisabled, + }, + text: { + primary: colors.black, + secondary: colors.greyBlack, + disabled: colors.greyDisabled, + hint: colors.grey, + }, + primary: { + main: colors.accentPrimary, + dark: colors.accentPrimaryDark, + light: colors.accentPrimaryLight, + lightest: colors.accentPrimaryLightest, // Custom extension, not used by default + // contrastText: 'white', + }, + secondary: { + main: colors.accentSecondary, + light: colors.accentSecondaryLight, + dark: colors.accentSecondaryDark, + contrastText: "#fff", + }, + error: { + main: colors.negative, // This is automatically expanded to main/light/dark/contrastText, what do we use here? + }, + status: { + //Custom colors collection, not used by default in MUI + negative: colors.negative, + warning: colors.warning, + positive: colors.positive, + info: colors.info, + }, + background: { + paper: colors.white, + default: colors.snow, + grey: "#FCFCFC", + hover: colors.greyLight, + }, + divider: colors.greyLight, + shadow: colors.grey, +}; + +export const muiTheme = createMuiTheme({ + // colors, + palette, + typography: { + fontFamily: "Roboto, Helvetica, Arial, sans-serif", + // useNextVariants: true, + }, + overrides: { + MuiDivider: { + light: { + backgroundColor: palette.divider, // No light dividers for now + }, + }, + }, +}); diff --git a/src/webapp/pages/example/ExamplePage.tsx b/src/webapp/pages/example/ExamplePage.tsx new file mode 100644 index 0000000..d427601 --- /dev/null +++ b/src/webapp/pages/example/ExamplePage.tsx @@ -0,0 +1,21 @@ +import React from "react"; +import styled from "styled-components"; +import i18n from "../../../locales"; + +export const ExamplePage: React.FC = props => { + const { name } = props; + const title = i18n.t("Hello {{name}}", { name }); + + return ( + + {title} + + ); +}; +const Title = styled.h2` + color: blue; +`; + +interface ExamplePageProps { + name: string; +} diff --git a/src/webapp/pages/example/__tests__/Example.spec.tsx b/src/webapp/pages/example/__tests__/Example.spec.tsx index 530e48f..894a4d3 100644 --- a/src/webapp/pages/example/__tests__/Example.spec.tsx +++ b/src/webapp/pages/example/__tests__/Example.spec.tsx @@ -1,52 +1,17 @@ -import React from "react"; -import { fireEvent, waitFor, RenderResult } from "@testing-library/react"; import "@testing-library/jest-dom/extend-expect"; +import { RenderResult, waitFor } from "@testing-library/react"; +import { getReactComponent, getTestContext } from "../../../../utils/tests"; +import { ExamplePage } from "../ExamplePage"; -import Example from "../Example"; -import { act } from "react-dom/test-utils"; -import { getTestContext, getReactComponent } from "../../../../utils/tests"; - -const { mock, context } = getTestContext(); +const { context } = getTestContext(); function getComponent({ name = "Some Name" } = {}): RenderResult { - return getReactComponent(, context); + return getReactComponent(, context); } describe("Example component", () => { - beforeEach(() => { - mock.onGet("/dataSets", { - params: { pageSize: 5, fields: "categoryCombo[name],id" }, - }).reply(200, { - pager: { page: 1, pageCount: 3, total: 12, pageSize: 5 }, - dataSets: [{ id: "ds-1" }, { id: "ds-2" }], - }); - }); - test("renders a greeting", async () => { const component = getComponent(); - await waitFor(() => expect(component.queryByText("Hello Some Name!")).toBeInTheDocument()); - }); - - test("renders the data set ids", async () => { - const component = getComponent(); - await waitFor(() => expect(component.queryByText("ds-1, ds-2", { exact: false })).toBeInTheDocument()); - }); - - test("counter is incremented when increment button is clicked", async () => { - const component = getComponent(); - - expect(component.queryByText("Value=0")).toBeInTheDocument(); - await act(async () => { - fireEvent.click(component.getByText("+1")); - }); - expect(component.queryByText("Value=1")).toBeInTheDocument(); - }); - - test("Info is shown when feedback button is pressed", async () => { - const component = getComponent(); - await act(async () => { - fireEvent.click(component.getByText("Click to show feedback")); - }); - expect(component.queryByText("Some info")).toBeInTheDocument(); + await waitFor(() => expect(component.queryByText("Hello Some Name")).toBeInTheDocument()); }); }); diff --git a/src/webapp/pages/landing/LandingPage.tsx b/src/webapp/pages/landing/LandingPage.tsx index 473d8d3..95a9ba2 100644 --- a/src/webapp/pages/landing/LandingPage.tsx +++ b/src/webapp/pages/landing/LandingPage.tsx @@ -1,48 +1,28 @@ import React from "react"; import { useHistory } from "react-router-dom"; -import { Landing } from "./Landing"; -import { MenuCardProps } from "./MenuCard"; +import { Card, CardGrid } from "../../components/card-grid/CardGrid"; -const LandingPage: React.FC = () => { +export const LandingPage: React.FC = () => { const history = useHistory(); - const cards: { - title: string; - key: string; - isVisible?: boolean; - children: MenuCardProps[]; - }[] = [ + const cards: Card[] = [ { title: "Section", key: "main", children: [ { - name: "With List", - description: "This entry has only a list action.", + name: "John", + description: "Entry point 1", listAction: () => history.push("/for/John"), }, { - name: "List/add", - description: "This action has list and add icons", - addAction: () => history.push("/for"), + name: "Mary", + description: "Entry point 2", listAction: () => history.push("/for/Mary"), }, ], }, - { - title: "Configuration", - key: "configuration", - children: [ - { - name: "Stub configuration", - description: "Configuration", - listAction: () => history.push("/for/Configuration"), - }, - ], - }, ]; - return ; + return ; }; - -export default LandingPage; diff --git a/yarn.lock b/yarn.lock index 5f469d2..3107d0f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -55,20 +55,20 @@ semver "^5.4.1" source-map "^0.5.0" -"@babel/core@7.14.6", "@babel/core@^7.7.2": - version "7.14.6" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.14.6.tgz#e0814ec1a950032ff16c13a2721de39a8416fcab" - integrity sha512-gJnOEWSqTk96qG5BoIrl5bVtc23DCycmIePPYnamY9RboYdI4nFy5vAQMSl81O5K/W0sLDWfGysnOECC+KUUCA== +"@babel/core@7.14.8": + version "7.14.8" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.14.8.tgz#20cdf7c84b5d86d83fac8710a8bc605a7ba3f010" + integrity sha512-/AtaeEhT6ErpDhInbXmjHcUQXH0L0TEgscfcxk1qbOvLuKCa5aZT0SOOtDKFY96/CLROwbLSKyFor6idgNaU4Q== dependencies: "@babel/code-frame" "^7.14.5" - "@babel/generator" "^7.14.5" + "@babel/generator" "^7.14.8" "@babel/helper-compilation-targets" "^7.14.5" - "@babel/helper-module-transforms" "^7.14.5" - "@babel/helpers" "^7.14.6" - "@babel/parser" "^7.14.6" + "@babel/helper-module-transforms" "^7.14.8" + "@babel/helpers" "^7.14.8" + "@babel/parser" "^7.14.8" "@babel/template" "^7.14.5" - "@babel/traverse" "^7.14.5" - "@babel/types" "^7.14.5" + "@babel/traverse" "^7.14.8" + "@babel/types" "^7.14.8" convert-source-map "^1.7.0" debug "^4.1.0" gensync "^1.0.0-beta.2" @@ -119,6 +119,27 @@ semver "^5.4.1" source-map "^0.5.0" +"@babel/core@^7.7.2": + version "7.14.6" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.14.6.tgz#e0814ec1a950032ff16c13a2721de39a8416fcab" + integrity sha512-gJnOEWSqTk96qG5BoIrl5bVtc23DCycmIePPYnamY9RboYdI4nFy5vAQMSl81O5K/W0sLDWfGysnOECC+KUUCA== + dependencies: + "@babel/code-frame" "^7.14.5" + "@babel/generator" "^7.14.5" + "@babel/helper-compilation-targets" "^7.14.5" + "@babel/helper-module-transforms" "^7.14.5" + "@babel/helpers" "^7.14.6" + "@babel/parser" "^7.14.6" + "@babel/template" "^7.14.5" + "@babel/traverse" "^7.14.5" + "@babel/types" "^7.14.5" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.1.2" + semver "^6.3.0" + source-map "^0.5.0" + "@babel/generator@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.10.4.tgz#e49eeed9fe114b62fa5b181856a43a5e32f5f243" @@ -147,6 +168,15 @@ jsesc "^2.5.1" source-map "^0.5.0" +"@babel/generator@^7.14.8", "@babel/generator@^7.14.9": + version "7.14.9" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.9.tgz#23b19c597d38b4f7dc2e3fe42a69c88d9ecfaa16" + integrity sha512-4yoHbhDYzFa0GLfCzLp5GxH7vPPMAHdZjyE7M/OajM9037zhx0rf+iNsJwp4PT0MSFpwjG7BsHEbPkBQpZ6cYA== + dependencies: + "@babel/types" "^7.14.9" + jsesc "^2.5.1" + source-map "^0.5.0" + "@babel/helper-annotate-as-pure@^7.0.0", "@babel/helper-annotate-as-pure@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz#7bf478ec3b71726d56a8ca5775b046fc29879e61" @@ -436,6 +466,20 @@ "@babel/traverse" "^7.14.5" "@babel/types" "^7.14.5" +"@babel/helper-module-transforms@^7.14.8": + version "7.14.8" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.8.tgz#d4279f7e3fd5f4d5d342d833af36d4dd87d7dc49" + integrity sha512-RyE+NFOjXn5A9YU1dkpeBaduagTlZ0+fccnIcAGbv1KGUlReBj7utF7oEth8IdIBQPcux0DDgW5MFBH2xu9KcA== + dependencies: + "@babel/helper-module-imports" "^7.14.5" + "@babel/helper-replace-supers" "^7.14.5" + "@babel/helper-simple-access" "^7.14.8" + "@babel/helper-split-export-declaration" "^7.14.5" + "@babel/helper-validator-identifier" "^7.14.8" + "@babel/template" "^7.14.5" + "@babel/traverse" "^7.14.8" + "@babel/types" "^7.14.8" + "@babel/helper-optimise-call-expression@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673" @@ -544,6 +588,13 @@ dependencies: "@babel/types" "^7.14.5" +"@babel/helper-simple-access@^7.14.8": + version "7.14.8" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.14.8.tgz#82e1fec0644a7e775c74d305f212c39f8fe73924" + integrity sha512-TrFN4RHh9gnWEU+s7JloIho2T76GPwRHhdzOWLqTrMnlas8T9O7ec+oEDNsRXndOmru9ymH9DFrEOxpzPoSbdg== + dependencies: + "@babel/types" "^7.14.8" + "@babel/helper-skip-transparent-expression-wrappers@^7.12.1": version "7.12.1" resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz#462dc63a7e435ade8468385c63d2b84cce4b3cbf" @@ -601,6 +652,11 @@ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz#d0f0e277c512e0c938277faa85a3968c9a44c0e8" integrity sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg== +"@babel/helper-validator-identifier@^7.14.8", "@babel/helper-validator-identifier@^7.14.9": + version "7.14.9" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz#6654d171b2024f6d8ee151bf2509699919131d48" + integrity sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g== + "@babel/helper-validator-option@^7.12.1", "@babel/helper-validator-option@^7.12.11": version "7.12.11" resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.11.tgz#d66cb8b7a3e7fe4c6962b32020a131ecf0847f4f" @@ -658,6 +714,15 @@ "@babel/traverse" "^7.14.5" "@babel/types" "^7.14.5" +"@babel/helpers@^7.14.8": + version "7.14.8" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.14.8.tgz#839f88f463025886cff7f85a35297007e2da1b77" + integrity sha512-ZRDmI56pnV+p1dH6d+UN6GINGz7Krps3+270qqI9UJ4wxYThfAIcI5i7j5vXC4FJ3Wap+S9qcebxeYiqn87DZw== + dependencies: + "@babel/template" "^7.14.5" + "@babel/traverse" "^7.14.8" + "@babel/types" "^7.14.8" + "@babel/highlight@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" @@ -691,6 +756,11 @@ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.6.tgz#d85cc68ca3cac84eae384c06f032921f5227f4b2" integrity sha512-oG0ej7efjEXxb4UgE+klVx+3j4MVo+A2vCzm7OUN4CLo6WhQ+vSOD2yJ8m7B+DghObxtLxt3EfgMWpq+AsWehQ== +"@babel/parser@^7.14.8", "@babel/parser@^7.14.9": + version "7.14.9" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.9.tgz#596c1ad67608070058ebf8df50c1eaf65db895a4" + integrity sha512-RdUTOseXJ8POjjOeEBEvNMIZU/nm4yu2rufRkcibzkkg7DmQvXU8v3M4Xk9G7uuI86CDGkKcuDWgioqZm+mScQ== + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5.tgz#4b467302e1548ed3b1be43beae2cc9cf45e0bb7e" @@ -2174,6 +2244,21 @@ debug "^4.1.0" globals "^11.1.0" +"@babel/traverse@^7.14.8": + version "7.14.9" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.9.tgz#016126b331210bf06fff29d52971eef8383e556f" + integrity sha512-bldh6dtB49L8q9bUyB7bC20UKgU+EFDwKJylwl234Kv+ySZeMD31Xeht6URyueQ6LrRRpF2tmkfcZooZR9/e8g== + dependencies: + "@babel/code-frame" "^7.14.5" + "@babel/generator" "^7.14.9" + "@babel/helper-function-name" "^7.14.5" + "@babel/helper-hoist-variables" "^7.14.5" + "@babel/helper-split-export-declaration" "^7.14.5" + "@babel/parser" "^7.14.9" + "@babel/types" "^7.14.9" + debug "^4.1.0" + globals "^11.1.0" + "@babel/types@7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.8.3.tgz#5a383dffa5416db1b73dedffd311ffd0788fb31c" @@ -2218,6 +2303,14 @@ "@babel/helper-validator-identifier" "^7.14.5" to-fast-properties "^2.0.0" +"@babel/types@^7.14.8", "@babel/types@^7.14.9": + version "7.14.9" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.9.tgz#f2b19c3f2f77c5708d67fe8f6046e9cea2b5036d" + integrity sha512-u0bLTnv3DFHeaQLYzb7oRJ1JHr1sv/SYDM7JSqHFFLwXG1wTZRughxFI5NCP8qBEo1rVVsn7Yg2Lvw49nne/Ow== + dependencies: + "@babel/helper-validator-identifier" "^7.14.9" + to-fast-properties "^2.0.0" + "@bcoe/v8-coverage@^0.2.3": version "0.2.3" resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" @@ -2241,16 +2334,6 @@ resolved "https://registry.yarnpkg.com/@csstools/normalize.css/-/normalize.css-10.1.0.tgz#f0950bba18819512d42f7197e56c518aa491cf18" integrity sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg== -"@cypress/listr-verbose-renderer@^0.4.1": - version "0.4.1" - resolved "https://registry.yarnpkg.com/@cypress/listr-verbose-renderer/-/listr-verbose-renderer-0.4.1.tgz#a77492f4b11dcc7c446a34b3e28721afd33c642a" - integrity sha1-p3SS9LEdzHxEajSz4ochr9M8ZCo= - dependencies: - chalk "^1.1.3" - cli-cursor "^1.0.2" - date-fns "^1.27.2" - figures "^1.7.0" - "@cypress/request@^2.88.5": version "2.88.5" resolved "https://registry.yarnpkg.com/@cypress/request/-/request-2.88.5.tgz#8d7ecd17b53a849cfd5ab06d5abe7d84976375d7" @@ -2302,6 +2385,468 @@ dependencies: "@date-io/core" "^1.0.2" +"@dhis2-ui/alert@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/alert/-/alert-6.12.0.tgz#7661759c505334674bab668d5b82828f87b4768d" + integrity sha512-adPF4xzo1D1h5LPBD4LrEGYssBow3Lqw6LSOUoek5lmaKqqcZmKB9KZyvFIRiUWEvoO63Jka/dmE4i++oL8oOQ== + dependencies: + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + "@dhis2/ui-icons" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/box@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/box/-/box-6.12.0.tgz#a0c16b7a8a12351c2ab3a19b4f9dbba6482f9ea7" + integrity sha512-rymrenQ+O5x0WnKDIpLvB3wRFszHCPU2GTtomg4jC/m00XJeCzwI4gQioKgbTx6Y2yF9XFe5ql9SW2VgK1gk+w== + dependencies: + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/button@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/button/-/button-6.12.0.tgz#263fa2c90a5f28629f49f0cd57cdad0d8c998651" + integrity sha512-mcy0Z+QI0QUjVwo4seU+fTuzVX8OhzyGuxGT27g6qxYhPvYrL5Z2i8uIWKpZRhvQPTA/l7eoo/DU2SwRmQWMMA== + dependencies: + "@dhis2-ui/layer" "6.12.0" + "@dhis2-ui/popper" "6.12.0" + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + "@dhis2/ui-icons" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/card@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/card/-/card-6.12.0.tgz#86c576ca7aa2a5c12e83e98df8db49b3cf3f1b77" + integrity sha512-dptmtz+FovTgUtjMo9F3O/rpfX0529UT6NtGgyM+9hJ3l4rnDKNZqzNy2GXMRItBcDErSKy24ywDBNU8JnNjrQ== + dependencies: + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/center@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/center/-/center-6.12.0.tgz#53b891d65618580bbc1ef6b23d1bde6a435bd58b" + integrity sha512-7ifx/ICrcHeQs1yGulodv7NbJTZrkRAdhB5tQaTfP236dpd2Tb2wZT1WMmZtcAddCIyp5WlAmfS3ABu9/8/INw== + dependencies: + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/checkbox@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/checkbox/-/checkbox-6.12.0.tgz#b0d802e9f6468a2a1602c103f4bcd3b9519363c9" + integrity sha512-hgyRemDSbqSxjbNAx67RgJso/vSbMdNJWwszgz4Nyb8gqtva8um7jMNFAMqWXzHdEZwiSUt467AEdKnJfpM7WQ== + dependencies: + "@dhis2-ui/field" "6.12.0" + "@dhis2-ui/required" "6.12.0" + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/chip@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/chip/-/chip-6.12.0.tgz#f90bac4f9b3cb5e4a374f8e14d8fb9c5d8c26269" + integrity sha512-llEsIp/N1tz6FKky/mrS0EHYWzuTocz2pne1ghHRjF0mBt+z/z28/2VaIGcMlDrSmzt1VbqLDjBa1tSyHeeG1g== + dependencies: + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/cover@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/cover/-/cover-6.12.0.tgz#73549cc9a36ace5ddcd08d3c086c7d090942e1d0" + integrity sha512-HI2lo8xXdGsBShDjMpitrVokldtnm4fR09plnYJg39tJ23RuQEJDTYQczSXfYC6t60dGc/2mHsYFW3IMsraXsg== + dependencies: + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/css@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/css/-/css-6.12.0.tgz#886da44a8a860ce37471a0ebfdefdfc51058780f" + integrity sha512-SsGkVMmc0u2iYX6zhAA0s0bl7sIX5QiF0pxXU3u2IYdNZLgpndBBVtOoaI1r4pCe8fCn2SmB8DuINtj3pNG21A== + dependencies: + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/divider@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/divider/-/divider-6.12.0.tgz#c442518e6ce2ee2b1a938c96ba29556f919a2687" + integrity sha512-2E5kJe948n6b47JpU4Na6H01juvmJ73PKvyHWaZmCOlItiXErSSN/LnsSQjXx6+AUe1Jhv4B1NngSvTO3NUFRA== + dependencies: + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/field@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/field/-/field-6.12.0.tgz#f29e51f6b4f5d01a410a645dfad9d8770fd1dbd0" + integrity sha512-4eseArRKJeZJMzqKqfCgglycti6EnvkbwuN4UPy45ISboPLDXrp7NldUpy3fFOG1y8riGLR3Vn4xJutyiSznkA== + dependencies: + "@dhis2-ui/box" "6.12.0" + "@dhis2-ui/help" "6.12.0" + "@dhis2-ui/label" "6.12.0" + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/file-input@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/file-input/-/file-input-6.12.0.tgz#ed1abb1e8dfb7f4e35a7a96b881ed51a4253157b" + integrity sha512-dFgdtAJ7JrgwlS32WWABvpB6LUAizTlipYEAJXloPvS5sqny+DTKtYTbyFALGmFiQaKwEjZAwghhkIqqjfK1qw== + dependencies: + "@dhis2-ui/button" "6.12.0" + "@dhis2-ui/field" "6.12.0" + "@dhis2-ui/label" "6.12.0" + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/header-bar@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/header-bar/-/header-bar-6.12.0.tgz#6b5c5c33a87c58e3d0281d3396427634d48c2155" + integrity sha512-VOeLUgYMEQj34U5SwMwRncS7o0iQJXxx2mb4cmmW9nZdj9EPyZSY1n7zyekGmWGTIpOCqwDXqwfNK9fdJUM1KQ== + dependencies: + "@dhis2-ui/box" "6.12.0" + "@dhis2-ui/card" "6.12.0" + "@dhis2-ui/divider" "6.12.0" + "@dhis2-ui/input" "6.12.0" + "@dhis2-ui/logo" "6.12.0" + "@dhis2-ui/menu" "6.12.0" + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + "@dhis2/ui-icons" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/help@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/help/-/help-6.12.0.tgz#cc269822c20399b25e98e8191d7f38309b617d69" + integrity sha512-tpfPC0HSPqPNipndM+aTdskhedEMmSjlYFbeJvYRJizqFBZrIjBIW9+CSsE7AEIigrGCdwQDyyP/lQvCa5r/dQ== + dependencies: + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/input@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/input/-/input-6.12.0.tgz#d4a7eaee2649e97836f0074e3a099e282efeb3f0" + integrity sha512-uno4TJ0j95LFLMmjfeb8V3J1qcS7xqFJBrUVXDtq7AGjJCN/HYEdL+bNza5Um5NoC+RKy+PNUkkKyBKMGYVeIw== + dependencies: + "@dhis2-ui/box" "6.12.0" + "@dhis2-ui/field" "6.12.0" + "@dhis2-ui/input" "6.12.0" + "@dhis2-ui/loader" "6.12.0" + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + "@dhis2/ui-icons" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/intersection-detector@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/intersection-detector/-/intersection-detector-6.12.0.tgz#06228f0691496d619e10651f9196fa5c35d08468" + integrity sha512-r42BNUWbBqxtGBbX17A9W+Rz4VCLQQEAkYiUvmKKflRedKsy08JZma6HFV9zZFgLl9IuYE5A/aG/xQ9q0xMbLA== + dependencies: + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/label@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/label/-/label-6.12.0.tgz#1d9eef81c8b3b44c1095e26d50381923286d94cd" + integrity sha512-iuMvT4zYm+mqGPAUOOi5CSyCSVeFq5HGBHGNUvmznCaW7tp6X7PfeOYDMIK8wlac2VVk/OyEz8S/izfYrKBk4A== + dependencies: + "@dhis2-ui/required" "6.12.0" + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + +"@dhis2-ui/layer@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/layer/-/layer-6.12.0.tgz#6a2d8cc5448f99fbe2f54dc5e4b19654952921bd" + integrity sha512-l+FJI1ONyoJn7mZmP3v7dvjMTt8sxUPQIC4VqruekJKMeQd5doT+yfSZcwUepQp/pIkY2Yo/KI5bHF4I9jg03w== + dependencies: + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/legend@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/legend/-/legend-6.12.0.tgz#6f7f3a65b4047ffd6983c8806c76283f19857eba" + integrity sha512-HvvwoAU3tpb9mwKdkMrR9prAEGzarRjTdwBiLe1TqE3MKeYaVDAxrg+Fa+CXV5YwiiGn/aYYNlN49q+ZHJBPWQ== + dependencies: + "@dhis2-ui/required" "6.12.0" + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/loader@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/loader/-/loader-6.12.0.tgz#73c0531bd8fc9b86d657fc2b78493caf4731f7d8" + integrity sha512-d10Y+RD9YcWdjtu/fEjFeu86kDYLOlq+Ec2wxCOGx3NiiTY0xqtcvJIq870HwG4NFo97tp9h0JA0RQCM7eFUSw== + dependencies: + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/logo@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/logo/-/logo-6.12.0.tgz#0e8cee990209829a6afa7557979afcb1eefaf1f9" + integrity sha512-xSc0d847QzqaqPmnccYeXX+m9l34JHVsbiZfasYMAo1mb562LLGJd1oUF2VjOBTowaK0rigNoLVWM8TLNGpjzA== + dependencies: + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/menu@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/menu/-/menu-6.12.0.tgz#840883489b3a2d0566e40932a26d972fb9fb05e2" + integrity sha512-LDCjHO0edb9rWIFl4uWHSAsvO5UGTcpoKpvl7Nxl2WgpcdHwQexSpS7P37mLDG25a745F+0hHDgqPEMTeGcAgA== + dependencies: + "@dhis2-ui/card" "6.12.0" + "@dhis2-ui/divider" "6.12.0" + "@dhis2-ui/layer" "6.12.0" + "@dhis2-ui/popper" "6.12.0" + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + "@dhis2/ui-icons" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/modal@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/modal/-/modal-6.12.0.tgz#86f782cd4a37886549ce5b73ba91bae1b3b7a960" + integrity sha512-YCl75ngAefYA9gKKN9Xdjwv22eCJQYN9GrGD36OCvQPT97dxpvr/GescnH4ZpDtQ7THSxVgE5SoTiKX4CkK1hg== + dependencies: + "@dhis2-ui/card" "6.12.0" + "@dhis2-ui/center" "6.12.0" + "@dhis2-ui/layer" "6.12.0" + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/node@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/node/-/node-6.12.0.tgz#6b1e0c6cff0b9cb092bbf1e68fc15ada77db0188" + integrity sha512-s4jv0v7yKMRvlH0cyHQHQAwXpAcbs3TRr/MEXtTdlLrX2iGuLB8PmCeDavF3X9d/dFwfpJcYdv5plsmjzOgwtw== + dependencies: + "@dhis2-ui/loader" "6.12.0" + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/notice-box@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/notice-box/-/notice-box-6.12.0.tgz#e239733c6fde80ca3dc6b742dcdf76859af5eb72" + integrity sha512-k7ihDB5eZaIC4thHScfUH2NrOEs8TL8t05EkBW5QMuR5EmHlpNMDP2fPDXyqr5kP9C0r1J7/weKW0NqvcCnV2w== + dependencies: + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + "@dhis2/ui-icons" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/organisation-unit-tree@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/organisation-unit-tree/-/organisation-unit-tree-6.12.0.tgz#82c0d5c9755c8e977e0d929bc826f9de9bc9dfe9" + integrity sha512-06ok1YBjwjxwhQZYLSUA6qgutqMqId08zYY/T79ZPFuNBPdSDl5B7L4yUWxsMFaaM9R1YQzLLfIluxV7FpxW4w== + dependencies: + "@dhis2-ui/checkbox" "6.12.0" + "@dhis2-ui/loader" "6.12.0" + "@dhis2-ui/node" "6.12.0" + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/pagination@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/pagination/-/pagination-6.12.0.tgz#d92914ec18ec984548b744488d96edca4bd660fa" + integrity sha512-EwHaftRzqnrN4kazqyDpzoX7tqyFxgyVJOez8GJB5AZOfLaZDKl6BZv5aUfC4Sy8P2Ng2aJGQWvxa5WGnVv7vw== + dependencies: + "@dhis2-ui/button" "6.12.0" + "@dhis2-ui/select" "6.12.0" + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + "@dhis2/ui-icons" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/popover@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/popover/-/popover-6.12.0.tgz#a6227d1573f65fad7368b1647d2406b3970cc2fd" + integrity sha512-zFY3Yv53hwjs5qf8YkMs+3YruMVNKk1+YJIo/VozeXK4ZX3iMCTK0vvVlt+evIwgwVuLY9aVK3YYt3qeFszLpQ== + dependencies: + "@dhis2-ui/layer" "6.12.0" + "@dhis2-ui/popper" "6.12.0" + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/popper@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/popper/-/popper-6.12.0.tgz#07800aeefb31c571dbd3fa539edd1565e54e6ea8" + integrity sha512-KtEskgPHMU7t53OR+HMdtJyazxH1njE1RhqN59wOyLf8Zog6gRbYsRd/UWPgqnnB8xgLKotyWWUShslCp0XTRw== + dependencies: + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + "@popperjs/core" "^2.6.0" + classnames "^2.3.1" + prop-types "^15.7.2" + react-popper "^2.2.5" + resize-observer-polyfill "^1.5.1" + +"@dhis2-ui/radio@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/radio/-/radio-6.12.0.tgz#7e1c0815c8a317b49e36e54a959053c188a4d783" + integrity sha512-l/WSppUpc5B4mu2DNfK0x5R8xpq7hj8/mQcvdWnZz7ycl/gf69lhoyQVi6YGdJOez0sJYzJnYya7ekf4Okmlqw== + dependencies: + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/required@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/required/-/required-6.12.0.tgz#28c6a209f681e8eeeb30c752d467a023bf2c3b5d" + integrity sha512-t8j8Xe4MbmiDgQLiCIkmWLyuJjndPeVO9oHAaFp02IZ3YV9FrNtvlXkg2ydXEZgNaGbqCh+PwD6opstrTsSi5g== + dependencies: + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/select@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/select/-/select-6.12.0.tgz#eda5175b769d853922c6280bcded89049ded96d7" + integrity sha512-yCLTcWP+/hM8j0P6V7/gt81aAVPYrDxcFfuZku12kAWIJ0Cg+LXDC4sIhd9FEqxBICq/2Wizsw5s2Cy8Jjhf5g== + dependencies: + "@dhis2-ui/box" "6.12.0" + "@dhis2-ui/button" "6.12.0" + "@dhis2-ui/card" "6.12.0" + "@dhis2-ui/checkbox" "6.12.0" + "@dhis2-ui/chip" "6.12.0" + "@dhis2-ui/field" "6.12.0" + "@dhis2-ui/input" "6.12.0" + "@dhis2-ui/layer" "6.12.0" + "@dhis2-ui/loader" "6.12.0" + "@dhis2-ui/popper" "6.12.0" + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + "@dhis2/ui-icons" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/switch@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/switch/-/switch-6.12.0.tgz#582b855c8bde610c12b7fbb8f16f1f4bf2fe8a87" + integrity sha512-6GcKYsTezpOV7Bi1HJbV44gkud6QViDtoloTn7MyCAxfgzTIy8iZlumUSeMut6dFpJBpLIhTXrTtzOKbjD/gAw== + dependencies: + "@dhis2-ui/field" "6.12.0" + "@dhis2-ui/required" "6.12.0" + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/tab@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/tab/-/tab-6.12.0.tgz#0de1e20e985a55a35a59f45ac666942015eda024" + integrity sha512-lWjfO8Ed13JYTddxI8SPezsuuAy+5PlNjzjZpceIXWJAuz6HfSlZUL9pxAnTy/0zhalLc+U5mJGfCEmDKtzS0g== + dependencies: + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + "@dhis2/ui-icons" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/table@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/table/-/table-6.12.0.tgz#025fac9284a8ddbb798946689632cdf7790b93ba" + integrity sha512-4peWNZaOLES3CHf3FLp0V+hubwch7VU8Z0XNnsuYvtmGaEcAqitbjIAjvYMmYa/rBTQhku7gtXWdoOazlmi9VA== + dependencies: + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + "@dhis2/ui-icons" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/tag@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/tag/-/tag-6.12.0.tgz#ced24b5d7da7d5f45419ede0d26d8ccfa7b00ef8" + integrity sha512-kAKSCBddBmB+eL6+5c72QouyvHj8Hr4oRlBW90fP97CYweHYaThvXmTbnobE2txjhRjZ10r9692xhCjpruozQQ== + dependencies: + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/text-area@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/text-area/-/text-area-6.12.0.tgz#233d8347cdf3cf85613b76af00bed54b46a2f840" + integrity sha512-oY/39hFPMPNSg8kRl1Lxo9InD08gXIZdWeg1AINGSOBiiIKZ9ZU5AGS3Jf1AVYRpqnUjbERrqZU8AH5tQ2plWQ== + dependencies: + "@dhis2-ui/box" "6.12.0" + "@dhis2-ui/field" "6.12.0" + "@dhis2-ui/loader" "6.12.0" + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + "@dhis2/ui-icons" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/tooltip@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/tooltip/-/tooltip-6.12.0.tgz#5eb14753419a2cd6ba6eee376e9022102f7ed8b8" + integrity sha512-nCgvApdVMQMnhmKzE7th8aWrJMYK+aSKsB9374NtAh+Pg0HZmOezPKRedWhmcNWcYr3EkG0gMhcRaR6t6DqzOw== + dependencies: + "@dhis2-ui/layer" "6.12.0" + "@dhis2-ui/popper" "6.12.0" + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + +"@dhis2-ui/transfer@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2-ui/transfer/-/transfer-6.12.0.tgz#8b395fce3408ee309081e590b60742dd57959fbc" + integrity sha512-LRBXj71MNwc7RPgagpn9Nf/fMEcQTuKw+N6x6fDXrit3kK2u3mfTS//NuMvRCFLknEmjBbmAOW9RHUzWxcBWSw== + dependencies: + "@dhis2-ui/button" "6.12.0" + "@dhis2-ui/field" "6.12.0" + "@dhis2-ui/input" "6.12.0" + "@dhis2-ui/intersection-detector" "6.12.0" + "@dhis2-ui/loader" "6.12.0" + "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-constants" "6.12.0" + classnames "^2.3.1" + prop-types "^15.7.2" + "@dhis2/app-runtime@2.8.0": version "2.8.0" resolved "https://registry.yarnpkg.com/@dhis2/app-runtime/-/app-runtime-2.8.0.tgz#83ca6e96c299686ee72eea3e1825e04aa53cd5d2" @@ -2379,59 +2924,147 @@ dependencies: prop-types "^15" -"@dhis2/ui-constants@6.9.0": - version "6.9.0" - resolved "https://registry.yarnpkg.com/@dhis2/ui-constants/-/ui-constants-6.9.0.tgz#dd1671309bd257fee32aa2721da35504566e2a65" - integrity sha512-3OGTBUdFrCQ53SpHSwM6n5D2W8fWLnE6msHFCf/0EXoyzFZMHacBlNmRnuPpLu6nrkDoPWso1XPA68dR0sZ4zw== +"@dhis2/ui-constants@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2/ui-constants/-/ui-constants-6.12.0.tgz#e2dd4d2f888434c498fc538e6d0257c3e41599e8" + integrity sha512-prTkl5KQv5azobItN9wyhLgiLKYuOoGavqFUgOonheLPF2Nf8XEg2ipdFPwj/5eDeb/DC5bd71mlmDUHYWidyQ== dependencies: "@dhis2/prop-types" "^1.6.4" + prop-types "^15.7.2" -"@dhis2/ui-core@6.9.0": - version "6.9.0" - resolved "https://registry.yarnpkg.com/@dhis2/ui-core/-/ui-core-6.9.0.tgz#b10de1b03d50f499e654cb9291c14fb6fc1de19c" - integrity sha512-be9aRu2FPStmGnrfbTxqUSrkYpow5JML5smtFjIvNkXTV3rt4bCPSRBwwO1248jA4XJzpT/LQUcf55JL5VcqYA== - dependencies: +"@dhis2/ui-core@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2/ui-core/-/ui-core-6.12.0.tgz#9af04b601d56ebb0881ee25e47e220dbafcd99b0" + integrity sha512-OBE/tboRYNKh0FsKNIzTTBPXgIpMSi1s4HlJKz4XmhoqPkMWUo/Ne/edfBdFbcx3Htkel07ftavS9vbENw4EQA== + dependencies: + "@dhis2-ui/alert" "6.12.0" + "@dhis2-ui/box" "6.12.0" + "@dhis2-ui/button" "6.12.0" + "@dhis2-ui/card" "6.12.0" + "@dhis2-ui/center" "6.12.0" + "@dhis2-ui/checkbox" "6.12.0" + "@dhis2-ui/chip" "6.12.0" + "@dhis2-ui/cover" "6.12.0" + "@dhis2-ui/css" "6.12.0" + "@dhis2-ui/divider" "6.12.0" + "@dhis2-ui/field" "6.12.0" + "@dhis2-ui/file-input" "6.12.0" + "@dhis2-ui/help" "6.12.0" + "@dhis2-ui/input" "6.12.0" + "@dhis2-ui/intersection-detector" "6.12.0" + "@dhis2-ui/label" "6.12.0" + "@dhis2-ui/layer" "6.12.0" + "@dhis2-ui/legend" "6.12.0" + "@dhis2-ui/loader" "6.12.0" + "@dhis2-ui/logo" "6.12.0" + "@dhis2-ui/menu" "6.12.0" + "@dhis2-ui/modal" "6.12.0" + "@dhis2-ui/node" "6.12.0" + "@dhis2-ui/notice-box" "6.12.0" + "@dhis2-ui/popover" "6.12.0" + "@dhis2-ui/popper" "6.12.0" + "@dhis2-ui/radio" "6.12.0" + "@dhis2-ui/required" "6.12.0" + "@dhis2-ui/select" "6.12.0" + "@dhis2-ui/switch" "6.12.0" + "@dhis2-ui/tab" "6.12.0" + "@dhis2-ui/table" "6.12.0" + "@dhis2-ui/tag" "6.12.0" + "@dhis2-ui/text-area" "6.12.0" + "@dhis2-ui/tooltip" "6.12.0" "@dhis2/prop-types" "^1.6.4" - "@popperjs/core" "^2.9.2" + "@dhis2/ui-constants" "6.12.0" classnames "^2.3.1" - react-popper "^2.2.5" - resize-observer-polyfill "^1.5.1" + prop-types "^15.7.2" -"@dhis2/ui-forms@6.9.0": - version "6.9.0" - resolved "https://registry.yarnpkg.com/@dhis2/ui-forms/-/ui-forms-6.9.0.tgz#807fc7f69781d3ca7a36ef91b691ce31a7ec054f" - integrity sha512-S0wn0M1RMtNaedB6Jp3rDXQvNMKHbHpYqZFnZsDVmdbvPiPdJR80Dfac6JvYPTHEUgX+mC14ITcKsfosdyVn4g== +"@dhis2/ui-forms@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2/ui-forms/-/ui-forms-6.12.0.tgz#357338456b5342486c9963ddaeb43aed78b3b56c" + integrity sha512-kqt+4NF8HRlsLsCatilhoTfyR690Zlwu43Ryt0m3/Q66WP0401uIaItcMsok70SAA322N6ShTcMJPQ3BtpOZYA== dependencies: "@dhis2/prop-types" "^1.6.4" + "@dhis2/ui-core" "6.12.0" + "@dhis2/ui-widgets" "6.12.0" classnames "^2.3.1" final-form "^4.20.2" + prop-types "^15.7.2" react-final-form "^6.5.3" -"@dhis2/ui-icons@6.9.0": - version "6.9.0" - resolved "https://registry.yarnpkg.com/@dhis2/ui-icons/-/ui-icons-6.9.0.tgz#aa48db2bcc8150bd837a08af82a782b9c589dc17" - integrity sha512-V9TepT8Tk/jxefMcJB5To7icbBNkKwoBc+9WaJEQCNgNxtcMTxdnzIXc0IQgWJvUBSwyKTc7UEdTJ8E8eHilzA== +"@dhis2/ui-icons@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2/ui-icons/-/ui-icons-6.12.0.tgz#3e3412725220fae1555ba78eabd146ea517de213" + integrity sha512-8H9ImWiKK8hwy9D9Ts6gJcH7+fCOotsPzp5T81O5AtN0tEUiaB5KaaD0Tt3YwkYICl85lmGsv8haV/k5oSxEAQ== dependencies: "@dhis2/prop-types" "^1.6.4" -"@dhis2/ui-widgets@6.9.0": - version "6.9.0" - resolved "https://registry.yarnpkg.com/@dhis2/ui-widgets/-/ui-widgets-6.9.0.tgz#dfcbf5bbefca3eca640a565a00ea7289e5b0a7e5" - integrity sha512-vScix38nLJTyA59Mra1e27YJeqJyJxHWtMhMjUZvrHZQ7MMhEAzKRY2EKlPMMuYr+ycJxYQgmtiC2TA0o9HHtA== - dependencies: +"@dhis2/ui-widgets@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2/ui-widgets/-/ui-widgets-6.12.0.tgz#e7674642fa9e5c0c06f948eceec1385c7c17db57" + integrity sha512-dofT54yj7AlehYcOQi4ovdrmAT2QqJTI4tAvIulNrTAN3h5uhMjbCdxkRQXDwyDC/zIBp1fJXyEOvqNwQlzB5A== + dependencies: + "@dhis2-ui/checkbox" "6.12.0" + "@dhis2-ui/field" "6.12.0" + "@dhis2-ui/file-input" "6.12.0" + "@dhis2-ui/header-bar" "6.12.0" + "@dhis2-ui/input" "6.12.0" + "@dhis2-ui/organisation-unit-tree" "6.12.0" + "@dhis2-ui/pagination" "6.12.0" + "@dhis2-ui/select" "6.12.0" + "@dhis2-ui/switch" "6.12.0" + "@dhis2-ui/table" "6.12.0" + "@dhis2-ui/text-area" "6.12.0" + "@dhis2-ui/transfer" "6.12.0" "@dhis2/prop-types" "^1.6.4" classnames "^2.3.1" -"@dhis2/ui@6.9.0": - version "6.9.0" - resolved "https://registry.yarnpkg.com/@dhis2/ui/-/ui-6.9.0.tgz#e9bc2aa861fdca1ca2a6ecc5ab896970a4552f10" - integrity sha512-kzmT3jHvJ9+jky7gl8spFf9ifhbyyo29eriap+xm+eWyKadmK2olkCv6yudQzec1oJwqF+nfVw1nfnUmiEvWPw== - dependencies: - "@dhis2/ui-constants" "6.9.0" - "@dhis2/ui-core" "6.9.0" - "@dhis2/ui-forms" "6.9.0" - "@dhis2/ui-icons" "6.9.0" - "@dhis2/ui-widgets" "6.9.0" +"@dhis2/ui@6.12.0": + version "6.12.0" + resolved "https://registry.yarnpkg.com/@dhis2/ui/-/ui-6.12.0.tgz#892a298a4127d670103ccb547f01f67d4eba908f" + integrity sha512-IqQM9QAkABTPjcms9QawKSvhM4FUb8UM3rxxsMXM62ZnBa9+Tatf/2/+LsWTB/CKCK0QKFS6JCPQZXyHsGGuqw== + dependencies: + "@dhis2-ui/alert" "6.12.0" + "@dhis2-ui/box" "6.12.0" + "@dhis2-ui/button" "6.12.0" + "@dhis2-ui/card" "6.12.0" + "@dhis2-ui/center" "6.12.0" + "@dhis2-ui/checkbox" "6.12.0" + "@dhis2-ui/chip" "6.12.0" + "@dhis2-ui/cover" "6.12.0" + "@dhis2-ui/css" "6.12.0" + "@dhis2-ui/divider" "6.12.0" + "@dhis2-ui/field" "6.12.0" + "@dhis2-ui/file-input" "6.12.0" + "@dhis2-ui/header-bar" "6.12.0" + "@dhis2-ui/help" "6.12.0" + "@dhis2-ui/input" "6.12.0" + "@dhis2-ui/intersection-detector" "6.12.0" + "@dhis2-ui/label" "6.12.0" + "@dhis2-ui/layer" "6.12.0" + "@dhis2-ui/legend" "6.12.0" + "@dhis2-ui/loader" "6.12.0" + "@dhis2-ui/logo" "6.12.0" + "@dhis2-ui/menu" "6.12.0" + "@dhis2-ui/modal" "6.12.0" + "@dhis2-ui/node" "6.12.0" + "@dhis2-ui/notice-box" "6.12.0" + "@dhis2-ui/organisation-unit-tree" "6.12.0" + "@dhis2-ui/pagination" "6.12.0" + "@dhis2-ui/popover" "6.12.0" + "@dhis2-ui/popper" "6.12.0" + "@dhis2-ui/radio" "6.12.0" + "@dhis2-ui/required" "6.12.0" + "@dhis2-ui/select" "6.12.0" + "@dhis2-ui/switch" "6.12.0" + "@dhis2-ui/tab" "6.12.0" + "@dhis2-ui/table" "6.12.0" + "@dhis2-ui/tag" "6.12.0" + "@dhis2-ui/text-area" "6.12.0" + "@dhis2-ui/tooltip" "6.12.0" + "@dhis2-ui/transfer" "6.12.0" + "@dhis2/ui-constants" "6.12.0" + "@dhis2/ui-forms" "6.12.0" + "@dhis2/ui-icons" "6.12.0" + prop-types "^15.7.2" "@emotion/hash@^0.8.0": version "0.8.0" @@ -2476,10 +3109,10 @@ minimatch "^3.0.4" strip-json-comments "^3.1.1" -"@eslint/eslintrc@^0.4.2": - version "0.4.2" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.2.tgz#f63d0ef06f5c0c57d76c4ab5f63d3835c51b0179" - integrity sha512-8nmGq/4ycLpIwzvhI4tNDmQztZ8sp+hI7cyG8i1nQDhkAbRzHpXPidRAHlNvCZQpJTKw5ItIpMw9RSToGF00mg== +"@eslint/eslintrc@^0.4.3": + version "0.4.3" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c" + integrity sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw== dependencies: ajv "^6.12.4" debug "^4.1.1" @@ -2583,6 +3216,20 @@ dependencies: "@hapi/hoek" "^9.0.0" +"@humanwhocodes/config-array@^0.5.0": + version "0.5.0" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9" + integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg== + dependencies: + "@humanwhocodes/object-schema" "^1.2.0" + debug "^4.1.1" + minimatch "^3.0.4" + +"@humanwhocodes/object-schema@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz#87de7af9c231826fdd68ac7258f77c429e0e5fcf" + integrity sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w== + "@istanbuljs/load-nyc-config@^1.0.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" @@ -2623,16 +3270,16 @@ jest-util "^26.6.2" slash "^3.0.0" -"@jest/console@^27.0.2": - version "27.0.2" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-27.0.2.tgz#b8eeff8f21ac51d224c851e1729d2630c18631e6" - integrity sha512-/zYigssuHLImGeMAACkjI4VLAiiJznHgAl3xnFT19iWyct2LhrH3KXOjHRmxBGTkiPLZKKAJAgaPpiU9EZ9K+w== +"@jest/console@^27.0.6": + version "27.0.6" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-27.0.6.tgz#3eb72ea80897495c3d73dd97aab7f26770e2260f" + integrity sha512-fMlIBocSHPZ3JxgWiDNW/KPj6s+YRd0hicb33IrmelCcjXo/pXPwvuiKFmZz+XuqI/1u7nbUK10zSsWL/1aegg== dependencies: - "@jest/types" "^27.0.2" + "@jest/types" "^27.0.6" "@types/node" "*" chalk "^4.0.0" - jest-message-util "^27.0.2" - jest-util "^27.0.2" + jest-message-util "^27.0.6" + jest-util "^27.0.6" slash "^3.0.0" "@jest/core@^26.6.0", "@jest/core@^26.6.3": @@ -2669,35 +3316,35 @@ slash "^3.0.0" strip-ansi "^6.0.0" -"@jest/core@^27.0.4": - version "27.0.4" - resolved "https://registry.yarnpkg.com/@jest/core/-/core-27.0.4.tgz#679bf9ac07900da2ddbb9667bb1afa8029038f53" - integrity sha512-+dsmV8VUs1h/Szb+rEWk8xBM1fp1I///uFy9nk3wXGvRsF2lBp8EVPmtWc+QFRb3MY2b7u2HbkGF1fzoDzQTLA== +"@jest/core@^27.0.6": + version "27.0.6" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-27.0.6.tgz#c5f642727a0b3bf0f37c4b46c675372d0978d4a1" + integrity sha512-SsYBm3yhqOn5ZLJCtccaBcvD/ccTLCeuDv8U41WJH/V1MW5eKUkeMHT9U+Pw/v1m1AIWlnIW/eM2XzQr0rEmow== dependencies: - "@jest/console" "^27.0.2" - "@jest/reporters" "^27.0.4" - "@jest/test-result" "^27.0.2" - "@jest/transform" "^27.0.2" - "@jest/types" "^27.0.2" + "@jest/console" "^27.0.6" + "@jest/reporters" "^27.0.6" + "@jest/test-result" "^27.0.6" + "@jest/transform" "^27.0.6" + "@jest/types" "^27.0.6" "@types/node" "*" ansi-escapes "^4.2.1" chalk "^4.0.0" emittery "^0.8.1" exit "^0.1.2" graceful-fs "^4.2.4" - jest-changed-files "^27.0.2" - jest-config "^27.0.4" - jest-haste-map "^27.0.2" - jest-message-util "^27.0.2" - jest-regex-util "^27.0.1" - jest-resolve "^27.0.4" - jest-resolve-dependencies "^27.0.4" - jest-runner "^27.0.4" - jest-runtime "^27.0.4" - jest-snapshot "^27.0.4" - jest-util "^27.0.2" - jest-validate "^27.0.2" - jest-watcher "^27.0.2" + jest-changed-files "^27.0.6" + jest-config "^27.0.6" + jest-haste-map "^27.0.6" + jest-message-util "^27.0.6" + jest-regex-util "^27.0.6" + jest-resolve "^27.0.6" + jest-resolve-dependencies "^27.0.6" + jest-runner "^27.0.6" + jest-runtime "^27.0.6" + jest-snapshot "^27.0.6" + jest-util "^27.0.6" + jest-validate "^27.0.6" + jest-watcher "^27.0.6" micromatch "^4.0.4" p-each-series "^2.1.0" rimraf "^3.0.0" @@ -2714,15 +3361,15 @@ "@types/node" "*" jest-mock "^26.6.2" -"@jest/environment@^27.0.3": - version "27.0.3" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-27.0.3.tgz#68769b1dfdd213e3456169d64fbe9bd63a5fda92" - integrity sha512-pN9m7fbKsop5vc3FOfH8NF7CKKdRbEZzcxfIo1n2TT6ucKWLFq0P6gCJH0GpnQp036++yY9utHOxpeT1WnkWTA== +"@jest/environment@^27.0.6": + version "27.0.6" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-27.0.6.tgz#ee293fe996db01d7d663b8108fa0e1ff436219d2" + integrity sha512-4XywtdhwZwCpPJ/qfAkqExRsERW+UaoSRStSHCCiQTUpoYdLukj+YJbQSFrZjhlUDRZeNiU9SFH0u7iNimdiIg== dependencies: - "@jest/fake-timers" "^27.0.3" - "@jest/types" "^27.0.2" + "@jest/fake-timers" "^27.0.6" + "@jest/types" "^27.0.6" "@types/node" "*" - jest-mock "^27.0.3" + jest-mock "^27.0.6" "@jest/fake-timers@^26.6.2": version "26.6.2" @@ -2736,17 +3383,17 @@ jest-mock "^26.6.2" jest-util "^26.6.2" -"@jest/fake-timers@^27.0.3": - version "27.0.3" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-27.0.3.tgz#9899ba6304cc636734c74478df502e18136461dd" - integrity sha512-fQ+UCKRIYKvTCEOyKPnaPnomLATIhMnHC/xPZ7yT1Uldp7yMgMxoYIFidDbpSTgB79+/U+FgfoD30c6wg3IUjA== +"@jest/fake-timers@^27.0.6": + version "27.0.6" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-27.0.6.tgz#cbad52f3fe6abe30e7acb8cd5fa3466b9588e3df" + integrity sha512-sqd+xTWtZ94l3yWDKnRTdvTeZ+A/V7SSKrxsrOKSqdyddb9CeNRF8fbhAU0D7ZJBpTTW2nbp6MftmKJDZfW2LQ== dependencies: - "@jest/types" "^27.0.2" + "@jest/types" "^27.0.6" "@sinonjs/fake-timers" "^7.0.2" "@types/node" "*" - jest-message-util "^27.0.2" - jest-mock "^27.0.3" - jest-util "^27.0.2" + jest-message-util "^27.0.6" + jest-mock "^27.0.6" + jest-util "^27.0.6" "@jest/globals@^26.6.2": version "26.6.2" @@ -2757,14 +3404,14 @@ "@jest/types" "^26.6.2" expect "^26.6.2" -"@jest/globals@^27.0.3": - version "27.0.3" - resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-27.0.3.tgz#1cf8933b7791bba0b99305cbf39fd4d2e3fe4060" - integrity sha512-OzsIuf7uf+QalqAGbjClyezzEcLQkdZ+7PejUrZgDs+okdAK8GwRCGcYCirHvhMBBQh60Jr3NlIGbn/KBPQLEQ== +"@jest/globals@^27.0.6": + version "27.0.6" + resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-27.0.6.tgz#48e3903f99a4650673d8657334d13c9caf0e8f82" + integrity sha512-DdTGCP606rh9bjkdQ7VvChV18iS7q0IMJVP1piwTWyWskol4iqcVwthZmoJEf7obE1nc34OpIyoVGPeqLC+ryw== dependencies: - "@jest/environment" "^27.0.3" - "@jest/types" "^27.0.2" - expect "^27.0.2" + "@jest/environment" "^27.0.6" + "@jest/types" "^27.0.6" + expect "^27.0.6" "@jest/reporters@^26.6.2": version "26.6.2" @@ -2798,16 +3445,16 @@ optionalDependencies: node-notifier "^8.0.0" -"@jest/reporters@^27.0.4": - version "27.0.4" - resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-27.0.4.tgz#95609b1be97afb80d55d8aa3d7c3179c15810e65" - integrity sha512-Xa90Nm3JnV0xCe4M6A10M9WuN9krb+WFKxV1A98Y4ePCw40n++r7uxFUNU7DT1i9Behj7fjrAIju9oU0t1QtCg== +"@jest/reporters@^27.0.6": + version "27.0.6" + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-27.0.6.tgz#91e7f2d98c002ad5df94d5b5167c1eb0b9fd5b00" + integrity sha512-TIkBt09Cb2gptji3yJXb3EE+eVltW6BjO7frO7NEfjI9vSIYoISi5R3aI3KpEDXlB1xwB+97NXIqz84qYeYsfA== dependencies: "@bcoe/v8-coverage" "^0.2.3" - "@jest/console" "^27.0.2" - "@jest/test-result" "^27.0.2" - "@jest/transform" "^27.0.2" - "@jest/types" "^27.0.2" + "@jest/console" "^27.0.6" + "@jest/test-result" "^27.0.6" + "@jest/transform" "^27.0.6" + "@jest/types" "^27.0.6" chalk "^4.0.0" collect-v8-coverage "^1.0.0" exit "^0.1.2" @@ -2818,15 +3465,15 @@ istanbul-lib-report "^3.0.0" istanbul-lib-source-maps "^4.0.0" istanbul-reports "^3.0.2" - jest-haste-map "^27.0.2" - jest-resolve "^27.0.4" - jest-util "^27.0.2" - jest-worker "^27.0.2" + jest-haste-map "^27.0.6" + jest-resolve "^27.0.6" + jest-util "^27.0.6" + jest-worker "^27.0.6" slash "^3.0.0" source-map "^0.6.0" string-length "^4.0.1" terminal-link "^2.0.0" - v8-to-istanbul "^7.0.0" + v8-to-istanbul "^8.0.0" "@jest/source-map@^26.6.2": version "26.6.2" @@ -2837,10 +3484,10 @@ graceful-fs "^4.2.4" source-map "^0.6.0" -"@jest/source-map@^27.0.1": - version "27.0.1" - resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-27.0.1.tgz#2afbf73ddbaddcb920a8e62d0238a0a9e0a8d3e4" - integrity sha512-yMgkF0f+6WJtDMdDYNavmqvbHtiSpwRN2U/W+6uztgfqgkq/PXdKPqjBTUF1RD/feth4rH5N3NW0T5+wIuln1A== +"@jest/source-map@^27.0.6": + version "27.0.6" + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-27.0.6.tgz#be9e9b93565d49b0548b86e232092491fb60551f" + integrity sha512-Fek4mi5KQrqmlY07T23JRi0e7Z9bXTOOD86V/uS0EIW4PClvPDqZOyFlLpNJheS6QI0FNX1CgmPjtJ4EA/2M+g== dependencies: callsites "^3.0.0" graceful-fs "^4.2.4" @@ -2866,13 +3513,13 @@ "@types/istanbul-lib-coverage" "^2.0.0" collect-v8-coverage "^1.0.0" -"@jest/test-result@^27.0.2": - version "27.0.2" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-27.0.2.tgz#0451049e32ceb609b636004ccc27c8fa22263f10" - integrity sha512-gcdWwL3yP5VaIadzwQtbZyZMgpmes8ryBAJp70tuxghiA8qL4imJyZex+i+USQH2H4jeLVVszhwntgdQ97fccA== +"@jest/test-result@^27.0.6": + version "27.0.6" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-27.0.6.tgz#3fa42015a14e4fdede6acd042ce98c7f36627051" + integrity sha512-ja/pBOMTufjX4JLEauLxE3LQBPaI2YjGFtXexRAjt1I/MbfNlMx0sytSX3tn5hSLzQsR3Qy2rd0hc1BWojtj9w== dependencies: - "@jest/console" "^27.0.2" - "@jest/types" "^27.0.2" + "@jest/console" "^27.0.6" + "@jest/types" "^27.0.6" "@types/istanbul-lib-coverage" "^2.0.0" collect-v8-coverage "^1.0.0" @@ -2887,15 +3534,15 @@ jest-runner "^26.6.3" jest-runtime "^26.6.3" -"@jest/test-sequencer@^27.0.4": - version "27.0.4" - resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-27.0.4.tgz#976493b277594d81e589896f0ed21f198308928a" - integrity sha512-6UFEVwdmxYdyNffBxVVZxmXEdBE4riSddXYSnFNH0ELFQFk/bvagizim8WfgJTqF4EKd+j1yFxvhb8BMHfOjSQ== +"@jest/test-sequencer@^27.0.6": + version "27.0.6" + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-27.0.6.tgz#80a913ed7a1130545b1cd777ff2735dd3af5d34b" + integrity sha512-bISzNIApazYOlTHDum9PwW22NOyDa6VI31n6JucpjTVM0jD6JDgqEZ9+yn575nDdPF0+4csYDxNNW13NvFQGZA== dependencies: - "@jest/test-result" "^27.0.2" + "@jest/test-result" "^27.0.6" graceful-fs "^4.2.4" - jest-haste-map "^27.0.2" - jest-runtime "^27.0.4" + jest-haste-map "^27.0.6" + jest-runtime "^27.0.6" "@jest/transform@^26.6.2": version "26.6.2" @@ -2918,21 +3565,21 @@ source-map "^0.6.1" write-file-atomic "^3.0.0" -"@jest/transform@^27.0.2": - version "27.0.2" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-27.0.2.tgz#b073b7c589e3f4b842102468875def2bb722d6b5" - integrity sha512-H8sqKlgtDfVog/s9I4GG2XMbi4Ar7RBxjsKQDUhn2XHAi3NG+GoQwWMER+YfantzExbjNqQvqBHzo/G2pfTiPw== +"@jest/transform@^27.0.6": + version "27.0.6" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-27.0.6.tgz#189ad7107413208f7600f4719f81dd2f7278cc95" + integrity sha512-rj5Dw+mtIcntAUnMlW/Vju5mr73u8yg+irnHwzgtgoeI6cCPOvUwQ0D1uQtc/APmWgvRweEb1g05pkUpxH3iCA== dependencies: "@babel/core" "^7.1.0" - "@jest/types" "^27.0.2" + "@jest/types" "^27.0.6" babel-plugin-istanbul "^6.0.0" chalk "^4.0.0" convert-source-map "^1.4.0" fast-json-stable-stringify "^2.0.0" graceful-fs "^4.2.4" - jest-haste-map "^27.0.2" - jest-regex-util "^27.0.1" - jest-util "^27.0.2" + jest-haste-map "^27.0.6" + jest-regex-util "^27.0.6" + jest-util "^27.0.6" micromatch "^4.0.4" pirates "^4.0.1" slash "^3.0.0" @@ -2982,14 +3629,25 @@ "@types/yargs" "^16.0.0" chalk "^4.0.0" -"@material-ui/core@4.11.4": - version "4.11.4" - resolved "https://registry.yarnpkg.com/@material-ui/core/-/core-4.11.4.tgz#4fb9fe5dec5dcf780b687e3a40cff78b2b9640a4" - integrity sha512-oqb+lJ2Dl9HXI9orc6/aN8ZIAMkeThufA5iZELf2LQeBn2NtjVilF5D2w7e9RpntAzDb4jK5DsVhkfOvFY/8fg== +"@jest/types@^27.0.6": + version "27.0.6" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.0.6.tgz#9a992bc517e0c49f035938b8549719c2de40706b" + integrity sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^16.0.0" + chalk "^4.0.0" + +"@material-ui/core@4.12.3": + version "4.12.3" + resolved "https://registry.yarnpkg.com/@material-ui/core/-/core-4.12.3.tgz#80d665caf0f1f034e52355c5450c0e38b099d3ca" + integrity sha512-sdpgI/PL56QVsEJldwEe4FFaFTLUqN+rd7sSZiRCdx2E/C7z5yK0y/khAWVBH24tXwto7I1hCzNWfJGZIYJKnw== dependencies: "@babel/runtime" "^7.4.4" "@material-ui/styles" "^4.11.4" - "@material-ui/system" "^4.11.3" + "@material-ui/system" "^4.12.1" "@material-ui/types" "5.1.0" "@material-ui/utils" "^4.11.2" "@types/react-transition-group" "^4.2.0" @@ -3007,10 +3665,10 @@ dependencies: "@babel/runtime" "^7.4.4" -"@material-ui/lab@4.0.0-alpha.58": - version "4.0.0-alpha.58" - resolved "https://registry.yarnpkg.com/@material-ui/lab/-/lab-4.0.0-alpha.58.tgz#c7ebb66f49863c5acbb20817163737caa299fafc" - integrity sha512-GKHlJqLxUeHH3L3dGQ48ZavYrqGOTXkFkiEiuYMAnAvXAZP4rhMIqeHOPXSUQan4Bd8QnafDcpovOSLnadDmKw== +"@material-ui/lab@4.0.0-alpha.60": + version "4.0.0-alpha.60" + resolved "https://registry.yarnpkg.com/@material-ui/lab/-/lab-4.0.0-alpha.60.tgz#5ad203aed5a8569b0f1753945a21a05efa2234d2" + integrity sha512-fadlYsPJF+0fx2lRuyqAuJj7hAS1tLDdIEEdov5jlrpb5pp4b+mRDUqQTUxi4inRZHS1bEXpU8QWUhO6xX88aA== dependencies: "@babel/runtime" "^7.4.4" "@material-ui/utils" "^4.11.2" @@ -3052,10 +3710,10 @@ jss-plugin-vendor-prefixer "^10.5.1" prop-types "^15.7.2" -"@material-ui/system@^4.11.3": - version "4.11.3" - resolved "https://registry.yarnpkg.com/@material-ui/system/-/system-4.11.3.tgz#466bc14c9986798fd325665927c963eb47cc4143" - integrity sha512-SY7otguNGol41Mu2Sg6KbBP1ZRFIbFLHGK81y4KYbsV2yIcaEPOmsCK6zwWlp+2yTV3J/VwT6oSBARtGIVdXPw== +"@material-ui/system@^4.12.1": + version "4.12.1" + resolved "https://registry.yarnpkg.com/@material-ui/system/-/system-4.12.1.tgz#2dd96c243f8c0a331b2bb6d46efd7771a399707c" + integrity sha512-lUdzs4q9kEXZGhbN7BptyiS1rLNHe6kG9o8Y307HCvF4sQxbCgpL2qi+gUk+yI8a2DNk48gISEQxoxpgph0xIw== dependencies: "@babel/runtime" "^7.4.4" "@material-ui/utils" "^4.11.2" @@ -3116,7 +3774,7 @@ schema-utils "^2.6.5" source-map "^0.7.3" -"@popperjs/core@^2.9.2": +"@popperjs/core@^2.6.0": version "2.9.2" resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.9.2.tgz#adea7b6953cbb34651766b0548468e743c6a2353" integrity sha512-VZMYa7+fXHdwIq1TDhSXoVmSPEGM/aa+6Aiq3nVVJ9bXr24zScr+NlKFKC3iPljA7ho/GAZr+d2jOf5GIRC30Q== @@ -3298,19 +3956,19 @@ "@svgr/plugin-svgo" "^5.5.0" loader-utils "^2.0.0" -"@testing-library/dom@^7.28.1": - version "7.29.0" - resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-7.29.0.tgz#60b18065bab50a5cde21fe80275a47a43024d9cc" - integrity sha512-0hhuJSmw/zLc6ewR9cVm84TehuTd7tbqBX9pRNSp8znJ9gTmSgesdbiGZtt8R6dL+2rgaPFp9Yjr7IU1HWm49w== +"@testing-library/dom@^8.0.0": + version "8.1.0" + resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-8.1.0.tgz#f8358b1883844ea569ba76b7e94582168df5370d" + integrity sha512-kmW9alndr19qd6DABzQ978zKQ+J65gU2Rzkl8hriIetPnwpesRaK4//jEQyYh8fEALmGhomD/LBQqt+o+DL95Q== dependencies: "@babel/code-frame" "^7.10.4" "@babel/runtime" "^7.12.5" "@types/aria-query" "^4.2.0" aria-query "^4.2.2" chalk "^4.1.0" - dom-accessibility-api "^0.5.4" + dom-accessibility-api "^0.5.6" lz-string "^1.4.4" - pretty-format "^26.6.2" + pretty-format "^27.0.2" "@testing-library/jest-dom@5.14.1": version "5.14.1" @@ -3327,13 +3985,13 @@ lodash "^4.17.15" redent "^3.0.0" -"@testing-library/react@11.2.7": - version "11.2.7" - resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-11.2.7.tgz#b29e2e95c6765c815786c0bc1d5aed9cb2bf7818" - integrity sha512-tzRNp7pzd5QmbtXNG/mhdcl7Awfu/Iz1RaVHY75zTdOkmHCuzMhRL83gWHSgOAcjS3CCbyfwUHMZgRJb4kAfpA== +"@testing-library/react@12.0.0": + version "12.0.0" + resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-12.0.0.tgz#9aeb2264521522ab9b68f519eaf15136148f164a" + integrity sha512-sh3jhFgEshFyJ/0IxGltRhwZv2kFKfJ3fN1vTZ6hhMXzz9ZbbcTgmDYM4e+zJv+oiVKKEWZPyqPAh4MQBI65gA== dependencies: "@babel/runtime" "^7.12.5" - "@testing-library/dom" "^7.28.1" + "@testing-library/dom" "^8.0.0" "@tootallnate/once@1": version "1.1.2" @@ -3365,10 +4023,10 @@ resolved "https://registry.yarnpkg.com/@types/anymatch/-/anymatch-1.3.1.tgz#336badc1beecb9dacc38bea2cf32adf627a8421a" integrity sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA== -"@types/argparse@2.0.8": - version "2.0.8" - resolved "https://registry.yarnpkg.com/@types/argparse/-/argparse-2.0.8.tgz#14bebdb0479b610bf11fae8b2d59d6a1a09dc1e5" - integrity sha512-H/YVlchGvyHN2LSD3gRueCe8mo5zC0lU505LYqpQL75SMOIIZmtyronj/tETOCUVRzeMp4PHW02BaGWMSuNcxA== +"@types/argparse@2.0.10": + version "2.0.10" + resolved "https://registry.yarnpkg.com/@types/argparse/-/argparse-2.0.10.tgz#664e84808accd1987548d888b9d21b3e9c996a6c" + integrity sha512-C4wahC3gz3vQtvPazrJ5ONwmK1zSDllQboiWvpMM/iOswCYfBREFnjFbq/iWKIVOCl8+m5Pk6eva6/ZSsDuIGA== "@types/aria-query@^4.2.0": version "4.2.0" @@ -3433,10 +4091,10 @@ dependencies: "@babel/types" "^7.3.0" -"@types/classnames@2.3.0": - version "2.3.0" - resolved "https://registry.yarnpkg.com/@types/classnames/-/classnames-2.3.0.tgz#681b6bacf918e00c1836ad286a872e0a90aada87" - integrity sha512-3GsbOoDYteFShlrBTKzI2Eii4vPg/jAf7LXRIn0WQePKlmhpkV0KoTMuawA7gZJkrbPrZGwv9IEAfIWaOaQK8w== +"@types/classnames@2.3.1": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@types/classnames/-/classnames-2.3.1.tgz#3c2467aa0f1a93f1f021e3b9bcf938bd5dfdc0dd" + integrity sha512-zeOWb0JGBoVmlQoznvqXbE0tEC/HONsnoUNH19Hc96NFsTAwTXbTqb8FMYkru1F/iqp7a18Ws3nWJvtA1sHD1A== dependencies: classnames "*" @@ -3501,6 +4159,13 @@ resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#3c9ee980f1a10d6021ae6632ca3e79ca2ec4fb50" integrity sha512-giAlZwstKbmvMk1OO7WXSj4OZ0keXAcl2TQq4LWHiiPH2ByaH7WeUzng+Qej8UPxxv+8lRTuouo0iaNDBuzIBA== +"@types/http-proxy@^1.17.5": + version "1.17.7" + resolved "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.7.tgz#30ea85cc2c868368352a37f0d0d3581e24834c6f" + integrity sha512-9hdj6iXH64tHSLTY+Vt2eYOGzSogC+JQ2H7bdPWkuh7KXP5qLllWx++t+K9Wk556c3dkDdPws/SpMRi0sdCT1w== + dependencies: + "@types/node" "*" + "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": version "2.0.3" resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762" @@ -3536,10 +4201,10 @@ jest-diff "^25.2.1" pretty-format "^25.2.1" -"@types/jest@26.0.23": - version "26.0.23" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.23.tgz#a1b7eab3c503b80451d019efb588ec63522ee4e7" - integrity sha512-ZHLmWMJ9jJ9PTiT58juykZpL7KjwJywFN3Rr2pTSkyQfydf/rk22yS7W8p5DaVUMQ2BQC7oYiU3FjbTM/mYrOA== +"@types/jest@26.0.24": + version "26.0.24" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.24.tgz#943d11976b16739185913a1936e0de0c4a7d595a" + integrity sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w== dependencies: jest-diff "^26.0.0" pretty-format "^26.0.0" @@ -3549,6 +4214,11 @@ resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.6.tgz#f4c7ec43e81b319a9815115031709f26987891f0" integrity sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw== +"@types/json-schema@7.0.8": + version "7.0.8" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.8.tgz#edf1bf1dbf4e04413ca8e5b17b3b7d7d54b59818" + integrity sha512-YSBPTLTVm2e2OoQIDYx8HaeWJ5tTToLH67kXR7zYNGupXMEHa2++G8k+DczX2cFVgalypqtyZIcU19AFcmOpmg== + "@types/json-schema@^7.0.3", "@types/json-schema@^7.0.4": version "7.0.5" resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.5.tgz#dcce4430e64b443ba8945f0290fb564ad5bac6dd" @@ -3564,23 +4234,23 @@ resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= -"@types/lodash@4.14.170": - version "4.14.170" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.170.tgz#0d67711d4bf7f4ca5147e9091b847479b87925d6" - integrity sha512-bpcvu/MKHHeYX+qeEN8GE7DIravODWdACVA1ctevD8CN24RhPZIKMn9ntfAsrvLfSX3cR5RrBKAbYm9bGs0A+Q== +"@types/lodash@4.14.172": + version "4.14.172" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.172.tgz#aad774c28e7bfd7a67de25408e03ee5a8c3d028a" + integrity sha512-/BHF5HAx3em7/KkzVKm3LrsD6HZAXuXO1AJZQ3cRRBZj4oHZDviWPYu0aEplAqDFNHZPW6d3G7KN+ONcCCC7pw== -"@types/material-ui@0.21.8": - version "0.21.8" - resolved "https://registry.yarnpkg.com/@types/material-ui/-/material-ui-0.21.8.tgz#a550778942b2e9791653aa2c4b1a35127c44cab6" - integrity sha512-Rsx3tRNoYkidDKfMfh+cegtOHMl73akzKnQ5pzxTrbx5oaUXLtG6YVlvtS43uebOSTDf8GQNaseB52r3zVagEg== +"@types/material-ui@0.21.9": + version "0.21.9" + resolved "https://registry.yarnpkg.com/@types/material-ui/-/material-ui-0.21.9.tgz#156a7e78274b8d0c55e19a6b5483b105aa53c0f3" + integrity sha512-YhZzW7rRqT2VpNTDYdXAB4Qgy1oBK2YDL1QSeL8t2ALmFTv141a5KW1buTobkc840QN+GGvon/u814jOxsvZLw== dependencies: "@types/react" "*" "@types/react-addons-linked-state-mixin" "*" -"@types/md5@2.3.0": - version "2.3.0" - resolved "https://registry.yarnpkg.com/@types/md5/-/md5-2.3.0.tgz#3b6a623091160f4dc75be3173e25f2110dc3fa1f" - integrity sha512-556YJ7ejzxIqSSxzyGGpctuZOarNZJt/zlEkhmmDc1f/slOEANHuwu2ZX7YaZ40rMiWoxt8GvAhoDpW1cmSy6A== +"@types/md5@2.3.1": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@types/md5/-/md5-2.3.1.tgz#010bcf3bb50a2cff3a574cb1c0b4051a9c67d6bc" + integrity sha512-OK3oe+ALIoPSo262lnhAYwpqFNXbiwH2a+0+Z5YBnkQEwWD8fk5+PIeRhYA48PzvX9I4SGNpWy+9bLj8qz92RQ== dependencies: "@types/node" "*" @@ -3594,10 +4264,10 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.14.tgz#24a0b5959f16ac141aeb0c5b3cd7a15b7c64cbce" integrity sha512-syUgf67ZQpaJj01/tRTknkMNoBBLWJOBODF0Zm4NrXmiSuxjymFrxnTu1QVYRubhVkRcZLYZG8STTwJRdVm/WQ== -"@types/node@15.12.2": - version "15.12.2" - resolved "https://registry.yarnpkg.com/@types/node/-/node-15.12.2.tgz#1f2b42c4be7156ff4a6f914b2fb03d05fa84e38d" - integrity sha512-zjQ69G564OCIWIOHSXyQEEDpdpGl+G348RAKY0XXy9Z5kU9Vzv1GMNnkar/ZJ8dzXB3COzD9Mo9NtRZ4xfgUww== +"@types/node@16.4.10": + version "16.4.10" + resolved "https://registry.yarnpkg.com/@types/node/-/node-16.4.10.tgz#e57e2a54fc6da58da94b3571b1cb456d39f88597" + integrity sha512-TmVHsm43br64js9BqHWqiDZA+xMtbUpI1MBIA0EyiBmoV9pcEYFOSdj5fr6enZNfh4fChh+AGOLIzGwJnkshyQ== "@types/node@^14.14.31": version "14.17.3" @@ -3651,17 +4321,17 @@ dependencies: "@types/react" "*" -"@types/react-dom@17.0.7": - version "17.0.7" - resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-17.0.7.tgz#b8ee15ead9e5d6c2c858b44949fdf2ebe5212232" - integrity sha512-Wd5xvZRlccOrCTej8jZkoFZuZRKHzanDDv1xglI33oBNFMWrqOSzrvWFw7ngSiZjrpJAzPKFtX7JvuXpkNmQHA== +"@types/react-dom@17.0.9": + version "17.0.9" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-17.0.9.tgz#441a981da9d7be117042e1a6fd3dac4b30f55add" + integrity sha512-wIvGxLfgpVDSAMH5utdL9Ngm5Owu0VsGmldro3ORLXV8CShrL8awVj06NuEXFQ5xyaYfdca7Sgbk/50Ri1GdPg== dependencies: "@types/react" "*" -"@types/react-router-dom@5.1.7": - version "5.1.7" - resolved "https://registry.yarnpkg.com/@types/react-router-dom/-/react-router-dom-5.1.7.tgz#a126d9ea76079ffbbdb0d9225073eb5797ab7271" - integrity sha512-D5mHD6TbdV/DNHYsnwBTv+y73ei+mMjrkGrla86HthE4/PVvL1J94Bu3qABU+COXzpL23T1EZapVVpwHuBXiUg== +"@types/react-router-dom@5.1.8": + version "5.1.8" + resolved "https://registry.yarnpkg.com/@types/react-router-dom/-/react-router-dom-5.1.8.tgz#bf3e1c8149b3d62eaa206d58599de82df0241192" + integrity sha512-03xHyncBzG0PmDmf8pf3rehtjY0NpUj7TIN46FrT5n1ZWHPZvXz32gUyNboJ+xsL8cpg8bQVLcllptcQHvocrw== dependencies: "@types/history" "*" "@types/react" "*" @@ -3690,10 +4360,10 @@ "@types/prop-types" "*" csstype "^2.2.0" -"@types/react@17.0.11": - version "17.0.11" - resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.11.tgz#67fcd0ddbf5a0b083a0f94e926c7d63f3b836451" - integrity sha512-yFRQbD+whVonItSk7ZzP/L+gPTJVBkL/7shLEF+i9GC/1cV3JmUxEQz6+9ylhUpWSDuqo1N9qEvqS6vTj4USUA== +"@types/react@17.0.15": + version "17.0.15" + resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.15.tgz#c7533dc38025677e312606502df7656a6ea626d0" + integrity sha512-uTKHDK9STXFHLaKv6IMnwp52fm0hwU+N89w/p9grdUqcFA6WuqDyPhaWopbNyE1k/VhgzmHl8pu1L4wITtmlLw== dependencies: "@types/prop-types" "*" "@types/scheduler" "*" @@ -3736,10 +4406,10 @@ resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.0.tgz#7036640b4e21cc2f259ae826ce843d277dad8cff" integrity sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw== -"@types/styled-components@5.1.10": - version "5.1.10" - resolved "https://registry.yarnpkg.com/@types/styled-components/-/styled-components-5.1.10.tgz#b509da9d62be8a02cefd88ec6b820f417429a503" - integrity sha512-g3ZfWlTiyXktASIhcfCicZtqB/fFFnq0a7kPYYxKXNggdrohp8m/9bMmmt3zDvHj2gplWDGCkZByfFnEXfbSWg== +"@types/styled-components@5.1.11": + version "5.1.11" + resolved "https://registry.yarnpkg.com/@types/styled-components/-/styled-components-5.1.11.tgz#a3a1bc0f2cdad7318d8ce219ee507e6b353503b5" + integrity sha512-u8g3bSw9KUiZY+S++gh+LlURGraqBe3MC5I5dygrNjGDHWWQfsmZZRTJ9K9oHU2CqWtxChWmJkDI/gp+TZPQMw== dependencies: "@types/hoist-non-react-statics" "*" "@types/react" "*" @@ -3818,16 +4488,15 @@ dependencies: "@types/node" "*" -"@typescript-eslint/eslint-plugin@4.27.0": - version "4.27.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.27.0.tgz#0b7fc974e8bc9b2b5eb98ed51427b0be529b4ad0" - integrity sha512-DsLqxeUfLVNp3AO7PC3JyaddmEHTtI9qTSAs+RB6ja27QvIM0TA8Cizn1qcS6vOu+WDLFJzkwkgweiyFhssDdQ== +"@typescript-eslint/eslint-plugin@4.29.0": + version "4.29.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.29.0.tgz#b866c9cd193bfaba5e89bade0015629ebeb27996" + integrity sha512-eiREtqWRZ8aVJcNru7cT/AMVnYd9a2UHsfZT8MR1dW3UUEg6jDv9EQ9Cq4CUPZesyQ58YUpoAADGv71jY8RwgA== dependencies: - "@typescript-eslint/experimental-utils" "4.27.0" - "@typescript-eslint/scope-manager" "4.27.0" + "@typescript-eslint/experimental-utils" "4.29.0" + "@typescript-eslint/scope-manager" "4.29.0" debug "^4.3.1" functional-red-black-tree "^1.0.1" - lodash "^4.17.21" regexpp "^3.1.0" semver "^7.3.5" tsutils "^3.21.0" @@ -3857,15 +4526,15 @@ eslint-scope "^5.0.0" eslint-utils "^2.0.0" -"@typescript-eslint/experimental-utils@4.27.0": - version "4.27.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.27.0.tgz#78192a616472d199f084eab8f10f962c0757cd1c" - integrity sha512-n5NlbnmzT2MXlyT+Y0Jf0gsmAQzCnQSWXKy4RGSXVStjDvS5we9IWbh7qRVKdGcxT0WYlgcCYUK/HRg7xFhvjQ== +"@typescript-eslint/experimental-utils@4.29.0": + version "4.29.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.29.0.tgz#19b1417602d0e1ef325b3312ee95f61220542df5" + integrity sha512-FpNVKykfeaIxlArLUP/yQfv/5/3rhl1ov6RWgud4OgbqWLkEq7lqgQU9iiavZRzpzCRQV4XddyFz3wFXdkiX9w== dependencies: "@types/json-schema" "^7.0.7" - "@typescript-eslint/scope-manager" "4.27.0" - "@typescript-eslint/types" "4.27.0" - "@typescript-eslint/typescript-estree" "4.27.0" + "@typescript-eslint/scope-manager" "4.29.0" + "@typescript-eslint/types" "4.29.0" + "@typescript-eslint/typescript-estree" "4.29.0" eslint-scope "^5.1.1" eslint-utils "^3.0.0" @@ -3880,14 +4549,14 @@ eslint-scope "^5.0.0" eslint-utils "^2.0.0" -"@typescript-eslint/parser@4.27.0": - version "4.27.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.27.0.tgz#85447e573364bce4c46c7f64abaa4985aadf5a94" - integrity sha512-XpbxL+M+gClmJcJ5kHnUpBGmlGdgNvy6cehgR6ufyxkEJMGP25tZKCaKyC0W/JVpuhU3VU1RBn7SYUPKSMqQvQ== +"@typescript-eslint/parser@4.29.0": + version "4.29.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.29.0.tgz#e5367ca3c63636bb5d8e0748fcbab7a4f4a04289" + integrity sha512-+92YRNHFdXgq+GhWQPT2bmjX09X7EH36JfgN2/4wmhtwV/HPxozpCNst8jrWcngLtEVd/4zAwA6BKojAlf+YqA== dependencies: - "@typescript-eslint/scope-manager" "4.27.0" - "@typescript-eslint/types" "4.27.0" - "@typescript-eslint/typescript-estree" "4.27.0" + "@typescript-eslint/scope-manager" "4.29.0" + "@typescript-eslint/types" "4.29.0" + "@typescript-eslint/typescript-estree" "4.29.0" debug "^4.3.1" "@typescript-eslint/parser@^4.5.0": @@ -3908,13 +4577,13 @@ "@typescript-eslint/types" "4.11.1" "@typescript-eslint/visitor-keys" "4.11.1" -"@typescript-eslint/scope-manager@4.27.0": - version "4.27.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.27.0.tgz#b0b1de2b35aaf7f532e89c8e81d0fa298cae327d" - integrity sha512-DY73jK6SEH6UDdzc6maF19AHQJBFVRf6fgAXHPXCGEmpqD4vYgPEzqpFz1lf/daSbOcMpPPj9tyXXDPW2XReAw== +"@typescript-eslint/scope-manager@4.29.0": + version "4.29.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.29.0.tgz#cf5474f87321bedf416ef65839b693bddd838599" + integrity sha512-HPq7XAaDMM3DpmuijxLV9Io8/6pQnliiXMQUcAdjpJJSR+fdmbD/zHCd7hMkjJn04UQtCQBtshgxClzg6NIS2w== dependencies: - "@typescript-eslint/types" "4.27.0" - "@typescript-eslint/visitor-keys" "4.27.0" + "@typescript-eslint/types" "4.29.0" + "@typescript-eslint/visitor-keys" "4.29.0" "@typescript-eslint/types@3.10.1": version "3.10.1" @@ -3926,10 +4595,10 @@ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.11.1.tgz#3ba30c965963ef9f8ced5a29938dd0c465bd3e05" integrity sha512-5kvd38wZpqGY4yP/6W3qhYX6Hz0NwUbijVsX2rxczpY6OXaMxh0+5E5uLJKVFwaBM7PJe1wnMym85NfKYIh6CA== -"@typescript-eslint/types@4.27.0": - version "4.27.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.27.0.tgz#712b408519ed699baff69086bc59cd2fc13df8d8" - integrity sha512-I4ps3SCPFCKclRcvnsVA/7sWzh7naaM/b4pBO2hVxnM3wrU51Lveybdw5WoIktU/V4KfXrTt94V9b065b/0+wA== +"@typescript-eslint/types@4.29.0": + version "4.29.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.29.0.tgz#c8f1a1e4441ea4aca9b3109241adbc145f7f8a4e" + integrity sha512-2YJM6XfWfi8pgU2HRhTp7WgRw78TCRO3dOmSpAvIQ8MOv4B46JD2chnhpNT7Jq8j0APlIbzO1Bach734xxUl4A== "@typescript-eslint/typescript-estree@3.10.1": version "3.10.1" @@ -3959,13 +4628,13 @@ semver "^7.3.2" tsutils "^3.17.1" -"@typescript-eslint/typescript-estree@4.27.0": - version "4.27.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.27.0.tgz#189a7b9f1d0717d5cccdcc17247692dedf7a09da" - integrity sha512-KH03GUsUj41sRLLEy2JHstnezgpS5VNhrJouRdmh6yNdQ+yl8w5LrSwBkExM+jWwCJa7Ct2c8yl8NdtNRyQO6g== +"@typescript-eslint/typescript-estree@4.29.0": + version "4.29.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.29.0.tgz#af7ab547757b86c91bfdbc54ff86845410856256" + integrity sha512-8ZpNHDIOyqzzgZrQW9+xQ4k5hM62Xy2R4RPO3DQxMc5Rq5QkCdSpk/drka+DL9w6sXNzV5nrdlBmf8+x495QXQ== dependencies: - "@typescript-eslint/types" "4.27.0" - "@typescript-eslint/visitor-keys" "4.27.0" + "@typescript-eslint/types" "4.29.0" + "@typescript-eslint/visitor-keys" "4.29.0" debug "^4.3.1" globby "^11.0.3" is-glob "^4.0.1" @@ -3987,12 +4656,12 @@ "@typescript-eslint/types" "4.11.1" eslint-visitor-keys "^2.0.0" -"@typescript-eslint/visitor-keys@4.27.0": - version "4.27.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.27.0.tgz#f56138b993ec822793e7ebcfac6ffdce0a60cb81" - integrity sha512-es0GRYNZp0ieckZ938cEANfEhsfHrzuLrePukLKtY3/KPXcq1Xd555Mno9/GOgXhKzn0QfkDLVgqWO3dGY80bg== +"@typescript-eslint/visitor-keys@4.29.0": + version "4.29.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.29.0.tgz#1ff60f240def4d85ea68d4fd2e4e9759b7850c04" + integrity sha512-LoaofO1C/jAJYs0uEpYMXfHboGXzOJeV118X4OsZu9f7rG7Pr9B3+4HTU8+err81rADa4xfQmAxnRnPAI2jp+Q== dependencies: - "@typescript-eslint/types" "4.27.0" + "@typescript-eslint/types" "4.29.0" eslint-visitor-keys "^2.0.0" "@webassemblyjs/ast@1.9.0": @@ -4902,16 +5571,16 @@ babel-jest@^26.6.0, babel-jest@^26.6.3: graceful-fs "^4.2.4" slash "^3.0.0" -babel-jest@^27.0.2: - version "27.0.2" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-27.0.2.tgz#7dc18adb01322acce62c2af76ea2c7cd186ade37" - integrity sha512-9OThPl3/IQbo4Yul2vMz4FYwILPQak8XelX4YGowygfHaOl5R5gfjm4iVx4d8aUugkW683t8aq0A74E7b5DU1Q== +babel-jest@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-27.0.6.tgz#e99c6e0577da2655118e3608b68761a5a69bd0d8" + integrity sha512-iTJyYLNc4wRofASmofpOc5NK9QunwMk+TLFgGXsTFS8uEqmd8wdI7sga0FPe2oVH3b5Agt/EAK1QjPEuKL8VfA== dependencies: - "@jest/transform" "^27.0.2" - "@jest/types" "^27.0.2" + "@jest/transform" "^27.0.6" + "@jest/types" "^27.0.6" "@types/babel__core" "^7.1.14" babel-plugin-istanbul "^6.0.0" - babel-preset-jest "^27.0.1" + babel-preset-jest "^27.0.6" chalk "^4.0.0" graceful-fs "^4.2.4" slash "^3.0.0" @@ -4962,10 +5631,10 @@ babel-plugin-jest-hoist@^26.6.2: "@types/babel__core" "^7.0.0" "@types/babel__traverse" "^7.0.6" -babel-plugin-jest-hoist@^27.0.1: - version "27.0.1" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.0.1.tgz#a6d10e484c93abff0f4e95f437dad26e5736ea11" - integrity sha512-sqBF0owAcCDBVEDtxqfYr2F36eSHdx7lAVGyYuOBRnKdD6gzcy0I0XrAYCZgOA3CRrLhmR+Uae9nogPzmAtOfQ== +babel-plugin-jest-hoist@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.0.6.tgz#f7c6b3d764af21cb4a2a1ab6870117dbde15b456" + integrity sha512-CewFeM9Vv2gM7Yr9n5eyyLVPRSiBnk6lKZRjgwYnGKSl9M14TMn2vkN02wTF04OGuSDLEzlWiMzvjXuW9mB6Gw== dependencies: "@babel/template" "^7.3.3" "@babel/types" "^7.3.3" @@ -5069,12 +5738,12 @@ babel-preset-jest@^26.6.2: babel-plugin-jest-hoist "^26.6.2" babel-preset-current-node-syntax "^1.0.0" -babel-preset-jest@^27.0.1: - version "27.0.1" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-27.0.1.tgz#7a50c75d16647c23a2cf5158d5bb9eb206b10e20" - integrity sha512-nIBIqCEpuiyhvjQs2mVNwTxQQa2xk70p9Dd/0obQGBf8FBzbnI8QhQKzLsWMN2i6q+5B0OcWDtrboBX5gmOLyA== +babel-preset-jest@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-27.0.6.tgz#909ef08e9f24a4679768be2f60a3df0856843f9d" + integrity sha512-WObA0/Biw2LrVVwZkF/2GqbOdzhKD6Fkdwhoy9ASIrOWr/zodcSpQh72JOkEn6NWyjmnPDjNSqaGN4KnpKzhXw== dependencies: - babel-plugin-jest-hoist "^27.0.1" + babel-plugin-jest-hoist "^27.0.6" babel-preset-current-node-syntax "^1.0.0" babel-preset-react-app@^10.0.0: @@ -5838,13 +6507,6 @@ clean-stack@^2.0.0: resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== -cli-cursor@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" - integrity sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc= - dependencies: - restore-cursor "^1.0.1" - cli-cursor@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" @@ -6659,12 +7321,11 @@ cypress-xpath@1.6.2: resolved "https://registry.yarnpkg.com/cypress-xpath/-/cypress-xpath-1.6.2.tgz#e9d44c3ab694fefa8608f1d977e3e389647f10d3" integrity sha512-mtwJPl840GQPGtb480fKR5vDIcijBHhAVwby5/AIPIT/UVT7UJhM2L42/R+venR7N01I0PoOJErb6UiMbCyUxg== -cypress@7.5.0: - version "7.5.0" - resolved "https://registry.yarnpkg.com/cypress/-/cypress-7.5.0.tgz#72dd342e3b45f54b63cd46819f38d126feff5954" - integrity sha512-tw3v6nrTJoEzT37+Nf6RK+DvdTfhMb8EJYskZx7oskZ+J9qQ1QHWA4dH8Eoe/Mr/wE47o+7PK6O9tgqhRy6IHg== +cypress@8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/cypress/-/cypress-8.1.0.tgz#9aaed7fb2a4d1876528b72d437f97bc824db0735" + integrity sha512-GXjlqPjY/6HPbQwAp3AvlA1Mk/NoJTAmqVSUhQsuM/1xDpd/FQHkxVuq5h6O6RrAoCXSgpZPXFsVtdqE+FwEJw== dependencies: - "@cypress/listr-verbose-renderer" "^0.4.1" "@cypress/request" "^2.88.5" "@cypress/xvfb" "^1.2.4" "@types/node" "^14.14.31" @@ -6676,15 +7337,18 @@ cypress@7.5.0: cachedir "^2.3.0" chalk "^4.1.0" check-more-types "^2.24.0" + cli-cursor "^3.1.0" cli-table3 "~0.6.0" commander "^5.1.0" common-tags "^1.8.0" dayjs "^1.10.4" - debug "4.3.2" + debug "^4.3.2" + enquirer "^2.3.6" eventemitter2 "^6.4.3" execa "4.1.0" executable "^4.1.1" extract-zip "2.0.1" + figures "^3.2.0" fs-extra "^9.1.0" getos "^3.2.1" is-ci "^3.0.0" @@ -6766,10 +7430,10 @@ data-urls@^2.0.0: whatwg-mimetype "^2.3.0" whatwg-url "^8.0.0" -date-fns@^1.27.2: - version "1.30.1" - resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c" - integrity sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw== +date-fns@^2.14.0: + version "2.23.0" + resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.23.0.tgz#4e886c941659af0cf7b30fafdd1eaa37e88788a9" + integrity sha512-5ycpauovVyAk0kXNZz6ZoB9AYMZB4DObse7P3BPWmyEjXNORTI8EJ6X0uaSAq4sCHzM1uajzrkr6HnsLQpxGXA== date-format@^2.0.0: version "2.1.0" @@ -6795,13 +7459,6 @@ debug@4, debug@^4.3.1: dependencies: ms "2.1.2" -debug@4.3.2: - version "4.3.2" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" - integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== - dependencies: - ms "2.1.2" - debug@=3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" @@ -6830,6 +7487,13 @@ debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: dependencies: ms "^2.1.1" +debug@^4.3.2: + version "4.3.2" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" + integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== + dependencies: + ms "2.1.2" + decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" @@ -6985,10 +7649,10 @@ diff-sequences@^26.6.2: resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.6.2.tgz#48ba99157de1923412eed41db6b6d4aa9ca7c0b1" integrity sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q== -diff-sequences@^27.0.1: - version "27.0.1" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.0.1.tgz#9c9801d52ed5f576ff0a20e3022a13ee6e297e7c" - integrity sha512-XPLijkfJUh/PIBnfkcSHgvD6tlYixmcMAn3osTk6jt+H0v/mgURto1XUiD9DKuGX5NDoVS6dSlA23gd9FUaCFg== +diff-sequences@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.0.6.tgz#3305cb2e55a033924054695cc66019fd7f8e5723" + integrity sha512-ag6wfpBFyNXZ0p8pcuIDS//D8H062ZQJ3fzYxjpmeKjnz8W4pekL3AI8VohmyZmsWW2PWaHgjsmqR6L13101VQ== diff@^4.0.1: version "4.0.2" @@ -7053,11 +7717,6 @@ doctrine@^3.0.0: dependencies: esutils "^2.0.2" -dom-accessibility-api@^0.5.4: - version "0.5.4" - resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.4.tgz#b06d059cdd4a4ad9a79275f9d414a5c126241166" - integrity sha512-TvrjBckDy2c6v6RLxPv5QXOnU+SmF9nBII5621Ve5fu6Z/BDrENurBEvlC1f44lKEUVqOpK4w9E5Idc5/EgkLQ== - dom-accessibility-api@^0.5.6: version "0.5.6" resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.6.tgz#3f5d43b52c7a3bd68b5fb63fa47b4e4c1fdf65a9" @@ -7305,7 +7964,7 @@ enhanced-resolve@^4.3.0: memory-fs "^0.5.0" tapable "^1.0.0" -enquirer@^2.3.5: +enquirer@^2.3.5, enquirer@^2.3.6: version "2.3.6" resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== @@ -7547,10 +8206,10 @@ eslint-plugin-cypress@2.11.3: dependencies: globals "^11.12.0" -eslint-plugin-flowtype@5.7.2: - version "5.7.2" - resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.7.2.tgz#482a42fe5d15ee614652ed256d37543d584d7bc0" - integrity sha512-7Oq/N0+3nijBnYWQYzz/Mp/7ZCpwxYvClRyW/PLAmimY9uLCBvoXsNsERcJdkKceyOjgRbFhhxs058KTrne9Mg== +eslint-plugin-flowtype@5.9.0: + version "5.9.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.9.0.tgz#8d2d81d3d79bb53470ed62b97409b31684757e30" + integrity sha512-aBUVPA5Wt0XyuV3Wg8flfVqYJR6yR2nRLuyPwoTjCg5VTk4G1X1zQpInr39tUGgRxqrA+d+B9GYK4+/d1i0Rfw== dependencies: lodash "^4.17.15" string-natural-compare "^3.0.1" @@ -7741,13 +8400,14 @@ eslint-webpack-plugin@^2.5.2: normalize-path "^3.0.0" schema-utils "^3.0.0" -eslint@7.28.0: - version "7.28.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.28.0.tgz#435aa17a0b82c13bb2be9d51408b617e49c1e820" - integrity sha512-UMfH0VSjP0G4p3EWirscJEQ/cHqnT/iuH6oNZOB94nBjWbMnhGEPxsZm1eyIW0C/9jLI0Fow4W5DXLjEI7mn1g== +eslint@7.32.0: + version "7.32.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d" + integrity sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA== dependencies: "@babel/code-frame" "7.12.11" - "@eslint/eslintrc" "^0.4.2" + "@eslint/eslintrc" "^0.4.3" + "@humanwhocodes/config-array" "^0.5.0" ajv "^6.10.0" chalk "^4.0.0" cross-spawn "^7.0.2" @@ -8011,11 +8671,6 @@ executable@^4.1.1: dependencies: pify "^2.2.0" -exit-hook@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" - integrity sha1-8FyiM7SMBdVP/wd2XfhQfpXAL/g= - exit@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" @@ -8046,17 +8701,17 @@ expect@^26.6.0, expect@^26.6.2: jest-message-util "^26.6.2" jest-regex-util "^26.0.0" -expect@^27.0.2: - version "27.0.2" - resolved "https://registry.yarnpkg.com/expect/-/expect-27.0.2.tgz#e66ca3a4c9592f1c019fa1d46459a9d2084f3422" - integrity sha512-YJFNJe2+P2DqH+ZrXy+ydRQYO87oxRUonZImpDodR1G7qo3NYd3pL+NQ9Keqpez3cehczYwZDBC3A7xk3n7M/w== +expect@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/expect/-/expect-27.0.6.tgz#a4d74fbe27222c718fff68ef49d78e26a8fd4c05" + integrity sha512-psNLt8j2kwg42jGBDSfAlU49CEZxejN1f1PlANWDZqIhBOVU/c2Pm888FcjWJzFewhIsNWfZJeLjUjtKGiPuSw== dependencies: - "@jest/types" "^27.0.2" + "@jest/types" "^27.0.6" ansi-styles "^5.0.0" - jest-get-type "^27.0.1" - jest-matcher-utils "^27.0.2" - jest-message-util "^27.0.2" - jest-regex-util "^27.0.1" + jest-get-type "^27.0.6" + jest-matcher-utils "^27.0.6" + jest-message-util "^27.0.6" + jest-regex-util "^27.0.6" express@^4.17.1: version "4.17.1" @@ -8234,13 +8889,12 @@ figgy-pudding@^3.5.1: resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e" integrity sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw== -figures@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" - integrity sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4= +figures@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" + integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== dependencies: escape-string-regexp "^1.0.5" - object-assign "^4.1.0" file-entry-cache@^6.0.0: version "6.0.0" @@ -8390,6 +9044,14 @@ flush-write-stream@^1.0.0, flush-write-stream@^1.0.2: inherits "^2.0.3" readable-stream "^2.3.6" +fluture@14.0.0: + version "14.0.0" + resolved "https://registry.yarnpkg.com/fluture/-/fluture-14.0.0.tgz#81e1cae996a262e214aa2a8d7845fe1359018e3b" + integrity sha512-pENtLF948a8DfduVKugT8edTAbFi4rBS94xjHwzLanQqIu5PYtLGl+xqs6H8TaIRL7z/B0cDpswdINzH/HRUGA== + dependencies: + sanctuary-show "^2.0.0" + sanctuary-type-identifiers "^3.0.0" + follow-redirects@1.5.10: version "1.5.10" resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.5.10.tgz#7b7a9f9aea2fdff36786a94ff643ed07f4ff5e2a" @@ -9163,7 +9825,18 @@ http-proxy-middleware@0.19.1: lodash "^4.17.11" micromatch "^3.1.10" -http-proxy@^1.17.0: +http-proxy-middleware@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.1.tgz#7ef3417a479fb7666a571e09966c66a39bd2c15f" + integrity sha512-cfaXRVoZxSed/BmkA7SwBVNI9Kj7HFltaE5rqYOub5kWzWZ+gofV2koVN1j2rMW7pEfSSlCHGJ31xmuyFyfLOg== + dependencies: + "@types/http-proxy" "^1.17.5" + http-proxy "^1.18.1" + is-glob "^4.0.1" + is-plain-obj "^3.0.0" + micromatch "^4.0.2" + +http-proxy@^1.17.0, http-proxy@^1.18.1: version "1.18.1" resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== @@ -9204,10 +9877,10 @@ human-signals@^2.1.0: resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== -husky@6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/husky/-/husky-6.0.0.tgz#810f11869adf51604c32ea577edbc377d7f9319e" - integrity sha512-SQS2gDTB7tBN486QSoKPKQItZw97BMOd+Kdb6ghfpBc0yXyzrddI0oDV5MkDAbuB4X2mO3/nj60TRMcYxwzZeQ== +husky@7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/husky/-/husky-7.0.1.tgz#579f4180b5da4520263e8713cc832942b48e1f1c" + integrity sha512-gceRaITVZ+cJH9sNHqx5tFwbzlLCVxtVZcusME8JYQ8Edy5mpGDOqD8QBCdMhpyo9a+JXddnujQ4rpY2Ff9SJA== hyphenate-style-name@^1.0.2, hyphenate-style-name@^1.0.3: version "1.0.3" @@ -9814,6 +10487,11 @@ is-plain-obj@^1.0.0: resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= +is-plain-obj@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7" + integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA== + is-plain-object@^2.0.3, is-plain-object@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" @@ -10053,12 +10731,12 @@ jest-changed-files@^26.6.2: execa "^4.0.0" throat "^5.0.0" -jest-changed-files@^27.0.2: - version "27.0.2" - resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-27.0.2.tgz#997253042b4a032950fc5f56abf3c5d1f8560801" - integrity sha512-eMeb1Pn7w7x3wue5/vF73LPCJ7DKQuC9wQUR5ebP9hDPpk5hzcT/3Hmz3Q5BOFpR3tgbmaWhJcMTVgC8Z1NuMw== +jest-changed-files@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-27.0.6.tgz#bed6183fcdea8a285482e3b50a9a7712d49a7a8b" + integrity sha512-BuL/ZDauaq5dumYh5y20sn4IISnf1P9A0TDswTxUi84ORGtVa86ApuBHqICL0vepqAnZiY6a7xeSPWv2/yy4eA== dependencies: - "@jest/types" "^27.0.2" + "@jest/types" "^27.0.6" execa "^5.0.0" throat "^6.0.1" @@ -10089,27 +10767,27 @@ jest-circus@26.6.0: stack-utils "^2.0.2" throat "^5.0.0" -jest-circus@^27.0.4: - version "27.0.4" - resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-27.0.4.tgz#3b261514ee3b3da33def736a6352c98ff56bb6e6" - integrity sha512-QD+eblDiRphta630WRKewuASLs/oY1Zki2G4bccntRvrTHQ63ljwFR5TLduuK4Zg0ZPzW0+8o6AP7KRd1yKOjw== +jest-circus@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-27.0.6.tgz#dd4df17c4697db6a2c232aaad4e9cec666926668" + integrity sha512-OJlsz6BBeX9qR+7O9lXefWoc2m9ZqcZ5Ohlzz0pTEAG4xMiZUJoacY8f4YDHxgk0oKYxj277AfOk9w6hZYvi1Q== dependencies: - "@jest/environment" "^27.0.3" - "@jest/test-result" "^27.0.2" - "@jest/types" "^27.0.2" + "@jest/environment" "^27.0.6" + "@jest/test-result" "^27.0.6" + "@jest/types" "^27.0.6" "@types/node" "*" chalk "^4.0.0" co "^4.6.0" dedent "^0.7.0" - expect "^27.0.2" + expect "^27.0.6" is-generator-fn "^2.0.0" - jest-each "^27.0.2" - jest-matcher-utils "^27.0.2" - jest-message-util "^27.0.2" - jest-runtime "^27.0.4" - jest-snapshot "^27.0.4" - jest-util "^27.0.2" - pretty-format "^27.0.2" + jest-each "^27.0.6" + jest-matcher-utils "^27.0.6" + jest-message-util "^27.0.6" + jest-runtime "^27.0.6" + jest-snapshot "^27.0.6" + jest-util "^27.0.6" + pretty-format "^27.0.6" slash "^3.0.0" stack-utils "^2.0.3" throat "^6.0.1" @@ -10133,21 +10811,21 @@ jest-cli@^26.6.0: prompts "^2.0.1" yargs "^15.4.1" -jest-cli@^27.0.4: - version "27.0.4" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-27.0.4.tgz#491b12c754c0d7c6873b13a66f26b3a80a852910" - integrity sha512-E0T+/i2lxsWAzV7LKYd0SB7HUAvePqaeIh5vX43/G5jXLhv1VzjYzJAGEkTfvxV774ll9cyE2ljcL73PVMEOXQ== +jest-cli@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-27.0.6.tgz#d021e5f4d86d6a212450d4c7b86cb219f1e6864f" + integrity sha512-qUUVlGb9fdKir3RDE+B10ULI+LQrz+MCflEH2UJyoUjoHHCbxDrMxSzjQAPUMsic4SncI62ofYCcAvW6+6rhhg== dependencies: - "@jest/core" "^27.0.4" - "@jest/test-result" "^27.0.2" - "@jest/types" "^27.0.2" + "@jest/core" "^27.0.6" + "@jest/test-result" "^27.0.6" + "@jest/types" "^27.0.6" chalk "^4.0.0" exit "^0.1.2" graceful-fs "^4.2.4" import-local "^3.0.2" - jest-config "^27.0.4" - jest-util "^27.0.2" - jest-validate "^27.0.2" + jest-config "^27.0.6" + jest-util "^27.0.6" + jest-validate "^27.0.6" prompts "^2.0.1" yargs "^16.0.3" @@ -10175,32 +10853,32 @@ jest-config@^26.6.3: micromatch "^4.0.2" pretty-format "^26.6.2" -jest-config@^27.0.4: - version "27.0.4" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-27.0.4.tgz#c4f41378acf40ca77860fb4e213b12109d87b8cf" - integrity sha512-VkQFAHWnPQefdvHU9A+G3H/Z3NrrTKqWpvxgQz3nkUdkDTWeKJE6e//BL+R7z79dXOMVksYgM/z6ndtN0hfChg== +jest-config@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-27.0.6.tgz#119fb10f149ba63d9c50621baa4f1f179500277f" + integrity sha512-JZRR3I1Plr2YxPBhgqRspDE2S5zprbga3swYNrvY3HfQGu7p/GjyLOqwrYad97tX3U3mzT53TPHVmozacfP/3w== dependencies: "@babel/core" "^7.1.0" - "@jest/test-sequencer" "^27.0.4" - "@jest/types" "^27.0.2" - babel-jest "^27.0.2" + "@jest/test-sequencer" "^27.0.6" + "@jest/types" "^27.0.6" + babel-jest "^27.0.6" chalk "^4.0.0" deepmerge "^4.2.2" glob "^7.1.1" graceful-fs "^4.2.4" is-ci "^3.0.0" - jest-circus "^27.0.4" - jest-environment-jsdom "^27.0.3" - jest-environment-node "^27.0.3" - jest-get-type "^27.0.1" - jest-jasmine2 "^27.0.4" - jest-regex-util "^27.0.1" - jest-resolve "^27.0.4" - jest-runner "^27.0.4" - jest-util "^27.0.2" - jest-validate "^27.0.2" + jest-circus "^27.0.6" + jest-environment-jsdom "^27.0.6" + jest-environment-node "^27.0.6" + jest-get-type "^27.0.6" + jest-jasmine2 "^27.0.6" + jest-regex-util "^27.0.6" + jest-resolve "^27.0.6" + jest-runner "^27.0.6" + jest-util "^27.0.6" + jest-validate "^27.0.6" micromatch "^4.0.4" - pretty-format "^27.0.2" + pretty-format "^27.0.6" jest-diff@^25.2.1: version "25.5.0" @@ -10222,15 +10900,15 @@ jest-diff@^26.0.0, jest-diff@^26.6.2: jest-get-type "^26.3.0" pretty-format "^26.6.2" -jest-diff@^27.0.2: - version "27.0.2" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.0.2.tgz#f315b87cee5dc134cf42c2708ab27375cc3f5a7e" - integrity sha512-BFIdRb0LqfV1hBt8crQmw6gGQHVDhM87SpMIZ45FPYKReZYG5er1+5pIn2zKqvrJp6WNox0ylR8571Iwk2Dmgw== +jest-diff@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.0.6.tgz#4a7a19ee6f04ad70e0e3388f35829394a44c7b5e" + integrity sha512-Z1mqgkTCSYaFgwTlP/NUiRzdqgxmmhzHY1Tq17zL94morOHfHu3K4bgSgl+CR4GLhpV8VxkuOYuIWnQ9LnFqmg== dependencies: chalk "^4.0.0" - diff-sequences "^27.0.1" - jest-get-type "^27.0.1" - pretty-format "^27.0.2" + diff-sequences "^27.0.6" + jest-get-type "^27.0.6" + pretty-format "^27.0.6" jest-docblock@^26.0.0: version "26.0.0" @@ -10239,10 +10917,10 @@ jest-docblock@^26.0.0: dependencies: detect-newline "^3.0.0" -jest-docblock@^27.0.1: - version "27.0.1" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-27.0.1.tgz#bd9752819b49fa4fab1a50b73eb58c653b962e8b" - integrity sha512-TA4+21s3oebURc7VgFV4r7ltdIJ5rtBH1E3Tbovcg7AV+oLfD5DcJ2V2vJ5zFA9sL5CFd/d2D6IpsAeSheEdrA== +jest-docblock@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-27.0.6.tgz#cc78266acf7fe693ca462cbbda0ea4e639e4e5f3" + integrity sha512-Fid6dPcjwepTFraz0YxIMCi7dejjJ/KL9FBjPYhBp4Sv1Y9PdhImlKZqYU555BlN4TQKaTc+F2Av1z+anVyGkA== dependencies: detect-newline "^3.0.0" @@ -10257,16 +10935,16 @@ jest-each@^26.6.0, jest-each@^26.6.2: jest-util "^26.6.2" pretty-format "^26.6.2" -jest-each@^27.0.2: - version "27.0.2" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-27.0.2.tgz#865ddb4367476ced752167926b656fa0dcecd8c7" - integrity sha512-OLMBZBZ6JkoXgUenDtseFRWA43wVl2BwmZYIWQws7eS7pqsIvePqj/jJmEnfq91ALk3LNphgwNK/PRFBYi7ITQ== +jest-each@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-27.0.6.tgz#cee117071b04060158dc8d9a66dc50ad40ef453b" + integrity sha512-m6yKcV3bkSWrUIjxkE9OC0mhBZZdhovIW5ergBYirqnkLXkyEn3oUUF/QZgyecA1cF1QFyTE8bRRl8Tfg1pfLA== dependencies: - "@jest/types" "^27.0.2" + "@jest/types" "^27.0.6" chalk "^4.0.0" - jest-get-type "^27.0.1" - jest-util "^27.0.2" - pretty-format "^27.0.2" + jest-get-type "^27.0.6" + jest-util "^27.0.6" + pretty-format "^27.0.6" jest-environment-jsdom@^26.6.2: version "26.6.2" @@ -10281,17 +10959,17 @@ jest-environment-jsdom@^26.6.2: jest-util "^26.6.2" jsdom "^16.4.0" -jest-environment-jsdom@^27.0.3: - version "27.0.3" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-27.0.3.tgz#ed73e913ddc03864eb9f934b5cbabf1b63504e2e" - integrity sha512-5KLmgv1bhiimpSA8oGTnZYk6g4fsNyZiA/6gI2tAZUgrufd7heRUSVh4gRokzZVEj8zlwAQYT0Zs6tuJSW/ECA== +jest-environment-jsdom@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-27.0.6.tgz#f66426c4c9950807d0a9f209c590ce544f73291f" + integrity sha512-FvetXg7lnXL9+78H+xUAsra3IeZRTiegA3An01cWeXBspKXUhAwMM9ycIJ4yBaR0L7HkoMPaZsozCLHh4T8fuw== dependencies: - "@jest/environment" "^27.0.3" - "@jest/fake-timers" "^27.0.3" - "@jest/types" "^27.0.2" + "@jest/environment" "^27.0.6" + "@jest/fake-timers" "^27.0.6" + "@jest/types" "^27.0.6" "@types/node" "*" - jest-mock "^27.0.3" - jest-util "^27.0.2" + jest-mock "^27.0.6" + jest-util "^27.0.6" jsdom "^16.6.0" jest-environment-node@^26.6.2: @@ -10306,17 +10984,17 @@ jest-environment-node@^26.6.2: jest-mock "^26.6.2" jest-util "^26.6.2" -jest-environment-node@^27.0.3: - version "27.0.3" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-27.0.3.tgz#b4acb3679d2552a4215732cab8b0ca7ec4398ee0" - integrity sha512-co2/IVnIFL3cItpFULCvXFg9us4gvWXgs7mutAMPCbFhcqh56QAOdKhNzC2+RycsC/k4mbMj1VF+9F/NzA0ROg== +jest-environment-node@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-27.0.6.tgz#a6699b7ceb52e8d68138b9808b0c404e505f3e07" + integrity sha512-+Vi6yLrPg/qC81jfXx3IBlVnDTI6kmRr08iVa2hFCWmJt4zha0XW7ucQltCAPhSR0FEKEoJ3i+W4E6T0s9is0w== dependencies: - "@jest/environment" "^27.0.3" - "@jest/fake-timers" "^27.0.3" - "@jest/types" "^27.0.2" + "@jest/environment" "^27.0.6" + "@jest/fake-timers" "^27.0.6" + "@jest/types" "^27.0.6" "@types/node" "*" - jest-mock "^27.0.3" - jest-util "^27.0.2" + jest-mock "^27.0.6" + jest-util "^27.0.6" jest-get-type@^25.2.6: version "25.2.6" @@ -10328,10 +11006,10 @@ jest-get-type@^26.3.0: resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0" integrity sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig== -jest-get-type@^27.0.1: - version "27.0.1" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.0.1.tgz#34951e2b08c8801eb28559d7eb732b04bbcf7815" - integrity sha512-9Tggo9zZbu0sHKebiAijyt1NM77Z0uO4tuWOxUCujAiSeXv30Vb5D4xVF4UR4YWNapcftj+PbByU54lKD7/xMg== +jest-get-type@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.0.6.tgz#0eb5c7f755854279ce9b68a9f1a4122f69047cfe" + integrity sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg== jest-haste-map@^26.6.2: version "26.6.2" @@ -10354,21 +11032,21 @@ jest-haste-map@^26.6.2: optionalDependencies: fsevents "^2.1.2" -jest-haste-map@^27.0.2: - version "27.0.2" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-27.0.2.tgz#3f1819400c671237e48b4d4b76a80a0dbed7577f" - integrity sha512-37gYfrYjjhEfk37C4bCMWAC0oPBxDpG0qpl8lYg8BT//wf353YT/fzgA7+Dq0EtM7rPFS3JEcMsxdtDwNMi2cA== +jest-haste-map@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-27.0.6.tgz#4683a4e68f6ecaa74231679dca237279562c8dc7" + integrity sha512-4ldjPXX9h8doB2JlRzg9oAZ2p6/GpQUNAeiYXqcpmrKbP0Qev0wdZlxSMOmz8mPOEnt4h6qIzXFLDi8RScX/1w== dependencies: - "@jest/types" "^27.0.2" + "@jest/types" "^27.0.6" "@types/graceful-fs" "^4.1.2" "@types/node" "*" anymatch "^3.0.3" fb-watchman "^2.0.0" graceful-fs "^4.2.4" - jest-regex-util "^27.0.1" - jest-serializer "^27.0.1" - jest-util "^27.0.2" - jest-worker "^27.0.2" + jest-regex-util "^27.0.6" + jest-serializer "^27.0.6" + jest-util "^27.0.6" + jest-worker "^27.0.6" micromatch "^4.0.4" walker "^1.0.7" optionalDependencies: @@ -10398,28 +11076,28 @@ jest-jasmine2@^26.6.3: pretty-format "^26.6.2" throat "^5.0.0" -jest-jasmine2@^27.0.4: - version "27.0.4" - resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-27.0.4.tgz#c669519ccf4904a485338555e1e66cad36bb0670" - integrity sha512-yj3WrjjquZwkJw+eA4c9yucHw4/+EHndHWSqgHbHGQfT94ihaaQsa009j1a0puU8CNxPDk0c1oAPeOpdJUElwA== +jest-jasmine2@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-27.0.6.tgz#fd509a9ed3d92bd6edb68a779f4738b100655b37" + integrity sha512-cjpH2sBy+t6dvCeKBsHpW41mjHzXgsavaFMp+VWRf0eR4EW8xASk1acqmljFtK2DgyIECMv2yCdY41r2l1+4iA== dependencies: "@babel/traverse" "^7.1.0" - "@jest/environment" "^27.0.3" - "@jest/source-map" "^27.0.1" - "@jest/test-result" "^27.0.2" - "@jest/types" "^27.0.2" + "@jest/environment" "^27.0.6" + "@jest/source-map" "^27.0.6" + "@jest/test-result" "^27.0.6" + "@jest/types" "^27.0.6" "@types/node" "*" chalk "^4.0.0" co "^4.6.0" - expect "^27.0.2" + expect "^27.0.6" is-generator-fn "^2.0.0" - jest-each "^27.0.2" - jest-matcher-utils "^27.0.2" - jest-message-util "^27.0.2" - jest-runtime "^27.0.4" - jest-snapshot "^27.0.4" - jest-util "^27.0.2" - pretty-format "^27.0.2" + jest-each "^27.0.6" + jest-matcher-utils "^27.0.6" + jest-message-util "^27.0.6" + jest-runtime "^27.0.6" + jest-snapshot "^27.0.6" + jest-util "^27.0.6" + pretty-format "^27.0.6" throat "^6.0.1" jest-leak-detector@^26.6.2: @@ -10430,13 +11108,13 @@ jest-leak-detector@^26.6.2: jest-get-type "^26.3.0" pretty-format "^26.6.2" -jest-leak-detector@^27.0.2: - version "27.0.2" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-27.0.2.tgz#ce19aa9dbcf7a72a9d58907a970427506f624e69" - integrity sha512-TZA3DmCOfe8YZFIMD1GxFqXUkQnIoOGQyy4hFCA2mlHtnAaf+FeOMxi0fZmfB41ZL+QbFG6BVaZF5IeFIVy53Q== +jest-leak-detector@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-27.0.6.tgz#545854275f85450d4ef4b8fe305ca2a26450450f" + integrity sha512-2/d6n2wlH5zEcdctX4zdbgX8oM61tb67PQt4Xh8JFAIy6LRKUnX528HulkaG6nD5qDl5vRV1NXejCe1XRCH5gQ== dependencies: - jest-get-type "^27.0.1" - pretty-format "^27.0.2" + jest-get-type "^27.0.6" + pretty-format "^27.0.6" jest-matcher-utils@^26.6.0, jest-matcher-utils@^26.6.2: version "26.6.2" @@ -10448,15 +11126,15 @@ jest-matcher-utils@^26.6.0, jest-matcher-utils@^26.6.2: jest-get-type "^26.3.0" pretty-format "^26.6.2" -jest-matcher-utils@^27.0.2: - version "27.0.2" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-27.0.2.tgz#f14c060605a95a466cdc759acc546c6f4cbfc4f0" - integrity sha512-Qczi5xnTNjkhcIB0Yy75Txt+Ez51xdhOxsukN7awzq2auZQGPHcQrJ623PZj0ECDEMOk2soxWx05EXdXGd1CbA== +jest-matcher-utils@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-27.0.6.tgz#2a8da1e86c620b39459f4352eaa255f0d43e39a9" + integrity sha512-OFgF2VCQx9vdPSYTHWJ9MzFCehs20TsyFi6bIHbk5V1u52zJOnvF0Y/65z3GLZHKRuTgVPY4Z6LVePNahaQ+tA== dependencies: chalk "^4.0.0" - jest-diff "^27.0.2" - jest-get-type "^27.0.1" - pretty-format "^27.0.2" + jest-diff "^27.0.6" + jest-get-type "^27.0.6" + pretty-format "^27.0.6" jest-message-util@^26.3.0: version "26.3.0" @@ -10487,18 +11165,18 @@ jest-message-util@^26.6.0, jest-message-util@^26.6.2: slash "^3.0.0" stack-utils "^2.0.2" -jest-message-util@^27.0.2: - version "27.0.2" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-27.0.2.tgz#181c9b67dff504d8f4ad15cba10d8b80f272048c" - integrity sha512-rTqWUX42ec2LdMkoUPOzrEd1Tcm+R1KfLOmFK+OVNo4MnLsEaxO5zPDb2BbdSmthdM/IfXxOZU60P/WbWF8BTw== +jest-message-util@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-27.0.6.tgz#158bcdf4785706492d164a39abca6a14da5ab8b5" + integrity sha512-rBxIs2XK7rGy+zGxgi+UJKP6WqQ+KrBbD1YMj517HYN3v2BG66t3Xan3FWqYHKZwjdB700KiAJ+iES9a0M+ixw== dependencies: "@babel/code-frame" "^7.12.13" - "@jest/types" "^27.0.2" + "@jest/types" "^27.0.6" "@types/stack-utils" "^2.0.0" chalk "^4.0.0" graceful-fs "^4.2.4" micromatch "^4.0.4" - pretty-format "^27.0.2" + pretty-format "^27.0.6" slash "^3.0.0" stack-utils "^2.0.3" @@ -10510,12 +11188,12 @@ jest-mock@^26.6.2: "@jest/types" "^26.6.2" "@types/node" "*" -jest-mock@^27.0.3: - version "27.0.3" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-27.0.3.tgz#5591844f9192b3335c0dca38e8e45ed297d4d23d" - integrity sha512-O5FZn5XDzEp+Xg28mUz4ovVcdwBBPfAhW9+zJLO0Efn2qNbYcDaJvSlRiQ6BCZUCVOJjALicuJQI9mRFjv1o9Q== +jest-mock@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-27.0.6.tgz#0efdd40851398307ba16778728f6d34d583e3467" + integrity sha512-lzBETUoK8cSxts2NYXSBWT+EJNzmUVtVVwS1sU9GwE1DLCfGsngg+ZVSIe0yd0ZSm+y791esiuo+WSwpXJQ5Bw== dependencies: - "@jest/types" "^27.0.2" + "@jest/types" "^27.0.6" "@types/node" "*" jest-pnp-resolver@^1.2.2: @@ -10528,10 +11206,10 @@ jest-regex-util@^26.0.0: resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-26.0.0.tgz#d25e7184b36e39fd466c3bc41be0971e821fee28" integrity sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A== -jest-regex-util@^27.0.1: - version "27.0.1" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-27.0.1.tgz#69d4b1bf5b690faa3490113c47486ed85dd45b68" - integrity sha512-6nY6QVcpTgEKQy1L41P4pr3aOddneK17kn3HJw6SdwGiKfgCGTvH02hVXL0GU8GEKtPH83eD2DIDgxHXOxVohQ== +jest-regex-util@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-27.0.6.tgz#02e112082935ae949ce5d13b2675db3d8c87d9c5" + integrity sha512-SUhPzBsGa1IKm8hx2F4NfTGGp+r7BXJ4CulsZ1k2kI+mGLG+lxGrs76veN2LF/aUdGosJBzKgXmNCw+BzFqBDQ== jest-resolve-dependencies@^26.6.3: version "26.6.3" @@ -10542,14 +11220,14 @@ jest-resolve-dependencies@^26.6.3: jest-regex-util "^26.0.0" jest-snapshot "^26.6.2" -jest-resolve-dependencies@^27.0.4: - version "27.0.4" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.0.4.tgz#a07a242d70d668afd3fcf7f4270755eebb1fe579" - integrity sha512-F33UPfw1YGWCV2uxJl7wD6TvcQn5IC0LtguwY3r4L7R6H4twpLkp5Q2ZfzRx9A2I3G8feiy0O0sqcn/Qoym71A== +jest-resolve-dependencies@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.0.6.tgz#3e619e0ef391c3ecfcf6ef4056207a3d2be3269f" + integrity sha512-mg9x9DS3BPAREWKCAoyg3QucCr0n6S8HEEsqRCKSPjPcu9HzRILzhdzY3imsLoZWeosEbJZz6TKasveczzpJZA== dependencies: - "@jest/types" "^27.0.2" - jest-regex-util "^27.0.1" - jest-snapshot "^27.0.4" + "@jest/types" "^27.0.6" + jest-regex-util "^27.0.6" + jest-snapshot "^27.0.6" jest-resolve@26.6.0: version "26.6.0" @@ -10579,18 +11257,18 @@ jest-resolve@^26.6.2: resolve "^1.18.1" slash "^3.0.0" -jest-resolve@^27.0.4: - version "27.0.4" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-27.0.4.tgz#8a27bc3f2f00c8ea28f3bc99bbf6f468300a703d" - integrity sha512-BcfyK2i3cG79PDb/6gB6zFeFQlcqLsQjGBqznFCpA0L/3l1L/oOsltdUjs5eISAWA9HS9qtj8v2PSZr/yWxONQ== +jest-resolve@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-27.0.6.tgz#e90f436dd4f8fbf53f58a91c42344864f8e55bff" + integrity sha512-yKmIgw2LgTh7uAJtzv8UFHGF7Dm7XfvOe/LQ3Txv101fLM8cx2h1QVwtSJ51Q/SCxpIiKfVn6G2jYYMDNHZteA== dependencies: - "@jest/types" "^27.0.2" + "@jest/types" "^27.0.6" chalk "^4.0.0" escalade "^3.1.1" graceful-fs "^4.2.4" jest-pnp-resolver "^1.2.2" - jest-util "^27.0.2" - jest-validate "^27.0.2" + jest-util "^27.0.6" + jest-validate "^27.0.6" resolve "^1.20.0" slash "^3.0.0" @@ -10620,31 +11298,31 @@ jest-runner@^26.6.0, jest-runner@^26.6.3: source-map-support "^0.5.6" throat "^5.0.0" -jest-runner@^27.0.4: - version "27.0.4" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-27.0.4.tgz#2787170a9509b792ae129794f6944d27d5d12a4f" - integrity sha512-NfmvSYLCsCJk2AG8Ar2NAh4PhsJJpO+/r+g4bKR5L/5jFzx/indUpnVBdrfDvuqhGLLAvrKJ9FM/Nt8o1dsqxg== +jest-runner@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-27.0.6.tgz#1325f45055539222bbc7256a6976e993ad2f9520" + integrity sha512-W3Bz5qAgaSChuivLn+nKOgjqNxM7O/9JOJoKDCqThPIg2sH/d4A/lzyiaFgnb9V1/w29Le11NpzTJSzga1vyYQ== dependencies: - "@jest/console" "^27.0.2" - "@jest/environment" "^27.0.3" - "@jest/test-result" "^27.0.2" - "@jest/transform" "^27.0.2" - "@jest/types" "^27.0.2" + "@jest/console" "^27.0.6" + "@jest/environment" "^27.0.6" + "@jest/test-result" "^27.0.6" + "@jest/transform" "^27.0.6" + "@jest/types" "^27.0.6" "@types/node" "*" chalk "^4.0.0" emittery "^0.8.1" exit "^0.1.2" graceful-fs "^4.2.4" - jest-docblock "^27.0.1" - jest-environment-jsdom "^27.0.3" - jest-environment-node "^27.0.3" - jest-haste-map "^27.0.2" - jest-leak-detector "^27.0.2" - jest-message-util "^27.0.2" - jest-resolve "^27.0.4" - jest-runtime "^27.0.4" - jest-util "^27.0.2" - jest-worker "^27.0.2" + jest-docblock "^27.0.6" + jest-environment-jsdom "^27.0.6" + jest-environment-node "^27.0.6" + jest-haste-map "^27.0.6" + jest-leak-detector "^27.0.6" + jest-message-util "^27.0.6" + jest-resolve "^27.0.6" + jest-runtime "^27.0.6" + jest-util "^27.0.6" + jest-worker "^27.0.6" source-map-support "^0.5.6" throat "^6.0.1" @@ -10681,19 +11359,19 @@ jest-runtime@^26.6.0, jest-runtime@^26.6.3: strip-bom "^4.0.0" yargs "^15.4.1" -jest-runtime@^27.0.4: - version "27.0.4" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-27.0.4.tgz#2e4a6aa77cac32ac612dfe12768387a8aa15c2f0" - integrity sha512-voJB4xbAjS/qYPboV+e+gmg3jfvHJJY4CagFWBOM9dQKtlaiTjcpD2tWwla84Z7PtXSQPeIpXY0qksA9Dum29A== - dependencies: - "@jest/console" "^27.0.2" - "@jest/environment" "^27.0.3" - "@jest/fake-timers" "^27.0.3" - "@jest/globals" "^27.0.3" - "@jest/source-map" "^27.0.1" - "@jest/test-result" "^27.0.2" - "@jest/transform" "^27.0.2" - "@jest/types" "^27.0.2" +jest-runtime@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-27.0.6.tgz#45877cfcd386afdd4f317def551fc369794c27c9" + integrity sha512-BhvHLRVfKibYyqqEFkybsznKwhrsu7AWx2F3y9G9L95VSIN3/ZZ9vBpm/XCS2bS+BWz3sSeNGLzI3TVQ0uL85Q== + dependencies: + "@jest/console" "^27.0.6" + "@jest/environment" "^27.0.6" + "@jest/fake-timers" "^27.0.6" + "@jest/globals" "^27.0.6" + "@jest/source-map" "^27.0.6" + "@jest/test-result" "^27.0.6" + "@jest/transform" "^27.0.6" + "@jest/types" "^27.0.6" "@types/yargs" "^16.0.0" chalk "^4.0.0" cjs-module-lexer "^1.0.0" @@ -10701,14 +11379,14 @@ jest-runtime@^27.0.4: exit "^0.1.2" glob "^7.1.3" graceful-fs "^4.2.4" - jest-haste-map "^27.0.2" - jest-message-util "^27.0.2" - jest-mock "^27.0.3" - jest-regex-util "^27.0.1" - jest-resolve "^27.0.4" - jest-snapshot "^27.0.4" - jest-util "^27.0.2" - jest-validate "^27.0.2" + jest-haste-map "^27.0.6" + jest-message-util "^27.0.6" + jest-mock "^27.0.6" + jest-regex-util "^27.0.6" + jest-resolve "^27.0.6" + jest-snapshot "^27.0.6" + jest-util "^27.0.6" + jest-validate "^27.0.6" slash "^3.0.0" strip-bom "^4.0.0" yargs "^16.0.3" @@ -10721,10 +11399,10 @@ jest-serializer@^26.6.2: "@types/node" "*" graceful-fs "^4.2.4" -jest-serializer@^27.0.1: - version "27.0.1" - resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-27.0.1.tgz#2464d04dcc33fb71dc80b7c82e3c5e8a08cb1020" - integrity sha512-svy//5IH6bfQvAbkAEg1s7xhhgHTtXu0li0I2fdKHDsLP2P2MOiscPQIENQep8oU2g2B3jqLyxKKzotZOz4CwQ== +jest-serializer@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-27.0.6.tgz#93a6c74e0132b81a2d54623251c46c498bb5bec1" + integrity sha512-PtGdVK9EGC7dsaziskfqaAPib6wTViY3G8E5wz9tLVPhHyiDNTZn/xjZ4khAw+09QkoOVpn7vF5nPSN6dtBexA== dependencies: "@types/node" "*" graceful-fs "^4.2.4" @@ -10751,10 +11429,10 @@ jest-snapshot@^26.6.0, jest-snapshot@^26.6.2: pretty-format "^26.6.2" semver "^7.3.2" -jest-snapshot@^27.0.4: - version "27.0.4" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-27.0.4.tgz#2b96e22ca90382b3e93bd0aae2ce4c78bf51fb5b" - integrity sha512-hnjrvpKGdSMvKfbHyaG5Kul7pDJGZvjVy0CKpzhu28MmAssDXS6GpynhXzgst1wBQoKD8c9b2VS2a5yhDLQRCA== +jest-snapshot@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-27.0.6.tgz#f4e6b208bd2e92e888344d78f0f650bcff05a4bf" + integrity sha512-NTHaz8He+ATUagUgE7C/UtFcRoHqR2Gc+KDfhQIyx+VFgwbeEMjeP+ILpUTLosZn/ZtbNdCF5LkVnN/l+V751A== dependencies: "@babel/core" "^7.7.2" "@babel/generator" "^7.7.2" @@ -10762,23 +11440,23 @@ jest-snapshot@^27.0.4: "@babel/plugin-syntax-typescript" "^7.7.2" "@babel/traverse" "^7.7.2" "@babel/types" "^7.0.0" - "@jest/transform" "^27.0.2" - "@jest/types" "^27.0.2" + "@jest/transform" "^27.0.6" + "@jest/types" "^27.0.6" "@types/babel__traverse" "^7.0.4" "@types/prettier" "^2.1.5" babel-preset-current-node-syntax "^1.0.0" chalk "^4.0.0" - expect "^27.0.2" + expect "^27.0.6" graceful-fs "^4.2.4" - jest-diff "^27.0.2" - jest-get-type "^27.0.1" - jest-haste-map "^27.0.2" - jest-matcher-utils "^27.0.2" - jest-message-util "^27.0.2" - jest-resolve "^27.0.4" - jest-util "^27.0.2" + jest-diff "^27.0.6" + jest-get-type "^27.0.6" + jest-haste-map "^27.0.6" + jest-matcher-utils "^27.0.6" + jest-message-util "^27.0.6" + jest-resolve "^27.0.6" + jest-util "^27.0.6" natural-compare "^1.4.0" - pretty-format "^27.0.2" + pretty-format "^27.0.6" semver "^7.3.2" jest-util@^26.3.0: @@ -10805,7 +11483,7 @@ jest-util@^26.6.0, jest-util@^26.6.2: is-ci "^2.0.0" micromatch "^4.0.2" -jest-util@^27.0.0, jest-util@^27.0.2: +jest-util@^27.0.0: version "27.0.2" resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-27.0.2.tgz#fc2c7ace3c75ae561cf1e5fdb643bf685a5be7c7" integrity sha512-1d9uH3a00OFGGWSibpNYr+jojZ6AckOMCXV2Z4K3YXDnzpkAaXQyIpY14FOJPiUmil7CD+A6Qs+lnnh6ctRbIA== @@ -10817,6 +11495,18 @@ jest-util@^27.0.0, jest-util@^27.0.2: is-ci "^3.0.0" picomatch "^2.2.3" +jest-util@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-27.0.6.tgz#e8e04eec159de2f4d5f57f795df9cdc091e50297" + integrity sha512-1JjlaIh+C65H/F7D11GNkGDDZtDfMEM8EBXsvd+l/cxtgQ6QhxuloOaiayt89DxUvDarbVhqI98HhgrM1yliFQ== + dependencies: + "@jest/types" "^27.0.6" + "@types/node" "*" + chalk "^4.0.0" + graceful-fs "^4.2.4" + is-ci "^3.0.0" + picomatch "^2.2.3" + jest-validate@^26.6.2: version "26.6.2" resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-26.6.2.tgz#23d380971587150467342911c3d7b4ac57ab20ec" @@ -10829,17 +11519,17 @@ jest-validate@^26.6.2: leven "^3.1.0" pretty-format "^26.6.2" -jest-validate@^27.0.2: - version "27.0.2" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-27.0.2.tgz#7fe2c100089449cd5cbb47a5b0b6cb7cda5beee5" - integrity sha512-UgBF6/oVu1ofd1XbaSotXKihi8nZhg0Prm8twQ9uCuAfo59vlxCXMPI/RKmrZEVgi3Nd9dS0I8A0wzWU48pOvg== +jest-validate@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-27.0.6.tgz#930a527c7a951927df269f43b2dc23262457e2a6" + integrity sha512-yhZZOaMH3Zg6DC83n60pLmdU1DQE46DW+KLozPiPbSbPhlXXaiUTDlhHQhHFpaqIFRrInko1FHXjTRpjWRuWfA== dependencies: - "@jest/types" "^27.0.2" + "@jest/types" "^27.0.6" camelcase "^6.2.0" chalk "^4.0.0" - jest-get-type "^27.0.1" + jest-get-type "^27.0.6" leven "^3.1.0" - pretty-format "^27.0.2" + pretty-format "^27.0.6" jest-watch-typeahead@0.6.1: version "0.6.1" @@ -10880,17 +11570,17 @@ jest-watcher@^26.6.2: jest-util "^26.6.2" string-length "^4.0.1" -jest-watcher@^27.0.2: - version "27.0.2" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-27.0.2.tgz#dab5f9443e2d7f52597186480731a8c6335c5deb" - integrity sha512-8nuf0PGuTxWj/Ytfw5fyvNn/R80iXY8QhIT0ofyImUvdnoaBdT6kob0GmhXR+wO+ALYVnh8bQxN4Tjfez0JgkA== +jest-watcher@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-27.0.6.tgz#89526f7f9edf1eac4e4be989bcb6dec6b8878d9c" + integrity sha512-/jIoKBhAP00/iMGnTwUBLgvxkn7vsOweDrOTSPzc7X9uOyUtJIDthQBTI1EXz90bdkrxorUZVhJwiB69gcHtYQ== dependencies: - "@jest/test-result" "^27.0.2" - "@jest/types" "^27.0.2" + "@jest/test-result" "^27.0.6" + "@jest/types" "^27.0.6" "@types/node" "*" ansi-escapes "^4.2.1" chalk "^4.0.0" - jest-util "^27.0.2" + jest-util "^27.0.6" string-length "^4.0.1" jest-worker@^24.9.0: @@ -10910,10 +11600,10 @@ jest-worker@^26.5.0, jest-worker@^26.6.2: merge-stream "^2.0.0" supports-color "^7.0.0" -jest-worker@^27.0.2: - version "27.0.2" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.0.2.tgz#4ebeb56cef48b3e7514552f80d0d80c0129f0b05" - integrity sha512-EoBdilOTTyOgmHXtw/cPc+ZrCA0KJMrkXzkrPGNwLmnvvlN1nj7MPrxpT7m+otSv2e1TLaVffzDnE/LB14zJMg== +jest-worker@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.0.6.tgz#a5fdb1e14ad34eb228cfe162d9f729cdbfa28aed" + integrity sha512-qupxcj/dRuA3xHPMUd40gr2EaAurFbkwzOh7wfPaeE9id7hyjURRQoqNfHifHK3XjJU6YJJUQKILGUnwGPEOCA== dependencies: "@types/node" "*" merge-stream "^2.0.0" @@ -10928,14 +11618,14 @@ jest@26.6.0: import-local "^3.0.2" jest-cli "^26.6.0" -jest@27.0.4: - version "27.0.4" - resolved "https://registry.yarnpkg.com/jest/-/jest-27.0.4.tgz#91d4d564b36bcf93b98dac1ab19f07089e670f53" - integrity sha512-Px1iKFooXgGSkk1H8dJxxBIrM3tsc5SIuI4kfKYK2J+4rvCvPGr/cXktxh0e9zIPQ5g09kOMNfHQEmusBUf/ZA== +jest@27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/jest/-/jest-27.0.6.tgz#10517b2a628f0409087fbf473db44777d7a04505" + integrity sha512-EjV8aETrsD0wHl7CKMibKwQNQc3gIRBXlTikBmmHUeVMKaPFxdcUIBfoDqTSXDoGJIivAYGqCWVlzCSaVjPQsA== dependencies: - "@jest/core" "^27.0.4" + "@jest/core" "^27.0.6" import-local "^3.0.2" - jest-cli "^27.0.4" + jest-cli "^27.0.6" joi@^17.3.0: version "17.3.0" @@ -12379,11 +13069,6 @@ once@^1.3.0, once@^1.3.1, once@^1.3.2, once@^1.4.0: dependencies: wrappy "1" -onetime@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" - integrity sha1-ofeDj4MUxRbwXs78vEzP4EtO14k= - onetime@^5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5" @@ -13573,10 +14258,10 @@ prettier-linter-helpers@^1.0.0: dependencies: fast-diff "^1.1.2" -prettier@2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.3.1.tgz#76903c3f8c4449bc9ac597acefa24dc5ad4cbea6" - integrity sha512-p+vNbgpLjif/+D+DwAZAbndtRrR0md0MwfmOVN9N+2RgyACMT+7tfaRnT+WDPkqnuVwleyuBIG2XBxKDme3hPA== +prettier@2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.3.2.tgz#ef280a05ec253712e486233db5c6f23441e7342d" + integrity sha512-lnJzDfJ66zkMy58OL5/NY5zp70S7Nz6KqcKkXYzn2tMVrNxvbqaBpg7H3qHaLxCJ5lNMsGuM8+ohS7cZrthdLQ== pretty-bytes@^5.3.0: version "5.4.1" @@ -13626,6 +14311,16 @@ pretty-format@^27.0.2: ansi-styles "^5.0.0" react-is "^17.0.1" +pretty-format@^27.0.6: + version "27.0.6" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.0.6.tgz#ab770c47b2c6f893a21aefc57b75da63ef49a11f" + integrity sha512-8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ== + dependencies: + "@jest/types" "^27.0.6" + ansi-regex "^5.0.0" + ansi-styles "^5.0.0" + react-is "^17.0.1" + private@^0.1.8: version "0.1.8" resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" @@ -13760,6 +14455,21 @@ punycode@^2.1.0, punycode@^2.1.1: resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== +purify-ts-extra-codec@0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/purify-ts-extra-codec/-/purify-ts-extra-codec-0.6.0.tgz#4d06756cbf4d9def5a44bb192f18178726400547" + integrity sha512-wEIIhBJ9+OfTsGEXPq2SA96NbdRPWNTtjbZB4HSy8VNlfF7cxeDrQ3UBpNGSXTI8AskY4IcUtCgX/V5SwJzKkw== + dependencies: + date-fns "^2.14.0" + warning "^4.0.3" + +purify-ts@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/purify-ts/-/purify-ts-1.0.0.tgz#5a9425ea7c0a17d428c5eec7bf8f8fc4f181ed7f" + integrity sha512-jqU2xu3K1luBzfw/t/7QHy4dqp0oiui7KMkBNRVqGk6BVf6stUo4agagKGlk436vQwmMQh0zJvxeAstXmlXvIw== + dependencies: + "@types/json-schema" "7.0.8" + q@^1.1.2: version "1.5.1" resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" @@ -14569,14 +15279,6 @@ resolve@^2.0.0-next.3: is-core-module "^2.2.0" path-parse "^1.0.6" -restore-cursor@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" - integrity sha1-NGYfRohjJ/7SmRR5FSJS35LapUE= - dependencies: - exit-hook "^1.0.0" - onetime "^1.0.0" - restore-cursor@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" @@ -14761,6 +15463,16 @@ safe-regex@^1.1.0: resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== +sanctuary-show@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/sanctuary-show/-/sanctuary-show-2.0.0.tgz#2326b4744f4b0f993f18ca56a29f68a50f514637" + integrity sha512-REj4ZiioUXnDLj6EpJ9HcYDIEGaEexmB9Fg5o6InZR9f0x5PfnnC21QeU9SZ9E7G8zXSZPNjy8VRUK4safbesw== + +sanctuary-type-identifiers@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/sanctuary-type-identifiers/-/sanctuary-type-identifiers-3.0.0.tgz#51cb488d2ed9f194946a64ffe2b41dd49a348c0b" + integrity sha512-YFXYcG0Ura1dSPd/1xLYtE2XAWUEsBHhMTZvYBOvwT8MeFQwdUOCMm2DC+r94z6H93FVq0qxDac8/D7QpJj6Mg== + sane@^4.0.3: version "4.1.0" resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded" @@ -15627,10 +16339,10 @@ styled-components@5.3.0: shallowequal "^1.1.0" supports-color "^5.5.0" -styled-jsx@3.4.4: - version "3.4.4" - resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-3.4.4.tgz#d5012cac2ed22be0b72e28932f3eece8d83b695c" - integrity sha512-PkZi/col7R4cpwSPY2n4JjpcTYfBgaWg/1mt0+1E/pmkXL+Pik5Kr/snYMWj90+N3kDw+BqfnJOogdRw4621GQ== +styled-jsx@3.4.5: + version "3.4.5" + resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-3.4.5.tgz#5aee4902b1f0eb85d1018bded4939251e4323e6f" + integrity sha512-I+IET7OO4MKI710Ez3FesauZkqRIpZFQuePru3+BiGbzksJiWaB1Jew4T/+3vHoMJ1RsTxlO1T+IGOMLaoGcrQ== dependencies: "@babel/helper-module-imports" "7.12.5" "@babel/types" "7.8.3" @@ -16069,10 +16781,10 @@ tryer@^1.0.1: resolved "https://registry.yarnpkg.com/tryer/-/tryer-1.0.1.tgz#f2c85406800b9b0f74c9f7465b81eaad241252f8" integrity sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA== -ts-jest@27.0.3: - version "27.0.3" - resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-27.0.3.tgz#808492f022296cde19390bb6ad627c8126bf93f8" - integrity sha512-U5rdMjnYam9Ucw+h0QvtNDbc5+88nxt7tbIvqaZUhFrfG4+SkWhMXjejCLVGcpILTPuV+H3W/GZDZrnZFpPeXw== +ts-jest@27.0.4: + version "27.0.4" + resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-27.0.4.tgz#df49683535831560ccb58f94c023d831b1b80df0" + integrity sha512-c4E1ECy9Xz2WGfTMyHbSaArlIva7Wi2p43QOMmCqjSSjHP06KXv+aT+eSY+yZMuqsMi3k7pyGsGj2q5oSl5WfQ== dependencies: bs-logger "0.x" buffer-from "1.x" @@ -16085,10 +16797,10 @@ ts-jest@27.0.3: semver "7.x" yargs-parser "20.x" -ts-node@10.0.0: - version "10.0.0" - resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.0.0.tgz#05f10b9a716b0b624129ad44f0ea05dac84ba3be" - integrity sha512-ROWeOIUvfFbPZkoDis0L/55Fk+6gFQNZwwKPLinacRl6tsxstTF1DbAcLKkovwnpKMVvOMHP1TIbnwXwtLg1gg== +ts-node@10.1.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.1.0.tgz#e656d8ad3b61106938a867f69c39a8ba6efc966e" + integrity sha512-6szn3+J9WyG2hE+5W8e0ruZrzyk1uFLYye6IGMBadnOzDh8aP7t8CbFpsfCiEx2+wMixAhjFt7lOZC4+l+WbEA== dependencies: "@tsconfig/node10" "^1.0.7" "@tsconfig/node12" "^1.0.7" @@ -16231,10 +16943,10 @@ typedarray@^0.0.6: resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= -typescript@4.3.2: - version "4.3.2" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.3.2.tgz#399ab18aac45802d6f2498de5054fcbbe716a805" - integrity sha512-zZ4hShnmnoVnAHpVHWpTcxdv7dWP60S2FsydQLV8V5PbS3FifjWFFRiHSWpDJahly88PRyV5teTSLoq4eG7mKw== +typescript@4.3.5: + version "4.3.5" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.3.5.tgz#4d1c37cc16e893973c45a06886b7113234f119f4" + integrity sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA== ua-parser-js@^0.7.18: version "0.7.21" @@ -16502,6 +17214,15 @@ v8-to-istanbul@^7.0.0: convert-source-map "^1.6.0" source-map "^0.7.3" +v8-to-istanbul@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-8.0.0.tgz#4229f2a99e367f3f018fa1d5c2b8ec684667c69c" + integrity sha512-LkmXi8UUNxnCC+JlH7/fsfsKr5AU110l+SYGJimWNkWhxbN5EyeOtm1MJ0hhvqMMOhGwBj1Fp70Yv9i+hX0QAg== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.1" + convert-source-map "^1.6.0" + source-map "^0.7.3" + validate-npm-package-license@^3.0.1: version "3.0.4" resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" @@ -16631,7 +17352,7 @@ warning@^3.0.0: dependencies: loose-envify "^1.0.0" -warning@^4.0.1, warning@^4.0.2: +warning@^4.0.1, warning@^4.0.2, warning@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3" integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w== From e1605cfa3bba303d05449341295c8fae2427544a Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Mon, 16 Aug 2021 10:43:38 +0200 Subject: [PATCH 02/50] Remove old files --- package.json | 12 +-- public/index.html | 2 +- public/manifest.json | 4 +- src/app-config.ts | 4 +- src/compositionRoot.ts | 15 --- src/data/Dhis2DataValueRepository.ts | 23 ----- src/domain/entities/Base.ts | 9 -- src/domain/entities/DataValue.ts | 6 -- src/domain/entities/config.ts | 1 - .../repositories/DataValueRepository.ts | 5 - src/domain/usecases/GetDataValuesUseCase.ts | 10 -- src/models/Example.ts | 16 --- src/models/User.ts | 52 ---------- src/webapp/components/app/App.css | 13 --- src/webapp/components/app/App.tsx | 97 ------------------- src/webapp/components/app/AppConfig.ts | 21 ---- .../app/themes/dhis2-legacy.theme.ts | 63 ------------ .../components/app/themes/dhis2.theme.ts | 91 ----------------- src/webapp/pages/app/App.tsx | 2 +- src/webapp/pages/example/Example.tsx | 90 ----------------- src/webapp/pages/landing/Landing.tsx | 60 ------------ src/webapp/pages/landing/MenuCard.tsx | 86 ---------------- src/webapp/pages/root/RootPage.tsx | 19 ---- 23 files changed, 12 insertions(+), 689 deletions(-) delete mode 100644 src/compositionRoot.ts delete mode 100644 src/data/Dhis2DataValueRepository.ts delete mode 100644 src/domain/entities/Base.ts delete mode 100644 src/domain/entities/DataValue.ts delete mode 100644 src/domain/entities/config.ts delete mode 100644 src/domain/repositories/DataValueRepository.ts delete mode 100644 src/domain/usecases/GetDataValuesUseCase.ts delete mode 100644 src/models/Example.ts delete mode 100644 src/models/User.ts delete mode 100644 src/webapp/components/app/App.css delete mode 100644 src/webapp/components/app/App.tsx delete mode 100644 src/webapp/components/app/AppConfig.ts delete mode 100644 src/webapp/components/app/themes/dhis2-legacy.theme.ts delete mode 100644 src/webapp/components/app/themes/dhis2.theme.ts delete mode 100644 src/webapp/pages/example/Example.tsx delete mode 100644 src/webapp/pages/landing/Landing.tsx delete mode 100644 src/webapp/pages/landing/MenuCard.tsx delete mode 100644 src/webapp/pages/root/RootPage.tsx diff --git a/package.json b/package.json index 1608b46..90b6ea6 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,13 @@ { - "name": "dhis2-app-skeleton", - "description": "DHIS2 Skeleton App", + "name": "sharing-settings-app", + "description": "DHIS2 Sharing Settings App", "version": "0.0.1", "license": "GPL-3.0", "author": "EyeSeeTea team", "homepage": ".", "repository": { "type": "git", - "url": "git+https://github.com/eyeseetea/dhis2-app-skeleton.git" + "url": "git+https://github.com/eyeseetea/sharing-settings-app.git" }, "dependencies": { "@dhis2/app-runtime": "2.8.0", @@ -94,7 +94,7 @@ "eject": "react-scripts eject", "prettify": "prettier \"./**/*.{js,jsx,json,css,ts,tsx}\" --write", "extract-pot": "yarn d2-i18n-extract -p src/ -o i18n/", - "localize": "yarn update-po && d2-i18n-generate -n dhis2-skeleton-app -p ./i18n/ -o ./src/locales/", + "localize": "yarn update-po && d2-i18n-generate -n sharing-settings-app -p ./i18n/ -o ./src/locales/", "update-po": "yarn extract-pot && for pofile in i18n/*.po; do msgmerge --backup=off -U $pofile i18n/en.pot; done", "manifest": "d2-manifest package.json build/manifest.webapp", "cy:verify": "cypress verify", @@ -104,8 +104,8 @@ "script-example": "npx ts-node -P tsconfig-cli.json src/scripts/example.ts" }, "manifest.webapp": { - "name": "DHIS2 Skeleton App", - "description": "DHIS2 Skeleton App", + "name": "Sharing Settings App", + "description": "DHIS2 Sharing Settings App", "icons": { "48": "icon.png" }, diff --git a/public/index.html b/public/index.html index 2c28c13..50a31b8 100644 --- a/public/index.html +++ b/public/index.html @@ -26,7 +26,7 @@ work correctly both with client-side routing and a non-root public URL. Learn how to configure a non-root public URL by running `npm run build`. --> - DHIS2 Skeleton App + Sharing Settings App diff --git a/public/manifest.json b/public/manifest.json index e4bf3f0..bf713c3 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -1,6 +1,6 @@ { - "short_name": "DHIS2 Skeleton App", - "name": "DHIS2 Skeleton App", + "short_name": "Sharing Settings App", + "name": "Sharing Settings App", "icons": [ { "src": "favicon.ico", diff --git a/src/app-config.ts b/src/app-config.ts index c228dbd..d10d00b 100644 --- a/src/app-config.ts +++ b/src/app-config.ts @@ -1,5 +1,5 @@ export const appConfig: AppConfig = { - appKey: "dhis2-app-skeleton", + appKey: "sharing-settings-app", appearance: { showShareButton: true, }, @@ -8,7 +8,7 @@ export const appConfig: AppConfig = { createIssue: true, sendToDhis2UserGroups: ["Administrators"], issues: { - repository: "EyeSeeTea/dhis2-app-skeleton", + repository: "EyeSeeTea/sharing-settings-app", title: "[User feedback] {title}", body: "## dhis2\n\nUsername: {username}\n\n{body}", }, diff --git a/src/compositionRoot.ts b/src/compositionRoot.ts deleted file mode 100644 index 2499fb9..0000000 --- a/src/compositionRoot.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { D2Api } from "./types/d2-api"; -import { Dhis2DataValueRepository } from "./data/Dhis2DataValueRepository"; -import { GetDataValuesUseCase } from "./domain/usecases/GetDataValuesUseCase"; - -export function getCompositionRoot(api: D2Api) { - const dataValueRepository = new Dhis2DataValueRepository(api); - - return { - dataValues: { - get: new GetDataValuesUseCase(dataValueRepository), - }, - }; -} - -export type CompositionRoot = ReturnType; diff --git a/src/data/Dhis2DataValueRepository.ts b/src/data/Dhis2DataValueRepository.ts deleted file mode 100644 index 613ff3a..0000000 --- a/src/data/Dhis2DataValueRepository.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { DataValue } from "../domain/entities/DataValue"; -import { DataValueRepository } from "../domain/repositories/DataValueRepository"; -import { D2Api } from "../types/d2-api"; - -export class Dhis2DataValueRepository implements DataValueRepository { - constructor(private api: D2Api) {} - - async get(): Promise { - const response = await this.api.dataValues - .getSet({ - period: ["201905"], - dataSet: ["eZDhcZi6FLP"], - orgUnit: ["xO9WbCvFq5k"], - }) - .getData(); - - const dataValues: Array = response.dataValues.map( - (dv): DataValue => ({ dataElement: { id: dv.dataElement }, value: dv.value }) - ); - - return dataValues; - } -} diff --git a/src/domain/entities/Base.ts b/src/domain/entities/Base.ts deleted file mode 100644 index 8b95ca2..0000000 --- a/src/domain/entities/Base.ts +++ /dev/null @@ -1,9 +0,0 @@ -export type Id = string; - -export interface Ref { - id: Id; -} - -export interface NamedRef extends Ref { - name: string; -} diff --git a/src/domain/entities/DataValue.ts b/src/domain/entities/DataValue.ts deleted file mode 100644 index 7beb12d..0000000 --- a/src/domain/entities/DataValue.ts +++ /dev/null @@ -1,6 +0,0 @@ -import { Ref } from "./Base"; - -export interface DataValue { - dataElement: Ref; - value: string; -} diff --git a/src/domain/entities/config.ts b/src/domain/entities/config.ts deleted file mode 100644 index 5728ccd..0000000 --- a/src/domain/entities/config.ts +++ /dev/null @@ -1 +0,0 @@ -export interface Config {} diff --git a/src/domain/repositories/DataValueRepository.ts b/src/domain/repositories/DataValueRepository.ts deleted file mode 100644 index e4ea25e..0000000 --- a/src/domain/repositories/DataValueRepository.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { DataValue } from "../entities/DataValue"; - -export interface DataValueRepository { - get(): Promise; -} diff --git a/src/domain/usecases/GetDataValuesUseCase.ts b/src/domain/usecases/GetDataValuesUseCase.ts deleted file mode 100644 index 74b2991..0000000 --- a/src/domain/usecases/GetDataValuesUseCase.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { DataValueRepository } from "../repositories/DataValueRepository"; -import { DataValue } from "../entities/DataValue"; - -export class GetDataValuesUseCase { - constructor(private dataValueRepository: DataValueRepository) {} - - execute(): Promise { - return this.dataValueRepository.get(); - } -} diff --git a/src/models/Example.ts b/src/models/Example.ts deleted file mode 100644 index 08520a1..0000000 --- a/src/models/Example.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { D2Api } from "../types/d2-api"; - -export class ExampleModel { - constructor(private api: D2Api) {} - - async getDataSets() { - const { api } = this; - const { objects } = await api.models.dataSets - .get({ - fields: { id: true, categoryCombo: { name: true } }, - pageSize: 5, - }) - .getData(); - return objects; - } -} diff --git a/src/models/User.ts b/src/models/User.ts deleted file mode 100644 index ec40350..0000000 --- a/src/models/User.ts +++ /dev/null @@ -1,52 +0,0 @@ -import _ from "lodash"; -import { D2Api, Id } from "../types/d2-api"; - -export interface UserData { - id: Id; - displayName: string; - username: string; - organisationUnits: OrganisationUnit[]; - userRoles: UserRole[]; -} - -interface UserRole { - id: Id; - name: string; -} - -interface OrganisationUnit { - id: string; - path: string; - level: number; -} - -export class User { - constructor(private data: UserData) {} - - getOrgUnits(): OrganisationUnit[] { - return this.data.organisationUnits; - } - - static async getCurrent(api: D2Api): Promise { - const currentUser = await api.currentUser - .get({ - fields: { - id: true, - displayName: true, - organisationUnits: { id: true, path: true, level: true }, - userCredentials: { - username: true, - userRoles: { id: true, name: true }, - }, - }, - }) - .getData(); - - const data: UserData = { - ..._.pick(currentUser, ["id", "displayName", "organisationUnits"]), - ...currentUser.userCredentials, - }; - - return new User(data); - } -} diff --git a/src/webapp/components/app/App.css b/src/webapp/components/app/App.css deleted file mode 100644 index 4f0ed8f..0000000 --- a/src/webapp/components/app/App.css +++ /dev/null @@ -1,13 +0,0 @@ -html { - background-color: #f3f3f3; - font-family: Roboto, Arial, sans-serif; - overflow-y: scroll; -} - -body { - margin: 0; -} - -li { - line-height: 1.75; -} diff --git a/src/webapp/components/app/App.tsx b/src/webapp/components/app/App.tsx deleted file mode 100644 index 3f837b9..0000000 --- a/src/webapp/components/app/App.tsx +++ /dev/null @@ -1,97 +0,0 @@ -import { useConfig } from "@dhis2/app-runtime"; -import { HeaderBar } from "@dhis2/ui"; -import { LinearProgress } from "@material-ui/core"; -import { MuiThemeProvider } from "@material-ui/core/styles"; -import { SnackbarProvider } from "@eyeseetea/d2-ui-components"; -import _ from "lodash"; -//@ts-ignore -import OldMuiThemeProvider from "material-ui/styles/MuiThemeProvider"; -import React, { useEffect, useState } from "react"; -import { appConfig } from "../../../app-config"; -import { getCompositionRoot } from "../../../compositionRoot"; -import { User } from "../../../models/User"; -import { D2Api } from "../../../types/d2-api"; -import { AppContext, AppContextState } from "../../contexts/app-context"; -import Root from "../../pages/root/RootPage"; -import Share from "../share/Share"; -import "./App.css"; -import muiThemeLegacy from "./themes/dhis2-legacy.theme"; -import { muiTheme } from "./themes/dhis2.theme"; -import { AppConfig } from "./AppConfig"; - -const App = ({ api, d2 }: { api: D2Api; d2: D2 }) => { - const { baseUrl } = useConfig(); - const [showShareButton, setShowShareButton] = useState(false); - const [loading, setLoading] = useState(true); - const [appContext, setAppContext] = useState(null); - - useEffect(() => { - async function setup() { - const compositionRoot = getCompositionRoot(api); - const [config, currentUser] = await Promise.all([{}, User.getCurrent(api)]); - const appContext: AppContextState = { d2, api, config, currentUser, compositionRoot }; - const isShareButtonVisible = _(appConfig).get("appearance.showShareButton") || false; - - setAppContext(appContext); - setShowShareButton(isShareButtonVisible); - initFeedbackTool(d2, appConfig); - setLoading(false); - } - setup(); - }, [d2, api]); - - if (loading) { - return ( -
-

Connecting to {baseUrl}...

- -
- ); - } - - return ( - - - - - -
- - - -
- - -
-
-
- ); -}; - -type D2 = object; - -declare global { - interface Window { - $: { - feedbackDhis2(d2: D2, appKey: string, feedbackOptions: object): void; - }; - } -} - -function initFeedbackTool(d2: D2, appConfig: AppConfig): void { - const appKey = _(appConfig).get("appKey"); - - if (appConfig && appConfig.feedback) { - const feedbackOptions = { - ...appConfig.feedback, - i18nPath: "feedback-tool/i18n", - }; - window.$.feedbackDhis2(d2, appKey, feedbackOptions); - } -} - -const styles = { - loadWrapper: { margin: 20 }, -}; - -export default React.memo(App); diff --git a/src/webapp/components/app/AppConfig.ts b/src/webapp/components/app/AppConfig.ts deleted file mode 100644 index e861158..0000000 --- a/src/webapp/components/app/AppConfig.ts +++ /dev/null @@ -1,21 +0,0 @@ -export interface AppConfig { - appKey: string; - appearance: { - showShareButton: boolean; - }; - feedback?: { - token: string[]; - createIssue: boolean; - sendToDhis2UserGroups: string[]; - issues: { - repository: string; - title: string; - body: string; - }; - snapshots: { - repository: string; - branch: string; - }; - feedbackOptions: object; - }; -} diff --git a/src/webapp/components/app/themes/dhis2-legacy.theme.ts b/src/webapp/components/app/themes/dhis2-legacy.theme.ts deleted file mode 100644 index 7d4ed0d..0000000 --- a/src/webapp/components/app/themes/dhis2-legacy.theme.ts +++ /dev/null @@ -1,63 +0,0 @@ -import { - cyan100, - cyan500, - cyan700, - darkBlack, - grey100, - grey400, - grey500, - orange500, - white, -} from "material-ui/styles/colors"; -import { fade } from "material-ui/utils/colorManipulator"; -import Spacing from "material-ui/styles/spacing"; -import getMuiTheme from "material-ui/styles/getMuiTheme"; -import { MuiTheme } from "material-ui/styles"; - -const theme = { - spacing: Spacing, - fontFamily: "Roboto, sans-serif", - palette: { - primary1Color: cyan500, - primary2Color: cyan700, - primary3Color: cyan100, - accent1Color: orange500, - accent2Color: grey100, - accent3Color: grey500, - textColor: darkBlack, - alternateTextColor: white, - canvasColor: white, - borderColor: grey400, - disabledColor: fade(darkBlack, 0.3), - }, -}; - -function createAppTheme(style: MuiTheme) { - return { - sideBar: { - backgroundColor: "#F3F3F3", - backgroundColorItem: "transparent", - backgroundColorItemActive: style.palette?.accent2Color, - textColor: style.palette?.textColor, - textColorActive: "#276696", - borderStyle: "1px solid #e1e1e1", - }, - forms: { - minWidth: 350, - maxWidth: 900, - }, - formFields: { - secondaryColor: style.palette?.accent3Color, - }, - tabs: { - backgroundColor: "#E4E4E4", - inkBarColor: style.palette?.accent1Color, - textColor: "#666666", - }, - }; -} - -const muiTheme = getMuiTheme(theme); -const appTheme = createAppTheme(muiTheme); - -export default Object.assign({}, muiTheme, appTheme); diff --git a/src/webapp/components/app/themes/dhis2.theme.ts b/src/webapp/components/app/themes/dhis2.theme.ts deleted file mode 100644 index a0cdade..0000000 --- a/src/webapp/components/app/themes/dhis2.theme.ts +++ /dev/null @@ -1,91 +0,0 @@ -import { createMuiTheme } from "@material-ui/core/styles"; - -// Color palette from https://projects.invisionapp.com/share/A7LT4TJYETS#/screens/302550228_Color -export const colors = { - accentPrimary: "#1976d2", - accentPrimaryDark: "#004BA0", - accentPrimaryLight: "#63A4FF", - accentPrimaryLightest: "#EAF4FF", - - accentSecondary: "#fb8c00", - accentSecondaryLight: "#f57c00", - accentSecondaryDark: "#ff9800", - - black: "#000000", - greyBlack: "#494949", - grey: "#9E9E9E", - greyLight: "#E0E0E0", - greyDisabled: "#8E8E8E", - blueGrey: "#ECEFF1", - snow: "#F4F6F8", - white: "#FFFFFF", // Not included in palette! - - negative: "#E53935", - warning: "#F19C02", - positive: "#3D9305", - info: "#EAF4FF", -}; - -export const palette = { - common: { - white: colors.white, - black: colors.black, - }, - action: { - active: colors.greyBlack, - disabled: colors.greyDisabled, - }, - text: { - primary: colors.black, - secondary: colors.greyBlack, - disabled: colors.greyDisabled, - hint: colors.grey, - }, - primary: { - main: colors.accentPrimary, - dark: colors.accentPrimaryDark, - light: colors.accentPrimaryLight, - lightest: colors.accentPrimaryLightest, // Custom extension, not used by default - // contrastText: 'white', - }, - secondary: { - main: colors.accentSecondary, - light: colors.accentSecondaryLight, - dark: colors.accentSecondaryDark, - contrastText: "#fff", - }, - error: { - main: colors.negative, // This is automatically expanded to main/light/dark/contrastText, what do we use here? - }, - status: { - //Custom colors collection, not used by default in MUI - negative: colors.negative, - warning: colors.warning, - positive: colors.positive, - info: colors.info, - }, - background: { - paper: colors.white, - default: colors.snow, - grey: "#FCFCFC", - hover: colors.greyLight, - }, - divider: colors.greyLight, - shadow: colors.grey, -}; - -export const muiTheme = createMuiTheme({ - // colors, - palette, - typography: { - fontFamily: "Roboto, Helvetica, Arial, sans-serif", - // useNextVariants: true, - }, - overrides: { - MuiDivider: { - light: { - backgroundColor: palette.divider, // No light dividers for now - }, - }, - }, -}); diff --git a/src/webapp/pages/app/App.tsx b/src/webapp/pages/app/App.tsx index ca372be..d0ff535 100644 --- a/src/webapp/pages/app/App.tsx +++ b/src/webapp/pages/app/App.tsx @@ -44,7 +44,7 @@ const App: React.FC = ({ api, d2, instance }) => { - +
diff --git a/src/webapp/pages/example/Example.tsx b/src/webapp/pages/example/Example.tsx deleted file mode 100644 index 8708966..0000000 --- a/src/webapp/pages/example/Example.tsx +++ /dev/null @@ -1,90 +0,0 @@ -import React from "react"; -import i18n from "../../../locales"; -import { useSnackbar, MultiSelector, OrgUnitsSelector } from "@eyeseetea/d2-ui-components"; -import { useAppContext } from "../../contexts/app-context"; -import { makeStyles } from "@material-ui/styles"; -import { ExampleModel } from "../../../models/Example"; - -interface ExampleProps { - name: string; - showExtraComponents?: boolean; -} - -// We need explicit casting until d2-api supports type inteference from the options argument -interface DataSet { - id: string; -} - -const Example: React.FunctionComponent = props => { - const { name, showExtraComponents = true } = props; - const { d2, api, currentUser } = useAppContext(); - const [counter, setCounter] = React.useState(0); - const [dataSets, setDataSets] = React.useState([]); - const [orgUnitPaths, setOrgUnitPaths] = React.useState([]); - const [selected, setSelected] = React.useState(["v1"]); - const snackbar = useSnackbar(); - const classes = useStyles(); - const model = React.useMemo(() => new ExampleModel(api), [api]); - - React.useEffect(() => { - model.getDataSets().then(setDataSets); - }, [api, model]); - - return ( -
-

Hello {name}!

- -
-

- This is an example component written in Typescript, you can find it in src/pages/example/, - and its test in src/pages/example/__tests__ -

-

Datasets loaded: {dataSets.map(ds => ds.id).join(", ")}

-

Usage example of useState, a counter:

-

Value={counter}

- -   - -
- -
-

Example of d2-ui-components snackbar usage:

- - -
- - {showExtraComponents && ( -
- ou.id)} - fullWidth={false} - /> - - -
- )} -
- ); -}; - -const useStyles = makeStyles({ - title: { - color: "blue", - }, -}); - -export default React.memo(Example); diff --git a/src/webapp/pages/landing/Landing.tsx b/src/webapp/pages/landing/Landing.tsx deleted file mode 100644 index c73a2ba..0000000 --- a/src/webapp/pages/landing/Landing.tsx +++ /dev/null @@ -1,60 +0,0 @@ -import { makeStyles } from "@material-ui/core"; -import React from "react"; -import PageHeader from "../../components/page-header/PageHeader"; -import MenuCard, { MenuCardProps } from "./MenuCard"; - -const useStyles = makeStyles({ - container: { - marginLeft: 30, - }, - title: { - fontSize: 24, - fontWeight: 300, - color: "rgba(0, 0, 0, 0.87)", - padding: "15px 0px 15px", - margin: 0, - }, - clear: { - clear: "both", - }, -}); - -export interface Card { - title?: string; - key: string; - isVisible?: boolean; - children: MenuCardProps[]; -} - -export interface LandingProps { - cards: Card[]; - title?: string; - onBackClick?: () => void; -} - -export const Landing: React.FC = ({ title, cards, onBackClick }) => { - const classes = useStyles(); - - return ( - - {!!title && } - -
- {cards.map( - ({ key, title, isVisible = true, children }) => - isVisible && ( -
- {!!title &&

{title}

} - - {children.map(props => ( - - ))} - -
-
- ) - )} -
- - ); -}; diff --git a/src/webapp/pages/landing/MenuCard.tsx b/src/webapp/pages/landing/MenuCard.tsx deleted file mode 100644 index c593d31..0000000 --- a/src/webapp/pages/landing/MenuCard.tsx +++ /dev/null @@ -1,86 +0,0 @@ -import { makeStyles, Tooltip } from "@material-ui/core"; -import Card from "@material-ui/core/Card"; -import CardActions from "@material-ui/core/CardActions"; -import CardContent from "@material-ui/core/CardContent"; -import CardHeader from "@material-ui/core/CardHeader"; -import IconButton from "@material-ui/core/IconButton"; -import AddIcon from "@material-ui/icons/Add"; -import ViewListIcon from "@material-ui/icons/ViewList"; -import _ from "lodash"; -import React from "react"; -import i18n from "../../../locales"; - -export interface MenuCardProps { - name: string; - description?: string; - isVisible?: boolean; - addAction?: () => void; - listAction?: () => void; -} - -const useStyles = makeStyles({ - card: { - padding: "0", - margin: ".5rem", - float: "left", - width: "230px", - }, - content: { - height: "120px", - padding: ".5rem 1rem", - fontSize: "14px", - }, - actions: { - marginLeft: "auto", - }, - header: { - padding: "1rem", - height: "auto", - borderBottom: "1px solid #ddd", - cursor: "pointer", - }, - headerText: { - fontSize: "15px", - fontWeight: 500, - }, -}); - -const MenuCard: React.FC = ({ name, description, isVisible, addAction, listAction }) => { - const classes = useStyles(); - - if (isVisible === false) return null; - - return ( - - - - {description} - - -
- {addAction && ( - - - - - - )} - - {listAction && ( - - - - - - )} -
-
-
- ); -}; - -export default MenuCard; diff --git a/src/webapp/pages/root/RootPage.tsx b/src/webapp/pages/root/RootPage.tsx deleted file mode 100644 index 125eebc..0000000 --- a/src/webapp/pages/root/RootPage.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import { HashRouter, Route, Switch } from "react-router-dom"; -import Example from "../example/Example"; -import LandingPage from "../landing/LandingPage"; - -const Root = () => { - return ( - - - } /> - } /> - - {/* Default route */} - } /> - - - ); -}; - -export default Root; From 4f46719c6e5e41b3d60f7b1ba04823727efbb8bb Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Mon, 16 Aug 2021 13:18:04 +0200 Subject: [PATCH 03/50] Update landing page --- src/webapp/pages/landing/LandingPage.tsx | 27 ++++++++++++++++++------ 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/src/webapp/pages/landing/LandingPage.tsx b/src/webapp/pages/landing/LandingPage.tsx index 95a9ba2..164dd40 100644 --- a/src/webapp/pages/landing/LandingPage.tsx +++ b/src/webapp/pages/landing/LandingPage.tsx @@ -1,3 +1,4 @@ +import i18n from "@eyeseetea/d2-ui-components/locales"; import React from "react"; import { useHistory } from "react-router-dom"; import { Card, CardGrid } from "../../components/card-grid/CardGrid"; @@ -7,21 +8,33 @@ export const LandingPage: React.FC = () => { const cards: Card[] = [ { - title: "Section", + title: "Sharing settings management", key: "main", children: [ { - name: "John", - description: "Entry point 1", - listAction: () => history.push("/for/John"), + name: i18n.t("Bulk apply"), + description: i18n.t("Edit sharing settings to data sets, programs and dashboards."), + listAction: () => history.push("/apply"), }, { - name: "Mary", - description: "Entry point 2", - listAction: () => history.push("/for/Mary"), + name: i18n.t("List depedencies"), + description: i18n.t( + "List the dependencies of a data set, program or dashboard and their sharing settings." + ), + listAction: () => history.push("/list-dependencies"), }, ], }, + { + title: "Settings", + key: "settings", + children: [ + { + name: i18n.t("Settings"), + listAction: () => history.push("/settings"), + } + ], + }, ]; return ; From 9b8856cb5ddea65788e07b7e8c9f8f3b1a7fa6a4 Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Mon, 16 Aug 2021 13:24:57 +0200 Subject: [PATCH 04/50] Update pot files --- i18n/en.pot | 21 +++++++++++++++++++-- i18n/es.po | 19 ++++++++++++++++++- src/webapp/pages/landing/LandingPage.tsx | 2 +- 3 files changed, 38 insertions(+), 4 deletions(-) diff --git a/i18n/en.pot b/i18n/en.pot index f41d956..e93da59 100644 --- a/i18n/en.pot +++ b/i18n/en.pot @@ -5,8 +5,8 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -"POT-Creation-Date: 2021-08-12T06:57:21.921Z\n" -"PO-Revision-Date: 2021-08-12T06:57:21.921Z\n" +"POT-Creation-Date: 2021-08-16T11:24:41.915Z\n" +"PO-Revision-Date: 2021-08-16T11:24:41.915Z\n" msgid "Add" msgstr "" @@ -22,3 +22,20 @@ msgstr "" msgid "Hello {{name}}" msgstr "" + +msgid "Bulk apply" +msgstr "" + +msgid "Edit sharing settings to data sets, programs and dashboards." +msgstr "" + +msgid "List depedencies" +msgstr "" + +msgid "" +"List the dependencies of a data set, program or dashboard and their sharing " +"settings." +msgstr "" + +msgid "Settings" +msgstr "" diff --git a/i18n/es.po b/i18n/es.po index e9ad77d..3e5f275 100644 --- a/i18n/es.po +++ b/i18n/es.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: i18next-conv\n" -"POT-Creation-Date: 2021-08-12T06:57:21.921Z\n" +"POT-Creation-Date: 2021-08-16T11:24:41.915Z\n" "PO-Revision-Date: 2018-10-25T09:02:35.143Z\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,3 +22,20 @@ msgstr "Ayuda" msgid "Hello {{name}}" msgstr "" + +msgid "Bulk apply" +msgstr "" + +msgid "Edit sharing settings to data sets, programs and dashboards." +msgstr "" + +msgid "List depedencies" +msgstr "" + +msgid "" +"List the dependencies of a data set, program or dashboard and their sharing " +"settings." +msgstr "" + +msgid "Settings" +msgstr "" diff --git a/src/webapp/pages/landing/LandingPage.tsx b/src/webapp/pages/landing/LandingPage.tsx index 164dd40..6ccdb91 100644 --- a/src/webapp/pages/landing/LandingPage.tsx +++ b/src/webapp/pages/landing/LandingPage.tsx @@ -32,7 +32,7 @@ export const LandingPage: React.FC = () => { { name: i18n.t("Settings"), listAction: () => history.push("/settings"), - } + }, ], }, ]; From daba1808a99fe867e4aa6e86d691554d8f4705b4 Mon Sep 17 00:00:00 2001 From: Jocelyn Dunkley Date: Mon, 23 Aug 2021 11:35:05 +0200 Subject: [PATCH 05/50] created all 4 steps, step 1 works, step 2 still needs to call multiple APIs at once, step 3 and 4 have no logic --- i18n/en.pot | 70 +- i18n/es.po | 68 +- src/CompositionRoot.ts | 12 + src/data/entities/SearchUser.ts | 9 + .../repositories/InstanceDefaultRepository.ts | 10 + .../repositories/MetadataD2ApiRepository.ts | 49 + src/domain/entities/MetadataEntities.ts | 3613 +++++++++++++++++ src/domain/entities/Ref.ts | 10 + src/domain/entities/Schemas.ts | 28 + src/domain/repositories/InstanceRepository.ts | 2 + src/domain/repositories/MetadataRepository.ts | 19 + src/domain/usecases/GetAllMetadataUseCase.ts | 11 + src/domain/usecases/GetMetadataUseCase.ts | 11 + src/domain/usecases/SearchUserUseCase.ts | 11 + src/utils/codec.ts | 26 +- src/webapp/components/dropdown/Dropdown.tsx | 122 + src/webapp/pages/Router.tsx | 2 + src/webapp/pages/bulkApply/BulkApply.tsx | 31 + src/webapp/pages/bulkApply/SharingWizard.tsx | 50 + .../pages/bulkApply/steps/AccessStep.tsx | 82 + .../bulkApply/steps/ListDependenciesStep.tsx | 97 + .../bulkApply/steps/SelectMetadataStep.tsx | 128 + .../bulkApply/steps/SummaryApplyStep.tsx | 63 + src/webapp/pages/bulkApply/steps/index.ts | 51 + 24 files changed, 4568 insertions(+), 7 deletions(-) create mode 100644 src/data/entities/SearchUser.ts create mode 100644 src/data/repositories/MetadataD2ApiRepository.ts create mode 100644 src/domain/entities/MetadataEntities.ts create mode 100644 src/domain/entities/Schemas.ts create mode 100644 src/domain/repositories/MetadataRepository.ts create mode 100644 src/domain/usecases/GetAllMetadataUseCase.ts create mode 100644 src/domain/usecases/GetMetadataUseCase.ts create mode 100644 src/domain/usecases/SearchUserUseCase.ts create mode 100644 src/webapp/components/dropdown/Dropdown.tsx create mode 100644 src/webapp/pages/bulkApply/BulkApply.tsx create mode 100644 src/webapp/pages/bulkApply/SharingWizard.tsx create mode 100644 src/webapp/pages/bulkApply/steps/AccessStep.tsx create mode 100644 src/webapp/pages/bulkApply/steps/ListDependenciesStep.tsx create mode 100644 src/webapp/pages/bulkApply/steps/SelectMetadataStep.tsx create mode 100644 src/webapp/pages/bulkApply/steps/SummaryApplyStep.tsx create mode 100644 src/webapp/pages/bulkApply/steps/index.ts diff --git a/i18n/en.pot b/i18n/en.pot index e93da59..d265eb1 100644 --- a/i18n/en.pot +++ b/i18n/en.pot @@ -5,8 +5,8 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -"POT-Creation-Date: 2021-08-16T11:24:41.915Z\n" -"PO-Revision-Date: 2021-08-16T11:24:41.915Z\n" +"POT-Creation-Date: 2021-08-23T08:29:16.387Z\n" +"PO-Revision-Date: 2021-08-23T08:29:16.387Z\n" msgid "Add" msgstr "" @@ -14,12 +14,78 @@ msgstr "" msgid "List" msgstr "" +msgid "" +msgstr "" + msgid "Back" msgstr "" msgid "Help" msgstr "" +msgid "Cancel sharing action?" +msgstr "" + +msgid "All your changes will be lost. Are you sure you want to proceed?" +msgstr "" + +msgid "Yes" +msgstr "" + +msgid "No" +msgstr "" + +msgid "Note: The sharing settings are only applied to the current metadata" +msgstr "" + +msgid "Add module" +msgstr "" + +msgid "Name" +msgstr "" + +msgid "ID" +msgstr "" + +msgid "Public Access" +msgstr "" + +msgid "External Access" +msgstr "" + +msgid "Metadata type" +msgstr "" + +msgid "Search by name" +msgstr "" + +msgid "Origin" +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Summary" +msgstr "" + +msgid "Select Metadata" +msgstr "" + +msgid "Select metadata to share" +msgstr "" + +msgid "List Dependencies and Exclude" +msgstr "" + +msgid "Sharing Access" +msgstr "" + +msgid "Summary and Apply Metadata" +msgstr "" + +msgid "List errors and warnings and apply metadata sharing" +msgstr "" + msgid "Hello {{name}}" msgstr "" diff --git a/i18n/es.po b/i18n/es.po index 3e5f275..e17c766 100644 --- a/i18n/es.po +++ b/i18n/es.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: i18next-conv\n" -"POT-Creation-Date: 2021-08-16T11:24:41.915Z\n" +"POT-Creation-Date: 2021-08-23T08:29:16.387Z\n" "PO-Revision-Date: 2018-10-25T09:02:35.143Z\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -14,12 +14,78 @@ msgstr "Añadir" msgid "List" msgstr "Listar" +msgid "" +msgstr "" + msgid "Back" msgstr "Volver" msgid "Help" msgstr "Ayuda" +msgid "Cancel sharing action?" +msgstr "" + +msgid "All your changes will be lost. Are you sure you want to proceed?" +msgstr "" + +msgid "Yes" +msgstr "" + +msgid "No" +msgstr "" + +msgid "Note: The sharing settings are only applied to the current metadata" +msgstr "" + +msgid "Add module" +msgstr "" + +msgid "Name" +msgstr "" + +msgid "ID" +msgstr "" + +msgid "Public Access" +msgstr "" + +msgid "External Access" +msgstr "" + +msgid "Metadata type" +msgstr "" + +msgid "Search by name" +msgstr "" + +msgid "Origin" +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Summary" +msgstr "" + +msgid "Select Metadata" +msgstr "" + +msgid "Select metadata to share" +msgstr "" + +msgid "List Dependencies and Exclude" +msgstr "" + +msgid "Sharing Access" +msgstr "" + +msgid "Summary and Apply Metadata" +msgstr "" + +msgid "List errors and warnings and apply metadata sharing" +msgstr "" + msgid "Hello {{name}}" msgstr "" diff --git a/src/CompositionRoot.ts b/src/CompositionRoot.ts index a49c88f..d4c7da3 100644 --- a/src/CompositionRoot.ts +++ b/src/CompositionRoot.ts @@ -1,15 +1,27 @@ import { Instance } from "./data/entities/Instance"; import { InstanceDefaultRepository } from "./data/repositories/InstanceDefaultRepository"; +import { MetadataD2ApiRepository } from "./data/repositories/MetadataD2ApiRepository"; + import { GetCurrentUserUseCase } from "./domain/usecases/GetCurrentUserUseCase"; +import { SearchUserUseCase } from "./domain/usecases/SearchUserUseCase"; + import { GetInstanceVersionUseCase } from "./domain/usecases/GetInstanceVersionUseCase"; +import { GetAllMetadataUseCase } from "./domain/usecases/GetAllMetadataUseCase"; +import { GetMetadataUseCase } from "./domain/usecases/GetMetadataUseCase"; export function getCompositionRoot(instance: Instance) { const instanceRepository = new InstanceDefaultRepository(instance); + const metadataRepository = new MetadataD2ApiRepository(instance); return { instance: getExecute({ getCurrentUser: new GetCurrentUserUseCase(instanceRepository), getVersion: new GetInstanceVersionUseCase(instanceRepository), + searchUsers: new SearchUserUseCase(instanceRepository), + }), + metadata: getExecute({ + listAll: new GetAllMetadataUseCase(metadataRepository), + list: new GetMetadataUseCase(metadataRepository), }), }; } diff --git a/src/data/entities/SearchUser.ts b/src/data/entities/SearchUser.ts new file mode 100644 index 0000000..36b4ca9 --- /dev/null +++ b/src/data/entities/SearchUser.ts @@ -0,0 +1,9 @@ +export interface UserSearchItem { + id: string; + displayName: string; +} + +export interface UserSearch { + users: UserSearchItem[]; + userGroups: UserSearchItem[]; +} diff --git a/src/data/repositories/InstanceDefaultRepository.ts b/src/data/repositories/InstanceDefaultRepository.ts index 8855ec4..64d56c9 100644 --- a/src/data/repositories/InstanceDefaultRepository.ts +++ b/src/data/repositories/InstanceDefaultRepository.ts @@ -6,6 +6,7 @@ import { cache } from "../../utils/cache"; import { getD2APiFromInstance } from "../../utils/d2-api"; import { apiToFuture } from "../../utils/futures"; import { Instance } from "../entities/Instance"; +import { UserSearch } from "../entities/SearchUser"; export class InstanceDefaultRepository implements InstanceRepository { private api: D2Api; @@ -40,6 +41,15 @@ export class InstanceDefaultRepository implements InstanceRepository { })); } + public async searchUsers(query: string): Promise { + const options = { + fields: { id: true, displayName: true }, + filter: { displayName: { ilike: query } }, + }; + + return this.api.metadata.get({ users: options, userGroups: options }).getData(); + } + @cache() public getInstanceVersion(): FutureData { return apiToFuture(this.api.system.info).map(({ version }) => version); diff --git a/src/data/repositories/MetadataD2ApiRepository.ts b/src/data/repositories/MetadataD2ApiRepository.ts new file mode 100644 index 0000000..1f3af30 --- /dev/null +++ b/src/data/repositories/MetadataD2ApiRepository.ts @@ -0,0 +1,49 @@ +import { D2Api } from "@eyeseetea/d2-api/2.34"; +import { FutureData } from "../../domain/entities/Future"; +import { MetadataRepository } from "../../domain/repositories/MetadataRepository"; +import { getD2APiFromInstance } from "../../utils/d2-api"; +import { apiToFuture } from "../../utils/futures"; +import { Instance } from "../entities/Instance"; +import { MetadataEntities } from "../../domain/entities/MetadataEntities"; +import { Model } from "../../types/d2-api"; + +export class MetadataD2ApiRepository implements MetadataRepository { + private api: D2Api; + + constructor(instance: Instance) { + this.api = getD2APiFromInstance(instance); + } + + public listAllMetadata(options: { + model: "dataSets" | "programs" | "dashboards"; + page?: number; + pageSize?: number; + search?: string; + order?: [string, string]; + }): FutureData { + const { model, page, pageSize, search, order } = options; + const [field, orderBy] = order ?? ["name", "asc"]; + //@ts-ignore: d2-api incorrectly guessing model with string access + return apiToFuture( + this.getApiModel(model).get({ + page, + pageSize, + paging: true, + filter: { identifiable: search ? { token: search } : undefined }, + fields: { $owner: true }, + order: `${field}:${orderBy}`, + }) + ); + } + + public listMetadata(options: { model: "dataSets" | "programs" | "dashboards"; id: string }): FutureData { + const { model, id } = options; + console.log(options); + //@ts-ignore: d2-api incorrectly guessing model with string access + return apiToFuture(this.api.get(`/${model}/${id}/metadata.json`)); + } + + private getApiModel(type: keyof MetadataEntities): InstanceType { + return this.api.models[type]; + } +} diff --git a/src/domain/entities/MetadataEntities.ts b/src/domain/entities/MetadataEntities.ts new file mode 100644 index 0000000..5cded8f --- /dev/null +++ b/src/domain/entities/MetadataEntities.ts @@ -0,0 +1,3613 @@ +import { Ref } from "./Ref"; +import { Access, Expression, Id, Style, Translation } from "./Schemas"; + +export type AttributeValue = { + attribute: Ref; + created: string; + lastUpdated: string; + value: string; +}; + +export type Attribute = { + access: Access; + attributeValues: AttributeValue[]; + categoryAttribute: boolean; + categoryOptionAttribute: boolean; + categoryOptionComboAttribute: boolean; + categoryOptionGroupAttribute: boolean; + categoryOptionGroupSetAttribute: boolean; + code: Id; + constantAttribute: boolean; + created: string; + dataElementAttribute: boolean; + dataElementGroupAttribute: boolean; + dataElementGroupSetAttribute: boolean; + dataSetAttribute: boolean; + description: string; + displayDescription: string; + displayName: string; + displayShortName: string; + documentAttribute: boolean; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + indicatorAttribute: boolean; + indicatorGroupAttribute: boolean; + lastUpdated: string; + lastUpdatedBy: Ref; + legendSetAttribute: boolean; + mandatory: boolean; + name: string; + optionAttribute: boolean; + optionSet: Ref; + optionSetAttribute: boolean; + organisationUnitAttribute: boolean; + organisationUnitGroupAttribute: boolean; + organisationUnitGroupSetAttribute: boolean; + programAttribute: boolean; + programIndicatorAttribute: boolean; + programStageAttribute: boolean; + publicAccess: string; + sectionAttribute: boolean; + shortName: string; + sortOrder: number; + sqlViewAttribute: boolean; + trackedEntityAttributeAttribute: boolean; + trackedEntityTypeAttribute: boolean; + translations: Translation[]; + unique: boolean; + user: Ref; + userAccesses: UserAccess[]; + userAttribute: boolean; + userGroupAccesses: UserGroupAccess[]; + userGroupAttribute: boolean; + validationRuleAttribute: boolean; + validationRuleGroupAttribute: boolean; + valueType: + | "TEXT" + | "LONG_TEXT" + | "LETTER" + | "PHONE_NUMBER" + | "EMAIL" + | "BOOLEAN" + | "TRUE_ONLY" + | "DATE" + | "DATETIME" + | "TIME" + | "NUMBER" + | "UNIT_INTERVAL" + | "PERCENTAGE" + | "INTEGER" + | "INTEGER_POSITIVE" + | "INTEGER_NEGATIVE" + | "INTEGER_ZERO_OR_POSITIVE" + | "TRACKER_ASSOCIATE" + | "USERNAME" + | "COORDINATE" + | "ORGANISATION_UNIT" + | "AGE" + | "URL" + | "FILE_RESOURCE" + | "IMAGE"; +}; + +export type UserRole = { + access: Access; + attributeValues: AttributeValue[]; + authorities: string[]; + code: Id; + created: string; + description: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + publicAccess: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; + users: Ref[]; +}; + +export type User = { + access: Access; + attributeValues: AttributeValue[]; + birthday: string; + code: Id; + created: string; + dataViewOrganisationUnits: Ref[]; + displayName: string; + education: string; + email: string; + employer: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + firstName: string; + gender: string; + id: Id; + interests: string; + introduction: string; + jobTitle: string; + languages: string; + lastCheckedInterpretations: string; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + nationality: string; + organisationUnits: Ref[]; + phoneNumber: string; + publicAccess: string; + surname: string; + teiSearchOrganisationUnits: Ref[]; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userCredentials: UserCredentials; + userGroupAccesses: UserGroupAccess[]; + userGroups: Ref[]; + welcomeMessage: string; +}; + +export type UserGroup = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + created: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + managedByGroups: Ref[]; + managedGroups: Ref[]; + name: string; + publicAccess: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; + users: Ref[]; +}; + +export type Option = { + access: Access; + attributeValues: AttributeValue[]; + code: string; + created: string; + description: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + formName: string; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + optionSet: Ref; + publicAccess: string; + sortOrder: number; + style: Style; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type OptionSet = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + created: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + options: Ref[]; + publicAccess: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; + valueType: + | "TEXT" + | "LONG_TEXT" + | "LETTER" + | "PHONE_NUMBER" + | "EMAIL" + | "BOOLEAN" + | "TRUE_ONLY" + | "DATE" + | "DATETIME" + | "TIME" + | "NUMBER" + | "UNIT_INTERVAL" + | "PERCENTAGE" + | "INTEGER" + | "INTEGER_POSITIVE" + | "INTEGER_NEGATIVE" + | "INTEGER_ZERO_OR_POSITIVE" + | "TRACKER_ASSOCIATE" + | "USERNAME" + | "COORDINATE" + | "ORGANISATION_UNIT" + | "AGE" + | "URL" + | "FILE_RESOURCE" + | "IMAGE"; + version: number; +}; + +export type OptionGroup = { + access: Access; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + attributeValues: AttributeValue[]; + code: Id; + created: string; + description: string; + dimensionItem: string; + dimensionItemType: + | "DATA_ELEMENT" + | "DATA_ELEMENT_OPERAND" + | "INDICATOR" + | "REPORTING_RATE" + | "PROGRAM_DATA_ELEMENT" + | "PROGRAM_ATTRIBUTE" + | "PROGRAM_INDICATOR" + | "PERIOD" + | "ORGANISATION_UNIT" + | "CATEGORY_OPTION" + | "OPTION_GROUP" + | "DATA_ELEMENT_GROUP" + | "ORGANISATION_UNIT_GROUP" + | "CATEGORY_OPTION_GROUP"; + displayDescription: string; + displayName: string; + displayShortName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + legendSets: Ref[]; + name: string; + optionSet: Ref; + options: Ref[]; + publicAccess: string; + shortName: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type OptionGroupSet = { + access: Access; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + allItems: boolean; + attributeValues: AttributeValue[]; + code: Id; + created: string; + dataDimension: boolean; + description: string; + dimension: string; + dimensionType: + | "DATA_X" + | "PROGRAM_DATA_ELEMENT" + | "PROGRAM_ATTRIBUTE" + | "PROGRAM_INDICATOR" + | "DATA_COLLAPSED" + | "CATEGORY_OPTION_COMBO" + | "ATTRIBUTE_OPTION_COMBO" + | "PERIOD" + | "ORGANISATION_UNIT" + | "CATEGORY_OPTION_GROUP_SET" + | "DATA_ELEMENT_GROUP_SET" + | "ORGANISATION_UNIT_GROUP_SET" + | "ORGANISATION_UNIT_GROUP" + | "CATEGORY" + | "OPTION_GROUP_SET" + | "VALIDATION_RULE" + | "STATIC" + | "ORGANISATION_UNIT_LEVEL"; + displayDescription: string; + displayName: string; + displayShortName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + filter: string; + id: Id; + items: any[]; + lastUpdated: string; + lastUpdatedBy: Ref; + legendSet: Ref; + name: string; + optionGroups: Ref[]; + optionSet: Ref; + publicAccess: string; + shortName: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type LegendSet = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + created: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + legends: Legend[]; + name: string; + publicAccess: string; + symbolizer: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type ColorSet = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + colors: Color[]; + created: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + publicAccess: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type OrganisationUnit = { + access: Access; + address: string; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + ancestors: Ref[]; + attributeValues: AttributeValue[]; + children: Ref[]; + closedDate: string; + code: Id; + comment: string; + contactPerson: string; + coordinates: string; + created: string; + dataSets: Ref[]; + description: string; + dimensionItem: string; + dimensionItemType: + | "DATA_ELEMENT" + | "DATA_ELEMENT_OPERAND" + | "INDICATOR" + | "REPORTING_RATE" + | "PROGRAM_DATA_ELEMENT" + | "PROGRAM_ATTRIBUTE" + | "PROGRAM_INDICATOR" + | "PERIOD" + | "ORGANISATION_UNIT" + | "CATEGORY_OPTION" + | "OPTION_GROUP" + | "DATA_ELEMENT_GROUP" + | "ORGANISATION_UNIT_GROUP" + | "CATEGORY_OPTION_GROUP"; + displayDescription: string; + displayName: string; + displayShortName: string; + email: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + featureType: "NONE" | "MULTI_POLYGON" | "POLYGON" | "POINT" | "SYMBOL"; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + leaf: boolean; + legendSet: Ref; + legendSets: Ref[]; + level: number; + memberCount: number; + name: string; + openingDate: string; + organisationUnitGroups: Ref[]; + parent: Ref; + path: string; + phoneNumber: string; + programs: Program[]; + publicAccess: string; + shortName: string; + translations: Translation[]; + type: string; + url: string; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; + users: Ref[]; +}; + +export type OrganisationUnitLevel = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + created: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + level: number; + name: string; + offlineLevels: number; + publicAccess: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type OrganisationUnitGroup = { + access: Access; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + attributeValues: AttributeValue[]; + code: Id; + color: string; + coordinates: string; + created: string; + description: string; + dimensionItem: string; + dimensionItemType: + | "DATA_ELEMENT" + | "DATA_ELEMENT_OPERAND" + | "INDICATOR" + | "REPORTING_RATE" + | "PROGRAM_DATA_ELEMENT" + | "PROGRAM_ATTRIBUTE" + | "PROGRAM_INDICATOR" + | "PERIOD" + | "ORGANISATION_UNIT" + | "CATEGORY_OPTION" + | "OPTION_GROUP" + | "DATA_ELEMENT_GROUP" + | "ORGANISATION_UNIT_GROUP" + | "CATEGORY_OPTION_GROUP"; + displayDescription: string; + displayName: string; + displayShortName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + featureType: "NONE" | "MULTI_POLYGON" | "POLYGON" | "POINT" | "SYMBOL"; + groupSets: Ref[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + legendSet: Ref; + legendSets: Ref[]; + name: string; + organisationUnits: Ref[]; + publicAccess: string; + shortName: string; + symbol: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type OrganisationUnitGroupSet = { + access: Access; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + allItems: boolean; + attributeValues: AttributeValue[]; + code: Id; + compulsory: boolean; + created: string; + dataDimension: boolean; + description: string; + dimension: string; + dimensionType: + | "DATA_X" + | "PROGRAM_DATA_ELEMENT" + | "PROGRAM_ATTRIBUTE" + | "PROGRAM_INDICATOR" + | "DATA_COLLAPSED" + | "CATEGORY_OPTION_COMBO" + | "ATTRIBUTE_OPTION_COMBO" + | "PERIOD" + | "ORGANISATION_UNIT" + | "CATEGORY_OPTION_GROUP_SET" + | "DATA_ELEMENT_GROUP_SET" + | "ORGANISATION_UNIT_GROUP_SET" + | "ORGANISATION_UNIT_GROUP" + | "CATEGORY" + | "OPTION_GROUP_SET" + | "VALIDATION_RULE" + | "STATIC" + | "ORGANISATION_UNIT_LEVEL"; + displayDescription: string; + displayName: string; + displayShortName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + filter: string; + id: Id; + includeSubhierarchyInAnalytics: boolean; + items: any[]; + lastUpdated: string; + lastUpdatedBy: Ref; + legendSet: Ref; + name: string; + organisationUnitGroups: Ref[]; + publicAccess: string; + shortName: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type CategoryOption = { + access: Access; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + attributeValues: AttributeValue[]; + categories: Ref[]; + categoryOptionCombos: Ref[]; + categoryOptionGroups: Ref[]; + code: Id; + created: string; + description: string; + dimensionItem: string; + dimensionItemType: + | "DATA_ELEMENT" + | "DATA_ELEMENT_OPERAND" + | "INDICATOR" + | "REPORTING_RATE" + | "PROGRAM_DATA_ELEMENT" + | "PROGRAM_ATTRIBUTE" + | "PROGRAM_INDICATOR" + | "PERIOD" + | "ORGANISATION_UNIT" + | "CATEGORY_OPTION" + | "OPTION_GROUP" + | "DATA_ELEMENT_GROUP" + | "ORGANISATION_UNIT_GROUP" + | "CATEGORY_OPTION_GROUP"; + displayDescription: string; + displayName: string; + displayShortName: string; + endDate: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + isDefault: boolean; + lastUpdated: string; + lastUpdatedBy: Ref; + legendSet: Ref; + legendSets: Ref[]; + name: string; + organisationUnits: Ref[]; + publicAccess: string; + shortName: string; + startDate: string; + style: Style; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type CategoryOptionGroup = { + access: Access; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + attributeValues: AttributeValue[]; + categoryOptions: Ref[]; + code: Id; + created: string; + dataDimensionType: "DISAGGREGATION" | "ATTRIBUTE"; + description: string; + dimensionItem: string; + dimensionItemType: + | "DATA_ELEMENT" + | "DATA_ELEMENT_OPERAND" + | "INDICATOR" + | "REPORTING_RATE" + | "PROGRAM_DATA_ELEMENT" + | "PROGRAM_ATTRIBUTE" + | "PROGRAM_INDICATOR" + | "PERIOD" + | "ORGANISATION_UNIT" + | "CATEGORY_OPTION" + | "OPTION_GROUP" + | "DATA_ELEMENT_GROUP" + | "ORGANISATION_UNIT_GROUP" + | "CATEGORY_OPTION_GROUP"; + displayDescription: string; + displayName: string; + displayShortName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + groupSets: Ref[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + legendSet: Ref; + legendSets: Ref[]; + name: string; + publicAccess: string; + shortName: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type CategoryOptionGroupSet = { + access: Access; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + allItems: boolean; + attributeValues: AttributeValue[]; + categoryOptionGroups: Ref[]; + code: Id; + created: string; + dataDimension: boolean; + dataDimensionType: "DISAGGREGATION" | "ATTRIBUTE"; + description: string; + dimension: string; + dimensionType: + | "DATA_X" + | "PROGRAM_DATA_ELEMENT" + | "PROGRAM_ATTRIBUTE" + | "PROGRAM_INDICATOR" + | "DATA_COLLAPSED" + | "CATEGORY_OPTION_COMBO" + | "ATTRIBUTE_OPTION_COMBO" + | "PERIOD" + | "ORGANISATION_UNIT" + | "CATEGORY_OPTION_GROUP_SET" + | "DATA_ELEMENT_GROUP_SET" + | "ORGANISATION_UNIT_GROUP_SET" + | "ORGANISATION_UNIT_GROUP" + | "CATEGORY" + | "OPTION_GROUP_SET" + | "VALIDATION_RULE" + | "STATIC" + | "ORGANISATION_UNIT_LEVEL"; + displayDescription: string; + displayName: string; + displayShortName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + filter: string; + id: Id; + items: Ref[]; + lastUpdated: string; + lastUpdatedBy: Ref; + legendSet: Ref; + name: string; + publicAccess: string; + shortName: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type Category = { + access: Access; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + allItems: boolean; + attributeValues: AttributeValue[]; + categoryCombos: Ref[]; + categoryOptions: Ref[]; + code: Id; + created: string; + dataDimension: boolean; + dataDimensionType: "DISAGGREGATION" | "ATTRIBUTE"; + description: string; + dimension: string; + dimensionType: + | "DATA_X" + | "PROGRAM_DATA_ELEMENT" + | "PROGRAM_ATTRIBUTE" + | "PROGRAM_INDICATOR" + | "DATA_COLLAPSED" + | "CATEGORY_OPTION_COMBO" + | "ATTRIBUTE_OPTION_COMBO" + | "PERIOD" + | "ORGANISATION_UNIT" + | "CATEGORY_OPTION_GROUP_SET" + | "DATA_ELEMENT_GROUP_SET" + | "ORGANISATION_UNIT_GROUP_SET" + | "ORGANISATION_UNIT_GROUP" + | "CATEGORY" + | "OPTION_GROUP_SET" + | "VALIDATION_RULE" + | "STATIC" + | "ORGANISATION_UNIT_LEVEL"; + displayDescription: string; + displayName: string; + displayShortName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + filter: string; + id: Id; + items: Ref[]; + lastUpdated: string; + lastUpdatedBy: Ref; + legendSet: Ref; + name: string; + publicAccess: string; + shortName: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type CategoryCombo = { + access: Access; + attributeValues: AttributeValue[]; + categories: Ref[]; + categoryOptionCombos: Ref[]; + code: Id; + created: string; + dataDimensionType: "DISAGGREGATION" | "ATTRIBUTE"; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + isDefault: boolean; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + publicAccess: string; + skipTotal: boolean; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type CategoryOptionCombo = { + access: Access; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + attributeValues: AttributeValue[]; + categoryCombo: Ref; + categoryOptions: Ref[]; + code: Id; + created: string; + description: string; + dimensionItem: string; + dimensionItemType: + | "DATA_ELEMENT" + | "DATA_ELEMENT_OPERAND" + | "INDICATOR" + | "REPORTING_RATE" + | "PROGRAM_DATA_ELEMENT" + | "PROGRAM_ATTRIBUTE" + | "PROGRAM_INDICATOR" + | "PERIOD" + | "ORGANISATION_UNIT" + | "CATEGORY_OPTION" + | "OPTION_GROUP" + | "DATA_ELEMENT_GROUP" + | "ORGANISATION_UNIT_GROUP" + | "CATEGORY_OPTION_GROUP"; + displayDescription: string; + displayName: string; + displayShortName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + ignoreApproval: boolean; + lastUpdated: string; + lastUpdatedBy: Ref; + legendSet: Ref; + legendSets: Ref[]; + name: string; + publicAccess: string; + shortName: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type DataElement = { + access: Access; + aggregationLevels: number[]; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + attributeValues: AttributeValue[]; + categoryCombo: Ref; + code: Id; + commentOptionSet: Ref; + created: string; + dataElementGroups: Ref[]; + dataSetElements: DataSetElement[]; + description: string; + dimensionItem: string; + dimensionItemType: + | "DATA_ELEMENT" + | "DATA_ELEMENT_OPERAND" + | "INDICATOR" + | "REPORTING_RATE" + | "PROGRAM_DATA_ELEMENT" + | "PROGRAM_ATTRIBUTE" + | "PROGRAM_INDICATOR" + | "PERIOD" + | "ORGANISATION_UNIT" + | "CATEGORY_OPTION" + | "OPTION_GROUP" + | "DATA_ELEMENT_GROUP" + | "ORGANISATION_UNIT_GROUP" + | "CATEGORY_OPTION_GROUP"; + displayDescription: string; + displayFormName: string; + displayName: string; + displayShortName: string; + domainType: "AGGREGATE" | "TRACKER"; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + formName: string; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + legendSet: Ref; + legendSets: Ref[]; + name: string; + optionSet: Ref; + optionSetValue: boolean; + publicAccess: string; + shortName: string; + style: Style; + translations: Translation[]; + url: string; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; + valueType: + | "TEXT" + | "LONG_TEXT" + | "LETTER" + | "PHONE_NUMBER" + | "EMAIL" + | "BOOLEAN" + | "TRUE_ONLY" + | "DATE" + | "DATETIME" + | "TIME" + | "NUMBER" + | "UNIT_INTERVAL" + | "PERCENTAGE" + | "INTEGER" + | "INTEGER_POSITIVE" + | "INTEGER_NEGATIVE" + | "INTEGER_ZERO_OR_POSITIVE" + | "TRACKER_ASSOCIATE" + | "USERNAME" + | "COORDINATE" + | "ORGANISATION_UNIT" + | "AGE" + | "URL" + | "FILE_RESOURCE" + | "IMAGE"; + zeroIsSignificant: boolean; +}; + +export type DataElementGroup = { + access: Access; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + attributeValues: AttributeValue[]; + code: Id; + created: string; + dataElements: Ref[]; + description: string; + dimensionItem: string; + dimensionItemType: + | "DATA_ELEMENT" + | "DATA_ELEMENT_OPERAND" + | "INDICATOR" + | "REPORTING_RATE" + | "PROGRAM_DATA_ELEMENT" + | "PROGRAM_ATTRIBUTE" + | "PROGRAM_INDICATOR" + | "PERIOD" + | "ORGANISATION_UNIT" + | "CATEGORY_OPTION" + | "OPTION_GROUP" + | "DATA_ELEMENT_GROUP" + | "ORGANISATION_UNIT_GROUP" + | "CATEGORY_OPTION_GROUP"; + displayDescription: string; + displayName: string; + displayShortName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + groupSets: Ref[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + legendSet: Ref; + legendSets: Ref[]; + name: string; + publicAccess: string; + shortName: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type DataElementGroupSet = { + access: Access; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + allItems: boolean; + attributeValues: AttributeValue[]; + code: Id; + compulsory: boolean; + created: string; + dataDimension: boolean; + dataElementGroups: DataElementGroup[]; + description: string; + dimension: string; + dimensionType: + | "DATA_X" + | "PROGRAM_DATA_ELEMENT" + | "PROGRAM_ATTRIBUTE" + | "PROGRAM_INDICATOR" + | "DATA_COLLAPSED" + | "CATEGORY_OPTION_COMBO" + | "ATTRIBUTE_OPTION_COMBO" + | "PERIOD" + | "ORGANISATION_UNIT" + | "CATEGORY_OPTION_GROUP_SET" + | "DATA_ELEMENT_GROUP_SET" + | "ORGANISATION_UNIT_GROUP_SET" + | "ORGANISATION_UNIT_GROUP" + | "CATEGORY" + | "OPTION_GROUP_SET" + | "VALIDATION_RULE" + | "STATIC" + | "ORGANISATION_UNIT_LEVEL"; + displayDescription: string; + displayName: string; + displayShortName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + filter: string; + id: Id; + items: any[]; + lastUpdated: string; + lastUpdatedBy: Ref; + legendSet: Ref; + name: string; + publicAccess: string; + shortName: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type IndicatorType = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + created: string; + displayName: string; + externalAccess: boolean; + factor: number; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + number: boolean; + publicAccess: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type Indicator = { + access: Access; + aggregateExportAttributeOptionCombo: string; + aggregateExportCategoryOptionCombo: string; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + annualized: boolean; + attributeValues: AttributeValue[]; + code: Id; + created: string; + dataSets: Ref[]; + decimals: number; + denominator: string; + denominatorDescription: string; + description: string; + dimensionItem: string; + dimensionItemType: + | "DATA_ELEMENT" + | "DATA_ELEMENT_OPERAND" + | "INDICATOR" + | "REPORTING_RATE" + | "PROGRAM_DATA_ELEMENT" + | "PROGRAM_ATTRIBUTE" + | "PROGRAM_INDICATOR" + | "PERIOD" + | "ORGANISATION_UNIT" + | "CATEGORY_OPTION" + | "OPTION_GROUP" + | "DATA_ELEMENT_GROUP" + | "ORGANISATION_UNIT_GROUP" + | "CATEGORY_OPTION_GROUP"; + displayDescription: string; + displayName: string; + displayShortName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + formName: string; + id: Id; + indicatorGroups: Ref[]; + indicatorType: Ref; + lastUpdated: string; + lastUpdatedBy: Ref; + legendSet: Ref; + legendSets: Ref[]; + name: string; + numerator: string; + numeratorDescription: string; + publicAccess: string; + shortName: string; + style: Style; + translations: Translation[]; + url: string; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type IndicatorGroup = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + created: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + indicatorGroupSet: Ref; + indicators: Ref[]; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + publicAccess: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type IndicatorGroupSet = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + compulsory: boolean; + created: string; + description: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + indicatorGroups: Ref[]; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + publicAccess: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type DataEntryForm = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + created: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + format: number; + htmlCode: string; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + publicAccess: string; + style: "COMFORTABLE" | "NORMAL" | "COMPACT" | "NONE"; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type DataSet = { + access: Access; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + attributeValues: AttributeValue[]; + categoryCombo: Ref; + code: Id; + compulsoryDataElementOperands: DataElementOperand[]; + compulsoryFieldsCompleteOnly: boolean; + created: string; + dataElementDecoration: boolean; + dataEntryForm: Ref; + dataInputPeriods: DataInputPeriod[]; + dataSetElements: DataSetElement[]; + description: string; + dimensionItem: string; + dimensionItemType: + | "DATA_ELEMENT" + | "DATA_ELEMENT_OPERAND" + | "INDICATOR" + | "REPORTING_RATE" + | "PROGRAM_DATA_ELEMENT" + | "PROGRAM_ATTRIBUTE" + | "PROGRAM_INDICATOR" + | "PERIOD" + | "ORGANISATION_UNIT" + | "CATEGORY_OPTION" + | "OPTION_GROUP" + | "DATA_ELEMENT_GROUP" + | "ORGANISATION_UNIT_GROUP" + | "CATEGORY_OPTION_GROUP"; + displayDescription: string; + displayName: string; + displayShortName: string; + expiryDays: number; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + fieldCombinationRequired: boolean; + formName: string; + formType: "DEFAULT" | "CUSTOM" | "SECTION" | "SECTION_MULTIORG"; + id: Id; + indicators: Ref[]; + interpretations: Ref[]; + lastUpdated: string; + lastUpdatedBy: Ref; + legendSet: Ref; + legendSets: Ref[]; + mobile: boolean; + name: string; + noValueRequiresComment: boolean; + notificationRecipients: UserGroup; + notifyCompletingUser: boolean; + openFuturePeriods: number; + organisationUnits: Ref[]; + periodType: string; + publicAccess: string; + renderAsTabs: boolean; + renderHorizontally: boolean; + sections: Section[]; + shortName: string; + skipOffline: boolean; + style: Style; + timelyDays: number; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; + validCompleteOnly: boolean; + version: number; + workflow: Ref; +}; + +export type DataSetNotificationTemplate = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + created: string; + dataSetNotificationTrigger: "DATA_SET_COMPLETION" | "SCHEDULED_DAYS"; + dataSets: DataSet[]; + deliveryChannels: never[]; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + messageTemplate: string; + name: string; + notificationRecipient: "ORGANISATION_UNIT_CONTACT" | "USER_GROUP"; + notifyParentOrganisationUnitOnly: boolean; + notifyUsersInHierarchyOnly: boolean; + publicAccess: string; + recipientUserGroup: UserGroup; + relativeScheduledDays: number; + sendStrategy: "COLLECTIVE_SUMMARY" | "SINGLE_NOTIFICATION"; + subjectTemplate: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type Section = { + access: Access; + attributeValues: AttributeValue[]; + categoryCombos: Ref[]; + code: Id; + created: string; + dataElements: Ref[]; + dataSet: Ref; + description: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + greyedFields: DataElementOperand[]; + id: Id; + indicators: Ref[]; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + publicAccess: string; + showColumnTotals: boolean; + showRowTotals: boolean; + sortOrder: number; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type DataApprovalLevel = { + access: Access; + attributeValues: AttributeValue[]; + categoryOptionGroupSet: Ref; + code: Id; + created: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + level: number; + name: string; + orgUnitLevel: number; + orgUnitLevelName: string; + publicAccess: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type DataApprovalWorkflow = { + access: Access; + attributeValues: AttributeValue[]; + categoryCombo: CategoryCombo; + code: Id; + created: string; + dataApprovalLevels: DataApprovalLevel[]; + dataSets: DataSet[]; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + periodType: string; + publicAccess: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type ValidationRule = { + access: Access; + aggregateExportAttributeOptionCombo: string; + aggregateExportCategoryOptionCombo: string; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + attributeValues: AttributeValue[]; + code: Id; + created: string; + description: string; + dimensionItem: string; + dimensionItemType: + | "DATA_ELEMENT" + | "DATA_ELEMENT_OPERAND" + | "INDICATOR" + | "REPORTING_RATE" + | "PROGRAM_DATA_ELEMENT" + | "PROGRAM_ATTRIBUTE" + | "PROGRAM_INDICATOR" + | "PERIOD" + | "ORGANISATION_UNIT" + | "CATEGORY_OPTION" + | "OPTION_GROUP" + | "DATA_ELEMENT_GROUP" + | "ORGANISATION_UNIT_GROUP" + | "CATEGORY_OPTION_GROUP"; + displayDescription: string; + displayName: string; + displayShortName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + importance: "HIGH" | "MEDIUM" | "LOW"; + instruction: string; + lastUpdated: string; + lastUpdatedBy: Ref; + leftSide: Expression; + legendSet: Ref; + legendSets: Ref[]; + name: string; + notificationTemplates: Ref[]; + operator: + | "equal_to" + | "not_equal_to" + | "greater_than" + | "greater_than_or_equal_to" + | "less_than" + | "less_than_or_equal_to" + | "compulsory_pair" + | "exclusive_pair"; + organisationUnitLevels: number[]; + periodType: string; + publicAccess: string; + rightSide: Expression; + shortName: string; + skipFormValidation: boolean; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; + validationRuleGroups: Ref[]; +}; + +export type ValidationRuleGroup = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + created: string; + description: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + publicAccess: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; + validationRules: Ref[]; +}; + +export type ValidationNotificationTemplate = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + created: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + messageTemplate: string; + name: string; + notifyParentOrganisationUnitOnly: boolean; + notifyUsersInHierarchyOnly: boolean; + publicAccess: string; + recipientUserGroups: UserGroup[]; + sendStrategy: "COLLECTIVE_SUMMARY" | "SINGLE_NOTIFICATION"; + subjectTemplate: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; + validationRules: ValidationRule[]; +}; + +export type TrackedEntityAttribute = { + access: Access; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + attributeValues: AttributeValue[]; + code: Id; + confidential: boolean; + created: string; + description: string; + dimensionItem: string; + dimensionItemType: + | "DATA_ELEMENT" + | "DATA_ELEMENT_OPERAND" + | "INDICATOR" + | "REPORTING_RATE" + | "PROGRAM_DATA_ELEMENT" + | "PROGRAM_ATTRIBUTE" + | "PROGRAM_INDICATOR" + | "PERIOD" + | "ORGANISATION_UNIT" + | "CATEGORY_OPTION" + | "OPTION_GROUP" + | "DATA_ELEMENT_GROUP" + | "ORGANISATION_UNIT_GROUP" + | "CATEGORY_OPTION_GROUP"; + displayDescription: string; + displayInListNoProgram: boolean; + displayName: string; + displayOnVisitSchedule: boolean; + displayShortName: string; + expression: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + formName: string; + generated: boolean; + id: Id; + inherit: boolean; + lastUpdated: string; + lastUpdatedBy: Ref; + legendSet: Ref; + legendSets: Ref[]; + name: string; + optionSet: Ref; + optionSetValue: boolean; + orgunitScope: boolean; + pattern: string; + programScope: boolean; + publicAccess: string; + shortName: string; + skipSynchronization: boolean; + sortOrderInListNoProgram: number; + sortOrderInVisitSchedule: number; + style: Style; + translations: Translation[]; + unique: boolean; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; + valueType: + | "TEXT" + | "LONG_TEXT" + | "LETTER" + | "PHONE_NUMBER" + | "EMAIL" + | "BOOLEAN" + | "TRUE_ONLY" + | "DATE" + | "DATETIME" + | "TIME" + | "NUMBER" + | "UNIT_INTERVAL" + | "PERCENTAGE" + | "INTEGER" + | "INTEGER_POSITIVE" + | "INTEGER_NEGATIVE" + | "INTEGER_ZERO_OR_POSITIVE" + | "TRACKER_ASSOCIATE" + | "USERNAME" + | "COORDINATE" + | "ORGANISATION_UNIT" + | "AGE" + | "URL" + | "FILE_RESOURCE" + | "IMAGE"; +}; + +export type RelationshipType = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + created: string; + description: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + fromConstraint: any; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + publicAccess: string; + toConstraint: any; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type TrackedEntityType = { + access: Access; + allowAuditLog: boolean; + attributeValues: AttributeValue[]; + code: Id; + created: string; + description: string; + displayDescription: string; + displayName: string; + displayShortName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + formName: string; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + maxTeiCountToReturn: number; + minAttributesRequiredToSearch: number; + name: string; + publicAccess: string; + shortName: string; + style: Style; + trackedEntityTypeAttributes: TrackedEntityTypeAttribute[]; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type TrackedEntityTypeAttribute = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + created: string; + displayInList: boolean; + displayName: string; + displayShortName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + mandatory: boolean; + name: string; + publicAccess: string; + searchable: boolean; + trackedEntityAttribute: Ref; + trackedEntityType: Ref; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; + valueType: + | "TEXT" + | "LONG_TEXT" + | "LETTER" + | "PHONE_NUMBER" + | "EMAIL" + | "BOOLEAN" + | "TRUE_ONLY" + | "DATE" + | "DATETIME" + | "TIME" + | "NUMBER" + | "UNIT_INTERVAL" + | "PERCENTAGE" + | "INTEGER" + | "INTEGER_POSITIVE" + | "INTEGER_NEGATIVE" + | "INTEGER_ZERO_OR_POSITIVE" + | "TRACKER_ASSOCIATE" + | "USERNAME" + | "COORDINATE" + | "ORGANISATION_UNIT" + | "AGE" + | "URL" + | "FILE_RESOURCE" + | "IMAGE"; +}; + +export type ProgramTrackedEntityAttributeGroup = { + access: Access; + attributeValues: AttributeValue[]; + attributes: ProgramTrackedEntityAttribute[]; + code: Id; + created: string; + description: string; + displayDescription: string; + displayName: string; + displayShortName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + publicAccess: string; + shortName: string; + translations: Translation[]; + uniqunessType: "NONE" | "STRICT" | "VALIDATION"; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type ProgramNotificationTemplate = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + created: string; + deliveryChannels: never[]; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + messageTemplate: string; + name: string; + notificationRecipient: + | "TRACKED_ENTITY_INSTANCE" + | "ORGANISATION_UNIT_CONTACT" + | "USERS_AT_ORGANISATION_UNIT" + | "USER_GROUP" + | "PROGRAM_ATTRIBUTE" + | "DATA_ELEMENT"; + notificationTrigger: + | "ENROLLMENT" + | "COMPLETION" + | "PROGRAM_RULE" + | "SCHEDULED_DAYS_DUE_DATE" + | "SCHEDULED_DAYS_INCIDENT_DATE" + | "SCHEDULED_DAYS_ENROLLMENT_DATE"; + notifyParentOrganisationUnitOnly: boolean; + notifyUsersInHierarchyOnly: boolean; + publicAccess: string; + recipientDataElement: DataElement; + recipientProgramAttribute: TrackedEntityAttribute; + recipientUserGroup: UserGroup; + relativeScheduledDays: number; + subjectTemplate: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type ProgramStageSection = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + created: string; + dataElements: Ref[]; + description: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + formName: string; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + programIndicators: Ref[]; + programStage: Ref; + publicAccess: string; + renderType: any; + sortOrder: number; + style: Style; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type ProgramStage = { + access: Access; + allowGenerateNextVisit: boolean; + attributeValues: AttributeValue[]; + autoGenerateEvent: boolean; + blockEntryForm: boolean; + code: Id; + created: string; + dataEntryForm: Ref; + description: string; + displayDescription: string; + displayGenerateEventBox: boolean; + displayName: string; + dueDateLabel: string; + executionDateLabel: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + featureType: "NONE" | "MULTI_POLYGON" | "POLYGON" | "POINT" | "SYMBOL"; + formName: string; + formType: "DEFAULT" | "CUSTOM" | "SECTION" | "SECTION_MULTIORG"; + generatedByEnrollmentDate: boolean; + hideDueDate: boolean; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + minDaysFromStart: number; + name: string; + notificationTemplates: Ref[]; + openAfterEnrollment: boolean; + periodType: string; + preGenerateUID: boolean; + program: Ref; + programStageDataElements: ProgramStageDataElement[]; + programStageSections: Ref[]; + publicAccess: string; + remindCompleted: boolean; + repeatable: boolean; + reportDateToUse: string; + sortOrder: number; + standardInterval: number; + style: Style; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; + validCompleteOnly: boolean; +}; + +export type Program = { + access: Access; + accessLevel: "OPEN" | "AUDITED" | "PROTECTED" | "CLOSED"; + attributeValues: AttributeValue[]; + captureCoordinates: boolean; + categoryCombo: Ref; + code: Id; + completeEventsExpiryDays: number; + created: string; + dataEntryForm: Ref; + description: string; + displayDescription: string; + displayFrontPageList: boolean; + displayIncidentDate: boolean; + displayName: string; + displayShortName: string; + enrollmentDateLabel: string; + expiryDays: number; + expiryPeriodType: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + formName: string; + id: Id; + ignoreOverdueEvents: boolean; + incidentDateLabel: string; + lastUpdated: string; + lastUpdatedBy: Ref; + maxTeiCountToReturn: number; + minAttributesRequiredToSearch: number; + name: string; + notificationTemplates: Ref[]; + onlyEnrollOnce: boolean; + organisationUnits: Ref[]; + programIndicators: Ref[]; + programRuleVariables: Ref[]; + programSections: Ref[]; + programStages: Ref[]; + programTrackedEntityAttributes: ProgramTrackedEntityAttribute[]; + programType: "WITH_REGISTRATION" | "WITHOUT_REGISTRATION"; + publicAccess: string; + registration: boolean; + relatedProgram: Program; + selectEnrollmentDatesInFuture: boolean; + selectIncidentDatesInFuture: boolean; + shortName: string; + skipOffline: boolean; + style: Style; + trackedEntityType: Ref; + translations: Translation[]; + useFirstStageDuringRegistration: boolean; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; + userRoles: Ref[]; + version: number; + withoutRegistration: boolean; + workflow: Ref; + programRules?: Ref[]; +}; + +export type EventChart = { + access: Access; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + attributeDimensions: any[]; + attributeValueDimension: any; + attributeValues: AttributeValue[]; + baseLineLabel: string; + baseLineValue: number; + categoryDimensions: CategoryDimension[]; + categoryOptionGroupSetDimensions: CategoryOptionGroupSetDimension[]; + code: Id; + collapseDataDimensions: boolean; + colorSet: ColorSet; + columnDimensions: string[]; + columns: any[]; + completedOnly: boolean; + created: string; + cumulativeValues: boolean; + dataDimensionItems: any[]; + dataElementDimensions: TrackedEntityDataElementDimension[]; + dataElementGroupSetDimensions: DataElementGroupSetDimension[]; + dataElementValueDimension: DataElement; + description: string; + digitGroupSeparator: "COMMA" | "SPACE" | "NONE"; + displayDescription: string; + displayName: string; + displayShortName: string; + domainAxisLabel: string; + endDate: string; + eventStatus: "ACTIVE" | "COMPLETED" | "VISITED" | "SCHEDULE" | "OVERDUE" | "SKIPPED"; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + filterDimensions: string[]; + filters: any[]; + hideEmptyRowItems: "NONE" | "BEFORE_FIRST" | "AFTER_LAST" | "BEFORE_FIRST_AFTER_LAST" | "ALL"; + hideLegend: boolean; + hideNaData: boolean; + hideSubtitle: boolean; + hideTitle: boolean; + id: Id; + interpretations: Ref[]; + itemOrganisationUnitGroups: Ref[]; + lastUpdated: string; + lastUpdatedBy: Ref; + legendDisplayStrategy: "FIXED" | "BY_DATA_ITEM"; + legendSet: Ref; + name: string; + noSpaceBetweenColumns: boolean; + organisationUnitGroupSetDimensions: OrganisationUnitGroupSetDimension[]; + organisationUnitLevels: number[]; + organisationUnits: Ref[]; + outputType: "EVENT" | "ENROLLMENT" | "TRACKED_ENTITY_INSTANCE"; + parentGraphMap: Map; + percentStackedValues: boolean; + periods: any[]; + program: Ref; + programIndicatorDimensions: TrackedEntityProgramIndicatorDimension[]; + programStage: Ref; + programStatus: "ACTIVE" | "COMPLETED" | "CANCELLED"; + publicAccess: string; + rangeAxisDecimals: number; + rangeAxisLabel: string; + rangeAxisMaxValue: number; + rangeAxisMinValue: number; + rangeAxisSteps: number; + regressionType: "NONE" | "LINEAR" | "POLYNOMIAL" | "LOESS"; + relativePeriods: any; + rowDimensions: string[]; + rows: any[]; + shortName: string; + showData: boolean; + sortOrder: number; + startDate: string; + subscribed: boolean; + subscribers: string[]; + subtitle: string; + targetLineLabel: string; + targetLineValue: number; + timeField: string; + title: string; + topLimit: number; + translations: Translation[]; + type: "COLUMN" | "STACKED_COLUMN" | "BAR" | "STACKED_BAR" | "LINE" | "AREA" | "PIE" | "RADAR" | "GAUGE"; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; + userOrganisationUnit: boolean; + userOrganisationUnitChildren: boolean; + userOrganisationUnitGrandChildren: boolean; + value: any; +}; + +export type EventReport = { + access: Access; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + attributeDimensions: any[]; + attributeValueDimension: any; + attributeValues: AttributeValue[]; + categoryDimensions: CategoryDimension[]; + categoryOptionGroupSetDimensions: CategoryOptionGroupSetDimension[]; + code: Id; + colSubTotals: boolean; + colTotals: boolean; + collapseDataDimensions: boolean; + columnDimensions: string[]; + columns: any[]; + completedOnly: boolean; + created: string; + dataDimensionItems: any[]; + dataElementDimensions: TrackedEntityDataElementDimension[]; + dataElementGroupSetDimensions: DataElementGroupSetDimension[]; + dataElementValueDimension: DataElement; + dataType: "AGGREGATED_VALUES" | "EVENTS"; + description: string; + digitGroupSeparator: "COMMA" | "SPACE" | "NONE"; + displayDensity: "COMFORTABLE" | "NORMAL" | "COMPACT" | "NONE"; + displayDescription: string; + displayName: string; + displayShortName: string; + endDate: string; + eventStatus: "ACTIVE" | "COMPLETED" | "VISITED" | "SCHEDULE" | "OVERDUE" | "SKIPPED"; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + filterDimensions: string[]; + filters: any[]; + fontSize: "LARGE" | "NORMAL" | "SMALL"; + hideEmptyRows: boolean; + hideNaData: boolean; + hideSubtitle: boolean; + hideTitle: boolean; + id: Id; + interpretations: Ref[]; + itemOrganisationUnitGroups: Ref[]; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + organisationUnitGroupSetDimensions: OrganisationUnitGroupSetDimension[]; + organisationUnitLevels: number[]; + organisationUnits: Ref[]; + outputType: "EVENT" | "ENROLLMENT" | "TRACKED_ENTITY_INSTANCE"; + parentGraphMap: Map; + periods: any[]; + program: Ref; + programIndicatorDimensions: TrackedEntityProgramIndicatorDimension[]; + programStage: Ref; + programStatus: "ACTIVE" | "COMPLETED" | "CANCELLED"; + publicAccess: string; + relativePeriods: any; + rowDimensions: string[]; + rowSubTotals: boolean; + rowTotals: boolean; + rows: any[]; + shortName: string; + showDimensionLabels: boolean; + showHierarchy: boolean; + sortOrder: number; + startDate: string; + subscribed: boolean; + subscribers: string[]; + subtitle: string; + timeField: string; + title: string; + topLimit: number; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; + userOrganisationUnit: boolean; + userOrganisationUnitChildren: boolean; + userOrganisationUnitGrandChildren: boolean; + value: any; +}; + +export type ProgramSection = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + created: string; + description: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + formName: string; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + program: Program; + programTrackedEntityAttribute: TrackedEntityAttribute[]; + publicAccess: string; + renderType: any; + sortOrder: number; + style: Style; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type ProgramIndicator = { + access: Access; + aggregateExportAttributeOptionCombo: string; + aggregateExportCategoryOptionCombo: string; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + analyticsPeriodBoundaries: AnalyticsPeriodBoundary[]; + analyticsType: "EVENT" | "ENROLLMENT"; + attributeValues: AttributeValue[]; + code: Id; + created: string; + decimals: number; + description: string; + dimensionItem: string; + dimensionItemType: + | "DATA_ELEMENT" + | "DATA_ELEMENT_OPERAND" + | "INDICATOR" + | "REPORTING_RATE" + | "PROGRAM_DATA_ELEMENT" + | "PROGRAM_ATTRIBUTE" + | "PROGRAM_INDICATOR" + | "PERIOD" + | "ORGANISATION_UNIT" + | "CATEGORY_OPTION" + | "OPTION_GROUP" + | "DATA_ELEMENT_GROUP" + | "ORGANISATION_UNIT_GROUP" + | "CATEGORY_OPTION_GROUP"; + displayDescription: string; + displayInForm: boolean; + displayName: string; + displayShortName: string; + expression: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + filter: string; + formName: string; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + legendSet: Ref; + legendSets: Ref[]; + name: string; + program: Ref; + programIndicatorGroups: Ref[]; + publicAccess: string; + shortName: string; + style: Style; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type ProgramRuleVariable = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + created: string; + dataElement: Ref; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + program: Ref; + programRuleVariableSourceType: + | "DATAELEMENT_NEWEST_EVENT_PROGRAM_STAGE" + | "DATAELEMENT_NEWEST_EVENT_PROGRAM" + | "DATAELEMENT_CURRENT_EVENT" + | "DATAELEMENT_PREVIOUS_EVENT" + | "CALCULATED_VALUE" + | "TEI_ATTRIBUTE"; + programStage: Ref; + publicAccess: string; + trackedEntityAttribute: TrackedEntityAttribute; + translations: Translation[]; + useCodeForOptionSet: boolean; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type ProgramIndicatorGroup = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + created: string; + description: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + programIndicators: Ref[]; + publicAccess: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type ProgramRuleAction = { + access: Access; + attributeValues: AttributeValue[]; + created: string; + dataElement: Ref; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + name: never; + lastUpdated: string; + lastUpdatedBy: Ref; + programRule: Ref; + programRuleActionType: + | "DISPLAYTEXT" + | "DISPLAYKEYVALUEPAIR" + | "HIDEFIELD" + | "HIDESECTION" + | "HIDEPROGRAMSTAGE" + | "ASSIGN" + | "SHOWWARNING" + | "WARNINGONCOMPLETE" + | "SHOWERROR" + | "ERRORONCOMPLETE" + | "CREATEEVENT" + | "SETMANDATORYFIELD" + | "SENDMESSAGE" + | "SCHEDULEMESSAGE" + | "HIDEOPTION" + | "SHOWOPTIONGROUP" + | "HIDEOPTIONGROUP"; + translations: Translation[]; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type ProgramRule = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + condition: string; + created: string; + description: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + priority: number; + program: Ref; + programRuleActions: Ref[]; + programStage: Ref; + publicAccess: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type MapView = { + access: Access; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + areaRadius: number; + attributeDimensions: any[]; + attributeValues: AttributeValue[]; + categoryDimensions: CategoryDimension[]; + categoryOptionGroupSetDimensions: CategoryOptionGroupSetDimension[]; + classes: number; + code: Id; + colorHigh: string; + colorLow: string; + colorScale: string; + columnDimensions: string[]; + columns: any[]; + completedOnly: boolean; + config: string; + created: string; + dataDimensionItems: any[]; + dataElementDimensions: TrackedEntityDataElementDimension[]; + dataElementGroupSetDimensions: DataElementGroupSetDimension[]; + description: string; + digitGroupSeparator: "COMMA" | "SPACE" | "NONE"; + displayDescription: string; + displayName: string; + displayShortName: string; + endDate: string; + eventClustering: boolean; + eventCoordinateField: string; + eventPointColor: string; + eventPointRadius: number; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + filters: any[]; + followUp: boolean; + hidden: boolean; + hideSubtitle: boolean; + hideTitle: boolean; + id: Id; + interpretations: Ref[]; + itemOrganisationUnitGroups: Ref[]; + labelFontColor: string; + labelFontSize: string; + labelFontStyle: string; + labelFontWeight: string; + labels: boolean; + lastUpdated: string; + lastUpdatedBy: Ref; + layer: string; + legendSet: Ref; + method: number; + name: string; + opacity: number; + organisationUnitGroupSet: Ref; + organisationUnitGroupSetDimensions: OrganisationUnitGroupSetDimension[]; + organisationUnitLevels: number[]; + organisationUnitSelectionMode: "SELECTED" | "CHILDREN" | "DESCENDANTS" | "ACCESSIBLE" | "CAPTURE" | "ALL"; + organisationUnits: Ref[]; + parentGraph: string; + parentGraphMap: Map; + parentLevel: number; + periods: any[]; + program: Ref; + programIndicatorDimensions: TrackedEntityProgramIndicatorDimension[]; + programStage: Ref; + programStatus: "ACTIVE" | "COMPLETED" | "CANCELLED"; + publicAccess: string; + radiusHigh: number; + radiusLow: number; + relativePeriods: any; + rows: any[]; + shortName: string; + sortOrder: number; + startDate: string; + styleDataItem: object; + subscribed: boolean; + subscribers: string[]; + subtitle: string; + timeField: string; + title: string; + topLimit: number; + trackedEntityType: Ref; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; + userOrganisationUnit: boolean; + userOrganisationUnitChildren: boolean; + userOrganisationUnitGrandChildren: boolean; +}; + +export type Chart = { + access: Access; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + attributeDimensions: any[]; + attributeValues: AttributeValue[]; + baseLineLabel: string; + baseLineValue: number; + category: string; + categoryDimensions: CategoryDimension[]; + categoryOptionGroupSetDimensions: CategoryOptionGroupSetDimension[]; + code: Id; + colorSet: Ref; + columns: any[]; + completedOnly: boolean; + created: string; + cumulativeValues: boolean; + dataDimensionItems: any[]; + dataElementDimensions: TrackedEntityDataElementDimension[]; + dataElementGroupSetDimensions: DataElementGroupSetDimension[]; + description: string; + digitGroupSeparator: "COMMA" | "SPACE" | "NONE"; + displayDescription: string; + displayName: string; + displayShortName: string; + domainAxisLabel: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + filterDimensions: string[]; + filters: any[]; + hideEmptyRowItems: "NONE" | "BEFORE_FIRST" | "AFTER_LAST" | "BEFORE_FIRST_AFTER_LAST" | "ALL"; + hideLegend: boolean; + hideSubtitle: boolean; + hideTitle: boolean; + id: Id; + interpretations: Ref[]; + itemOrganisationUnitGroups: Ref[]; + lastUpdated: string; + lastUpdatedBy: Ref; + legendDisplayStrategy: "FIXED" | "BY_DATA_ITEM"; + legendSet: Ref; + name: string; + noSpaceBetweenColumns: boolean; + organisationUnitGroupSetDimensions: OrganisationUnitGroupSetDimension[]; + organisationUnitLevels: number[]; + organisationUnits: Ref[]; + parentGraphMap: Map; + percentStackedValues: boolean; + periods: any[]; + programIndicatorDimensions: TrackedEntityProgramIndicatorDimension[]; + publicAccess: string; + rangeAxisDecimals: number; + rangeAxisLabel: string; + rangeAxisMaxValue: number; + rangeAxisMinValue: number; + rangeAxisSteps: number; + regressionType: "NONE" | "LINEAR" | "POLYNOMIAL" | "LOESS"; + relativePeriods: any; + rows: any[]; + series: string; + shortName: string; + showData: boolean; + sortOrder: number; + subscribed: boolean; + subscribers: string[]; + subtitle: string; + targetLineLabel: string; + targetLineValue: number; + timeField: string; + title: string; + topLimit: number; + translations: Translation[]; + type: "COLUMN" | "STACKED_COLUMN" | "BAR" | "STACKED_BAR" | "LINE" | "AREA" | "PIE" | "RADAR" | "GAUGE"; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; + userOrganisationUnit: boolean; + userOrganisationUnitChildren: boolean; + userOrganisationUnitGrandChildren: boolean; +}; + +export type Document = { + access: Access; + attachment: boolean; + attributeValues: AttributeValue[]; + code: Id; + contentType: string; + created: string; + displayName: string; + external: boolean; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + publicAccess: string; + translations: Translation[]; + url: string; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type Report = { + access: Access; + attributeValues: AttributeValue[]; + cacheStrategy: + | "NO_CACHE" + | "CACHE_15_MINUTES" + | "CACHE_30_MINUTES" + | "CACHE_1_HOUR" + | "CACHE_6AM_TOMORROW" + | "CACHE_TWO_WEEKS" + | "RESPECT_SYSTEM_SETTING"; + code: Id; + created: string; + designContent: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + publicAccess: string; + relativePeriods: any; + reportParams: any; + reportTable: any; + translations: Translation[]; + type: "JASPER_REPORT_TABLE" | "JASPER_JDBC" | "HTML"; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type ReportTable = { + access: Access; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + attributeDimensions: any[]; + attributeValues: AttributeValue[]; + categoryDimensions: CategoryDimension[]; + categoryOptionGroupSetDimensions: CategoryOptionGroupSetDimension[]; + code: Id; + colSubTotals: boolean; + colTotals: boolean; + columnDimensions: string[]; + columns: any[]; + completedOnly: boolean; + created: string; + cumulative: boolean; + dataDimensionItems: any[]; + dataElementDimensions: TrackedEntityDataElementDimension[]; + dataElementGroupSetDimensions: DataElementGroupSetDimension[]; + description: string; + digitGroupSeparator: "COMMA" | "SPACE" | "NONE"; + displayDensity: "COMFORTABLE" | "NORMAL" | "COMPACT" | "NONE"; + displayDescription: string; + displayName: string; + displayShortName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + filterDimensions: string[]; + filters: any[]; + fontSize: "LARGE" | "NORMAL" | "SMALL"; + hideEmptyColumns: boolean; + hideEmptyRows: boolean; + hideSubtitle: boolean; + hideTitle: boolean; + id: Id; + interpretations: Interpretation[]; + itemOrganisationUnitGroups: Ref[]; + lastUpdated: string; + lastUpdatedBy: Ref; + legendDisplayStrategy: "FIXED" | "BY_DATA_ITEM"; + legendDisplayStyle: "FILL" | "TEXT"; + legendSet: Ref; + measureCriteria: string; + name: string; + numberType: "VALUE" | "ROW_PERCENTAGE" | "COLUMN_PERCENTAGE"; + organisationUnitGroupSetDimensions: OrganisationUnitGroupSetDimension[]; + organisationUnitLevels: number[]; + organisationUnits: Ref[]; + parentGraphMap: Map; + periods: any[]; + programIndicatorDimensions: TrackedEntityProgramIndicatorDimension[]; + publicAccess: string; + regression: boolean; + relativePeriods: any; + reportParams: any; + rowDimensions: string[]; + rowSubTotals: boolean; + rowTotals: boolean; + rows: any[]; + shortName: string; + showDimensionLabels: boolean; + showHierarchy: boolean; + skipRounding: boolean; + sortOrder: number; + subscribed: boolean; + subscribers: string[]; + subtitle: string; + timeField: string; + title: string; + topLimit: number; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; + userOrganisationUnit: boolean; + userOrganisationUnitChildren: boolean; + userOrganisationUnitGrandChildren: boolean; +}; + +export type Map = { + access: Access; + attributeValues: AttributeValue[]; + basemap: string; + code: Id; + created: string; + description: string; + displayDescription: string; + displayName: string; + displayShortName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + interpretations: Ref[]; + lastUpdated: string; + lastUpdatedBy: Ref; + latitude: number; + longitude: number; + mapViews: Ref[]; + name: string; + publicAccess: string; + shortName: string; + subscribed: boolean; + subscribers: string[]; + title: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; + zoom: number; +}; + +export type DashboardItem = { + access: Access; + appKey: string; + attributeValues: AttributeValue[]; + chart: Ref; + code: Id; + contentCount: number; + created: string; + displayName: string; + eventChart: Ref; + eventReport: Ref; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + height: number; + id: Id; + interpretationCount: number; + interpretationLikeCount: number; + lastUpdated: string; + lastUpdatedBy: Ref; + map: Map; + messages: boolean; + name: string; + publicAccess: string; + reportTable: Ref; + reports: Ref[]; + resources: Ref[]; + shape: "NORMAL" | "DOUBLE_WIDTH" | "FULL_WIDTH"; + text: string; + translations: Translation[]; + type: + | "CHART" + | "EVENT_CHART" + | "MAP" + | "REPORT_TABLE" + | "EVENT_REPORT" + | "USERS" + | "REPORTS" + | "RESOURCES" + | "TEXT" + | "MESSAGES" + | "APP"; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; + users: Ref[]; + width: number; + x: number; + y: number; +}; + +export type Dashboard = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + created: string; + dashboardItems: DashboardItem[]; + description: string; + displayDescription: string; + displayName: string; + displayShortName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + itemCount: number; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + publicAccess: string; + shortName: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type OrganisationUnitGroupSetDimension = { + organisationUnitGroupSet: Ref; + organisationUnitGroups: Ref[]; +}; + +export type DataElementOperand = { + access: Access; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + attributeOptionCombo: Ref; + attributeValues: AttributeValue[]; + categoryOptionCombo: Ref; + code: Id; + created: string; + dataElement: Ref; + description: string; + dimensionItem: string; + dimensionItemType: + | "DATA_ELEMENT" + | "DATA_ELEMENT_OPERAND" + | "INDICATOR" + | "REPORTING_RATE" + | "PROGRAM_DATA_ELEMENT" + | "PROGRAM_ATTRIBUTE" + | "PROGRAM_INDICATOR" + | "PERIOD" + | "ORGANISATION_UNIT" + | "CATEGORY_OPTION" + | "OPTION_GROUP" + | "DATA_ELEMENT_GROUP" + | "ORGANISATION_UNIT_GROUP" + | "CATEGORY_OPTION_GROUP"; + displayDescription: string; + displayName: string; + displayShortName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + legendSet: Ref; + legendSets: Ref[]; + name: string; + publicAccess: string; + shortName: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type Interpretation = { + access: Access; + attributeValues: AttributeValue[]; + chart: Chart; + code: Id; + comments: InterpretationComment[]; + created: string; + dataSet: DataSet; + displayName: string; + eventChart: EventChart; + eventReport: EventReport; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + likedBy: User[]; + likes: number; + map: Map; + mentions: any[]; + name: string; + organisationUnit: Ref; + period: any; + publicAccess: string; + reportTable: ReportTable; + text: string; + translations: Translation[]; + type: "REPORT_TABLE" | "CHART" | "MAP" | "EVENT_REPORT" | "EVENT_CHART" | "DATASET_REPORT"; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type CategoryOptionGroupSetDimension = { + categoryOptionGroupSet: Ref; + categoryOptionGroups: Ref[]; +}; + +export type TrackedEntityProgramIndicatorDimension = { + filter: string; + legendSet: Ref; + programIndicator: Ref; +}; + +export type Legend = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + color: string; + created: string; + displayName: string; + endValue: number; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + image: string; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + publicAccess: string; + startValue: number; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type InterpretationComment = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + created: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + mentions: any[]; + name: string; + publicAccess: string; + text: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type AnalyticsPeriodBoundary = { + access: Access; + analyticsPeriodBoundaryType: + | "BEFORE_START_OF_REPORTING_PERIOD" + | "BEFORE_END_OF_REPORTING_PERIOD" + | "AFTER_START_OF_REPORTING_PERIOD" + | "AFTER_END_OF_REPORTING_PERIOD"; + attributeValues: AttributeValue[]; + boundaryTarget: string; + code: Id; + created: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + offsetPeriodType: string; + offsetPeriods: number; + publicAccess: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type ProgramDataElementDimensionItem = { + access: Access; + aggregationType: + | "SUM" + | "AVERAGE" + | "AVERAGE_SUM_ORG_UNIT" + | "LAST" + | "LAST_AVERAGE_ORG_UNIT" + | "COUNT" + | "STDDEV" + | "VARIANCE" + | "MIN" + | "MAX" + | "NONE" + | "CUSTOM" + | "DEFAULT"; + attributeValues: AttributeValue[]; + code: Id; + created: string; + dataElement: DataElement; + description: string; + dimensionItem: string; + dimensionItemType: + | "DATA_ELEMENT" + | "DATA_ELEMENT_OPERAND" + | "INDICATOR" + | "REPORTING_RATE" + | "PROGRAM_DATA_ELEMENT" + | "PROGRAM_ATTRIBUTE" + | "PROGRAM_INDICATOR" + | "PERIOD" + | "ORGANISATION_UNIT" + | "CATEGORY_OPTION" + | "OPTION_GROUP" + | "DATA_ELEMENT_GROUP" + | "ORGANISATION_UNIT_GROUP" + | "CATEGORY_OPTION_GROUP"; + displayDescription: string; + displayName: string; + displayShortName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + legendSet: Ref; + legendSets: Ref[]; + name: string; + program: Program; + publicAccess: string; + shortName: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; + valueType: + | "TEXT" + | "LONG_TEXT" + | "LETTER" + | "PHONE_NUMBER" + | "EMAIL" + | "BOOLEAN" + | "TRUE_ONLY" + | "DATE" + | "DATETIME" + | "TIME" + | "NUMBER" + | "UNIT_INTERVAL" + | "PERCENTAGE" + | "INTEGER" + | "INTEGER_POSITIVE" + | "INTEGER_NEGATIVE" + | "INTEGER_ZERO_OR_POSITIVE" + | "TRACKER_ASSOCIATE" + | "USERNAME" + | "COORDINATE" + | "ORGANISATION_UNIT" + | "AGE" + | "URL" + | "FILE_RESOURCE" + | "IMAGE"; +}; + +export type UserGroupAccess = { + access: string; + displayName: string; + id: string; + userGroupUid: string; +}; + +export type DataElementGroupSetDimension = { + dataElementGroupSet: Ref; + dataElementGroups: Ref[]; +}; + +export type CategoryDimension = { + category: Ref; + categoryOptions: Ref[]; +}; + +export type TrackedEntityDataElementDimension = { + dataElement: Ref; + filter: string; + legendSet: Ref; +}; + +export type ProgramStageDataElement = { + access: Access; + allowFutureDate: boolean; + allowProvidedElsewhere: boolean; + attributeValues: AttributeValue[]; + code: Id; + compulsory: boolean; + created: string; + dataElement: Ref; + displayInReports: boolean; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + programStage: Ref; + publicAccess: string; + renderOptionsAsRadio: boolean; + renderType: any; + skipSynchronization: boolean; + sortOrder: number; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type UserCredentials = { + access: Access; + attributeValues: AttributeValue[]; + catDimensionConstraints: Ref[]; + code: Id; + cogsDimensionConstraints: Ref[]; + created: string; + disabled: boolean; + displayName: string; + externalAccess: boolean; + externalAuth: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + invitation: boolean; + lastLogin: string; + lastUpdated: string; + lastUpdatedBy: Ref; + ldapId: string; + name: string; + openId: string; + password: string; + passwordLastUpdated: string; + publicAccess: string; + selfRegistered: boolean; + translations: Translation[]; + twoFA: boolean; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; + userInfo: User; + userRoles: Ref[]; + username: string; +}; + +export type MessageConversation = { + access: Access; + assignee: Ref; + attributeValues: AttributeValue[]; + code: Id; + created: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + followUp: boolean; + id: Id; + lastMessage: string; + lastSender: User; + lastSenderFirstname: string; + lastSenderSurname: string; + lastUpdated: string; + lastUpdatedBy: Ref; + messageCount: number; + messageType: "PRIVATE" | "SYSTEM" | "VALIDATION_RESULT" | "TICKET"; + messages: any[]; + name: string; + priority: "NONE" | "LOW" | "MEDIUM" | "HIGH"; + publicAccess: string; + read: boolean; + status: "NONE" | "OPEN" | "PENDING" | "INVALID" | "SOLVED"; + subject: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userFirstname: string; + userGroupAccesses: UserGroupAccess[]; + userMessages: any[]; + userSurname: string; +}; + +export type Color = { + access: Access; + attributeValues: AttributeValue[]; + code: Id; + color: string; + created: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + publicAccess: string; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type DataInputPeriod = { + closingDate: string; + openingDate: string; + period: any; +}; + +export type ProgramTrackedEntityAttribute = { + access: Access; + allowFutureDate: boolean; + attributeValues: AttributeValue[]; + code: Id; + created: string; + displayInList: boolean; + displayName: string; + displayShortName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + mandatory: boolean; + name: string; + program: Ref; + programTrackedEntityAttributeGroups: ProgramTrackedEntityAttributeGroup[]; + publicAccess: string; + renderOptionsAsRadio: boolean; + renderType: any; + searchable: boolean; + sortOrder: number; + trackedEntityAttribute: Ref; + translations: Translation[]; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; + valueType: + | "TEXT" + | "LONG_TEXT" + | "LETTER" + | "PHONE_NUMBER" + | "EMAIL" + | "BOOLEAN" + | "TRUE_ONLY" + | "DATE" + | "DATETIME" + | "TIME" + | "NUMBER" + | "UNIT_INTERVAL" + | "PERCENTAGE" + | "INTEGER" + | "INTEGER_POSITIVE" + | "INTEGER_NEGATIVE" + | "INTEGER_ZERO_OR_POSITIVE" + | "TRACKER_ASSOCIATE" + | "USERNAME" + | "COORDINATE" + | "ORGANISATION_UNIT" + | "AGE" + | "URL" + | "FILE_RESOURCE" + | "IMAGE"; +}; + +export type DataSetElement = { + categoryCombo: Ref; + dataElement: Ref; + dataSet: Ref; +}; + +export type UserAccess = { + access: string; + displayName: string; + id: string; + userUid: string; +}; + +export type SqlView = { + access: Access; + attributeValues: AttributeValue[]; + cacheStrategy: + | "NO_CACHE" + | "CACHE_15_MINUTES" + | "CACHE_30_MINUTES" + | "CACHE_1_HOUR" + | "CACHE_6AM_TOMORROW" + | "CACHE_TWO_WEEKS" + | "RESPECT_SYSTEM_SETTING"; + code: Id; + created: string; + description: string; + displayName: string; + externalAccess: boolean; + favorite: boolean; + favorites: string[]; + href: string; + id: Id; + lastUpdated: string; + lastUpdatedBy: Ref; + name: string; + publicAccess: string; + sqlQuery: string; + translations: Translation[]; + type: "VIEW" | "MATERIALIZED_VIEW" | "QUERY"; + user: Ref; + userAccesses: UserAccess[]; + userGroupAccesses: UserGroupAccess[]; +}; + +export type MetadataEntity = + | UserRole + | Attribute + | User + | UserGroup + | Option + | OptionSet + | OptionGroupSet + | OptionGroup + | LegendSet + | ColorSet + | OrganisationUnit + | OrganisationUnitLevel + | OrganisationUnitGroup + | OrganisationUnitGroupSet + | CategoryOption + | CategoryOptionGroup + | CategoryOptionGroupSet + | Category + | CategoryCombo + | CategoryOptionCombo + | DataElement + | DataElementGroup + | DataElementGroupSet + | IndicatorType + | Indicator + | IndicatorGroup + | IndicatorGroupSet + | DataEntryForm + | DataSet + | DataSetNotificationTemplate + | Section + | DataApprovalLevel + | DataApprovalWorkflow + | ValidationRule + | ValidationRuleGroup + | ValidationNotificationTemplate + | TrackedEntityAttribute + | RelationshipType + | TrackedEntityType + | ProgramTrackedEntityAttributeGroup + | ProgramStageSection + | ProgramNotificationTemplate + | ProgramStage + | Program + | EventChart + | EventReport + | ProgramSection + | ProgramIndicator + | ProgramRuleVariable + | ProgramIndicatorGroup + | ProgramRuleAction + | ProgramRule + | MapView + | Report + | ReportTable + | Map + | Chart + | Document + | Dashboard + | MessageConversation + | SqlView; + +export type MetadataKey = "userRoles" | "attributes" | ""; + +//TODO: Add as value entoty definitions +// currently this concept are models with include/exclude rules, collectionName... +export type MetadataEntities = { + userRoles: UserRole[]; + attributes: Attribute[]; + users: Ref[]; + userGroups: UserGroup[]; + options: Ref[]; + optionSets: OptionSet[]; + optionGroupSets: OptionGroupSet[]; + optionGroups: OptionGroup[]; + legendSets: LegendSet[]; + colorSets: ColorSet[]; + organisationUnits: Ref[]; + organisationUnitLevels: OrganisationUnitLevel[]; + organisationUnitGroups: OrganisationUnitGroup[]; + organisationUnitGroupSets: OrganisationUnitGroupSet[]; + categoryOptions: CategoryOption[]; + categoryOptionGroups: CategoryOptionGroup[]; + categoryOptionGroupSets: CategoryOptionGroupSet[]; + categories: Category[]; + categoryCombos: CategoryCombo[]; + categoryOptionCombos: CategoryOptionCombo[]; + dataElements: DataElement[]; + dataElementGroups: DataElementGroup[]; + dataElementGroupSets: DataElementGroupSet[]; + indicatorTypes: IndicatorType[]; + indicators: Indicator[]; + indicatorGroups: IndicatorGroup[]; + indicatorGroupSets: IndicatorGroupSet[]; + dataEntryForms: DataEntryForm[]; + dataSets: DataSet[]; + dataSetNotificationTemplates: DataSetNotificationTemplate[]; + sections: Section[]; + dataApprovalLevels: DataApprovalLevel[]; + dataApprovalWorkflows: DataApprovalWorkflow[]; + validationRules: ValidationRule[]; + validationRuleGroups: ValidationRuleGroup[]; + validationNotificationTemplates: ValidationNotificationTemplate[]; + trackedEntityAttributes: TrackedEntityAttribute[]; + relationshipTypes: RelationshipType[]; + trackedEntityTypes: TrackedEntityType[]; + programTrackedEntityAttributeGroups: ProgramTrackedEntityAttributeGroup[]; + programStageSections: ProgramStageSection[]; + programNotificationTemplates: ProgramNotificationTemplate[]; + programStages: ProgramStage[]; + programs: Program[]; + eventCharts: EventChart[]; + eventReports: EventReport[]; + programSections: ProgramSection[]; + programIndicators: ProgramIndicator[]; + programRuleVariables: ProgramRuleVariable[]; + programIndicatorGroups: ProgramIndicatorGroup[]; + programRuleActions: ProgramRuleAction[]; + programRules: ProgramRule[]; + mapViews: MapView[]; + reports: Report[]; + reportTables: ReportTable[]; + maps: Map[]; + charts: Chart[]; + documents: Document[]; + dashboards: Dashboard[]; + messageConversations: MessageConversation[]; + sqlViews: SqlView[]; +}; + +export type MetadataPackage = Partial>; diff --git a/src/domain/entities/Ref.ts b/src/domain/entities/Ref.ts index 8b95ca2..5816ac1 100644 --- a/src/domain/entities/Ref.ts +++ b/src/domain/entities/Ref.ts @@ -1,3 +1,5 @@ +import { GetSchemaType, Schema } from "../../utils/codec"; + export type Id = string; export interface Ref { @@ -7,3 +9,11 @@ export interface Ref { export interface NamedRef extends Ref { name: string; } + +export const SharingSettingModel = Schema.object({ + access: Schema.string, + id: Schema.dhis2Id, + name: Schema.string, +}); + +export type SharingSetting = GetSchemaType; diff --git a/src/domain/entities/Schemas.ts b/src/domain/entities/Schemas.ts new file mode 100644 index 0000000..a5bb349 --- /dev/null +++ b/src/domain/entities/Schemas.ts @@ -0,0 +1,28 @@ +export type Id = string; + +export interface Access { + read: boolean; + update: boolean; + externalize: boolean; + delete: boolean; + write: boolean; + manage: boolean; +} + +export interface Translation { + property: string; + locale: string; + value: string; +} + +export interface Style { + color: string; + icon: string; +} + +export interface Expression { + expression: string; + description: string; + missingValueStrategy: "NEVER_SKIP" | "SKIP_IF_ANY_VALUE_MISSING" | "SKIP_IF_ALL_VALUES_MISSING"; + slidingWindow: boolean; +} diff --git a/src/domain/repositories/InstanceRepository.ts b/src/domain/repositories/InstanceRepository.ts index 2d7d6ef..b17e7d4 100644 --- a/src/domain/repositories/InstanceRepository.ts +++ b/src/domain/repositories/InstanceRepository.ts @@ -1,8 +1,10 @@ import { FutureData } from "../entities/Future"; import { User } from "../entities/User"; +import { UserSearch } from "../../data/entities/SearchUser"; export interface InstanceRepository { getBaseUrl(): string; getCurrentUser(): FutureData; getInstanceVersion(): FutureData; + searchUsers(query: string): Promise; } diff --git a/src/domain/repositories/MetadataRepository.ts b/src/domain/repositories/MetadataRepository.ts new file mode 100644 index 0000000..4d25eac --- /dev/null +++ b/src/domain/repositories/MetadataRepository.ts @@ -0,0 +1,19 @@ +import { FutureData } from "../entities/Future"; + +export interface MetadataRepository { + listAllMetadata(options: ListAllMetadataParams): FutureData; + listMetadata(options: ListMetadataParams): FutureData; +} + +export interface ListAllMetadataParams { + model: string; + page?: number; + pageSize?: number; + search?: string; + order?: [string, string]; +} + +export interface ListMetadataParams { + model: string; + id: string; +} diff --git a/src/domain/usecases/GetAllMetadataUseCase.ts b/src/domain/usecases/GetAllMetadataUseCase.ts new file mode 100644 index 0000000..e709fc9 --- /dev/null +++ b/src/domain/usecases/GetAllMetadataUseCase.ts @@ -0,0 +1,11 @@ +import { UseCase } from "../../CompositionRoot"; +import { FutureData } from "../entities/Future"; +import { MetadataRepository, ListAllMetadataParams } from "../repositories/MetadataRepository"; + +export class GetAllMetadataUseCase implements UseCase { + constructor(private metadataRepository: MetadataRepository) {} + + public execute(params: ListAllMetadataParams): FutureData { + return this.metadataRepository.listAllMetadata(params); + } +} diff --git a/src/domain/usecases/GetMetadataUseCase.ts b/src/domain/usecases/GetMetadataUseCase.ts new file mode 100644 index 0000000..742f71b --- /dev/null +++ b/src/domain/usecases/GetMetadataUseCase.ts @@ -0,0 +1,11 @@ +import { UseCase } from "../../CompositionRoot"; +import { FutureData } from "../entities/Future"; +import { MetadataRepository, ListMetadataParams } from "../repositories/MetadataRepository"; + +export class GetMetadataUseCase implements UseCase { + constructor(private metadataRepository: MetadataRepository) {} + + public execute(params: ListMetadataParams): FutureData { + return this.metadataRepository.listMetadata(params); + } +} diff --git a/src/domain/usecases/SearchUserUseCase.ts b/src/domain/usecases/SearchUserUseCase.ts new file mode 100644 index 0000000..5b9b4e0 --- /dev/null +++ b/src/domain/usecases/SearchUserUseCase.ts @@ -0,0 +1,11 @@ +import { UseCase } from "../../CompositionRoot"; +import { UserSearch } from "../../data/entities/SearchUser"; +import { InstanceRepository } from "../repositories/InstanceRepository"; + +export class SearchUserUseCase implements UseCase { + constructor(private instanceRepository: InstanceRepository) {} + + public execute(query: string): Promise { + return this.instanceRepository.searchUsers(query); + } +} diff --git a/src/utils/codec.ts b/src/utils/codec.ts index e6b309a..9e55dde 100644 --- a/src/utils/codec.ts +++ b/src/utils/codec.ts @@ -28,12 +28,12 @@ import { FormattedStringFromDate, Integer, IntegerFromString, - Interface, JsonFromString, NonEmptyString, NumberFromString, NumberRangedIn, StringLengthRangedIn, + RegExpMatchedString, } from "purify-ts-extra-codec"; import { Either } from "../domain/entities/Either"; @@ -95,8 +95,22 @@ export const falseType = Codec.custom({ schema: () => ({ type: "boolean" }), }); +// Short and long HEX color format +const colorRegExp = /^#[0-9a-fA-F]{3,6}$/; + +// RFC2822 email format +const emailRegExp = + /^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/; + +// Diego Perini (License: MIT) +const urlRegExp = + /^(?:(?:https?:\/\/)?localhost(?::\d{2,5})?)$|(?:(?:https?|ftp):\/\/)(?:\S+(?::\S*)?@)?(?:(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z\u00a1-\uffff0-9]+-?)*[a-z\u00a1-\uffff0-9]+)(?:\.(?:[a-z\u00a1-\uffff0-9]+-?)*[a-z\u00a1-\uffff0-9]+)*(?:\.(?:[a-z\u00a1-\uffff]{2,})))(?::\d{2,5})?(?:\/[^\s]*)?$/; + +// DHIS2 valid uid +const dhis2Uid = /^[a-zA-Z]{1}[a-zA-Z0-9]{10}$/; + export const Schema = { - object: Interface, + object: Codec.interface, stringObject: JsonFromString, array, nonEmptyArray: nonEmptyList, @@ -108,8 +122,6 @@ export const Schema = { number: oneOf([number, NumberFromString]), numberBetween: NumberRangedIn, boolean: booleanFromString, - true: trueType, - false: falseType, null: nullType, undefined: undefinedType, unknown, @@ -124,6 +136,11 @@ export const Schema = { exact: exactly, extend: intersect, maybe, + regex: RegExpMatchedString, + color: RegExpMatchedString(colorRegExp), + email: RegExpMatchedString(emailRegExp), + url: RegExpMatchedString(urlRegExp), + dhis2Id: RegExpMatchedString(dhis2Uid), chain: chainCodec, custom: Codec.custom, lazy, @@ -135,3 +152,4 @@ export declare type FromType = { export { Codec, parseError as parseSchemaError } from "purify-ts"; export type { DecodeError as SchemaDecodeError } from "purify-ts"; +export type { FromType as GetTypeFromSchema, GetType as GetSchemaType } from "purify-ts"; diff --git a/src/webapp/components/dropdown/Dropdown.tsx b/src/webapp/components/dropdown/Dropdown.tsx new file mode 100644 index 0000000..5fb3745 --- /dev/null +++ b/src/webapp/components/dropdown/Dropdown.tsx @@ -0,0 +1,122 @@ +import { FormControl, InputLabel, MenuItem, MuiThemeProvider, Select } from "@material-ui/core"; +import { createMuiTheme } from "@material-ui/core/styles"; +import _ from "lodash"; +//import React from "react"; +import i18n from "@dhis2/d2-i18n"; +import { muiTheme } from "../../pages/app/themes/dhis2.theme"; + +export interface DropdownOption { + id: T; + name: string; +} + +export type DropdownViewOption = "filter" | "inline" | "full-width"; + +interface DropdownProps { + items: DropdownOption[]; + value: string; + label?: string; + onChange?: Function; + onValueChange?(value: T): void; + hideEmpty?: boolean; + emptyLabel?: string; + view?: DropdownViewOption; + disabled?: boolean; +} + +const getTheme = (view: DropdownViewOption) => { + switch (view) { + case "filter": + return createMuiTheme({ + ...muiTheme, + overrides: { + MuiFormLabel: { + root: { + color: "#aaaaaa", + "&$focused": { + color: "#aaaaaa", + }, + top: "-9px !important", + marginLeft: 10, + }, + }, + MuiInput: { + root: { + marginLeft: 10, + }, + formControl: { + minWidth: 250, + marginTop: "8px !important", + }, + input: { + color: "#565656", + }, + }, + }, + }); + case "inline": + return createMuiTheme({ + ...muiTheme, + overrides: { + MuiFormControl: { + root: { + verticalAlign: "middle", + marginBottom: 5, + }, + }, + }, + }); + default: + return {}; + } +}; + +export function Dropdown({ + items, + value, + onChange = _.noop, + onValueChange = _.noop, + label, + hideEmpty = false, + emptyLabel, + view = "filter", + disabled = false, +}: DropdownProps) { + const inlineStyles = { minWidth: 120, paddingLeft: 25, paddingRight: 25 }; + const styles = view === "inline" ? inlineStyles : {}; + + return ( + + + {view !== "inline" && label && {label}} + + + + ); +} + +export default Dropdown; diff --git a/src/webapp/pages/Router.tsx b/src/webapp/pages/Router.tsx index 754cf63..d2764cc 100644 --- a/src/webapp/pages/Router.tsx +++ b/src/webapp/pages/Router.tsx @@ -1,11 +1,13 @@ import { HashRouter, Route, Switch } from "react-router-dom"; import { ExamplePage } from "./example/ExamplePage"; import { LandingPage } from "./landing/LandingPage"; +import { BulkApply } from "./bulkApply/BulkApply"; export const Router = () => { return ( + } /> } diff --git a/src/webapp/pages/bulkApply/BulkApply.tsx b/src/webapp/pages/bulkApply/BulkApply.tsx new file mode 100644 index 0000000..c4912ed --- /dev/null +++ b/src/webapp/pages/bulkApply/BulkApply.tsx @@ -0,0 +1,31 @@ +import React, { useState, useCallback } from "react"; +import { SharingWizard } from "./SharingWizard"; +import { ConfirmationDialog, ConfirmationDialogProps } from "@eyeseetea/d2-ui-components"; +import i18n from "@dhis2/d2-i18n"; + +export const BulkApply: React.FC = () => { + const [metadata, setMetadata] = useState([]); + const [dialogProps, updateDialog] = useState(null); + + const onChange = useCallback((update: Parameters[0]) => { + setMetadata(update); + }, []); + + const onCancel = useCallback(() => { + updateDialog({ + title: i18n.t("Cancel sharing action?"), + description: i18n.t("All your changes will be lost. Are you sure you want to proceed?"), + saveText: i18n.t("Yes"), + cancelText: i18n.t("No"), + onSave: () => null, + onCancel: () => updateDialog(null), + }); + }, []); + + return ( + <> + {dialogProps && } + ; + + ); +}; diff --git a/src/webapp/pages/bulkApply/SharingWizard.tsx b/src/webapp/pages/bulkApply/SharingWizard.tsx new file mode 100644 index 0000000..63f9ea4 --- /dev/null +++ b/src/webapp/pages/bulkApply/SharingWizard.tsx @@ -0,0 +1,50 @@ +import React, { useMemo } from "react"; +import { Wizard, WizardStep } from "@eyeseetea/d2-ui-components"; +import { useLocation } from "react-router-dom"; +import _ from "lodash"; + +import { MetadataSharingWizardStepProps, metadataSharingWizardSteps } from "./steps"; + +export interface MetadataSharingWizardProps extends MetadataSharingWizardStepProps { + className?: string; +} + +export const SharingWizard: React.FC = props => { + const location = useLocation(); + + const steps = useMemo(() => metadataSharingWizardSteps.map(step => ({ ...step, props })), [props]); + + const onStepChangeRequest = async (_prev: WizardStep) => { + return undefined; + }; + + /* const onStepChangeRequest = async (_currentStep: WizardStep, newStep: WizardStep) => { + const index = _(steps).findIndex(step => step.key === newStep.key); + const validationMessages = _.take(steps, index).map(({ validationKeys }) => + getValidationMessages(syncRule, validationKeys) + ); + + return _.flatten(validationMessages); + };*/ + /* const steps = metadataSharingWizardSteps.map(step => ({ + ...step, + props: { + onCancel: () => console.log("User wants to cancel the wizard!"), + }, + }));*/ + + const urlHash = location.hash.slice(1); + const stepExists = steps.find(step => step.key === urlHash); + const firstStepKey = steps.map(step => step.key)[0]; + const initialStepKey = stepExists ? urlHash : firstStepKey; + + return ( + + ); +}; diff --git a/src/webapp/pages/bulkApply/steps/AccessStep.tsx b/src/webapp/pages/bulkApply/steps/AccessStep.tsx new file mode 100644 index 0000000..fe5740d --- /dev/null +++ b/src/webapp/pages/bulkApply/steps/AccessStep.tsx @@ -0,0 +1,82 @@ +import { ShareUpdate, Sharing, SharingRule } from "@eyeseetea/d2-ui-components"; +import React, { useCallback } from "react"; +import styled from "styled-components"; +import { SharingSetting } from "../../../../domain/entities/Ref"; +import i18n from "../../../../locales"; +import { useAppContext } from "../../../contexts/app-context"; +import { MetadataSharingWizardStepProps } from "./index"; + +export const AccessStep: React.FC = ({ + metadata, + onChange, +}: MetadataSharingWizardStepProps) => { + const { compositionRoot } = useAppContext(); + + const search = useCallback((query: string) => compositionRoot.instance.searchUsers(query), [compositionRoot]); + + const setModuleSharing = useCallback( + ({ publicAccess, userAccesses, userGroupAccesses }: ShareUpdate) => { + onChange((metadata: any) => { + return { + ...metadata, + publicAccess: publicAccess ?? metadata.publicAccess, + userAccesses: userAccesses ? mapSharingSettings(userAccesses) : metadata.userAccesses, + userGroupAccesses: userGroupAccesses + ? mapSharingSettings(userGroupAccesses) + : metadata.userGroupAccesses, + }; + }); + return Promise.resolve(); + }, + [onChange] + ); + + return ( + + + +
+ {i18n.t("Note: The sharing settings are only applied to the current metadata", { nsSeparator: false })} +
+
+ ); +}; + +const Footer = styled.div` + margin-top: 10px; + margin-bottom: 15px; + font-size: 1.1.em; + text-align: left; +`; + +const mapSharingSettings = (settings?: SharingRule[]): SharingSetting[] | undefined => { + return settings?.map(item => { + return { id: item.id, access: item.access, name: item.displayName }; + }); +}; + +const mapSharingRules = (settings?: SharingSetting[]): SharingRule[] | undefined => { + return settings?.map(item => { + return { id: item.id, access: item.access, displayName: item.name }; + }); +}; diff --git a/src/webapp/pages/bulkApply/steps/ListDependenciesStep.tsx b/src/webapp/pages/bulkApply/steps/ListDependenciesStep.tsx new file mode 100644 index 0000000..0e22069 --- /dev/null +++ b/src/webapp/pages/bulkApply/steps/ListDependenciesStep.tsx @@ -0,0 +1,97 @@ +import React, { useEffect, useState, useCallback } from "react"; // +import { useAppContext } from "../../../contexts/app-context"; +import { ObjectsTable, TableSelection, TableState } from "@eyeseetea/d2-ui-components"; // TableState, +import i18n from "@dhis2/d2-i18n"; +import _ from "lodash"; +import { MetadataSharingWizardStepProps } from "./index"; + +//import { MetadataEntities } from "../../../../domain/entities/MetadataEntities"; + +//import { ListMetadataAllParams } from "../../../domain/repositories/MetadataRepository"; +export const ListDependenciesStep: React.FC = ({ + metadata, +}: MetadataSharingWizardStepProps) => { + console.log(metadata); + const { compositionRoot } = useAppContext(); + const initialState = { + sorting: { + field: "displayName" as const, + order: "asc" as const, + }, + pagination: { + page: 1, + pageSize: 25, + }, + }; + const [metadataDependencies, setMetadataDependencies] = useState([]); + //const [isLoading, setIsLoading] = useState(false); + const [selection, setSelection] = useState([]); + + useEffect(() => { + const getMetadataDependencies = async () => { + //setIsLoading(true); + /* + 1. figure out how to show child elements in the table + 2. and how to check and uncheck them individually + 3. how to call the API for each of the metadata + 4. how to have child elements + */ + const { data } = await compositionRoot.metadata.list({ model: "dashboards", id: "Tinocd3QdaN" }).runAsync(); + //console.log(data); + const { date, ...dataWithoutDate } = data; + console.log(dataWithoutDate); + //dataWithoutDate.dashboards[0] + /* + to show should be like: + [ + { name: "dashboards", dashboards: [{}] }, + { name: "documents", documents: [{}] } + ] + */ + console.log(Object.entries(dataWithoutDate)); + const ff = Object.entries(dataWithoutDate).map(item => { + const objToReturn = { name: item[0], id: item[0], [item[0]]: item[1] }; + return objToReturn; + }); + console.log(ff); + setMetadataDependencies(ff); + //onChange(metadata => [...metadata, ...rows]); + //setIsLoading(false); + }; + getMetadataDependencies(); + }, [compositionRoot]); + + const onTableChange = useCallback(({ selection }: TableState) => { + console.log(selection); + setSelection(selection); + + const selectionIds = selection.map((select: any) => select.id); + console.log(metadataDependencies) + const selectionsFullData = metadataDependencies.filter((meta: any) => selectionIds.includes(meta.id)); + console.log(selectionsFullData) + //onChange([...metadata, ...selectionsFullData]); + }, []); + + //externalAccess: item.externalAccess, publicAccess: item.publicAccess, id: item.id, name: item.name + const columns = [ + { name: "name", text: i18n.t("Name"), sortable: true }, + { name: "id", text: i18n.t("ID"), sortable: true }, + { name: "publicAccess", text: i18n.t("Public Access"), sortable: true }, + { name: "externalAccess", text: i18n.t("External Access"), sortable: true }, + ]; + //loading={isLoading} + return ( +
+ + rows={metadataDependencies} + columns={columns} + onChange={onTableChange} + sorting={{ field: "position", order: "asc" }} + initialState={initialState} + selection={selection} + forceSelectionColumn={true} + childrenKeys={["dashboards", "documents"]} + /> +
+ ); +}; diff --git a/src/webapp/pages/bulkApply/steps/SelectMetadataStep.tsx b/src/webapp/pages/bulkApply/steps/SelectMetadataStep.tsx new file mode 100644 index 0000000..5b30553 --- /dev/null +++ b/src/webapp/pages/bulkApply/steps/SelectMetadataStep.tsx @@ -0,0 +1,128 @@ +import React, { useState, useEffect, useCallback } from "react"; +import { useAppContext } from "../../../contexts/app-context"; +import { ObjectsTable, TableSelection, TableState } from "@eyeseetea/d2-ui-components"; // TableState, +import i18n from "@dhis2/d2-i18n"; +import _ from "lodash"; +import { MetadataSharingWizardStepProps } from "./index"; +import Dropdown from "../../../components/dropdown/Dropdown"; +//import { MetadataEntities } from "../../../../domain/entities/MetadataEntities"; + +import { ListAllMetadataParams } from "../../../../domain/repositories/MetadataRepository"; +export const SelectMetadataStep: React.FC = ({ + onChange, +}: MetadataSharingWizardStepProps) => { + const { compositionRoot } = useAppContext(); + const initialState = { + sorting: { + field: "displayName" as const, + order: "asc" as const, + }, + pagination: { + page: 1, + pageSize: 25, + }, + }; + const [allMetadata, setAllMetadata] = useState([]); + const [isLoading, setIsLoading] = useState(false); + const [selection, setSelection] = useState([]); + const [filters, setFilters] = useState({ + model: "dashboards", + order: [initialState.sorting.field, initialState.sorting.order], + page: initialState.pagination.page, + pageSize: initialState.pagination.pageSize, + search: "", + }); + useEffect(() => { + const getMetadata = async () => { + setIsLoading(true); + const { + data: { objects: mdData }, + } = await compositionRoot.metadata.listAll(filters).runAsync(); + console.log(mdData); + const rows = mdData.map((item: any) => ({ + ...item, + //externalAccess: item.externalAccess.toString() || , + })); + setAllMetadata(rows); + //onChange(metadata => [...metadata, ...rows]); + setIsLoading(false); + }; + getMetadata(); + }, [filters, compositionRoot]); + + const onTableChange = useCallback( + ({ selection }: TableState, allMetadata) => { + setSelection(selection); + const selectionIds = selection.map((select: any) => select.id); + const selectionsFullData = allMetadata.filter((meta: any) => selectionIds.includes(meta.id)); + onChange(selectionsFullData); + }, + [onChange] + ); + + const updateFilters = useCallback( + (partialFilters: Partial) => { + setFilters(state => ({ ...state, page: 1, ...partialFilters })); + }, + [setFilters] + ); + //datasets programs and dashboards + useEffect(() => { + updateFilters({ + page: initialState.pagination.page, + }); + }, [updateFilters]); + + const changeModelFilter = (modelName: string) => { + updateFilters({ + ...filters, + model: modelName, + }); + }; + + const filterComponents = ( + +
+ +
+
+ ); + const changeSearchFilter = (value: string) => { + updateFilters({ search: value }); + }; + + //externalAccess: item.externalAccess, publicAccess: item.publicAccess, id: item.id, name: item.name + const columns = [ + { name: "name", text: i18n.t("Name"), sortable: true }, + { name: "id", text: i18n.t("ID"), sortable: true }, + { name: "publicAccess", text: i18n.t("Public Access"), sortable: true }, + //{ name: "externalAccess", text: i18n.t("External Access"), sortable: true }, + ]; + return ( +
+ + rows={allMetadata} + columns={columns} + onChange={selection => onTableChange(selection, allMetadata)} + sorting={{ field: "position", order: "asc" }} + loading={isLoading} + initialState={initialState} + selection={selection} + forceSelectionColumn={true} + filterComponents={filterComponents} + onChangeSearch={changeSearchFilter} + searchBoxLabel={i18n.t(`Search by name`)} + /> +
+ ); +}; diff --git a/src/webapp/pages/bulkApply/steps/SummaryApplyStep.tsx b/src/webapp/pages/bulkApply/steps/SummaryApplyStep.tsx new file mode 100644 index 0000000..a0dc5c4 --- /dev/null +++ b/src/webapp/pages/bulkApply/steps/SummaryApplyStep.tsx @@ -0,0 +1,63 @@ +import { Accordion, AccordionDetails, AccordionSummary, makeStyles, Typography } from "@material-ui/core"; +import ExpandMoreIcon from "@material-ui/icons/ExpandMore"; +import _ from "lodash"; +import React from "react"; +import { MetadataSharingWizardStepProps } from "./index"; +import i18n from "@dhis2/d2-i18n"; + +const useStyles = makeStyles(theme => ({ + accordionHeading1: { + marginLeft: 30, + fontSize: theme.typography.pxToRem(15), + flexBasis: "55%", + flexShrink: 0, + }, + accordionHeading2: { + fontSize: theme.typography.pxToRem(15), + color: theme.palette.text.secondary, + }, + accordionDetails: { + padding: "4px 24px 4px", + }, + accordion: { + paddingBottom: "10px", + }, + tooltip: { + maxWidth: 650, + fontSize: "0.9em", + }, +})); + +export const formatStatusTag = (value: string) => { + const text = _.startCase(_.toLower(value)); + const color = + value === "ERROR" || value === "FAILURE" || value === "NETWORK ERROR" + ? "#e53935" + : value === "DONE" || value === "SUCCESS" || value === "OK" + ? "#7cb342" + : "#3e2723"; + + return {text}; +}; + +export const SummaryApplyStep: React.FC = () => { + const classes = useStyles(); + + return ( + + }> + + {`Type: Example 1`} +
+ {origin && `${i18n.t("Origin")}: example origin `} + {origin &&
} +
+ {`${i18n.t("Status")}: status`} +
+ + + {i18n.t("Summary")} + +
+ ); +}; diff --git a/src/webapp/pages/bulkApply/steps/index.ts b/src/webapp/pages/bulkApply/steps/index.ts new file mode 100644 index 0000000..393e400 --- /dev/null +++ b/src/webapp/pages/bulkApply/steps/index.ts @@ -0,0 +1,51 @@ +import { WizardStep } from "@eyeseetea/d2-ui-components"; +//import { MetadataEntities } from "../../../../domain/entities/MetadataEntities"; +import i18n from "../../../../locales"; +import { ListDependenciesStep } from "./ListDependenciesStep"; +import { SelectMetadataStep } from "./SelectMetadataStep"; +import { AccessStep } from "./AccessStep"; +import { SummaryApplyStep } from "./SummaryApplyStep"; + +export interface MetadataSharingWizardStep extends WizardStep { + validationKeys: string[]; + props?: MetadataSharingWizardStepProps; +} + +export interface MetadataSharingWizardStepProps { + metadata: any; + onChange: (update: any | ((prev: any) => any)) => void; + onCancel: () => void; + //onClose: () => void; + //onSave: () => Promise; +} + +export const metadataSharingWizardSteps: MetadataSharingWizardStep[] = [ + { + key: "select-metadata", + label: i18n.t("Select Metadata"), + component: SelectMetadataStep, + validationKeys: ["selection"], + description: i18n.t("Select metadata to share"), + }, + { + key: "list-dependencies", + label: i18n.t("List Dependencies and Exclude"), + component: ListDependenciesStep, + validationKeys: ["name"], + description: i18n.t("List Dependencies and Exclude"), + }, + { + key: "sharing-access", + label: i18n.t("Sharing Access"), + component: AccessStep, + validationKeys: ["name"], + description: i18n.t("Sharing Access"), + }, + { + key: "summary-apply", + label: i18n.t("Summary and Apply Metadata"), + component: SummaryApplyStep, + validationKeys: ["name"], + description: i18n.t("List errors and warnings and apply metadata sharing"), + }, +]; From 4ed5a7b79ed5608092b574c993e6e110b057ae9b Mon Sep 17 00:00:00 2001 From: Jocelyn Dunkley Date: Tue, 24 Aug 2021 10:22:04 +0200 Subject: [PATCH 06/50] merged data for step2, cleaned up typing and comments and naming --- i18n/en.pot | 7 +- i18n/es.po | 5 +- src/CompositionRoot.ts | 4 +- .../repositories/MetadataD2ApiRepository.ts | 41 ++++++++-- src/domain/repositories/MetadataRepository.ts | 2 +- ... => GetMetadataWithDependenciesUseCase.ts} | 6 +- src/webapp/pages/bulkApply/BulkApply.tsx | 2 +- src/webapp/pages/bulkApply/SharingWizard.tsx | 15 ---- .../bulkApply/steps/ListDependenciesStep.tsx | 80 ++++--------------- .../bulkApply/steps/SelectMetadataStep.tsx | 42 +++------- src/webapp/pages/bulkApply/steps/index.ts | 22 ++++- 11 files changed, 91 insertions(+), 135 deletions(-) rename src/domain/usecases/{GetMetadataUseCase.ts => GetMetadataWithDependenciesUseCase.ts} (55%) diff --git a/i18n/en.pot b/i18n/en.pot index d265eb1..823c3df 100644 --- a/i18n/en.pot +++ b/i18n/en.pot @@ -5,8 +5,8 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -"POT-Creation-Date: 2021-08-23T08:29:16.387Z\n" -"PO-Revision-Date: 2021-08-23T08:29:16.387Z\n" +"POT-Creation-Date: 2021-08-23T09:35:28.814Z\n" +"PO-Revision-Date: 2021-08-23T09:35:28.814Z\n" msgid "Add" msgstr "" @@ -38,9 +38,6 @@ msgstr "" msgid "Note: The sharing settings are only applied to the current metadata" msgstr "" -msgid "Add module" -msgstr "" - msgid "Name" msgstr "" diff --git a/i18n/es.po b/i18n/es.po index e17c766..fd9d6a0 100644 --- a/i18n/es.po +++ b/i18n/es.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: i18next-conv\n" -"POT-Creation-Date: 2021-08-23T08:29:16.387Z\n" +"POT-Creation-Date: 2021-08-23T09:35:28.814Z\n" "PO-Revision-Date: 2018-10-25T09:02:35.143Z\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,9 +38,6 @@ msgstr "" msgid "Note: The sharing settings are only applied to the current metadata" msgstr "" -msgid "Add module" -msgstr "" - msgid "Name" msgstr "" diff --git a/src/CompositionRoot.ts b/src/CompositionRoot.ts index d4c7da3..c034851 100644 --- a/src/CompositionRoot.ts +++ b/src/CompositionRoot.ts @@ -7,7 +7,7 @@ import { SearchUserUseCase } from "./domain/usecases/SearchUserUseCase"; import { GetInstanceVersionUseCase } from "./domain/usecases/GetInstanceVersionUseCase"; import { GetAllMetadataUseCase } from "./domain/usecases/GetAllMetadataUseCase"; -import { GetMetadataUseCase } from "./domain/usecases/GetMetadataUseCase"; +import { GetMetadataWithDependenciesUseCase } from "./domain/usecases/GetMetadataWithDependenciesUseCase"; export function getCompositionRoot(instance: Instance) { const instanceRepository = new InstanceDefaultRepository(instance); @@ -21,7 +21,7 @@ export function getCompositionRoot(instance: Instance) { }), metadata: getExecute({ listAll: new GetAllMetadataUseCase(metadataRepository), - list: new GetMetadataUseCase(metadataRepository), + list: new GetMetadataWithDependenciesUseCase(metadataRepository), }), }; } diff --git a/src/data/repositories/MetadataD2ApiRepository.ts b/src/data/repositories/MetadataD2ApiRepository.ts index 1f3af30..55595d4 100644 --- a/src/data/repositories/MetadataD2ApiRepository.ts +++ b/src/data/repositories/MetadataD2ApiRepository.ts @@ -1,11 +1,12 @@ import { D2Api } from "@eyeseetea/d2-api/2.34"; -import { FutureData } from "../../domain/entities/Future"; +import { Future, FutureData } from "../../domain/entities/Future"; import { MetadataRepository } from "../../domain/repositories/MetadataRepository"; import { getD2APiFromInstance } from "../../utils/d2-api"; import { apiToFuture } from "../../utils/futures"; import { Instance } from "../entities/Instance"; import { MetadataEntities } from "../../domain/entities/MetadataEntities"; import { Model } from "../../types/d2-api"; +import _ from "lodash"; export class MetadataD2ApiRepository implements MetadataRepository { private api: D2Api; @@ -35,15 +36,39 @@ export class MetadataD2ApiRepository implements MetadataRepository { }) ); } - - public listMetadata(options: { model: "dataSets" | "programs" | "dashboards"; id: string }): FutureData { - const { model, id } = options; - console.log(options); - //@ts-ignore: d2-api incorrectly guessing model with string access - return apiToFuture(this.api.get(`/${model}/${id}/metadata.json`)); + //with dependencies + public listMetadataWithDependencies(options: [{ model: "dataSets" | "programs" | "dashboards"; id: string }]): FutureData { + return Future.futureMap(options, item => + apiToFuture(this.api.get(`/${item.model}/${item.id}/metadata.json`)) + ).map(data => { + const dataWithoutDate = data.map((dataItem: any) => { + const { date, ...everythingElse } = dataItem; // eslint-disable-line + return everythingElse; + }) + const mergedData = this.mergePayloads(dataWithoutDate) + return mergedData + }); } - + private getApiModel(type: keyof MetadataEntities): InstanceType { return this.api.models[type]; } + + private mergePayloads(payloads: Record[]): Record { + return _.reduce( + payloads, + (result, payload) => { + _.forOwn(payload, (value, key) => { + if (Array.isArray(value)) { + //@ts-ignore + const existing = result[key] ?? []; + //@ts-ignore + result[key] = _.uniqBy([...existing, ...value], ({ id }) => id); + } + }); + return result; + }, + {} + ); + } } diff --git a/src/domain/repositories/MetadataRepository.ts b/src/domain/repositories/MetadataRepository.ts index 4d25eac..9e689ed 100644 --- a/src/domain/repositories/MetadataRepository.ts +++ b/src/domain/repositories/MetadataRepository.ts @@ -2,7 +2,7 @@ import { FutureData } from "../entities/Future"; export interface MetadataRepository { listAllMetadata(options: ListAllMetadataParams): FutureData; - listMetadata(options: ListMetadataParams): FutureData; + listMetadataWithDependencies(options: ListMetadataParams[]): FutureData; } export interface ListAllMetadataParams { diff --git a/src/domain/usecases/GetMetadataUseCase.ts b/src/domain/usecases/GetMetadataWithDependenciesUseCase.ts similarity index 55% rename from src/domain/usecases/GetMetadataUseCase.ts rename to src/domain/usecases/GetMetadataWithDependenciesUseCase.ts index 742f71b..93dce7e 100644 --- a/src/domain/usecases/GetMetadataUseCase.ts +++ b/src/domain/usecases/GetMetadataWithDependenciesUseCase.ts @@ -2,10 +2,10 @@ import { UseCase } from "../../CompositionRoot"; import { FutureData } from "../entities/Future"; import { MetadataRepository, ListMetadataParams } from "../repositories/MetadataRepository"; -export class GetMetadataUseCase implements UseCase { +export class GetMetadataWithDependenciesUseCase implements UseCase { constructor(private metadataRepository: MetadataRepository) {} - public execute(params: ListMetadataParams): FutureData { - return this.metadataRepository.listMetadata(params); + public execute(params: ListMetadataParams[]): FutureData { + return this.metadataRepository.listMetadataWithDependencies(params); } } diff --git a/src/webapp/pages/bulkApply/BulkApply.tsx b/src/webapp/pages/bulkApply/BulkApply.tsx index c4912ed..c613247 100644 --- a/src/webapp/pages/bulkApply/BulkApply.tsx +++ b/src/webapp/pages/bulkApply/BulkApply.tsx @@ -4,7 +4,7 @@ import { ConfirmationDialog, ConfirmationDialogProps } from "@eyeseetea/d2-ui-co import i18n from "@dhis2/d2-i18n"; export const BulkApply: React.FC = () => { - const [metadata, setMetadata] = useState([]); + const [metadata, setMetadata] = useState[]>(); const [dialogProps, updateDialog] = useState(null); const onChange = useCallback((update: Parameters[0]) => { diff --git a/src/webapp/pages/bulkApply/SharingWizard.tsx b/src/webapp/pages/bulkApply/SharingWizard.tsx index 63f9ea4..a2c3f2d 100644 --- a/src/webapp/pages/bulkApply/SharingWizard.tsx +++ b/src/webapp/pages/bulkApply/SharingWizard.tsx @@ -18,21 +18,6 @@ export const SharingWizard: React.FC = props => return undefined; }; - /* const onStepChangeRequest = async (_currentStep: WizardStep, newStep: WizardStep) => { - const index = _(steps).findIndex(step => step.key === newStep.key); - const validationMessages = _.take(steps, index).map(({ validationKeys }) => - getValidationMessages(syncRule, validationKeys) - ); - - return _.flatten(validationMessages); - };*/ - /* const steps = metadataSharingWizardSteps.map(step => ({ - ...step, - props: { - onCancel: () => console.log("User wants to cancel the wizard!"), - }, - }));*/ - const urlHash = location.hash.slice(1); const stepExists = steps.find(step => step.key === urlHash); const firstStepKey = steps.map(step => step.key)[0]; diff --git a/src/webapp/pages/bulkApply/steps/ListDependenciesStep.tsx b/src/webapp/pages/bulkApply/steps/ListDependenciesStep.tsx index 0e22069..179c027 100644 --- a/src/webapp/pages/bulkApply/steps/ListDependenciesStep.tsx +++ b/src/webapp/pages/bulkApply/steps/ListDependenciesStep.tsx @@ -1,85 +1,38 @@ -import React, { useEffect, useState, useCallback } from "react"; // +import React, { useEffect, useState, useCallback } from "react"; import { useAppContext } from "../../../contexts/app-context"; -import { ObjectsTable, TableSelection, TableState } from "@eyeseetea/d2-ui-components"; // TableState, -import i18n from "@dhis2/d2-i18n"; +import { ObjectsTable, TableSelection, TableState } from "@eyeseetea/d2-ui-components"; import _ from "lodash"; -import { MetadataSharingWizardStepProps } from "./index"; +import { MetadataSharingWizardStepProps, columns, initialState } from "./index"; +import { Ref } from "../../../../domain/entities/Ref"; -//import { MetadataEntities } from "../../../../domain/entities/MetadataEntities"; - -//import { ListMetadataAllParams } from "../../../domain/repositories/MetadataRepository"; export const ListDependenciesStep: React.FC = ({ metadata, }: MetadataSharingWizardStepProps) => { - console.log(metadata); const { compositionRoot } = useAppContext(); - const initialState = { - sorting: { - field: "displayName" as const, - order: "asc" as const, - }, - pagination: { - page: 1, - pageSize: 25, - }, - }; - const [metadataDependencies, setMetadataDependencies] = useState([]); - //const [isLoading, setIsLoading] = useState(false); + + const [metadataDependencies, setMetadataDependencies] = useState[]>([]); + const [isLoading, setIsLoading] = useState(false); const [selection, setSelection] = useState([]); useEffect(() => { const getMetadataDependencies = async () => { - //setIsLoading(true); - /* - 1. figure out how to show child elements in the table - 2. and how to check and uncheck them individually - 3. how to call the API for each of the metadata - 4. how to have child elements - */ - const { data } = await compositionRoot.metadata.list({ model: "dashboards", id: "Tinocd3QdaN" }).runAsync(); - //console.log(data); - const { date, ...dataWithoutDate } = data; - console.log(dataWithoutDate); - //dataWithoutDate.dashboards[0] - /* - to show should be like: - [ - { name: "dashboards", dashboards: [{}] }, - { name: "documents", documents: [{}] } - ] - */ - console.log(Object.entries(dataWithoutDate)); - const ff = Object.entries(dataWithoutDate).map(item => { + setIsLoading(true); + const modelIdToSend = metadata.map((metaItem: Record) => ({ model: metaItem.model, id: metaItem.id })); + const { data } = await compositionRoot.metadata.list(modelIdToSend).runAsync(); + const dataWithIdsAndName = Object.entries(data).map(item => { const objToReturn = { name: item[0], id: item[0], [item[0]]: item[1] }; return objToReturn; }); - console.log(ff); - setMetadataDependencies(ff); - //onChange(metadata => [...metadata, ...rows]); - //setIsLoading(false); + setMetadataDependencies(dataWithIdsAndName); + setIsLoading(false); }; getMetadataDependencies(); - }, [compositionRoot]); + }, [metadata, compositionRoot]); - const onTableChange = useCallback(({ selection }: TableState) => { - console.log(selection); + const onTableChange = useCallback(({ selection }: TableState) => { setSelection(selection); - - const selectionIds = selection.map((select: any) => select.id); - console.log(metadataDependencies) - const selectionsFullData = metadataDependencies.filter((meta: any) => selectionIds.includes(meta.id)); - console.log(selectionsFullData) - //onChange([...metadata, ...selectionsFullData]); }, []); - //externalAccess: item.externalAccess, publicAccess: item.publicAccess, id: item.id, name: item.name - const columns = [ - { name: "name", text: i18n.t("Name"), sortable: true }, - { name: "id", text: i18n.t("ID"), sortable: true }, - { name: "publicAccess", text: i18n.t("Public Access"), sortable: true }, - { name: "externalAccess", text: i18n.t("External Access"), sortable: true }, - ]; - //loading={isLoading} return (
@@ -90,7 +43,8 @@ export const ListDependenciesStep: React.FC = ({ initialState={initialState} selection={selection} forceSelectionColumn={true} - childrenKeys={["dashboards", "documents"]} + childrenKeys={["dashboards", "documents", "reports", "dataSets", "programs"]} + loading={isLoading} />
); diff --git a/src/webapp/pages/bulkApply/steps/SelectMetadataStep.tsx b/src/webapp/pages/bulkApply/steps/SelectMetadataStep.tsx index 5b30553..e6dc71a 100644 --- a/src/webapp/pages/bulkApply/steps/SelectMetadataStep.tsx +++ b/src/webapp/pages/bulkApply/steps/SelectMetadataStep.tsx @@ -1,28 +1,19 @@ import React, { useState, useEffect, useCallback } from "react"; +import _ from "lodash"; import { useAppContext } from "../../../contexts/app-context"; -import { ObjectsTable, TableSelection, TableState } from "@eyeseetea/d2-ui-components"; // TableState, +import { ObjectsTable, TableSelection, TableState } from "@eyeseetea/d2-ui-components"; import i18n from "@dhis2/d2-i18n"; -import _ from "lodash"; -import { MetadataSharingWizardStepProps } from "./index"; -import Dropdown from "../../../components/dropdown/Dropdown"; -//import { MetadataEntities } from "../../../../domain/entities/MetadataEntities"; +import { MetadataSharingWizardStepProps, columns, initialState } from "./index"; +import Dropdown from "../../../components/dropdown/Dropdown"; +import { Ref } from "../../../../domain/entities/Ref"; import { ListAllMetadataParams } from "../../../../domain/repositories/MetadataRepository"; + export const SelectMetadataStep: React.FC = ({ onChange, }: MetadataSharingWizardStepProps) => { const { compositionRoot } = useAppContext(); - const initialState = { - sorting: { - field: "displayName" as const, - order: "asc" as const, - }, - pagination: { - page: 1, - pageSize: 25, - }, - }; - const [allMetadata, setAllMetadata] = useState([]); + const [allMetadata, setAllMetadata] = useState[]>([]); const [isLoading, setIsLoading] = useState(false); const [selection, setSelection] = useState([]); const [filters, setFilters] = useState({ @@ -38,23 +29,21 @@ export const SelectMetadataStep: React.FC = ({ const { data: { objects: mdData }, } = await compositionRoot.metadata.listAll(filters).runAsync(); - console.log(mdData); const rows = mdData.map((item: any) => ({ ...item, - //externalAccess: item.externalAccess.toString() || , + model: filters.model, })); setAllMetadata(rows); - //onChange(metadata => [...metadata, ...rows]); setIsLoading(false); }; getMetadata(); }, [filters, compositionRoot]); const onTableChange = useCallback( - ({ selection }: TableState, allMetadata) => { + ({ selection }: TableState, allMetadata) => { setSelection(selection); - const selectionIds = selection.map((select: any) => select.id); - const selectionsFullData = allMetadata.filter((meta: any) => selectionIds.includes(meta.id)); + const selectionIds = selection.map((select: Ref) => select.id); + const selectionsFullData = allMetadata.filter((meta: Record) => selectionIds.includes(meta.id)); onChange(selectionsFullData); }, [onChange] @@ -66,7 +55,7 @@ export const SelectMetadataStep: React.FC = ({ }, [setFilters] ); - //datasets programs and dashboards + useEffect(() => { updateFilters({ page: initialState.pagination.page, @@ -101,13 +90,6 @@ export const SelectMetadataStep: React.FC = ({ updateFilters({ search: value }); }; - //externalAccess: item.externalAccess, publicAccess: item.publicAccess, id: item.id, name: item.name - const columns = [ - { name: "name", text: i18n.t("Name"), sortable: true }, - { name: "id", text: i18n.t("ID"), sortable: true }, - { name: "publicAccess", text: i18n.t("Public Access"), sortable: true }, - //{ name: "externalAccess", text: i18n.t("External Access"), sortable: true }, - ]; return (
diff --git a/src/webapp/pages/bulkApply/steps/index.ts b/src/webapp/pages/bulkApply/steps/index.ts index 393e400..14d9096 100644 --- a/src/webapp/pages/bulkApply/steps/index.ts +++ b/src/webapp/pages/bulkApply/steps/index.ts @@ -1,5 +1,4 @@ import { WizardStep } from "@eyeseetea/d2-ui-components"; -//import { MetadataEntities } from "../../../../domain/entities/MetadataEntities"; import i18n from "../../../../locales"; import { ListDependenciesStep } from "./ListDependenciesStep"; import { SelectMetadataStep } from "./SelectMetadataStep"; @@ -15,10 +14,27 @@ export interface MetadataSharingWizardStepProps { metadata: any; onChange: (update: any | ((prev: any) => any)) => void; onCancel: () => void; - //onClose: () => void; - //onSave: () => Promise; } +export const columns = [ + { name: "name", text: i18n.t("Name"), sortable: true }, + { name: "id", text: i18n.t("ID"), sortable: true }, + { name: "publicAccess", text: i18n.t("Public Access"), sortable: true }, + { name: "userAccesses", text: i18n.t("Users"), sortable: true }, + { name: "userGroupAccesses", text: i18n.t("User Groups"), sortable: true }, +]; + +export const initialState = { + sorting: { + field: "displayName" as const, + order: "asc" as const, + }, + pagination: { + page: 1, + pageSize: 25, + }, +}; + export const metadataSharingWizardSteps: MetadataSharingWizardStep[] = [ { key: "select-metadata", From ca2b8d6a8f6bf53d7d05e7520b52eb5e5d560824 Mon Sep 17 00:00:00 2001 From: Jocelyn Dunkley Date: Thu, 26 Aug 2021 13:55:46 +0200 Subject: [PATCH 07/50] fixed paging, sorting, searching, etc for step1, each dependency is its own row, selection is persisted, typed everything --- .env | 2 +- i18n/en.pot | 22 ++-- i18n/es.po | 20 +-- src/CompositionRoot.ts | 2 +- .../repositories/InstanceDefaultRepository.ts | 4 +- .../repositories/MetadataD2ApiRepository.ts | 49 +++---- src/domain/entities/MetadataEntities.ts | 67 ---------- src/domain/repositories/InstanceRepository.ts | 2 +- src/domain/repositories/MetadataRepository.ts | 29 ++++- src/domain/usecases/GetAllMetadataUseCase.ts | 6 +- .../GetMetadataWithDependenciesUseCase.ts | 4 +- src/domain/usecases/SearchUserUseCase.ts | 3 +- src/utils/codec.ts | 15 --- src/webapp/components/dropdown/Dropdown.tsx | 120 +++++------------- src/webapp/pages/Router.tsx | 2 +- .../{bulkApply => bulk-apply}/BulkApply.tsx | 6 +- .../SharingWizard.tsx | 0 .../steps/index.ts => bulk-apply/steps.ts} | 29 +---- .../steps/AccessStep.tsx | 23 +--- .../steps/ListDependenciesStep.tsx | 41 ++++-- .../bulk-apply/steps/SelectMetadataStep.tsx | 120 ++++++++++++++++++ .../bulk-apply/steps/SummaryApplyStep.tsx | 6 + .../bulkApply/steps/SelectMetadataStep.tsx | 110 ---------------- .../bulkApply/steps/SummaryApplyStep.tsx | 63 --------- 24 files changed, 281 insertions(+), 464 deletions(-) rename src/webapp/pages/{bulkApply => bulk-apply}/BulkApply.tsx (81%) rename src/webapp/pages/{bulkApply => bulk-apply}/SharingWizard.tsx (100%) rename src/webapp/pages/{bulkApply/steps/index.ts => bulk-apply/steps.ts} (62%) rename src/webapp/pages/{bulkApply => bulk-apply}/steps/AccessStep.tsx (78%) rename src/webapp/pages/{bulkApply => bulk-apply}/steps/ListDependenciesStep.tsx (54%) create mode 100644 src/webapp/pages/bulk-apply/steps/SelectMetadataStep.tsx create mode 100644 src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx delete mode 100644 src/webapp/pages/bulkApply/steps/SelectMetadataStep.tsx delete mode 100644 src/webapp/pages/bulkApply/steps/SummaryApplyStep.tsx diff --git a/.env b/.env index e99a73e..5eca7f2 100644 --- a/.env +++ b/.env @@ -1,7 +1,7 @@ BROWSER=false PORT=8081 SKIP_PREFLIGHT_CHECK=true -REACT_APP_DHIS2_BASE_URL=https://dev.eyeseetea.com/play +REACT_APP_DHIS2_BASE_URL=https://dev.eyeseetea.com/who-dev-234/ CYPRESS_DHIS2_AUTH='admin:district' CYPRESS_EXTERNAL_API="https://dev.eyeseetea.com/play" diff --git a/i18n/en.pot b/i18n/en.pot index 823c3df..0b5a8a1 100644 --- a/i18n/en.pot +++ b/i18n/en.pot @@ -5,8 +5,8 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -"POT-Creation-Date: 2021-08-23T09:35:28.814Z\n" -"PO-Revision-Date: 2021-08-23T09:35:28.814Z\n" +"POT-Creation-Date: 2021-08-26T07:01:18.687Z\n" +"PO-Revision-Date: 2021-08-26T07:01:18.687Z\n" msgid "Add" msgstr "" @@ -35,9 +35,6 @@ msgstr "" msgid "No" msgstr "" -msgid "Note: The sharing settings are only applied to the current metadata" -msgstr "" - msgid "Name" msgstr "" @@ -47,22 +44,25 @@ msgstr "" msgid "Public Access" msgstr "" -msgid "External Access" +msgid "Users" msgstr "" -msgid "Metadata type" +msgid "User Groups" msgstr "" -msgid "Search by name" +msgid "Data Sets" msgstr "" -msgid "Origin" +msgid "Dashboards" msgstr "" -msgid "Status" +msgid "Programs" msgstr "" -msgid "Summary" +msgid "Metadata type" +msgstr "" + +msgid "Search by name" msgstr "" msgid "Select Metadata" diff --git a/i18n/es.po b/i18n/es.po index fd9d6a0..c6d4909 100644 --- a/i18n/es.po +++ b/i18n/es.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: i18next-conv\n" -"POT-Creation-Date: 2021-08-23T09:35:28.814Z\n" +"POT-Creation-Date: 2021-08-26T07:01:18.687Z\n" "PO-Revision-Date: 2018-10-25T09:02:35.143Z\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,9 +35,6 @@ msgstr "" msgid "No" msgstr "" -msgid "Note: The sharing settings are only applied to the current metadata" -msgstr "" - msgid "Name" msgstr "" @@ -47,22 +44,25 @@ msgstr "" msgid "Public Access" msgstr "" -msgid "External Access" +msgid "Users" msgstr "" -msgid "Metadata type" +msgid "User Groups" msgstr "" -msgid "Search by name" +msgid "Data Sets" msgstr "" -msgid "Origin" +msgid "Dashboards" msgstr "" -msgid "Status" +msgid "Programs" msgstr "" -msgid "Summary" +msgid "Metadata type" +msgstr "" + +msgid "Search by name" msgstr "" msgid "Select Metadata" diff --git a/src/CompositionRoot.ts b/src/CompositionRoot.ts index c034851..1de83d1 100644 --- a/src/CompositionRoot.ts +++ b/src/CompositionRoot.ts @@ -21,7 +21,7 @@ export function getCompositionRoot(instance: Instance) { }), metadata: getExecute({ listAll: new GetAllMetadataUseCase(metadataRepository), - list: new GetMetadataWithDependenciesUseCase(metadataRepository), + getDependencies: new GetMetadataWithDependenciesUseCase(metadataRepository), }), }; } diff --git a/src/data/repositories/InstanceDefaultRepository.ts b/src/data/repositories/InstanceDefaultRepository.ts index 64d56c9..577a85e 100644 --- a/src/data/repositories/InstanceDefaultRepository.ts +++ b/src/data/repositories/InstanceDefaultRepository.ts @@ -41,13 +41,13 @@ export class InstanceDefaultRepository implements InstanceRepository { })); } - public async searchUsers(query: string): Promise { + public searchUsers(query: string): FutureData { const options = { fields: { id: true, displayName: true }, filter: { displayName: { ilike: query } }, }; - return this.api.metadata.get({ users: options, userGroups: options }).getData(); + return apiToFuture(this.api.metadata.get({ users: options, userGroups: options })); } @cache() diff --git a/src/data/repositories/MetadataD2ApiRepository.ts b/src/data/repositories/MetadataD2ApiRepository.ts index 55595d4..4b16bcf 100644 --- a/src/data/repositories/MetadataD2ApiRepository.ts +++ b/src/data/repositories/MetadataD2ApiRepository.ts @@ -1,11 +1,17 @@ -import { D2Api } from "@eyeseetea/d2-api/2.34"; import { Future, FutureData } from "../../domain/entities/Future"; -import { MetadataRepository } from "../../domain/repositories/MetadataRepository"; +import { + MetadataRepository, + ListAllMetadataParams, + GetMetadataDependenciesOptions, + Payload, + MetadataObject, + MetadataItem, +} from "../../domain/repositories/MetadataRepository"; import { getD2APiFromInstance } from "../../utils/d2-api"; import { apiToFuture } from "../../utils/futures"; import { Instance } from "../entities/Instance"; import { MetadataEntities } from "../../domain/entities/MetadataEntities"; -import { Model } from "../../types/d2-api"; +import { Model, D2Api } from "../../types/d2-api"; import _ from "lodash"; export class MetadataD2ApiRepository implements MetadataRepository { @@ -15,15 +21,9 @@ export class MetadataD2ApiRepository implements MetadataRepository { this.api = getD2APiFromInstance(instance); } - public listAllMetadata(options: { - model: "dataSets" | "programs" | "dashboards"; - page?: number; - pageSize?: number; - search?: string; - order?: [string, string]; - }): FutureData { - const { model, page, pageSize, search, order } = options; - const [field, orderBy] = order ?? ["name", "asc"]; + public listAllMetadata(options: ListAllMetadataParams): FutureData { + const { model, page, pageSize, search, sorting = { field: "id", order: "asc" } } = options; + //@ts-ignore: d2-api incorrectly guessing model with string access return apiToFuture( this.getApiModel(model).get({ @@ -32,35 +32,38 @@ export class MetadataD2ApiRepository implements MetadataRepository { paging: true, filter: { identifiable: search ? { token: search } : undefined }, fields: { $owner: true }, - order: `${field}:${orderBy}`, + order: `${sorting.field}:${sorting.order}`, }) ); } - //with dependencies - public listMetadataWithDependencies(options: [{ model: "dataSets" | "programs" | "dashboards"; id: string }]): FutureData { + + public listMetadataWithDependencies(options: GetMetadataDependenciesOptions[]): FutureData { return Future.futureMap(options, item => apiToFuture(this.api.get(`/${item.model}/${item.id}/metadata.json`)) ).map(data => { const dataWithoutDate = data.map((dataItem: any) => { - const { date, ...everythingElse } = dataItem; // eslint-disable-line - return everythingElse; - }) - const mergedData = this.mergePayloads(dataWithoutDate) - return mergedData + const { date, ...everythingElse } = dataItem; // eslint-disable-line + return everythingElse; + }); + const mergedPayloads = this.mergePayloads(dataWithoutDate); + const dataWithIdsAndName = Object.entries(mergedPayloads).map(([key, value]) => { + return value.map(item => ({ ...item, model: key })); + }); + return _.flatten(dataWithIdsAndName); }); } - + private getApiModel(type: keyof MetadataEntities): InstanceType { return this.api.models[type]; } - private mergePayloads(payloads: Record[]): Record { + private mergePayloads(payloads: Payload[]): Payload { return _.reduce( payloads, (result, payload) => { _.forOwn(payload, (value, key) => { if (Array.isArray(value)) { - //@ts-ignore + //@ts-ignore const existing = result[key] ?? []; //@ts-ignore result[key] = _.uniqBy([...existing, ...value], ({ id }) => id); diff --git a/src/domain/entities/MetadataEntities.ts b/src/domain/entities/MetadataEntities.ts index 5cded8f..b3bbe9f 100644 --- a/src/domain/entities/MetadataEntities.ts +++ b/src/domain/entities/MetadataEntities.ts @@ -3479,71 +3479,6 @@ export type SqlView = { userGroupAccesses: UserGroupAccess[]; }; -export type MetadataEntity = - | UserRole - | Attribute - | User - | UserGroup - | Option - | OptionSet - | OptionGroupSet - | OptionGroup - | LegendSet - | ColorSet - | OrganisationUnit - | OrganisationUnitLevel - | OrganisationUnitGroup - | OrganisationUnitGroupSet - | CategoryOption - | CategoryOptionGroup - | CategoryOptionGroupSet - | Category - | CategoryCombo - | CategoryOptionCombo - | DataElement - | DataElementGroup - | DataElementGroupSet - | IndicatorType - | Indicator - | IndicatorGroup - | IndicatorGroupSet - | DataEntryForm - | DataSet - | DataSetNotificationTemplate - | Section - | DataApprovalLevel - | DataApprovalWorkflow - | ValidationRule - | ValidationRuleGroup - | ValidationNotificationTemplate - | TrackedEntityAttribute - | RelationshipType - | TrackedEntityType - | ProgramTrackedEntityAttributeGroup - | ProgramStageSection - | ProgramNotificationTemplate - | ProgramStage - | Program - | EventChart - | EventReport - | ProgramSection - | ProgramIndicator - | ProgramRuleVariable - | ProgramIndicatorGroup - | ProgramRuleAction - | ProgramRule - | MapView - | Report - | ReportTable - | Map - | Chart - | Document - | Dashboard - | MessageConversation - | SqlView; - -export type MetadataKey = "userRoles" | "attributes" | ""; - //TODO: Add as value entoty definitions // currently this concept are models with include/exclude rules, collectionName... export type MetadataEntities = { @@ -3609,5 +3544,3 @@ export type MetadataEntities = { messageConversations: MessageConversation[]; sqlViews: SqlView[]; }; - -export type MetadataPackage = Partial>; diff --git a/src/domain/repositories/InstanceRepository.ts b/src/domain/repositories/InstanceRepository.ts index b17e7d4..78aeb51 100644 --- a/src/domain/repositories/InstanceRepository.ts +++ b/src/domain/repositories/InstanceRepository.ts @@ -6,5 +6,5 @@ export interface InstanceRepository { getBaseUrl(): string; getCurrentUser(): FutureData; getInstanceVersion(): FutureData; - searchUsers(query: string): Promise; + searchUsers(query: string): FutureData; } diff --git a/src/domain/repositories/MetadataRepository.ts b/src/domain/repositories/MetadataRepository.ts index 9e689ed..28bf942 100644 --- a/src/domain/repositories/MetadataRepository.ts +++ b/src/domain/repositories/MetadataRepository.ts @@ -1,19 +1,34 @@ import { FutureData } from "../entities/Future"; export interface MetadataRepository { - listAllMetadata(options: ListAllMetadataParams): FutureData; - listMetadataWithDependencies(options: ListMetadataParams[]): FutureData; + listAllMetadata(options: ListAllMetadataParams): FutureData; + listMetadataWithDependencies(options: GetMetadataDependenciesOptions[]): FutureData; } export interface ListAllMetadataParams { - model: string; + model: GetMetadataModel; page?: number; pageSize?: number; search?: string; - order?: [string, string]; + sorting?: { field: string; order: "asc" | "desc" }; } -export interface ListMetadataParams { - model: string; - id: string; +export type GetMetadataModel = "dataSets" | "programs" | "dashboards"; + +export type GetMetadataDependenciesOptions = { model: GetMetadataModel; id: string }; + +export type Payload = Record; + +export type MetadataItem = { id: string; [key: string]: string | number | boolean | undefined }; + +export interface MetadataObject { + objects: MetadataItem[]; + pager: Pager; +} + +export interface Pager { + page: number; + pageCount: number; + pageSize: number; + total: number; } diff --git a/src/domain/usecases/GetAllMetadataUseCase.ts b/src/domain/usecases/GetAllMetadataUseCase.ts index e709fc9..24866d2 100644 --- a/src/domain/usecases/GetAllMetadataUseCase.ts +++ b/src/domain/usecases/GetAllMetadataUseCase.ts @@ -1,11 +1,11 @@ import { UseCase } from "../../CompositionRoot"; import { FutureData } from "../entities/Future"; -import { MetadataRepository, ListAllMetadataParams } from "../repositories/MetadataRepository"; - +import { MetadataRepository, ListAllMetadataParams, MetadataObject } from "../repositories/MetadataRepository"; +//Payload, export class GetAllMetadataUseCase implements UseCase { constructor(private metadataRepository: MetadataRepository) {} - public execute(params: ListAllMetadataParams): FutureData { + public execute(params: ListAllMetadataParams): FutureData { return this.metadataRepository.listAllMetadata(params); } } diff --git a/src/domain/usecases/GetMetadataWithDependenciesUseCase.ts b/src/domain/usecases/GetMetadataWithDependenciesUseCase.ts index 93dce7e..6542dd8 100644 --- a/src/domain/usecases/GetMetadataWithDependenciesUseCase.ts +++ b/src/domain/usecases/GetMetadataWithDependenciesUseCase.ts @@ -1,11 +1,11 @@ import { UseCase } from "../../CompositionRoot"; import { FutureData } from "../entities/Future"; -import { MetadataRepository, ListMetadataParams } from "../repositories/MetadataRepository"; +import { MetadataRepository, GetMetadataDependenciesOptions, MetadataItem } from "../repositories/MetadataRepository"; export class GetMetadataWithDependenciesUseCase implements UseCase { constructor(private metadataRepository: MetadataRepository) {} - public execute(params: ListMetadataParams[]): FutureData { + public execute(params: GetMetadataDependenciesOptions[]): FutureData { return this.metadataRepository.listMetadataWithDependencies(params); } } diff --git a/src/domain/usecases/SearchUserUseCase.ts b/src/domain/usecases/SearchUserUseCase.ts index 5b9b4e0..c23d481 100644 --- a/src/domain/usecases/SearchUserUseCase.ts +++ b/src/domain/usecases/SearchUserUseCase.ts @@ -1,11 +1,12 @@ import { UseCase } from "../../CompositionRoot"; import { UserSearch } from "../../data/entities/SearchUser"; import { InstanceRepository } from "../repositories/InstanceRepository"; +import { FutureData } from "../../domain/entities/Future"; export class SearchUserUseCase implements UseCase { constructor(private instanceRepository: InstanceRepository) {} - public execute(query: string): Promise { + public execute(query: string): FutureData { return this.instanceRepository.searchUsers(query); } } diff --git a/src/utils/codec.ts b/src/utils/codec.ts index 9e55dde..e1325d8 100644 --- a/src/utils/codec.ts +++ b/src/utils/codec.ts @@ -95,17 +95,6 @@ export const falseType = Codec.custom({ schema: () => ({ type: "boolean" }), }); -// Short and long HEX color format -const colorRegExp = /^#[0-9a-fA-F]{3,6}$/; - -// RFC2822 email format -const emailRegExp = - /^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/; - -// Diego Perini (License: MIT) -const urlRegExp = - /^(?:(?:https?:\/\/)?localhost(?::\d{2,5})?)$|(?:(?:https?|ftp):\/\/)(?:\S+(?::\S*)?@)?(?:(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z\u00a1-\uffff0-9]+-?)*[a-z\u00a1-\uffff0-9]+)(?:\.(?:[a-z\u00a1-\uffff0-9]+-?)*[a-z\u00a1-\uffff0-9]+)*(?:\.(?:[a-z\u00a1-\uffff]{2,})))(?::\d{2,5})?(?:\/[^\s]*)?$/; - // DHIS2 valid uid const dhis2Uid = /^[a-zA-Z]{1}[a-zA-Z0-9]{10}$/; @@ -136,10 +125,6 @@ export const Schema = { exact: exactly, extend: intersect, maybe, - regex: RegExpMatchedString, - color: RegExpMatchedString(colorRegExp), - email: RegExpMatchedString(emailRegExp), - url: RegExpMatchedString(urlRegExp), dhis2Id: RegExpMatchedString(dhis2Uid), chain: chainCodec, custom: Codec.custom, diff --git a/src/webapp/components/dropdown/Dropdown.tsx b/src/webapp/components/dropdown/Dropdown.tsx index 5fb3745..9c5a44b 100644 --- a/src/webapp/components/dropdown/Dropdown.tsx +++ b/src/webapp/components/dropdown/Dropdown.tsx @@ -1,17 +1,13 @@ -import { FormControl, InputLabel, MenuItem, MuiThemeProvider, Select } from "@material-ui/core"; -import { createMuiTheme } from "@material-ui/core/styles"; +import { FormControl, InputLabel, MenuItem, Select } from "@material-ui/core"; import _ from "lodash"; -//import React from "react"; import i18n from "@dhis2/d2-i18n"; -import { muiTheme } from "../../pages/app/themes/dhis2.theme"; +import styled from "styled-components"; export interface DropdownOption { id: T; name: string; } -export type DropdownViewOption = "filter" | "inline" | "full-width"; - interface DropdownProps { items: DropdownOption[]; value: string; @@ -20,56 +16,14 @@ interface DropdownProps { onValueChange?(value: T): void; hideEmpty?: boolean; emptyLabel?: string; - view?: DropdownViewOption; disabled?: boolean; } -const getTheme = (view: DropdownViewOption) => { - switch (view) { - case "filter": - return createMuiTheme({ - ...muiTheme, - overrides: { - MuiFormLabel: { - root: { - color: "#aaaaaa", - "&$focused": { - color: "#aaaaaa", - }, - top: "-9px !important", - marginLeft: 10, - }, - }, - MuiInput: { - root: { - marginLeft: 10, - }, - formControl: { - minWidth: 250, - marginTop: "8px !important", - }, - input: { - color: "#565656", - }, - }, - }, - }); - case "inline": - return createMuiTheme({ - ...muiTheme, - overrides: { - MuiFormControl: { - root: { - verticalAlign: "middle", - marginBottom: 5, - }, - }, - }, - }); - default: - return {}; - } -}; +const StyledFormControl = styled(FormControl)` + min-width: 200px; + margin-top: -8px; + margin-left: 10px; +`; export function Dropdown({ items, @@ -79,43 +33,35 @@ export function Dropdown({ label, hideEmpty = false, emptyLabel, - view = "filter", disabled = false, }: DropdownProps) { - const inlineStyles = { minWidth: 120, paddingLeft: 25, paddingRight: 25 }; - const styles = view === "inline" ? inlineStyles : {}; - return ( - - - {view !== "inline" && label && {label}} - - - + + {label && {label}} + + ); } diff --git a/src/webapp/pages/Router.tsx b/src/webapp/pages/Router.tsx index d2764cc..f3910f3 100644 --- a/src/webapp/pages/Router.tsx +++ b/src/webapp/pages/Router.tsx @@ -1,7 +1,7 @@ import { HashRouter, Route, Switch } from "react-router-dom"; import { ExamplePage } from "./example/ExamplePage"; import { LandingPage } from "./landing/LandingPage"; -import { BulkApply } from "./bulkApply/BulkApply"; +import { BulkApply } from "./bulk-apply/BulkApply"; export const Router = () => { return ( diff --git a/src/webapp/pages/bulkApply/BulkApply.tsx b/src/webapp/pages/bulk-apply/BulkApply.tsx similarity index 81% rename from src/webapp/pages/bulkApply/BulkApply.tsx rename to src/webapp/pages/bulk-apply/BulkApply.tsx index c613247..903b82d 100644 --- a/src/webapp/pages/bulkApply/BulkApply.tsx +++ b/src/webapp/pages/bulk-apply/BulkApply.tsx @@ -7,10 +7,6 @@ export const BulkApply: React.FC = () => { const [metadata, setMetadata] = useState[]>(); const [dialogProps, updateDialog] = useState(null); - const onChange = useCallback((update: Parameters[0]) => { - setMetadata(update); - }, []); - const onCancel = useCallback(() => { updateDialog({ title: i18n.t("Cancel sharing action?"), @@ -25,7 +21,7 @@ export const BulkApply: React.FC = () => { return ( <> {dialogProps && } - ; + setMetadata(update)} onCancel={onCancel} metadata={metadata} />; ); }; diff --git a/src/webapp/pages/bulkApply/SharingWizard.tsx b/src/webapp/pages/bulk-apply/SharingWizard.tsx similarity index 100% rename from src/webapp/pages/bulkApply/SharingWizard.tsx rename to src/webapp/pages/bulk-apply/SharingWizard.tsx diff --git a/src/webapp/pages/bulkApply/steps/index.ts b/src/webapp/pages/bulk-apply/steps.ts similarity index 62% rename from src/webapp/pages/bulkApply/steps/index.ts rename to src/webapp/pages/bulk-apply/steps.ts index 14d9096..658f092 100644 --- a/src/webapp/pages/bulkApply/steps/index.ts +++ b/src/webapp/pages/bulk-apply/steps.ts @@ -1,9 +1,9 @@ import { WizardStep } from "@eyeseetea/d2-ui-components"; -import i18n from "../../../../locales"; -import { ListDependenciesStep } from "./ListDependenciesStep"; -import { SelectMetadataStep } from "./SelectMetadataStep"; -import { AccessStep } from "./AccessStep"; -import { SummaryApplyStep } from "./SummaryApplyStep"; +import i18n from "../../../locales"; +import { ListDependenciesStep } from "./steps/ListDependenciesStep"; +import { SelectMetadataStep } from "./steps/SelectMetadataStep"; +import { AccessStep } from "./steps/AccessStep"; +import { SummaryApplyStep } from "./steps/SummaryApplyStep"; export interface MetadataSharingWizardStep extends WizardStep { validationKeys: string[]; @@ -16,25 +16,6 @@ export interface MetadataSharingWizardStepProps { onCancel: () => void; } -export const columns = [ - { name: "name", text: i18n.t("Name"), sortable: true }, - { name: "id", text: i18n.t("ID"), sortable: true }, - { name: "publicAccess", text: i18n.t("Public Access"), sortable: true }, - { name: "userAccesses", text: i18n.t("Users"), sortable: true }, - { name: "userGroupAccesses", text: i18n.t("User Groups"), sortable: true }, -]; - -export const initialState = { - sorting: { - field: "displayName" as const, - order: "asc" as const, - }, - pagination: { - page: 1, - pageSize: 25, - }, -}; - export const metadataSharingWizardSteps: MetadataSharingWizardStep[] = [ { key: "select-metadata", diff --git a/src/webapp/pages/bulkApply/steps/AccessStep.tsx b/src/webapp/pages/bulk-apply/steps/AccessStep.tsx similarity index 78% rename from src/webapp/pages/bulkApply/steps/AccessStep.tsx rename to src/webapp/pages/bulk-apply/steps/AccessStep.tsx index fe5740d..f53d345 100644 --- a/src/webapp/pages/bulkApply/steps/AccessStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/AccessStep.tsx @@ -1,10 +1,8 @@ import { ShareUpdate, Sharing, SharingRule } from "@eyeseetea/d2-ui-components"; import React, { useCallback } from "react"; -import styled from "styled-components"; import { SharingSetting } from "../../../../domain/entities/Ref"; -import i18n from "../../../../locales"; import { useAppContext } from "../../../contexts/app-context"; -import { MetadataSharingWizardStepProps } from "./index"; +import { MetadataSharingWizardStepProps } from "../steps"; export const AccessStep: React.FC = ({ metadata, @@ -12,10 +10,13 @@ export const AccessStep: React.FC = ({ }: MetadataSharingWizardStepProps) => { const { compositionRoot } = useAppContext(); - const search = useCallback((query: string) => compositionRoot.instance.searchUsers(query), [compositionRoot]); + const search = useCallback( + (query: string) => compositionRoot.instance.searchUsers(query).toPromise(), + [compositionRoot] + ); const setModuleSharing = useCallback( - ({ publicAccess, userAccesses, userGroupAccesses }: ShareUpdate) => { + async ({ publicAccess, userAccesses, userGroupAccesses }: ShareUpdate) => { onChange((metadata: any) => { return { ...metadata, @@ -26,7 +27,6 @@ export const AccessStep: React.FC = ({ : metadata.userGroupAccesses, }; }); - return Promise.resolve(); }, [onChange] ); @@ -54,21 +54,10 @@ export const AccessStep: React.FC = ({ onSearch={search} onChange={setModuleSharing} /> - -
- {i18n.t("Note: The sharing settings are only applied to the current metadata", { nsSeparator: false })} -
); }; -const Footer = styled.div` - margin-top: 10px; - margin-bottom: 15px; - font-size: 1.1.em; - text-align: left; -`; - const mapSharingSettings = (settings?: SharingRule[]): SharingSetting[] | undefined => { return settings?.map(item => { return { id: item.id, access: item.access, name: item.displayName }; diff --git a/src/webapp/pages/bulkApply/steps/ListDependenciesStep.tsx b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx similarity index 54% rename from src/webapp/pages/bulkApply/steps/ListDependenciesStep.tsx rename to src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx index 179c027..55096a6 100644 --- a/src/webapp/pages/bulkApply/steps/ListDependenciesStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx @@ -2,28 +2,44 @@ import React, { useEffect, useState, useCallback } from "react"; import { useAppContext } from "../../../contexts/app-context"; import { ObjectsTable, TableSelection, TableState } from "@eyeseetea/d2-ui-components"; import _ from "lodash"; -import { MetadataSharingWizardStepProps, columns, initialState } from "./index"; +import { MetadataSharingWizardStepProps } from "../steps"; import { Ref } from "../../../../domain/entities/Ref"; +import i18n from "../../../../locales"; +import { MetadataItem } from "../../../../domain/repositories/MetadataRepository"; export const ListDependenciesStep: React.FC = ({ metadata, }: MetadataSharingWizardStepProps) => { const { compositionRoot } = useAppContext(); - - const [metadataDependencies, setMetadataDependencies] = useState[]>([]); + const [metadataDependencies, setMetadataDependencies] = useState([]); const [isLoading, setIsLoading] = useState(false); const [selection, setSelection] = useState([]); + const columns = [ + { name: "name", text: i18n.t("Name"), sortable: true }, + { name: "id", text: i18n.t("ID"), sortable: true }, + { name: "model", text: i18n.t("Metadata Type"), sortable: false }, + { name: "publicAccess", text: i18n.t("Public Access"), sortable: true }, + { name: "userAccesses", text: i18n.t("Users"), sortable: true }, + { name: "userGroupAccesses", text: i18n.t("User Groups"), sortable: true }, + ]; + + const initialState = { + sorting: { + field: "displayName" as const, + order: "asc" as const, + }, + pagination: { + page: 1, + pageSize: 25, + }, + }; + useEffect(() => { const getMetadataDependencies = async () => { setIsLoading(true); - const modelIdToSend = metadata.map((metaItem: Record) => ({ model: metaItem.model, id: metaItem.id })); - const { data } = await compositionRoot.metadata.list(modelIdToSend).runAsync(); - const dataWithIdsAndName = Object.entries(data).map(item => { - const objToReturn = { name: item[0], id: item[0], [item[0]]: item[1] }; - return objToReturn; - }); - setMetadataDependencies(dataWithIdsAndName); + const { data = [] } = await compositionRoot.metadata.getDependencies(metadata).runAsync(); + setMetadataDependencies(data); setIsLoading(false); }; getMetadataDependencies(); @@ -35,15 +51,14 @@ export const ListDependenciesStep: React.FC = ({ return (
- + rows={metadataDependencies} columns={columns} onChange={onTableChange} - sorting={{ field: "position", order: "asc" }} + sorting={{ field: "displayName", order: "asc" }} initialState={initialState} selection={selection} forceSelectionColumn={true} - childrenKeys={["dashboards", "documents", "reports", "dataSets", "programs"]} loading={isLoading} />
diff --git a/src/webapp/pages/bulk-apply/steps/SelectMetadataStep.tsx b/src/webapp/pages/bulk-apply/steps/SelectMetadataStep.tsx new file mode 100644 index 0000000..5148276 --- /dev/null +++ b/src/webapp/pages/bulk-apply/steps/SelectMetadataStep.tsx @@ -0,0 +1,120 @@ +import React, { useState, useEffect, useCallback } from "react"; +import _ from "lodash"; +import { useAppContext } from "../../../contexts/app-context"; +import { ObjectsTable, TableSelection, TableState, TablePagination } from "@eyeseetea/d2-ui-components"; +import i18n from "@dhis2/d2-i18n"; + +import { MetadataSharingWizardStepProps } from "../steps"; +import Dropdown from "../../../components/dropdown/Dropdown"; +import { GetMetadataModel, MetadataItem } from "../../../../domain/repositories/MetadataRepository"; + +export const SelectMetadataStep: React.FC = ({ + metadata, + onChange, +}: MetadataSharingWizardStepProps) => { + const initialState = { + sorting: { field: "displayName" as const, order: "asc" as const }, + pagination: { page: 1, pageSize: 25 }, + }; + const { compositionRoot } = useAppContext(); + const [allMetadata, setAllMetadata] = useState<{ + objects: MetadataItem[]; + pager: Partial; + }>({ objects: [], pager: initialState.pagination }); + const [isLoading, setIsLoading] = useState(false); + const [selection, setSelection] = useState(metadata ?? []); + const [model, setModel] = useState("dashboards"); + const [search, setSearch] = useState(""); + + const columns = [ + { name: "name", text: i18n.t("Name"), sortable: true }, + { name: "id", text: i18n.t("ID"), sortable: true }, + { name: "publicAccess", text: i18n.t("Public Access"), sortable: true }, + { name: "userAccesses", text: i18n.t("Users"), sortable: true }, + { name: "userGroupAccesses", text: i18n.t("User Groups"), sortable: true }, + ]; + useEffect(() => onChange(selection), [onChange, selection]); + useEffect(() => { + const getMetadata = async () => { + setIsLoading(true); + const { data } = await compositionRoot.metadata.listAll({ ...initialState, model, search }).runAsync(); + if (data) { + const rows = data.objects.map((item: MetadataItem) => ({ + ...item, + model, + })); + setAllMetadata({ objects: rows, pager: data.pager }); + setIsLoading(false); + } + }; + getMetadata(); + }, [compositionRoot.metadata, search, model]); + + const onTableChange = useCallback( + async (tableState: TableState, model) => { + setIsLoading(true); + setAllMetadata({ objects: [], pager: {} }); + setSelection(oldSelection => { + const selection = tableState?.selection ?? oldSelection; + return selection.map((select: any) => (!select.model ? { id: select.id, model } : select)); + }); + + const { pagination, sorting } = tableState ?? initialState; + const { data } = await compositionRoot.metadata + .listAll({ + pageSize: pagination.pageSize, + page: pagination.page, + sorting: { field: sorting.field.toString(), order: sorting.order }, + search, + model, + }) + .runAsync(); + if (data) { + setAllMetadata({ objects: data?.objects, pager: data?.pager }); + } + setIsLoading(false); + }, + [search, compositionRoot, model] + ); + + const changeModelFilter = (modelName: GetMetadataModel) => { + setModel(modelName); + }; + + const filterComponents = ( + +
+ +
+
+ ); + + return ( +
+ + rows={allMetadata.objects} + columns={columns} + onChange={tableState => onTableChange(tableState, model)} + pagination={allMetadata.pager} + sorting={{ field: "displayName", order: "asc" }} + loading={isLoading} + initialState={initialState} + selection={selection} + forceSelectionColumn={true} + filterComponents={filterComponents} + onChangeSearch={setSearch} + searchBoxLabel={i18n.t(`Search by name`)} + /> +
+ ); +}; diff --git a/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx b/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx new file mode 100644 index 0000000..59969b3 --- /dev/null +++ b/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx @@ -0,0 +1,6 @@ +import React from "react"; +import { MetadataSharingWizardStepProps } from "../steps"; + +export const SummaryApplyStep: React.FC = () => { + return
; +}; diff --git a/src/webapp/pages/bulkApply/steps/SelectMetadataStep.tsx b/src/webapp/pages/bulkApply/steps/SelectMetadataStep.tsx deleted file mode 100644 index e6dc71a..0000000 --- a/src/webapp/pages/bulkApply/steps/SelectMetadataStep.tsx +++ /dev/null @@ -1,110 +0,0 @@ -import React, { useState, useEffect, useCallback } from "react"; -import _ from "lodash"; -import { useAppContext } from "../../../contexts/app-context"; -import { ObjectsTable, TableSelection, TableState } from "@eyeseetea/d2-ui-components"; -import i18n from "@dhis2/d2-i18n"; - -import { MetadataSharingWizardStepProps, columns, initialState } from "./index"; -import Dropdown from "../../../components/dropdown/Dropdown"; -import { Ref } from "../../../../domain/entities/Ref"; -import { ListAllMetadataParams } from "../../../../domain/repositories/MetadataRepository"; - -export const SelectMetadataStep: React.FC = ({ - onChange, -}: MetadataSharingWizardStepProps) => { - const { compositionRoot } = useAppContext(); - const [allMetadata, setAllMetadata] = useState[]>([]); - const [isLoading, setIsLoading] = useState(false); - const [selection, setSelection] = useState([]); - const [filters, setFilters] = useState({ - model: "dashboards", - order: [initialState.sorting.field, initialState.sorting.order], - page: initialState.pagination.page, - pageSize: initialState.pagination.pageSize, - search: "", - }); - useEffect(() => { - const getMetadata = async () => { - setIsLoading(true); - const { - data: { objects: mdData }, - } = await compositionRoot.metadata.listAll(filters).runAsync(); - const rows = mdData.map((item: any) => ({ - ...item, - model: filters.model, - })); - setAllMetadata(rows); - setIsLoading(false); - }; - getMetadata(); - }, [filters, compositionRoot]); - - const onTableChange = useCallback( - ({ selection }: TableState, allMetadata) => { - setSelection(selection); - const selectionIds = selection.map((select: Ref) => select.id); - const selectionsFullData = allMetadata.filter((meta: Record) => selectionIds.includes(meta.id)); - onChange(selectionsFullData); - }, - [onChange] - ); - - const updateFilters = useCallback( - (partialFilters: Partial) => { - setFilters(state => ({ ...state, page: 1, ...partialFilters })); - }, - [setFilters] - ); - - useEffect(() => { - updateFilters({ - page: initialState.pagination.page, - }); - }, [updateFilters]); - - const changeModelFilter = (modelName: string) => { - updateFilters({ - ...filters, - model: modelName, - }); - }; - - const filterComponents = ( - -
- -
-
- ); - const changeSearchFilter = (value: string) => { - updateFilters({ search: value }); - }; - - return ( -
- - rows={allMetadata} - columns={columns} - onChange={selection => onTableChange(selection, allMetadata)} - sorting={{ field: "position", order: "asc" }} - loading={isLoading} - initialState={initialState} - selection={selection} - forceSelectionColumn={true} - filterComponents={filterComponents} - onChangeSearch={changeSearchFilter} - searchBoxLabel={i18n.t(`Search by name`)} - /> -
- ); -}; diff --git a/src/webapp/pages/bulkApply/steps/SummaryApplyStep.tsx b/src/webapp/pages/bulkApply/steps/SummaryApplyStep.tsx deleted file mode 100644 index a0dc5c4..0000000 --- a/src/webapp/pages/bulkApply/steps/SummaryApplyStep.tsx +++ /dev/null @@ -1,63 +0,0 @@ -import { Accordion, AccordionDetails, AccordionSummary, makeStyles, Typography } from "@material-ui/core"; -import ExpandMoreIcon from "@material-ui/icons/ExpandMore"; -import _ from "lodash"; -import React from "react"; -import { MetadataSharingWizardStepProps } from "./index"; -import i18n from "@dhis2/d2-i18n"; - -const useStyles = makeStyles(theme => ({ - accordionHeading1: { - marginLeft: 30, - fontSize: theme.typography.pxToRem(15), - flexBasis: "55%", - flexShrink: 0, - }, - accordionHeading2: { - fontSize: theme.typography.pxToRem(15), - color: theme.palette.text.secondary, - }, - accordionDetails: { - padding: "4px 24px 4px", - }, - accordion: { - paddingBottom: "10px", - }, - tooltip: { - maxWidth: 650, - fontSize: "0.9em", - }, -})); - -export const formatStatusTag = (value: string) => { - const text = _.startCase(_.toLower(value)); - const color = - value === "ERROR" || value === "FAILURE" || value === "NETWORK ERROR" - ? "#e53935" - : value === "DONE" || value === "SUCCESS" || value === "OK" - ? "#7cb342" - : "#3e2723"; - - return {text}; -}; - -export const SummaryApplyStep: React.FC = () => { - const classes = useStyles(); - - return ( - - }> - - {`Type: Example 1`} -
- {origin && `${i18n.t("Origin")}: example origin `} - {origin &&
} -
- {`${i18n.t("Status")}: status`} -
- - - {i18n.t("Summary")} - -
- ); -}; From 861c2dda471ea60f6f62dbf479566b12fc59f85f Mon Sep 17 00:00:00 2001 From: Jocelyn Dunkley Date: Thu, 26 Aug 2021 14:09:34 +0200 Subject: [PATCH 08/50] I was able to take out tthe code where I take out the date for some reason --- i18n/en.pot | 7 +++++-- i18n/es.po | 5 ++++- src/data/repositories/MetadataD2ApiRepository.ts | 8 ++------ 3 files changed, 11 insertions(+), 9 deletions(-) diff --git a/i18n/en.pot b/i18n/en.pot index 0b5a8a1..b0d6606 100644 --- a/i18n/en.pot +++ b/i18n/en.pot @@ -5,8 +5,8 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -"POT-Creation-Date: 2021-08-26T07:01:18.687Z\n" -"PO-Revision-Date: 2021-08-26T07:01:18.687Z\n" +"POT-Creation-Date: 2021-08-26T11:56:17.100Z\n" +"PO-Revision-Date: 2021-08-26T11:56:17.100Z\n" msgid "Add" msgstr "" @@ -41,6 +41,9 @@ msgstr "" msgid "ID" msgstr "" +msgid "Metadata Type" +msgstr "" + msgid "Public Access" msgstr "" diff --git a/i18n/es.po b/i18n/es.po index c6d4909..fe2d02e 100644 --- a/i18n/es.po +++ b/i18n/es.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: i18next-conv\n" -"POT-Creation-Date: 2021-08-26T07:01:18.687Z\n" +"POT-Creation-Date: 2021-08-26T11:56:17.100Z\n" "PO-Revision-Date: 2018-10-25T09:02:35.143Z\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,6 +41,9 @@ msgstr "" msgid "ID" msgstr "" +msgid "Metadata Type" +msgstr "" + msgid "Public Access" msgstr "" diff --git a/src/data/repositories/MetadataD2ApiRepository.ts b/src/data/repositories/MetadataD2ApiRepository.ts index 4b16bcf..acd6c3f 100644 --- a/src/data/repositories/MetadataD2ApiRepository.ts +++ b/src/data/repositories/MetadataD2ApiRepository.ts @@ -39,13 +39,9 @@ export class MetadataD2ApiRepository implements MetadataRepository { public listMetadataWithDependencies(options: GetMetadataDependenciesOptions[]): FutureData { return Future.futureMap(options, item => - apiToFuture(this.api.get(`/${item.model}/${item.id}/metadata.json`)) + apiToFuture(this.api.get(`/${item.model}/${item.id}/metadata.json`)) ).map(data => { - const dataWithoutDate = data.map((dataItem: any) => { - const { date, ...everythingElse } = dataItem; // eslint-disable-line - return everythingElse; - }); - const mergedPayloads = this.mergePayloads(dataWithoutDate); + const mergedPayloads = this.mergePayloads(data); const dataWithIdsAndName = Object.entries(mergedPayloads).map(([key, value]) => { return value.map(item => ({ ...item, model: key })); }); From ef5351aa2ee55418455f0ecef46c6ef7c62d29e9 Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Fri, 27 Aug 2021 08:33:21 +0200 Subject: [PATCH 09/50] Rename use cases --- .env | 2 +- src/CompositionRoot.ts | 14 ++++----- .../repositories/MetadataD2ApiRepository.ts | 25 ++++++---------- src/domain/repositories/MetadataRepository.ts | 10 +++---- src/domain/usecases/GetAllMetadataUseCase.ts | 11 ------- .../GetMetadataWithDependenciesUseCase.ts | 8 ++--- src/domain/usecases/ListMetadataUseCase.ts | 11 +++++++ ...chUserUseCase.ts => SearchUsersUseCase.ts} | 4 +-- .../bulk-apply/steps/ListDependenciesStep.tsx | 17 +++++++---- .../bulk-apply/steps/SelectMetadataStep.tsx | 29 +++++++++---------- 10 files changed, 63 insertions(+), 68 deletions(-) delete mode 100644 src/domain/usecases/GetAllMetadataUseCase.ts create mode 100644 src/domain/usecases/ListMetadataUseCase.ts rename src/domain/usecases/{SearchUserUseCase.ts => SearchUsersUseCase.ts} (77%) diff --git a/.env b/.env index 5eca7f2..e99a73e 100644 --- a/.env +++ b/.env @@ -1,7 +1,7 @@ BROWSER=false PORT=8081 SKIP_PREFLIGHT_CHECK=true -REACT_APP_DHIS2_BASE_URL=https://dev.eyeseetea.com/who-dev-234/ +REACT_APP_DHIS2_BASE_URL=https://dev.eyeseetea.com/play CYPRESS_DHIS2_AUTH='admin:district' CYPRESS_EXTERNAL_API="https://dev.eyeseetea.com/play" diff --git a/src/CompositionRoot.ts b/src/CompositionRoot.ts index 1de83d1..896208c 100644 --- a/src/CompositionRoot.ts +++ b/src/CompositionRoot.ts @@ -1,13 +1,11 @@ import { Instance } from "./data/entities/Instance"; import { InstanceDefaultRepository } from "./data/repositories/InstanceDefaultRepository"; import { MetadataD2ApiRepository } from "./data/repositories/MetadataD2ApiRepository"; - +import { ListMetadataUseCase } from "./domain/usecases/ListMetadataUseCase"; import { GetCurrentUserUseCase } from "./domain/usecases/GetCurrentUserUseCase"; -import { SearchUserUseCase } from "./domain/usecases/SearchUserUseCase"; - import { GetInstanceVersionUseCase } from "./domain/usecases/GetInstanceVersionUseCase"; -import { GetAllMetadataUseCase } from "./domain/usecases/GetAllMetadataUseCase"; -import { GetMetadataWithDependenciesUseCase } from "./domain/usecases/GetMetadataWithDependenciesUseCase"; +import { GetMetadataDependenciesUseCase } from "./domain/usecases/GetMetadataWithDependenciesUseCase"; +import { SearchUsersUseCase } from "./domain/usecases/SearchUsersUseCase"; export function getCompositionRoot(instance: Instance) { const instanceRepository = new InstanceDefaultRepository(instance); @@ -17,11 +15,11 @@ export function getCompositionRoot(instance: Instance) { instance: getExecute({ getCurrentUser: new GetCurrentUserUseCase(instanceRepository), getVersion: new GetInstanceVersionUseCase(instanceRepository), - searchUsers: new SearchUserUseCase(instanceRepository), + searchUsers: new SearchUsersUseCase(instanceRepository), }), metadata: getExecute({ - listAll: new GetAllMetadataUseCase(metadataRepository), - getDependencies: new GetMetadataWithDependenciesUseCase(metadataRepository), + list: new ListMetadataUseCase(metadataRepository), + getDependencies: new GetMetadataDependenciesUseCase(metadataRepository), }), }; } diff --git a/src/data/repositories/MetadataD2ApiRepository.ts b/src/data/repositories/MetadataD2ApiRepository.ts index acd6c3f..badd0bd 100644 --- a/src/data/repositories/MetadataD2ApiRepository.ts +++ b/src/data/repositories/MetadataD2ApiRepository.ts @@ -1,18 +1,17 @@ +import _ from "lodash"; import { Future, FutureData } from "../../domain/entities/Future"; +import { MetadataEntities } from "../../domain/entities/MetadataEntities"; import { + GetDependenciesOptions, + ListOptions, MetadataRepository, - ListAllMetadataParams, - GetMetadataDependenciesOptions, + MetadataResponse, Payload, - MetadataObject, - MetadataItem, } from "../../domain/repositories/MetadataRepository"; +import { D2Api, Model } from "../../types/d2-api"; import { getD2APiFromInstance } from "../../utils/d2-api"; import { apiToFuture } from "../../utils/futures"; import { Instance } from "../entities/Instance"; -import { MetadataEntities } from "../../domain/entities/MetadataEntities"; -import { Model, D2Api } from "../../types/d2-api"; -import _ from "lodash"; export class MetadataD2ApiRepository implements MetadataRepository { private api: D2Api; @@ -21,7 +20,7 @@ export class MetadataD2ApiRepository implements MetadataRepository { this.api = getD2APiFromInstance(instance); } - public listAllMetadata(options: ListAllMetadataParams): FutureData { + public list(options: ListOptions): FutureData { const { model, page, pageSize, search, sorting = { field: "id", order: "asc" } } = options; //@ts-ignore: d2-api incorrectly guessing model with string access @@ -37,16 +36,10 @@ export class MetadataD2ApiRepository implements MetadataRepository { ); } - public listMetadataWithDependencies(options: GetMetadataDependenciesOptions[]): FutureData { + public getDependencies(options: GetDependenciesOptions[]): FutureData { return Future.futureMap(options, item => apiToFuture(this.api.get(`/${item.model}/${item.id}/metadata.json`)) - ).map(data => { - const mergedPayloads = this.mergePayloads(data); - const dataWithIdsAndName = Object.entries(mergedPayloads).map(([key, value]) => { - return value.map(item => ({ ...item, model: key })); - }); - return _.flatten(dataWithIdsAndName); - }); + ).map(data => this.mergePayloads(data)); } private getApiModel(type: keyof MetadataEntities): InstanceType { diff --git a/src/domain/repositories/MetadataRepository.ts b/src/domain/repositories/MetadataRepository.ts index 28bf942..c847539 100644 --- a/src/domain/repositories/MetadataRepository.ts +++ b/src/domain/repositories/MetadataRepository.ts @@ -1,11 +1,11 @@ import { FutureData } from "../entities/Future"; export interface MetadataRepository { - listAllMetadata(options: ListAllMetadataParams): FutureData; - listMetadataWithDependencies(options: GetMetadataDependenciesOptions[]): FutureData; + list(options: ListOptions): FutureData; + getDependencies(options: GetDependenciesOptions[]): FutureData; } -export interface ListAllMetadataParams { +export interface ListOptions { model: GetMetadataModel; page?: number; pageSize?: number; @@ -15,13 +15,13 @@ export interface ListAllMetadataParams { export type GetMetadataModel = "dataSets" | "programs" | "dashboards"; -export type GetMetadataDependenciesOptions = { model: GetMetadataModel; id: string }; +export type GetDependenciesOptions = { model: GetMetadataModel; id: string }; export type Payload = Record; export type MetadataItem = { id: string; [key: string]: string | number | boolean | undefined }; -export interface MetadataObject { +export interface MetadataResponse { objects: MetadataItem[]; pager: Pager; } diff --git a/src/domain/usecases/GetAllMetadataUseCase.ts b/src/domain/usecases/GetAllMetadataUseCase.ts deleted file mode 100644 index 24866d2..0000000 --- a/src/domain/usecases/GetAllMetadataUseCase.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { UseCase } from "../../CompositionRoot"; -import { FutureData } from "../entities/Future"; -import { MetadataRepository, ListAllMetadataParams, MetadataObject } from "../repositories/MetadataRepository"; -//Payload, -export class GetAllMetadataUseCase implements UseCase { - constructor(private metadataRepository: MetadataRepository) {} - - public execute(params: ListAllMetadataParams): FutureData { - return this.metadataRepository.listAllMetadata(params); - } -} diff --git a/src/domain/usecases/GetMetadataWithDependenciesUseCase.ts b/src/domain/usecases/GetMetadataWithDependenciesUseCase.ts index 6542dd8..4555438 100644 --- a/src/domain/usecases/GetMetadataWithDependenciesUseCase.ts +++ b/src/domain/usecases/GetMetadataWithDependenciesUseCase.ts @@ -1,11 +1,11 @@ import { UseCase } from "../../CompositionRoot"; import { FutureData } from "../entities/Future"; -import { MetadataRepository, GetMetadataDependenciesOptions, MetadataItem } from "../repositories/MetadataRepository"; +import { GetDependenciesOptions, MetadataRepository, Payload } from "../repositories/MetadataRepository"; -export class GetMetadataWithDependenciesUseCase implements UseCase { +export class GetMetadataDependenciesUseCase implements UseCase { constructor(private metadataRepository: MetadataRepository) {} - public execute(params: GetMetadataDependenciesOptions[]): FutureData { - return this.metadataRepository.listMetadataWithDependencies(params); + public execute(params: GetDependenciesOptions[]): FutureData { + return this.metadataRepository.getDependencies(params); } } diff --git a/src/domain/usecases/ListMetadataUseCase.ts b/src/domain/usecases/ListMetadataUseCase.ts new file mode 100644 index 0000000..15cfe7f --- /dev/null +++ b/src/domain/usecases/ListMetadataUseCase.ts @@ -0,0 +1,11 @@ +import { UseCase } from "../../CompositionRoot"; +import { FutureData } from "../entities/Future"; +import { ListOptions, MetadataRepository, MetadataResponse } from "../repositories/MetadataRepository"; + +export class ListMetadataUseCase implements UseCase { + constructor(private metadataRepository: MetadataRepository) {} + + public execute(params: ListOptions): FutureData { + return this.metadataRepository.list(params); + } +} diff --git a/src/domain/usecases/SearchUserUseCase.ts b/src/domain/usecases/SearchUsersUseCase.ts similarity index 77% rename from src/domain/usecases/SearchUserUseCase.ts rename to src/domain/usecases/SearchUsersUseCase.ts index c23d481..85eb278 100644 --- a/src/domain/usecases/SearchUserUseCase.ts +++ b/src/domain/usecases/SearchUsersUseCase.ts @@ -1,9 +1,9 @@ import { UseCase } from "../../CompositionRoot"; import { UserSearch } from "../../data/entities/SearchUser"; +import { FutureData } from "../entities/Future"; import { InstanceRepository } from "../repositories/InstanceRepository"; -import { FutureData } from "../../domain/entities/Future"; -export class SearchUserUseCase implements UseCase { +export class SearchUsersUseCase implements UseCase { constructor(private instanceRepository: InstanceRepository) {} public execute(query: string): FutureData { diff --git a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx index 55096a6..cdb791c 100644 --- a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx @@ -1,11 +1,11 @@ -import React, { useEffect, useState, useCallback } from "react"; -import { useAppContext } from "../../../contexts/app-context"; import { ObjectsTable, TableSelection, TableState } from "@eyeseetea/d2-ui-components"; import _ from "lodash"; -import { MetadataSharingWizardStepProps } from "../steps"; +import React, { useCallback, useEffect, useState } from "react"; import { Ref } from "../../../../domain/entities/Ref"; -import i18n from "../../../../locales"; import { MetadataItem } from "../../../../domain/repositories/MetadataRepository"; +import i18n from "../../../../locales"; +import { useAppContext } from "../../../contexts/app-context"; +import { MetadataSharingWizardStepProps } from "../steps"; export const ListDependenciesStep: React.FC = ({ metadata, @@ -38,8 +38,13 @@ export const ListDependenciesStep: React.FC = ({ useEffect(() => { const getMetadataDependencies = async () => { setIsLoading(true); - const { data = [] } = await compositionRoot.metadata.getDependencies(metadata).runAsync(); - setMetadataDependencies(data); + const { data = {} } = await compositionRoot.metadata.getDependencies(metadata).runAsync(); + + const dataWithIdsAndName = Object.entries(data).map(([key, value]) => { + return value.map(item => ({ ...item, model: key })); + }); + + setMetadataDependencies(_.flatten(dataWithIdsAndName)); setIsLoading(false); }; getMetadataDependencies(); diff --git a/src/webapp/pages/bulk-apply/steps/SelectMetadataStep.tsx b/src/webapp/pages/bulk-apply/steps/SelectMetadataStep.tsx index 5148276..c788cd1 100644 --- a/src/webapp/pages/bulk-apply/steps/SelectMetadataStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/SelectMetadataStep.tsx @@ -1,21 +1,20 @@ -import React, { useState, useEffect, useCallback } from "react"; -import _ from "lodash"; -import { useAppContext } from "../../../contexts/app-context"; -import { ObjectsTable, TableSelection, TableState, TablePagination } from "@eyeseetea/d2-ui-components"; import i18n from "@dhis2/d2-i18n"; - -import { MetadataSharingWizardStepProps } from "../steps"; -import Dropdown from "../../../components/dropdown/Dropdown"; +import { ObjectsTable, TablePagination, TableSelection, TableState } from "@eyeseetea/d2-ui-components"; +import React, { useCallback, useEffect, useState } from "react"; import { GetMetadataModel, MetadataItem } from "../../../../domain/repositories/MetadataRepository"; +import Dropdown from "../../../components/dropdown/Dropdown"; +import { useAppContext } from "../../../contexts/app-context"; +import { MetadataSharingWizardStepProps } from "../steps"; + +const initialState = { + sorting: { field: "displayName" as const, order: "asc" as const }, + pagination: { page: 1, pageSize: 25 }, +}; export const SelectMetadataStep: React.FC = ({ metadata, onChange, }: MetadataSharingWizardStepProps) => { - const initialState = { - sorting: { field: "displayName" as const, order: "asc" as const }, - pagination: { page: 1, pageSize: 25 }, - }; const { compositionRoot } = useAppContext(); const [allMetadata, setAllMetadata] = useState<{ objects: MetadataItem[]; @@ -37,7 +36,7 @@ export const SelectMetadataStep: React.FC = ({ useEffect(() => { const getMetadata = async () => { setIsLoading(true); - const { data } = await compositionRoot.metadata.listAll({ ...initialState, model, search }).runAsync(); + const { data } = await compositionRoot.metadata.list({ ...initialState, model, search }).runAsync(); if (data) { const rows = data.objects.map((item: MetadataItem) => ({ ...item, @@ -48,7 +47,7 @@ export const SelectMetadataStep: React.FC = ({ } }; getMetadata(); - }, [compositionRoot.metadata, search, model]); + }, [compositionRoot, search, model]); const onTableChange = useCallback( async (tableState: TableState, model) => { @@ -61,7 +60,7 @@ export const SelectMetadataStep: React.FC = ({ const { pagination, sorting } = tableState ?? initialState; const { data } = await compositionRoot.metadata - .listAll({ + .list({ pageSize: pagination.pageSize, page: pagination.page, sorting: { field: sorting.field.toString(), order: sorting.order }, @@ -74,7 +73,7 @@ export const SelectMetadataStep: React.FC = ({ } setIsLoading(false); }, - [search, compositionRoot, model] + [search, compositionRoot] ); const changeModelFilter = (modelName: GetMetadataModel) => { From 9a95c24a8fd3bf1b0ca555a705bc1b94a8f56115 Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Fri, 27 Aug 2021 08:36:05 +0200 Subject: [PATCH 10/50] Remove metadata entities --- .../repositories/MetadataD2ApiRepository.ts | 15 +- src/domain/entities/MetadataEntities.ts | 3546 ----------------- src/domain/repositories/MetadataRepository.ts | 8 +- .../GetMetadataWithDependenciesUseCase.ts | 4 +- .../bulk-apply/steps/SelectMetadataStep.tsx | 6 +- 5 files changed, 14 insertions(+), 3565 deletions(-) delete mode 100644 src/domain/entities/MetadataEntities.ts diff --git a/src/data/repositories/MetadataD2ApiRepository.ts b/src/data/repositories/MetadataD2ApiRepository.ts index badd0bd..e7b5d2f 100644 --- a/src/data/repositories/MetadataD2ApiRepository.ts +++ b/src/data/repositories/MetadataD2ApiRepository.ts @@ -1,14 +1,13 @@ import _ from "lodash"; import { Future, FutureData } from "../../domain/entities/Future"; -import { MetadataEntities } from "../../domain/entities/MetadataEntities"; import { - GetDependenciesOptions, + GetDependenciesItem, ListOptions, MetadataRepository, MetadataResponse, Payload, } from "../../domain/repositories/MetadataRepository"; -import { D2Api, Model } from "../../types/d2-api"; +import { D2Api } from "../../types/d2-api"; import { getD2APiFromInstance } from "../../utils/d2-api"; import { apiToFuture } from "../../utils/futures"; import { Instance } from "../entities/Instance"; @@ -23,9 +22,9 @@ export class MetadataD2ApiRepository implements MetadataRepository { public list(options: ListOptions): FutureData { const { model, page, pageSize, search, sorting = { field: "id", order: "asc" } } = options; - //@ts-ignore: d2-api incorrectly guessing model with string access return apiToFuture( - this.getApiModel(model).get({ + //@ts-ignore: d2-api incorrectly guessing model with string access + this.api.models[model].get({ page, pageSize, paging: true, @@ -36,16 +35,12 @@ export class MetadataD2ApiRepository implements MetadataRepository { ); } - public getDependencies(options: GetDependenciesOptions[]): FutureData { + public getDependencies(options: GetDependenciesItem[]): FutureData { return Future.futureMap(options, item => apiToFuture(this.api.get(`/${item.model}/${item.id}/metadata.json`)) ).map(data => this.mergePayloads(data)); } - private getApiModel(type: keyof MetadataEntities): InstanceType { - return this.api.models[type]; - } - private mergePayloads(payloads: Payload[]): Payload { return _.reduce( payloads, diff --git a/src/domain/entities/MetadataEntities.ts b/src/domain/entities/MetadataEntities.ts deleted file mode 100644 index b3bbe9f..0000000 --- a/src/domain/entities/MetadataEntities.ts +++ /dev/null @@ -1,3546 +0,0 @@ -import { Ref } from "./Ref"; -import { Access, Expression, Id, Style, Translation } from "./Schemas"; - -export type AttributeValue = { - attribute: Ref; - created: string; - lastUpdated: string; - value: string; -}; - -export type Attribute = { - access: Access; - attributeValues: AttributeValue[]; - categoryAttribute: boolean; - categoryOptionAttribute: boolean; - categoryOptionComboAttribute: boolean; - categoryOptionGroupAttribute: boolean; - categoryOptionGroupSetAttribute: boolean; - code: Id; - constantAttribute: boolean; - created: string; - dataElementAttribute: boolean; - dataElementGroupAttribute: boolean; - dataElementGroupSetAttribute: boolean; - dataSetAttribute: boolean; - description: string; - displayDescription: string; - displayName: string; - displayShortName: string; - documentAttribute: boolean; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - indicatorAttribute: boolean; - indicatorGroupAttribute: boolean; - lastUpdated: string; - lastUpdatedBy: Ref; - legendSetAttribute: boolean; - mandatory: boolean; - name: string; - optionAttribute: boolean; - optionSet: Ref; - optionSetAttribute: boolean; - organisationUnitAttribute: boolean; - organisationUnitGroupAttribute: boolean; - organisationUnitGroupSetAttribute: boolean; - programAttribute: boolean; - programIndicatorAttribute: boolean; - programStageAttribute: boolean; - publicAccess: string; - sectionAttribute: boolean; - shortName: string; - sortOrder: number; - sqlViewAttribute: boolean; - trackedEntityAttributeAttribute: boolean; - trackedEntityTypeAttribute: boolean; - translations: Translation[]; - unique: boolean; - user: Ref; - userAccesses: UserAccess[]; - userAttribute: boolean; - userGroupAccesses: UserGroupAccess[]; - userGroupAttribute: boolean; - validationRuleAttribute: boolean; - validationRuleGroupAttribute: boolean; - valueType: - | "TEXT" - | "LONG_TEXT" - | "LETTER" - | "PHONE_NUMBER" - | "EMAIL" - | "BOOLEAN" - | "TRUE_ONLY" - | "DATE" - | "DATETIME" - | "TIME" - | "NUMBER" - | "UNIT_INTERVAL" - | "PERCENTAGE" - | "INTEGER" - | "INTEGER_POSITIVE" - | "INTEGER_NEGATIVE" - | "INTEGER_ZERO_OR_POSITIVE" - | "TRACKER_ASSOCIATE" - | "USERNAME" - | "COORDINATE" - | "ORGANISATION_UNIT" - | "AGE" - | "URL" - | "FILE_RESOURCE" - | "IMAGE"; -}; - -export type UserRole = { - access: Access; - attributeValues: AttributeValue[]; - authorities: string[]; - code: Id; - created: string; - description: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - publicAccess: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; - users: Ref[]; -}; - -export type User = { - access: Access; - attributeValues: AttributeValue[]; - birthday: string; - code: Id; - created: string; - dataViewOrganisationUnits: Ref[]; - displayName: string; - education: string; - email: string; - employer: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - firstName: string; - gender: string; - id: Id; - interests: string; - introduction: string; - jobTitle: string; - languages: string; - lastCheckedInterpretations: string; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - nationality: string; - organisationUnits: Ref[]; - phoneNumber: string; - publicAccess: string; - surname: string; - teiSearchOrganisationUnits: Ref[]; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userCredentials: UserCredentials; - userGroupAccesses: UserGroupAccess[]; - userGroups: Ref[]; - welcomeMessage: string; -}; - -export type UserGroup = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - created: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - managedByGroups: Ref[]; - managedGroups: Ref[]; - name: string; - publicAccess: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; - users: Ref[]; -}; - -export type Option = { - access: Access; - attributeValues: AttributeValue[]; - code: string; - created: string; - description: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - formName: string; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - optionSet: Ref; - publicAccess: string; - sortOrder: number; - style: Style; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type OptionSet = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - created: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - options: Ref[]; - publicAccess: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; - valueType: - | "TEXT" - | "LONG_TEXT" - | "LETTER" - | "PHONE_NUMBER" - | "EMAIL" - | "BOOLEAN" - | "TRUE_ONLY" - | "DATE" - | "DATETIME" - | "TIME" - | "NUMBER" - | "UNIT_INTERVAL" - | "PERCENTAGE" - | "INTEGER" - | "INTEGER_POSITIVE" - | "INTEGER_NEGATIVE" - | "INTEGER_ZERO_OR_POSITIVE" - | "TRACKER_ASSOCIATE" - | "USERNAME" - | "COORDINATE" - | "ORGANISATION_UNIT" - | "AGE" - | "URL" - | "FILE_RESOURCE" - | "IMAGE"; - version: number; -}; - -export type OptionGroup = { - access: Access; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - attributeValues: AttributeValue[]; - code: Id; - created: string; - description: string; - dimensionItem: string; - dimensionItemType: - | "DATA_ELEMENT" - | "DATA_ELEMENT_OPERAND" - | "INDICATOR" - | "REPORTING_RATE" - | "PROGRAM_DATA_ELEMENT" - | "PROGRAM_ATTRIBUTE" - | "PROGRAM_INDICATOR" - | "PERIOD" - | "ORGANISATION_UNIT" - | "CATEGORY_OPTION" - | "OPTION_GROUP" - | "DATA_ELEMENT_GROUP" - | "ORGANISATION_UNIT_GROUP" - | "CATEGORY_OPTION_GROUP"; - displayDescription: string; - displayName: string; - displayShortName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - legendSets: Ref[]; - name: string; - optionSet: Ref; - options: Ref[]; - publicAccess: string; - shortName: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type OptionGroupSet = { - access: Access; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - allItems: boolean; - attributeValues: AttributeValue[]; - code: Id; - created: string; - dataDimension: boolean; - description: string; - dimension: string; - dimensionType: - | "DATA_X" - | "PROGRAM_DATA_ELEMENT" - | "PROGRAM_ATTRIBUTE" - | "PROGRAM_INDICATOR" - | "DATA_COLLAPSED" - | "CATEGORY_OPTION_COMBO" - | "ATTRIBUTE_OPTION_COMBO" - | "PERIOD" - | "ORGANISATION_UNIT" - | "CATEGORY_OPTION_GROUP_SET" - | "DATA_ELEMENT_GROUP_SET" - | "ORGANISATION_UNIT_GROUP_SET" - | "ORGANISATION_UNIT_GROUP" - | "CATEGORY" - | "OPTION_GROUP_SET" - | "VALIDATION_RULE" - | "STATIC" - | "ORGANISATION_UNIT_LEVEL"; - displayDescription: string; - displayName: string; - displayShortName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - filter: string; - id: Id; - items: any[]; - lastUpdated: string; - lastUpdatedBy: Ref; - legendSet: Ref; - name: string; - optionGroups: Ref[]; - optionSet: Ref; - publicAccess: string; - shortName: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type LegendSet = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - created: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - legends: Legend[]; - name: string; - publicAccess: string; - symbolizer: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type ColorSet = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - colors: Color[]; - created: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - publicAccess: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type OrganisationUnit = { - access: Access; - address: string; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - ancestors: Ref[]; - attributeValues: AttributeValue[]; - children: Ref[]; - closedDate: string; - code: Id; - comment: string; - contactPerson: string; - coordinates: string; - created: string; - dataSets: Ref[]; - description: string; - dimensionItem: string; - dimensionItemType: - | "DATA_ELEMENT" - | "DATA_ELEMENT_OPERAND" - | "INDICATOR" - | "REPORTING_RATE" - | "PROGRAM_DATA_ELEMENT" - | "PROGRAM_ATTRIBUTE" - | "PROGRAM_INDICATOR" - | "PERIOD" - | "ORGANISATION_UNIT" - | "CATEGORY_OPTION" - | "OPTION_GROUP" - | "DATA_ELEMENT_GROUP" - | "ORGANISATION_UNIT_GROUP" - | "CATEGORY_OPTION_GROUP"; - displayDescription: string; - displayName: string; - displayShortName: string; - email: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - featureType: "NONE" | "MULTI_POLYGON" | "POLYGON" | "POINT" | "SYMBOL"; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - leaf: boolean; - legendSet: Ref; - legendSets: Ref[]; - level: number; - memberCount: number; - name: string; - openingDate: string; - organisationUnitGroups: Ref[]; - parent: Ref; - path: string; - phoneNumber: string; - programs: Program[]; - publicAccess: string; - shortName: string; - translations: Translation[]; - type: string; - url: string; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; - users: Ref[]; -}; - -export type OrganisationUnitLevel = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - created: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - level: number; - name: string; - offlineLevels: number; - publicAccess: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type OrganisationUnitGroup = { - access: Access; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - attributeValues: AttributeValue[]; - code: Id; - color: string; - coordinates: string; - created: string; - description: string; - dimensionItem: string; - dimensionItemType: - | "DATA_ELEMENT" - | "DATA_ELEMENT_OPERAND" - | "INDICATOR" - | "REPORTING_RATE" - | "PROGRAM_DATA_ELEMENT" - | "PROGRAM_ATTRIBUTE" - | "PROGRAM_INDICATOR" - | "PERIOD" - | "ORGANISATION_UNIT" - | "CATEGORY_OPTION" - | "OPTION_GROUP" - | "DATA_ELEMENT_GROUP" - | "ORGANISATION_UNIT_GROUP" - | "CATEGORY_OPTION_GROUP"; - displayDescription: string; - displayName: string; - displayShortName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - featureType: "NONE" | "MULTI_POLYGON" | "POLYGON" | "POINT" | "SYMBOL"; - groupSets: Ref[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - legendSet: Ref; - legendSets: Ref[]; - name: string; - organisationUnits: Ref[]; - publicAccess: string; - shortName: string; - symbol: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type OrganisationUnitGroupSet = { - access: Access; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - allItems: boolean; - attributeValues: AttributeValue[]; - code: Id; - compulsory: boolean; - created: string; - dataDimension: boolean; - description: string; - dimension: string; - dimensionType: - | "DATA_X" - | "PROGRAM_DATA_ELEMENT" - | "PROGRAM_ATTRIBUTE" - | "PROGRAM_INDICATOR" - | "DATA_COLLAPSED" - | "CATEGORY_OPTION_COMBO" - | "ATTRIBUTE_OPTION_COMBO" - | "PERIOD" - | "ORGANISATION_UNIT" - | "CATEGORY_OPTION_GROUP_SET" - | "DATA_ELEMENT_GROUP_SET" - | "ORGANISATION_UNIT_GROUP_SET" - | "ORGANISATION_UNIT_GROUP" - | "CATEGORY" - | "OPTION_GROUP_SET" - | "VALIDATION_RULE" - | "STATIC" - | "ORGANISATION_UNIT_LEVEL"; - displayDescription: string; - displayName: string; - displayShortName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - filter: string; - id: Id; - includeSubhierarchyInAnalytics: boolean; - items: any[]; - lastUpdated: string; - lastUpdatedBy: Ref; - legendSet: Ref; - name: string; - organisationUnitGroups: Ref[]; - publicAccess: string; - shortName: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type CategoryOption = { - access: Access; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - attributeValues: AttributeValue[]; - categories: Ref[]; - categoryOptionCombos: Ref[]; - categoryOptionGroups: Ref[]; - code: Id; - created: string; - description: string; - dimensionItem: string; - dimensionItemType: - | "DATA_ELEMENT" - | "DATA_ELEMENT_OPERAND" - | "INDICATOR" - | "REPORTING_RATE" - | "PROGRAM_DATA_ELEMENT" - | "PROGRAM_ATTRIBUTE" - | "PROGRAM_INDICATOR" - | "PERIOD" - | "ORGANISATION_UNIT" - | "CATEGORY_OPTION" - | "OPTION_GROUP" - | "DATA_ELEMENT_GROUP" - | "ORGANISATION_UNIT_GROUP" - | "CATEGORY_OPTION_GROUP"; - displayDescription: string; - displayName: string; - displayShortName: string; - endDate: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - isDefault: boolean; - lastUpdated: string; - lastUpdatedBy: Ref; - legendSet: Ref; - legendSets: Ref[]; - name: string; - organisationUnits: Ref[]; - publicAccess: string; - shortName: string; - startDate: string; - style: Style; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type CategoryOptionGroup = { - access: Access; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - attributeValues: AttributeValue[]; - categoryOptions: Ref[]; - code: Id; - created: string; - dataDimensionType: "DISAGGREGATION" | "ATTRIBUTE"; - description: string; - dimensionItem: string; - dimensionItemType: - | "DATA_ELEMENT" - | "DATA_ELEMENT_OPERAND" - | "INDICATOR" - | "REPORTING_RATE" - | "PROGRAM_DATA_ELEMENT" - | "PROGRAM_ATTRIBUTE" - | "PROGRAM_INDICATOR" - | "PERIOD" - | "ORGANISATION_UNIT" - | "CATEGORY_OPTION" - | "OPTION_GROUP" - | "DATA_ELEMENT_GROUP" - | "ORGANISATION_UNIT_GROUP" - | "CATEGORY_OPTION_GROUP"; - displayDescription: string; - displayName: string; - displayShortName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - groupSets: Ref[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - legendSet: Ref; - legendSets: Ref[]; - name: string; - publicAccess: string; - shortName: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type CategoryOptionGroupSet = { - access: Access; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - allItems: boolean; - attributeValues: AttributeValue[]; - categoryOptionGroups: Ref[]; - code: Id; - created: string; - dataDimension: boolean; - dataDimensionType: "DISAGGREGATION" | "ATTRIBUTE"; - description: string; - dimension: string; - dimensionType: - | "DATA_X" - | "PROGRAM_DATA_ELEMENT" - | "PROGRAM_ATTRIBUTE" - | "PROGRAM_INDICATOR" - | "DATA_COLLAPSED" - | "CATEGORY_OPTION_COMBO" - | "ATTRIBUTE_OPTION_COMBO" - | "PERIOD" - | "ORGANISATION_UNIT" - | "CATEGORY_OPTION_GROUP_SET" - | "DATA_ELEMENT_GROUP_SET" - | "ORGANISATION_UNIT_GROUP_SET" - | "ORGANISATION_UNIT_GROUP" - | "CATEGORY" - | "OPTION_GROUP_SET" - | "VALIDATION_RULE" - | "STATIC" - | "ORGANISATION_UNIT_LEVEL"; - displayDescription: string; - displayName: string; - displayShortName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - filter: string; - id: Id; - items: Ref[]; - lastUpdated: string; - lastUpdatedBy: Ref; - legendSet: Ref; - name: string; - publicAccess: string; - shortName: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type Category = { - access: Access; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - allItems: boolean; - attributeValues: AttributeValue[]; - categoryCombos: Ref[]; - categoryOptions: Ref[]; - code: Id; - created: string; - dataDimension: boolean; - dataDimensionType: "DISAGGREGATION" | "ATTRIBUTE"; - description: string; - dimension: string; - dimensionType: - | "DATA_X" - | "PROGRAM_DATA_ELEMENT" - | "PROGRAM_ATTRIBUTE" - | "PROGRAM_INDICATOR" - | "DATA_COLLAPSED" - | "CATEGORY_OPTION_COMBO" - | "ATTRIBUTE_OPTION_COMBO" - | "PERIOD" - | "ORGANISATION_UNIT" - | "CATEGORY_OPTION_GROUP_SET" - | "DATA_ELEMENT_GROUP_SET" - | "ORGANISATION_UNIT_GROUP_SET" - | "ORGANISATION_UNIT_GROUP" - | "CATEGORY" - | "OPTION_GROUP_SET" - | "VALIDATION_RULE" - | "STATIC" - | "ORGANISATION_UNIT_LEVEL"; - displayDescription: string; - displayName: string; - displayShortName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - filter: string; - id: Id; - items: Ref[]; - lastUpdated: string; - lastUpdatedBy: Ref; - legendSet: Ref; - name: string; - publicAccess: string; - shortName: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type CategoryCombo = { - access: Access; - attributeValues: AttributeValue[]; - categories: Ref[]; - categoryOptionCombos: Ref[]; - code: Id; - created: string; - dataDimensionType: "DISAGGREGATION" | "ATTRIBUTE"; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - isDefault: boolean; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - publicAccess: string; - skipTotal: boolean; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type CategoryOptionCombo = { - access: Access; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - attributeValues: AttributeValue[]; - categoryCombo: Ref; - categoryOptions: Ref[]; - code: Id; - created: string; - description: string; - dimensionItem: string; - dimensionItemType: - | "DATA_ELEMENT" - | "DATA_ELEMENT_OPERAND" - | "INDICATOR" - | "REPORTING_RATE" - | "PROGRAM_DATA_ELEMENT" - | "PROGRAM_ATTRIBUTE" - | "PROGRAM_INDICATOR" - | "PERIOD" - | "ORGANISATION_UNIT" - | "CATEGORY_OPTION" - | "OPTION_GROUP" - | "DATA_ELEMENT_GROUP" - | "ORGANISATION_UNIT_GROUP" - | "CATEGORY_OPTION_GROUP"; - displayDescription: string; - displayName: string; - displayShortName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - ignoreApproval: boolean; - lastUpdated: string; - lastUpdatedBy: Ref; - legendSet: Ref; - legendSets: Ref[]; - name: string; - publicAccess: string; - shortName: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type DataElement = { - access: Access; - aggregationLevels: number[]; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - attributeValues: AttributeValue[]; - categoryCombo: Ref; - code: Id; - commentOptionSet: Ref; - created: string; - dataElementGroups: Ref[]; - dataSetElements: DataSetElement[]; - description: string; - dimensionItem: string; - dimensionItemType: - | "DATA_ELEMENT" - | "DATA_ELEMENT_OPERAND" - | "INDICATOR" - | "REPORTING_RATE" - | "PROGRAM_DATA_ELEMENT" - | "PROGRAM_ATTRIBUTE" - | "PROGRAM_INDICATOR" - | "PERIOD" - | "ORGANISATION_UNIT" - | "CATEGORY_OPTION" - | "OPTION_GROUP" - | "DATA_ELEMENT_GROUP" - | "ORGANISATION_UNIT_GROUP" - | "CATEGORY_OPTION_GROUP"; - displayDescription: string; - displayFormName: string; - displayName: string; - displayShortName: string; - domainType: "AGGREGATE" | "TRACKER"; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - formName: string; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - legendSet: Ref; - legendSets: Ref[]; - name: string; - optionSet: Ref; - optionSetValue: boolean; - publicAccess: string; - shortName: string; - style: Style; - translations: Translation[]; - url: string; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; - valueType: - | "TEXT" - | "LONG_TEXT" - | "LETTER" - | "PHONE_NUMBER" - | "EMAIL" - | "BOOLEAN" - | "TRUE_ONLY" - | "DATE" - | "DATETIME" - | "TIME" - | "NUMBER" - | "UNIT_INTERVAL" - | "PERCENTAGE" - | "INTEGER" - | "INTEGER_POSITIVE" - | "INTEGER_NEGATIVE" - | "INTEGER_ZERO_OR_POSITIVE" - | "TRACKER_ASSOCIATE" - | "USERNAME" - | "COORDINATE" - | "ORGANISATION_UNIT" - | "AGE" - | "URL" - | "FILE_RESOURCE" - | "IMAGE"; - zeroIsSignificant: boolean; -}; - -export type DataElementGroup = { - access: Access; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - attributeValues: AttributeValue[]; - code: Id; - created: string; - dataElements: Ref[]; - description: string; - dimensionItem: string; - dimensionItemType: - | "DATA_ELEMENT" - | "DATA_ELEMENT_OPERAND" - | "INDICATOR" - | "REPORTING_RATE" - | "PROGRAM_DATA_ELEMENT" - | "PROGRAM_ATTRIBUTE" - | "PROGRAM_INDICATOR" - | "PERIOD" - | "ORGANISATION_UNIT" - | "CATEGORY_OPTION" - | "OPTION_GROUP" - | "DATA_ELEMENT_GROUP" - | "ORGANISATION_UNIT_GROUP" - | "CATEGORY_OPTION_GROUP"; - displayDescription: string; - displayName: string; - displayShortName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - groupSets: Ref[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - legendSet: Ref; - legendSets: Ref[]; - name: string; - publicAccess: string; - shortName: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type DataElementGroupSet = { - access: Access; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - allItems: boolean; - attributeValues: AttributeValue[]; - code: Id; - compulsory: boolean; - created: string; - dataDimension: boolean; - dataElementGroups: DataElementGroup[]; - description: string; - dimension: string; - dimensionType: - | "DATA_X" - | "PROGRAM_DATA_ELEMENT" - | "PROGRAM_ATTRIBUTE" - | "PROGRAM_INDICATOR" - | "DATA_COLLAPSED" - | "CATEGORY_OPTION_COMBO" - | "ATTRIBUTE_OPTION_COMBO" - | "PERIOD" - | "ORGANISATION_UNIT" - | "CATEGORY_OPTION_GROUP_SET" - | "DATA_ELEMENT_GROUP_SET" - | "ORGANISATION_UNIT_GROUP_SET" - | "ORGANISATION_UNIT_GROUP" - | "CATEGORY" - | "OPTION_GROUP_SET" - | "VALIDATION_RULE" - | "STATIC" - | "ORGANISATION_UNIT_LEVEL"; - displayDescription: string; - displayName: string; - displayShortName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - filter: string; - id: Id; - items: any[]; - lastUpdated: string; - lastUpdatedBy: Ref; - legendSet: Ref; - name: string; - publicAccess: string; - shortName: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type IndicatorType = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - created: string; - displayName: string; - externalAccess: boolean; - factor: number; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - number: boolean; - publicAccess: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type Indicator = { - access: Access; - aggregateExportAttributeOptionCombo: string; - aggregateExportCategoryOptionCombo: string; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - annualized: boolean; - attributeValues: AttributeValue[]; - code: Id; - created: string; - dataSets: Ref[]; - decimals: number; - denominator: string; - denominatorDescription: string; - description: string; - dimensionItem: string; - dimensionItemType: - | "DATA_ELEMENT" - | "DATA_ELEMENT_OPERAND" - | "INDICATOR" - | "REPORTING_RATE" - | "PROGRAM_DATA_ELEMENT" - | "PROGRAM_ATTRIBUTE" - | "PROGRAM_INDICATOR" - | "PERIOD" - | "ORGANISATION_UNIT" - | "CATEGORY_OPTION" - | "OPTION_GROUP" - | "DATA_ELEMENT_GROUP" - | "ORGANISATION_UNIT_GROUP" - | "CATEGORY_OPTION_GROUP"; - displayDescription: string; - displayName: string; - displayShortName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - formName: string; - id: Id; - indicatorGroups: Ref[]; - indicatorType: Ref; - lastUpdated: string; - lastUpdatedBy: Ref; - legendSet: Ref; - legendSets: Ref[]; - name: string; - numerator: string; - numeratorDescription: string; - publicAccess: string; - shortName: string; - style: Style; - translations: Translation[]; - url: string; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type IndicatorGroup = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - created: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - indicatorGroupSet: Ref; - indicators: Ref[]; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - publicAccess: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type IndicatorGroupSet = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - compulsory: boolean; - created: string; - description: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - indicatorGroups: Ref[]; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - publicAccess: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type DataEntryForm = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - created: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - format: number; - htmlCode: string; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - publicAccess: string; - style: "COMFORTABLE" | "NORMAL" | "COMPACT" | "NONE"; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type DataSet = { - access: Access; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - attributeValues: AttributeValue[]; - categoryCombo: Ref; - code: Id; - compulsoryDataElementOperands: DataElementOperand[]; - compulsoryFieldsCompleteOnly: boolean; - created: string; - dataElementDecoration: boolean; - dataEntryForm: Ref; - dataInputPeriods: DataInputPeriod[]; - dataSetElements: DataSetElement[]; - description: string; - dimensionItem: string; - dimensionItemType: - | "DATA_ELEMENT" - | "DATA_ELEMENT_OPERAND" - | "INDICATOR" - | "REPORTING_RATE" - | "PROGRAM_DATA_ELEMENT" - | "PROGRAM_ATTRIBUTE" - | "PROGRAM_INDICATOR" - | "PERIOD" - | "ORGANISATION_UNIT" - | "CATEGORY_OPTION" - | "OPTION_GROUP" - | "DATA_ELEMENT_GROUP" - | "ORGANISATION_UNIT_GROUP" - | "CATEGORY_OPTION_GROUP"; - displayDescription: string; - displayName: string; - displayShortName: string; - expiryDays: number; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - fieldCombinationRequired: boolean; - formName: string; - formType: "DEFAULT" | "CUSTOM" | "SECTION" | "SECTION_MULTIORG"; - id: Id; - indicators: Ref[]; - interpretations: Ref[]; - lastUpdated: string; - lastUpdatedBy: Ref; - legendSet: Ref; - legendSets: Ref[]; - mobile: boolean; - name: string; - noValueRequiresComment: boolean; - notificationRecipients: UserGroup; - notifyCompletingUser: boolean; - openFuturePeriods: number; - organisationUnits: Ref[]; - periodType: string; - publicAccess: string; - renderAsTabs: boolean; - renderHorizontally: boolean; - sections: Section[]; - shortName: string; - skipOffline: boolean; - style: Style; - timelyDays: number; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; - validCompleteOnly: boolean; - version: number; - workflow: Ref; -}; - -export type DataSetNotificationTemplate = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - created: string; - dataSetNotificationTrigger: "DATA_SET_COMPLETION" | "SCHEDULED_DAYS"; - dataSets: DataSet[]; - deliveryChannels: never[]; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - messageTemplate: string; - name: string; - notificationRecipient: "ORGANISATION_UNIT_CONTACT" | "USER_GROUP"; - notifyParentOrganisationUnitOnly: boolean; - notifyUsersInHierarchyOnly: boolean; - publicAccess: string; - recipientUserGroup: UserGroup; - relativeScheduledDays: number; - sendStrategy: "COLLECTIVE_SUMMARY" | "SINGLE_NOTIFICATION"; - subjectTemplate: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type Section = { - access: Access; - attributeValues: AttributeValue[]; - categoryCombos: Ref[]; - code: Id; - created: string; - dataElements: Ref[]; - dataSet: Ref; - description: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - greyedFields: DataElementOperand[]; - id: Id; - indicators: Ref[]; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - publicAccess: string; - showColumnTotals: boolean; - showRowTotals: boolean; - sortOrder: number; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type DataApprovalLevel = { - access: Access; - attributeValues: AttributeValue[]; - categoryOptionGroupSet: Ref; - code: Id; - created: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - level: number; - name: string; - orgUnitLevel: number; - orgUnitLevelName: string; - publicAccess: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type DataApprovalWorkflow = { - access: Access; - attributeValues: AttributeValue[]; - categoryCombo: CategoryCombo; - code: Id; - created: string; - dataApprovalLevels: DataApprovalLevel[]; - dataSets: DataSet[]; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - periodType: string; - publicAccess: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type ValidationRule = { - access: Access; - aggregateExportAttributeOptionCombo: string; - aggregateExportCategoryOptionCombo: string; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - attributeValues: AttributeValue[]; - code: Id; - created: string; - description: string; - dimensionItem: string; - dimensionItemType: - | "DATA_ELEMENT" - | "DATA_ELEMENT_OPERAND" - | "INDICATOR" - | "REPORTING_RATE" - | "PROGRAM_DATA_ELEMENT" - | "PROGRAM_ATTRIBUTE" - | "PROGRAM_INDICATOR" - | "PERIOD" - | "ORGANISATION_UNIT" - | "CATEGORY_OPTION" - | "OPTION_GROUP" - | "DATA_ELEMENT_GROUP" - | "ORGANISATION_UNIT_GROUP" - | "CATEGORY_OPTION_GROUP"; - displayDescription: string; - displayName: string; - displayShortName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - importance: "HIGH" | "MEDIUM" | "LOW"; - instruction: string; - lastUpdated: string; - lastUpdatedBy: Ref; - leftSide: Expression; - legendSet: Ref; - legendSets: Ref[]; - name: string; - notificationTemplates: Ref[]; - operator: - | "equal_to" - | "not_equal_to" - | "greater_than" - | "greater_than_or_equal_to" - | "less_than" - | "less_than_or_equal_to" - | "compulsory_pair" - | "exclusive_pair"; - organisationUnitLevels: number[]; - periodType: string; - publicAccess: string; - rightSide: Expression; - shortName: string; - skipFormValidation: boolean; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; - validationRuleGroups: Ref[]; -}; - -export type ValidationRuleGroup = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - created: string; - description: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - publicAccess: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; - validationRules: Ref[]; -}; - -export type ValidationNotificationTemplate = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - created: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - messageTemplate: string; - name: string; - notifyParentOrganisationUnitOnly: boolean; - notifyUsersInHierarchyOnly: boolean; - publicAccess: string; - recipientUserGroups: UserGroup[]; - sendStrategy: "COLLECTIVE_SUMMARY" | "SINGLE_NOTIFICATION"; - subjectTemplate: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; - validationRules: ValidationRule[]; -}; - -export type TrackedEntityAttribute = { - access: Access; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - attributeValues: AttributeValue[]; - code: Id; - confidential: boolean; - created: string; - description: string; - dimensionItem: string; - dimensionItemType: - | "DATA_ELEMENT" - | "DATA_ELEMENT_OPERAND" - | "INDICATOR" - | "REPORTING_RATE" - | "PROGRAM_DATA_ELEMENT" - | "PROGRAM_ATTRIBUTE" - | "PROGRAM_INDICATOR" - | "PERIOD" - | "ORGANISATION_UNIT" - | "CATEGORY_OPTION" - | "OPTION_GROUP" - | "DATA_ELEMENT_GROUP" - | "ORGANISATION_UNIT_GROUP" - | "CATEGORY_OPTION_GROUP"; - displayDescription: string; - displayInListNoProgram: boolean; - displayName: string; - displayOnVisitSchedule: boolean; - displayShortName: string; - expression: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - formName: string; - generated: boolean; - id: Id; - inherit: boolean; - lastUpdated: string; - lastUpdatedBy: Ref; - legendSet: Ref; - legendSets: Ref[]; - name: string; - optionSet: Ref; - optionSetValue: boolean; - orgunitScope: boolean; - pattern: string; - programScope: boolean; - publicAccess: string; - shortName: string; - skipSynchronization: boolean; - sortOrderInListNoProgram: number; - sortOrderInVisitSchedule: number; - style: Style; - translations: Translation[]; - unique: boolean; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; - valueType: - | "TEXT" - | "LONG_TEXT" - | "LETTER" - | "PHONE_NUMBER" - | "EMAIL" - | "BOOLEAN" - | "TRUE_ONLY" - | "DATE" - | "DATETIME" - | "TIME" - | "NUMBER" - | "UNIT_INTERVAL" - | "PERCENTAGE" - | "INTEGER" - | "INTEGER_POSITIVE" - | "INTEGER_NEGATIVE" - | "INTEGER_ZERO_OR_POSITIVE" - | "TRACKER_ASSOCIATE" - | "USERNAME" - | "COORDINATE" - | "ORGANISATION_UNIT" - | "AGE" - | "URL" - | "FILE_RESOURCE" - | "IMAGE"; -}; - -export type RelationshipType = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - created: string; - description: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - fromConstraint: any; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - publicAccess: string; - toConstraint: any; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type TrackedEntityType = { - access: Access; - allowAuditLog: boolean; - attributeValues: AttributeValue[]; - code: Id; - created: string; - description: string; - displayDescription: string; - displayName: string; - displayShortName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - formName: string; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - maxTeiCountToReturn: number; - minAttributesRequiredToSearch: number; - name: string; - publicAccess: string; - shortName: string; - style: Style; - trackedEntityTypeAttributes: TrackedEntityTypeAttribute[]; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type TrackedEntityTypeAttribute = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - created: string; - displayInList: boolean; - displayName: string; - displayShortName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - mandatory: boolean; - name: string; - publicAccess: string; - searchable: boolean; - trackedEntityAttribute: Ref; - trackedEntityType: Ref; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; - valueType: - | "TEXT" - | "LONG_TEXT" - | "LETTER" - | "PHONE_NUMBER" - | "EMAIL" - | "BOOLEAN" - | "TRUE_ONLY" - | "DATE" - | "DATETIME" - | "TIME" - | "NUMBER" - | "UNIT_INTERVAL" - | "PERCENTAGE" - | "INTEGER" - | "INTEGER_POSITIVE" - | "INTEGER_NEGATIVE" - | "INTEGER_ZERO_OR_POSITIVE" - | "TRACKER_ASSOCIATE" - | "USERNAME" - | "COORDINATE" - | "ORGANISATION_UNIT" - | "AGE" - | "URL" - | "FILE_RESOURCE" - | "IMAGE"; -}; - -export type ProgramTrackedEntityAttributeGroup = { - access: Access; - attributeValues: AttributeValue[]; - attributes: ProgramTrackedEntityAttribute[]; - code: Id; - created: string; - description: string; - displayDescription: string; - displayName: string; - displayShortName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - publicAccess: string; - shortName: string; - translations: Translation[]; - uniqunessType: "NONE" | "STRICT" | "VALIDATION"; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type ProgramNotificationTemplate = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - created: string; - deliveryChannels: never[]; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - messageTemplate: string; - name: string; - notificationRecipient: - | "TRACKED_ENTITY_INSTANCE" - | "ORGANISATION_UNIT_CONTACT" - | "USERS_AT_ORGANISATION_UNIT" - | "USER_GROUP" - | "PROGRAM_ATTRIBUTE" - | "DATA_ELEMENT"; - notificationTrigger: - | "ENROLLMENT" - | "COMPLETION" - | "PROGRAM_RULE" - | "SCHEDULED_DAYS_DUE_DATE" - | "SCHEDULED_DAYS_INCIDENT_DATE" - | "SCHEDULED_DAYS_ENROLLMENT_DATE"; - notifyParentOrganisationUnitOnly: boolean; - notifyUsersInHierarchyOnly: boolean; - publicAccess: string; - recipientDataElement: DataElement; - recipientProgramAttribute: TrackedEntityAttribute; - recipientUserGroup: UserGroup; - relativeScheduledDays: number; - subjectTemplate: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type ProgramStageSection = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - created: string; - dataElements: Ref[]; - description: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - formName: string; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - programIndicators: Ref[]; - programStage: Ref; - publicAccess: string; - renderType: any; - sortOrder: number; - style: Style; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type ProgramStage = { - access: Access; - allowGenerateNextVisit: boolean; - attributeValues: AttributeValue[]; - autoGenerateEvent: boolean; - blockEntryForm: boolean; - code: Id; - created: string; - dataEntryForm: Ref; - description: string; - displayDescription: string; - displayGenerateEventBox: boolean; - displayName: string; - dueDateLabel: string; - executionDateLabel: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - featureType: "NONE" | "MULTI_POLYGON" | "POLYGON" | "POINT" | "SYMBOL"; - formName: string; - formType: "DEFAULT" | "CUSTOM" | "SECTION" | "SECTION_MULTIORG"; - generatedByEnrollmentDate: boolean; - hideDueDate: boolean; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - minDaysFromStart: number; - name: string; - notificationTemplates: Ref[]; - openAfterEnrollment: boolean; - periodType: string; - preGenerateUID: boolean; - program: Ref; - programStageDataElements: ProgramStageDataElement[]; - programStageSections: Ref[]; - publicAccess: string; - remindCompleted: boolean; - repeatable: boolean; - reportDateToUse: string; - sortOrder: number; - standardInterval: number; - style: Style; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; - validCompleteOnly: boolean; -}; - -export type Program = { - access: Access; - accessLevel: "OPEN" | "AUDITED" | "PROTECTED" | "CLOSED"; - attributeValues: AttributeValue[]; - captureCoordinates: boolean; - categoryCombo: Ref; - code: Id; - completeEventsExpiryDays: number; - created: string; - dataEntryForm: Ref; - description: string; - displayDescription: string; - displayFrontPageList: boolean; - displayIncidentDate: boolean; - displayName: string; - displayShortName: string; - enrollmentDateLabel: string; - expiryDays: number; - expiryPeriodType: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - formName: string; - id: Id; - ignoreOverdueEvents: boolean; - incidentDateLabel: string; - lastUpdated: string; - lastUpdatedBy: Ref; - maxTeiCountToReturn: number; - minAttributesRequiredToSearch: number; - name: string; - notificationTemplates: Ref[]; - onlyEnrollOnce: boolean; - organisationUnits: Ref[]; - programIndicators: Ref[]; - programRuleVariables: Ref[]; - programSections: Ref[]; - programStages: Ref[]; - programTrackedEntityAttributes: ProgramTrackedEntityAttribute[]; - programType: "WITH_REGISTRATION" | "WITHOUT_REGISTRATION"; - publicAccess: string; - registration: boolean; - relatedProgram: Program; - selectEnrollmentDatesInFuture: boolean; - selectIncidentDatesInFuture: boolean; - shortName: string; - skipOffline: boolean; - style: Style; - trackedEntityType: Ref; - translations: Translation[]; - useFirstStageDuringRegistration: boolean; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; - userRoles: Ref[]; - version: number; - withoutRegistration: boolean; - workflow: Ref; - programRules?: Ref[]; -}; - -export type EventChart = { - access: Access; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - attributeDimensions: any[]; - attributeValueDimension: any; - attributeValues: AttributeValue[]; - baseLineLabel: string; - baseLineValue: number; - categoryDimensions: CategoryDimension[]; - categoryOptionGroupSetDimensions: CategoryOptionGroupSetDimension[]; - code: Id; - collapseDataDimensions: boolean; - colorSet: ColorSet; - columnDimensions: string[]; - columns: any[]; - completedOnly: boolean; - created: string; - cumulativeValues: boolean; - dataDimensionItems: any[]; - dataElementDimensions: TrackedEntityDataElementDimension[]; - dataElementGroupSetDimensions: DataElementGroupSetDimension[]; - dataElementValueDimension: DataElement; - description: string; - digitGroupSeparator: "COMMA" | "SPACE" | "NONE"; - displayDescription: string; - displayName: string; - displayShortName: string; - domainAxisLabel: string; - endDate: string; - eventStatus: "ACTIVE" | "COMPLETED" | "VISITED" | "SCHEDULE" | "OVERDUE" | "SKIPPED"; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - filterDimensions: string[]; - filters: any[]; - hideEmptyRowItems: "NONE" | "BEFORE_FIRST" | "AFTER_LAST" | "BEFORE_FIRST_AFTER_LAST" | "ALL"; - hideLegend: boolean; - hideNaData: boolean; - hideSubtitle: boolean; - hideTitle: boolean; - id: Id; - interpretations: Ref[]; - itemOrganisationUnitGroups: Ref[]; - lastUpdated: string; - lastUpdatedBy: Ref; - legendDisplayStrategy: "FIXED" | "BY_DATA_ITEM"; - legendSet: Ref; - name: string; - noSpaceBetweenColumns: boolean; - organisationUnitGroupSetDimensions: OrganisationUnitGroupSetDimension[]; - organisationUnitLevels: number[]; - organisationUnits: Ref[]; - outputType: "EVENT" | "ENROLLMENT" | "TRACKED_ENTITY_INSTANCE"; - parentGraphMap: Map; - percentStackedValues: boolean; - periods: any[]; - program: Ref; - programIndicatorDimensions: TrackedEntityProgramIndicatorDimension[]; - programStage: Ref; - programStatus: "ACTIVE" | "COMPLETED" | "CANCELLED"; - publicAccess: string; - rangeAxisDecimals: number; - rangeAxisLabel: string; - rangeAxisMaxValue: number; - rangeAxisMinValue: number; - rangeAxisSteps: number; - regressionType: "NONE" | "LINEAR" | "POLYNOMIAL" | "LOESS"; - relativePeriods: any; - rowDimensions: string[]; - rows: any[]; - shortName: string; - showData: boolean; - sortOrder: number; - startDate: string; - subscribed: boolean; - subscribers: string[]; - subtitle: string; - targetLineLabel: string; - targetLineValue: number; - timeField: string; - title: string; - topLimit: number; - translations: Translation[]; - type: "COLUMN" | "STACKED_COLUMN" | "BAR" | "STACKED_BAR" | "LINE" | "AREA" | "PIE" | "RADAR" | "GAUGE"; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; - userOrganisationUnit: boolean; - userOrganisationUnitChildren: boolean; - userOrganisationUnitGrandChildren: boolean; - value: any; -}; - -export type EventReport = { - access: Access; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - attributeDimensions: any[]; - attributeValueDimension: any; - attributeValues: AttributeValue[]; - categoryDimensions: CategoryDimension[]; - categoryOptionGroupSetDimensions: CategoryOptionGroupSetDimension[]; - code: Id; - colSubTotals: boolean; - colTotals: boolean; - collapseDataDimensions: boolean; - columnDimensions: string[]; - columns: any[]; - completedOnly: boolean; - created: string; - dataDimensionItems: any[]; - dataElementDimensions: TrackedEntityDataElementDimension[]; - dataElementGroupSetDimensions: DataElementGroupSetDimension[]; - dataElementValueDimension: DataElement; - dataType: "AGGREGATED_VALUES" | "EVENTS"; - description: string; - digitGroupSeparator: "COMMA" | "SPACE" | "NONE"; - displayDensity: "COMFORTABLE" | "NORMAL" | "COMPACT" | "NONE"; - displayDescription: string; - displayName: string; - displayShortName: string; - endDate: string; - eventStatus: "ACTIVE" | "COMPLETED" | "VISITED" | "SCHEDULE" | "OVERDUE" | "SKIPPED"; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - filterDimensions: string[]; - filters: any[]; - fontSize: "LARGE" | "NORMAL" | "SMALL"; - hideEmptyRows: boolean; - hideNaData: boolean; - hideSubtitle: boolean; - hideTitle: boolean; - id: Id; - interpretations: Ref[]; - itemOrganisationUnitGroups: Ref[]; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - organisationUnitGroupSetDimensions: OrganisationUnitGroupSetDimension[]; - organisationUnitLevels: number[]; - organisationUnits: Ref[]; - outputType: "EVENT" | "ENROLLMENT" | "TRACKED_ENTITY_INSTANCE"; - parentGraphMap: Map; - periods: any[]; - program: Ref; - programIndicatorDimensions: TrackedEntityProgramIndicatorDimension[]; - programStage: Ref; - programStatus: "ACTIVE" | "COMPLETED" | "CANCELLED"; - publicAccess: string; - relativePeriods: any; - rowDimensions: string[]; - rowSubTotals: boolean; - rowTotals: boolean; - rows: any[]; - shortName: string; - showDimensionLabels: boolean; - showHierarchy: boolean; - sortOrder: number; - startDate: string; - subscribed: boolean; - subscribers: string[]; - subtitle: string; - timeField: string; - title: string; - topLimit: number; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; - userOrganisationUnit: boolean; - userOrganisationUnitChildren: boolean; - userOrganisationUnitGrandChildren: boolean; - value: any; -}; - -export type ProgramSection = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - created: string; - description: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - formName: string; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - program: Program; - programTrackedEntityAttribute: TrackedEntityAttribute[]; - publicAccess: string; - renderType: any; - sortOrder: number; - style: Style; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type ProgramIndicator = { - access: Access; - aggregateExportAttributeOptionCombo: string; - aggregateExportCategoryOptionCombo: string; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - analyticsPeriodBoundaries: AnalyticsPeriodBoundary[]; - analyticsType: "EVENT" | "ENROLLMENT"; - attributeValues: AttributeValue[]; - code: Id; - created: string; - decimals: number; - description: string; - dimensionItem: string; - dimensionItemType: - | "DATA_ELEMENT" - | "DATA_ELEMENT_OPERAND" - | "INDICATOR" - | "REPORTING_RATE" - | "PROGRAM_DATA_ELEMENT" - | "PROGRAM_ATTRIBUTE" - | "PROGRAM_INDICATOR" - | "PERIOD" - | "ORGANISATION_UNIT" - | "CATEGORY_OPTION" - | "OPTION_GROUP" - | "DATA_ELEMENT_GROUP" - | "ORGANISATION_UNIT_GROUP" - | "CATEGORY_OPTION_GROUP"; - displayDescription: string; - displayInForm: boolean; - displayName: string; - displayShortName: string; - expression: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - filter: string; - formName: string; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - legendSet: Ref; - legendSets: Ref[]; - name: string; - program: Ref; - programIndicatorGroups: Ref[]; - publicAccess: string; - shortName: string; - style: Style; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type ProgramRuleVariable = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - created: string; - dataElement: Ref; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - program: Ref; - programRuleVariableSourceType: - | "DATAELEMENT_NEWEST_EVENT_PROGRAM_STAGE" - | "DATAELEMENT_NEWEST_EVENT_PROGRAM" - | "DATAELEMENT_CURRENT_EVENT" - | "DATAELEMENT_PREVIOUS_EVENT" - | "CALCULATED_VALUE" - | "TEI_ATTRIBUTE"; - programStage: Ref; - publicAccess: string; - trackedEntityAttribute: TrackedEntityAttribute; - translations: Translation[]; - useCodeForOptionSet: boolean; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type ProgramIndicatorGroup = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - created: string; - description: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - programIndicators: Ref[]; - publicAccess: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type ProgramRuleAction = { - access: Access; - attributeValues: AttributeValue[]; - created: string; - dataElement: Ref; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - name: never; - lastUpdated: string; - lastUpdatedBy: Ref; - programRule: Ref; - programRuleActionType: - | "DISPLAYTEXT" - | "DISPLAYKEYVALUEPAIR" - | "HIDEFIELD" - | "HIDESECTION" - | "HIDEPROGRAMSTAGE" - | "ASSIGN" - | "SHOWWARNING" - | "WARNINGONCOMPLETE" - | "SHOWERROR" - | "ERRORONCOMPLETE" - | "CREATEEVENT" - | "SETMANDATORYFIELD" - | "SENDMESSAGE" - | "SCHEDULEMESSAGE" - | "HIDEOPTION" - | "SHOWOPTIONGROUP" - | "HIDEOPTIONGROUP"; - translations: Translation[]; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type ProgramRule = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - condition: string; - created: string; - description: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - priority: number; - program: Ref; - programRuleActions: Ref[]; - programStage: Ref; - publicAccess: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type MapView = { - access: Access; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - areaRadius: number; - attributeDimensions: any[]; - attributeValues: AttributeValue[]; - categoryDimensions: CategoryDimension[]; - categoryOptionGroupSetDimensions: CategoryOptionGroupSetDimension[]; - classes: number; - code: Id; - colorHigh: string; - colorLow: string; - colorScale: string; - columnDimensions: string[]; - columns: any[]; - completedOnly: boolean; - config: string; - created: string; - dataDimensionItems: any[]; - dataElementDimensions: TrackedEntityDataElementDimension[]; - dataElementGroupSetDimensions: DataElementGroupSetDimension[]; - description: string; - digitGroupSeparator: "COMMA" | "SPACE" | "NONE"; - displayDescription: string; - displayName: string; - displayShortName: string; - endDate: string; - eventClustering: boolean; - eventCoordinateField: string; - eventPointColor: string; - eventPointRadius: number; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - filters: any[]; - followUp: boolean; - hidden: boolean; - hideSubtitle: boolean; - hideTitle: boolean; - id: Id; - interpretations: Ref[]; - itemOrganisationUnitGroups: Ref[]; - labelFontColor: string; - labelFontSize: string; - labelFontStyle: string; - labelFontWeight: string; - labels: boolean; - lastUpdated: string; - lastUpdatedBy: Ref; - layer: string; - legendSet: Ref; - method: number; - name: string; - opacity: number; - organisationUnitGroupSet: Ref; - organisationUnitGroupSetDimensions: OrganisationUnitGroupSetDimension[]; - organisationUnitLevels: number[]; - organisationUnitSelectionMode: "SELECTED" | "CHILDREN" | "DESCENDANTS" | "ACCESSIBLE" | "CAPTURE" | "ALL"; - organisationUnits: Ref[]; - parentGraph: string; - parentGraphMap: Map; - parentLevel: number; - periods: any[]; - program: Ref; - programIndicatorDimensions: TrackedEntityProgramIndicatorDimension[]; - programStage: Ref; - programStatus: "ACTIVE" | "COMPLETED" | "CANCELLED"; - publicAccess: string; - radiusHigh: number; - radiusLow: number; - relativePeriods: any; - rows: any[]; - shortName: string; - sortOrder: number; - startDate: string; - styleDataItem: object; - subscribed: boolean; - subscribers: string[]; - subtitle: string; - timeField: string; - title: string; - topLimit: number; - trackedEntityType: Ref; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; - userOrganisationUnit: boolean; - userOrganisationUnitChildren: boolean; - userOrganisationUnitGrandChildren: boolean; -}; - -export type Chart = { - access: Access; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - attributeDimensions: any[]; - attributeValues: AttributeValue[]; - baseLineLabel: string; - baseLineValue: number; - category: string; - categoryDimensions: CategoryDimension[]; - categoryOptionGroupSetDimensions: CategoryOptionGroupSetDimension[]; - code: Id; - colorSet: Ref; - columns: any[]; - completedOnly: boolean; - created: string; - cumulativeValues: boolean; - dataDimensionItems: any[]; - dataElementDimensions: TrackedEntityDataElementDimension[]; - dataElementGroupSetDimensions: DataElementGroupSetDimension[]; - description: string; - digitGroupSeparator: "COMMA" | "SPACE" | "NONE"; - displayDescription: string; - displayName: string; - displayShortName: string; - domainAxisLabel: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - filterDimensions: string[]; - filters: any[]; - hideEmptyRowItems: "NONE" | "BEFORE_FIRST" | "AFTER_LAST" | "BEFORE_FIRST_AFTER_LAST" | "ALL"; - hideLegend: boolean; - hideSubtitle: boolean; - hideTitle: boolean; - id: Id; - interpretations: Ref[]; - itemOrganisationUnitGroups: Ref[]; - lastUpdated: string; - lastUpdatedBy: Ref; - legendDisplayStrategy: "FIXED" | "BY_DATA_ITEM"; - legendSet: Ref; - name: string; - noSpaceBetweenColumns: boolean; - organisationUnitGroupSetDimensions: OrganisationUnitGroupSetDimension[]; - organisationUnitLevels: number[]; - organisationUnits: Ref[]; - parentGraphMap: Map; - percentStackedValues: boolean; - periods: any[]; - programIndicatorDimensions: TrackedEntityProgramIndicatorDimension[]; - publicAccess: string; - rangeAxisDecimals: number; - rangeAxisLabel: string; - rangeAxisMaxValue: number; - rangeAxisMinValue: number; - rangeAxisSteps: number; - regressionType: "NONE" | "LINEAR" | "POLYNOMIAL" | "LOESS"; - relativePeriods: any; - rows: any[]; - series: string; - shortName: string; - showData: boolean; - sortOrder: number; - subscribed: boolean; - subscribers: string[]; - subtitle: string; - targetLineLabel: string; - targetLineValue: number; - timeField: string; - title: string; - topLimit: number; - translations: Translation[]; - type: "COLUMN" | "STACKED_COLUMN" | "BAR" | "STACKED_BAR" | "LINE" | "AREA" | "PIE" | "RADAR" | "GAUGE"; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; - userOrganisationUnit: boolean; - userOrganisationUnitChildren: boolean; - userOrganisationUnitGrandChildren: boolean; -}; - -export type Document = { - access: Access; - attachment: boolean; - attributeValues: AttributeValue[]; - code: Id; - contentType: string; - created: string; - displayName: string; - external: boolean; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - publicAccess: string; - translations: Translation[]; - url: string; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type Report = { - access: Access; - attributeValues: AttributeValue[]; - cacheStrategy: - | "NO_CACHE" - | "CACHE_15_MINUTES" - | "CACHE_30_MINUTES" - | "CACHE_1_HOUR" - | "CACHE_6AM_TOMORROW" - | "CACHE_TWO_WEEKS" - | "RESPECT_SYSTEM_SETTING"; - code: Id; - created: string; - designContent: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - publicAccess: string; - relativePeriods: any; - reportParams: any; - reportTable: any; - translations: Translation[]; - type: "JASPER_REPORT_TABLE" | "JASPER_JDBC" | "HTML"; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type ReportTable = { - access: Access; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - attributeDimensions: any[]; - attributeValues: AttributeValue[]; - categoryDimensions: CategoryDimension[]; - categoryOptionGroupSetDimensions: CategoryOptionGroupSetDimension[]; - code: Id; - colSubTotals: boolean; - colTotals: boolean; - columnDimensions: string[]; - columns: any[]; - completedOnly: boolean; - created: string; - cumulative: boolean; - dataDimensionItems: any[]; - dataElementDimensions: TrackedEntityDataElementDimension[]; - dataElementGroupSetDimensions: DataElementGroupSetDimension[]; - description: string; - digitGroupSeparator: "COMMA" | "SPACE" | "NONE"; - displayDensity: "COMFORTABLE" | "NORMAL" | "COMPACT" | "NONE"; - displayDescription: string; - displayName: string; - displayShortName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - filterDimensions: string[]; - filters: any[]; - fontSize: "LARGE" | "NORMAL" | "SMALL"; - hideEmptyColumns: boolean; - hideEmptyRows: boolean; - hideSubtitle: boolean; - hideTitle: boolean; - id: Id; - interpretations: Interpretation[]; - itemOrganisationUnitGroups: Ref[]; - lastUpdated: string; - lastUpdatedBy: Ref; - legendDisplayStrategy: "FIXED" | "BY_DATA_ITEM"; - legendDisplayStyle: "FILL" | "TEXT"; - legendSet: Ref; - measureCriteria: string; - name: string; - numberType: "VALUE" | "ROW_PERCENTAGE" | "COLUMN_PERCENTAGE"; - organisationUnitGroupSetDimensions: OrganisationUnitGroupSetDimension[]; - organisationUnitLevels: number[]; - organisationUnits: Ref[]; - parentGraphMap: Map; - periods: any[]; - programIndicatorDimensions: TrackedEntityProgramIndicatorDimension[]; - publicAccess: string; - regression: boolean; - relativePeriods: any; - reportParams: any; - rowDimensions: string[]; - rowSubTotals: boolean; - rowTotals: boolean; - rows: any[]; - shortName: string; - showDimensionLabels: boolean; - showHierarchy: boolean; - skipRounding: boolean; - sortOrder: number; - subscribed: boolean; - subscribers: string[]; - subtitle: string; - timeField: string; - title: string; - topLimit: number; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; - userOrganisationUnit: boolean; - userOrganisationUnitChildren: boolean; - userOrganisationUnitGrandChildren: boolean; -}; - -export type Map = { - access: Access; - attributeValues: AttributeValue[]; - basemap: string; - code: Id; - created: string; - description: string; - displayDescription: string; - displayName: string; - displayShortName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - interpretations: Ref[]; - lastUpdated: string; - lastUpdatedBy: Ref; - latitude: number; - longitude: number; - mapViews: Ref[]; - name: string; - publicAccess: string; - shortName: string; - subscribed: boolean; - subscribers: string[]; - title: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; - zoom: number; -}; - -export type DashboardItem = { - access: Access; - appKey: string; - attributeValues: AttributeValue[]; - chart: Ref; - code: Id; - contentCount: number; - created: string; - displayName: string; - eventChart: Ref; - eventReport: Ref; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - height: number; - id: Id; - interpretationCount: number; - interpretationLikeCount: number; - lastUpdated: string; - lastUpdatedBy: Ref; - map: Map; - messages: boolean; - name: string; - publicAccess: string; - reportTable: Ref; - reports: Ref[]; - resources: Ref[]; - shape: "NORMAL" | "DOUBLE_WIDTH" | "FULL_WIDTH"; - text: string; - translations: Translation[]; - type: - | "CHART" - | "EVENT_CHART" - | "MAP" - | "REPORT_TABLE" - | "EVENT_REPORT" - | "USERS" - | "REPORTS" - | "RESOURCES" - | "TEXT" - | "MESSAGES" - | "APP"; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; - users: Ref[]; - width: number; - x: number; - y: number; -}; - -export type Dashboard = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - created: string; - dashboardItems: DashboardItem[]; - description: string; - displayDescription: string; - displayName: string; - displayShortName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - itemCount: number; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - publicAccess: string; - shortName: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type OrganisationUnitGroupSetDimension = { - organisationUnitGroupSet: Ref; - organisationUnitGroups: Ref[]; -}; - -export type DataElementOperand = { - access: Access; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - attributeOptionCombo: Ref; - attributeValues: AttributeValue[]; - categoryOptionCombo: Ref; - code: Id; - created: string; - dataElement: Ref; - description: string; - dimensionItem: string; - dimensionItemType: - | "DATA_ELEMENT" - | "DATA_ELEMENT_OPERAND" - | "INDICATOR" - | "REPORTING_RATE" - | "PROGRAM_DATA_ELEMENT" - | "PROGRAM_ATTRIBUTE" - | "PROGRAM_INDICATOR" - | "PERIOD" - | "ORGANISATION_UNIT" - | "CATEGORY_OPTION" - | "OPTION_GROUP" - | "DATA_ELEMENT_GROUP" - | "ORGANISATION_UNIT_GROUP" - | "CATEGORY_OPTION_GROUP"; - displayDescription: string; - displayName: string; - displayShortName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - legendSet: Ref; - legendSets: Ref[]; - name: string; - publicAccess: string; - shortName: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type Interpretation = { - access: Access; - attributeValues: AttributeValue[]; - chart: Chart; - code: Id; - comments: InterpretationComment[]; - created: string; - dataSet: DataSet; - displayName: string; - eventChart: EventChart; - eventReport: EventReport; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - likedBy: User[]; - likes: number; - map: Map; - mentions: any[]; - name: string; - organisationUnit: Ref; - period: any; - publicAccess: string; - reportTable: ReportTable; - text: string; - translations: Translation[]; - type: "REPORT_TABLE" | "CHART" | "MAP" | "EVENT_REPORT" | "EVENT_CHART" | "DATASET_REPORT"; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type CategoryOptionGroupSetDimension = { - categoryOptionGroupSet: Ref; - categoryOptionGroups: Ref[]; -}; - -export type TrackedEntityProgramIndicatorDimension = { - filter: string; - legendSet: Ref; - programIndicator: Ref; -}; - -export type Legend = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - color: string; - created: string; - displayName: string; - endValue: number; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - image: string; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - publicAccess: string; - startValue: number; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type InterpretationComment = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - created: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - mentions: any[]; - name: string; - publicAccess: string; - text: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type AnalyticsPeriodBoundary = { - access: Access; - analyticsPeriodBoundaryType: - | "BEFORE_START_OF_REPORTING_PERIOD" - | "BEFORE_END_OF_REPORTING_PERIOD" - | "AFTER_START_OF_REPORTING_PERIOD" - | "AFTER_END_OF_REPORTING_PERIOD"; - attributeValues: AttributeValue[]; - boundaryTarget: string; - code: Id; - created: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - offsetPeriodType: string; - offsetPeriods: number; - publicAccess: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type ProgramDataElementDimensionItem = { - access: Access; - aggregationType: - | "SUM" - | "AVERAGE" - | "AVERAGE_SUM_ORG_UNIT" - | "LAST" - | "LAST_AVERAGE_ORG_UNIT" - | "COUNT" - | "STDDEV" - | "VARIANCE" - | "MIN" - | "MAX" - | "NONE" - | "CUSTOM" - | "DEFAULT"; - attributeValues: AttributeValue[]; - code: Id; - created: string; - dataElement: DataElement; - description: string; - dimensionItem: string; - dimensionItemType: - | "DATA_ELEMENT" - | "DATA_ELEMENT_OPERAND" - | "INDICATOR" - | "REPORTING_RATE" - | "PROGRAM_DATA_ELEMENT" - | "PROGRAM_ATTRIBUTE" - | "PROGRAM_INDICATOR" - | "PERIOD" - | "ORGANISATION_UNIT" - | "CATEGORY_OPTION" - | "OPTION_GROUP" - | "DATA_ELEMENT_GROUP" - | "ORGANISATION_UNIT_GROUP" - | "CATEGORY_OPTION_GROUP"; - displayDescription: string; - displayName: string; - displayShortName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - legendSet: Ref; - legendSets: Ref[]; - name: string; - program: Program; - publicAccess: string; - shortName: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; - valueType: - | "TEXT" - | "LONG_TEXT" - | "LETTER" - | "PHONE_NUMBER" - | "EMAIL" - | "BOOLEAN" - | "TRUE_ONLY" - | "DATE" - | "DATETIME" - | "TIME" - | "NUMBER" - | "UNIT_INTERVAL" - | "PERCENTAGE" - | "INTEGER" - | "INTEGER_POSITIVE" - | "INTEGER_NEGATIVE" - | "INTEGER_ZERO_OR_POSITIVE" - | "TRACKER_ASSOCIATE" - | "USERNAME" - | "COORDINATE" - | "ORGANISATION_UNIT" - | "AGE" - | "URL" - | "FILE_RESOURCE" - | "IMAGE"; -}; - -export type UserGroupAccess = { - access: string; - displayName: string; - id: string; - userGroupUid: string; -}; - -export type DataElementGroupSetDimension = { - dataElementGroupSet: Ref; - dataElementGroups: Ref[]; -}; - -export type CategoryDimension = { - category: Ref; - categoryOptions: Ref[]; -}; - -export type TrackedEntityDataElementDimension = { - dataElement: Ref; - filter: string; - legendSet: Ref; -}; - -export type ProgramStageDataElement = { - access: Access; - allowFutureDate: boolean; - allowProvidedElsewhere: boolean; - attributeValues: AttributeValue[]; - code: Id; - compulsory: boolean; - created: string; - dataElement: Ref; - displayInReports: boolean; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - programStage: Ref; - publicAccess: string; - renderOptionsAsRadio: boolean; - renderType: any; - skipSynchronization: boolean; - sortOrder: number; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type UserCredentials = { - access: Access; - attributeValues: AttributeValue[]; - catDimensionConstraints: Ref[]; - code: Id; - cogsDimensionConstraints: Ref[]; - created: string; - disabled: boolean; - displayName: string; - externalAccess: boolean; - externalAuth: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - invitation: boolean; - lastLogin: string; - lastUpdated: string; - lastUpdatedBy: Ref; - ldapId: string; - name: string; - openId: string; - password: string; - passwordLastUpdated: string; - publicAccess: string; - selfRegistered: boolean; - translations: Translation[]; - twoFA: boolean; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; - userInfo: User; - userRoles: Ref[]; - username: string; -}; - -export type MessageConversation = { - access: Access; - assignee: Ref; - attributeValues: AttributeValue[]; - code: Id; - created: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - followUp: boolean; - id: Id; - lastMessage: string; - lastSender: User; - lastSenderFirstname: string; - lastSenderSurname: string; - lastUpdated: string; - lastUpdatedBy: Ref; - messageCount: number; - messageType: "PRIVATE" | "SYSTEM" | "VALIDATION_RESULT" | "TICKET"; - messages: any[]; - name: string; - priority: "NONE" | "LOW" | "MEDIUM" | "HIGH"; - publicAccess: string; - read: boolean; - status: "NONE" | "OPEN" | "PENDING" | "INVALID" | "SOLVED"; - subject: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userFirstname: string; - userGroupAccesses: UserGroupAccess[]; - userMessages: any[]; - userSurname: string; -}; - -export type Color = { - access: Access; - attributeValues: AttributeValue[]; - code: Id; - color: string; - created: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - publicAccess: string; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -export type DataInputPeriod = { - closingDate: string; - openingDate: string; - period: any; -}; - -export type ProgramTrackedEntityAttribute = { - access: Access; - allowFutureDate: boolean; - attributeValues: AttributeValue[]; - code: Id; - created: string; - displayInList: boolean; - displayName: string; - displayShortName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - mandatory: boolean; - name: string; - program: Ref; - programTrackedEntityAttributeGroups: ProgramTrackedEntityAttributeGroup[]; - publicAccess: string; - renderOptionsAsRadio: boolean; - renderType: any; - searchable: boolean; - sortOrder: number; - trackedEntityAttribute: Ref; - translations: Translation[]; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; - valueType: - | "TEXT" - | "LONG_TEXT" - | "LETTER" - | "PHONE_NUMBER" - | "EMAIL" - | "BOOLEAN" - | "TRUE_ONLY" - | "DATE" - | "DATETIME" - | "TIME" - | "NUMBER" - | "UNIT_INTERVAL" - | "PERCENTAGE" - | "INTEGER" - | "INTEGER_POSITIVE" - | "INTEGER_NEGATIVE" - | "INTEGER_ZERO_OR_POSITIVE" - | "TRACKER_ASSOCIATE" - | "USERNAME" - | "COORDINATE" - | "ORGANISATION_UNIT" - | "AGE" - | "URL" - | "FILE_RESOURCE" - | "IMAGE"; -}; - -export type DataSetElement = { - categoryCombo: Ref; - dataElement: Ref; - dataSet: Ref; -}; - -export type UserAccess = { - access: string; - displayName: string; - id: string; - userUid: string; -}; - -export type SqlView = { - access: Access; - attributeValues: AttributeValue[]; - cacheStrategy: - | "NO_CACHE" - | "CACHE_15_MINUTES" - | "CACHE_30_MINUTES" - | "CACHE_1_HOUR" - | "CACHE_6AM_TOMORROW" - | "CACHE_TWO_WEEKS" - | "RESPECT_SYSTEM_SETTING"; - code: Id; - created: string; - description: string; - displayName: string; - externalAccess: boolean; - favorite: boolean; - favorites: string[]; - href: string; - id: Id; - lastUpdated: string; - lastUpdatedBy: Ref; - name: string; - publicAccess: string; - sqlQuery: string; - translations: Translation[]; - type: "VIEW" | "MATERIALIZED_VIEW" | "QUERY"; - user: Ref; - userAccesses: UserAccess[]; - userGroupAccesses: UserGroupAccess[]; -}; - -//TODO: Add as value entoty definitions -// currently this concept are models with include/exclude rules, collectionName... -export type MetadataEntities = { - userRoles: UserRole[]; - attributes: Attribute[]; - users: Ref[]; - userGroups: UserGroup[]; - options: Ref[]; - optionSets: OptionSet[]; - optionGroupSets: OptionGroupSet[]; - optionGroups: OptionGroup[]; - legendSets: LegendSet[]; - colorSets: ColorSet[]; - organisationUnits: Ref[]; - organisationUnitLevels: OrganisationUnitLevel[]; - organisationUnitGroups: OrganisationUnitGroup[]; - organisationUnitGroupSets: OrganisationUnitGroupSet[]; - categoryOptions: CategoryOption[]; - categoryOptionGroups: CategoryOptionGroup[]; - categoryOptionGroupSets: CategoryOptionGroupSet[]; - categories: Category[]; - categoryCombos: CategoryCombo[]; - categoryOptionCombos: CategoryOptionCombo[]; - dataElements: DataElement[]; - dataElementGroups: DataElementGroup[]; - dataElementGroupSets: DataElementGroupSet[]; - indicatorTypes: IndicatorType[]; - indicators: Indicator[]; - indicatorGroups: IndicatorGroup[]; - indicatorGroupSets: IndicatorGroupSet[]; - dataEntryForms: DataEntryForm[]; - dataSets: DataSet[]; - dataSetNotificationTemplates: DataSetNotificationTemplate[]; - sections: Section[]; - dataApprovalLevels: DataApprovalLevel[]; - dataApprovalWorkflows: DataApprovalWorkflow[]; - validationRules: ValidationRule[]; - validationRuleGroups: ValidationRuleGroup[]; - validationNotificationTemplates: ValidationNotificationTemplate[]; - trackedEntityAttributes: TrackedEntityAttribute[]; - relationshipTypes: RelationshipType[]; - trackedEntityTypes: TrackedEntityType[]; - programTrackedEntityAttributeGroups: ProgramTrackedEntityAttributeGroup[]; - programStageSections: ProgramStageSection[]; - programNotificationTemplates: ProgramNotificationTemplate[]; - programStages: ProgramStage[]; - programs: Program[]; - eventCharts: EventChart[]; - eventReports: EventReport[]; - programSections: ProgramSection[]; - programIndicators: ProgramIndicator[]; - programRuleVariables: ProgramRuleVariable[]; - programIndicatorGroups: ProgramIndicatorGroup[]; - programRuleActions: ProgramRuleAction[]; - programRules: ProgramRule[]; - mapViews: MapView[]; - reports: Report[]; - reportTables: ReportTable[]; - maps: Map[]; - charts: Chart[]; - documents: Document[]; - dashboards: Dashboard[]; - messageConversations: MessageConversation[]; - sqlViews: SqlView[]; -}; diff --git a/src/domain/repositories/MetadataRepository.ts b/src/domain/repositories/MetadataRepository.ts index c847539..6c90a1b 100644 --- a/src/domain/repositories/MetadataRepository.ts +++ b/src/domain/repositories/MetadataRepository.ts @@ -2,20 +2,20 @@ import { FutureData } from "../entities/Future"; export interface MetadataRepository { list(options: ListOptions): FutureData; - getDependencies(options: GetDependenciesOptions[]): FutureData; + getDependencies(items: GetDependenciesItem[]): FutureData; } export interface ListOptions { - model: GetMetadataModel; + model: MetadataModel; page?: number; pageSize?: number; search?: string; sorting?: { field: string; order: "asc" | "desc" }; } -export type GetMetadataModel = "dataSets" | "programs" | "dashboards"; +export type MetadataModel = "dataSets" | "programs" | "dashboards"; -export type GetDependenciesOptions = { model: GetMetadataModel; id: string }; +export type GetDependenciesItem = { model: MetadataModel; id: string }; export type Payload = Record; diff --git a/src/domain/usecases/GetMetadataWithDependenciesUseCase.ts b/src/domain/usecases/GetMetadataWithDependenciesUseCase.ts index 4555438..184b49f 100644 --- a/src/domain/usecases/GetMetadataWithDependenciesUseCase.ts +++ b/src/domain/usecases/GetMetadataWithDependenciesUseCase.ts @@ -1,11 +1,11 @@ import { UseCase } from "../../CompositionRoot"; import { FutureData } from "../entities/Future"; -import { GetDependenciesOptions, MetadataRepository, Payload } from "../repositories/MetadataRepository"; +import { GetDependenciesItem, MetadataRepository, Payload } from "../repositories/MetadataRepository"; export class GetMetadataDependenciesUseCase implements UseCase { constructor(private metadataRepository: MetadataRepository) {} - public execute(params: GetDependenciesOptions[]): FutureData { + public execute(params: GetDependenciesItem[]): FutureData { return this.metadataRepository.getDependencies(params); } } diff --git a/src/webapp/pages/bulk-apply/steps/SelectMetadataStep.tsx b/src/webapp/pages/bulk-apply/steps/SelectMetadataStep.tsx index c788cd1..6a2bcc3 100644 --- a/src/webapp/pages/bulk-apply/steps/SelectMetadataStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/SelectMetadataStep.tsx @@ -1,7 +1,7 @@ import i18n from "@dhis2/d2-i18n"; import { ObjectsTable, TablePagination, TableSelection, TableState } from "@eyeseetea/d2-ui-components"; import React, { useCallback, useEffect, useState } from "react"; -import { GetMetadataModel, MetadataItem } from "../../../../domain/repositories/MetadataRepository"; +import { MetadataModel, MetadataItem } from "../../../../domain/repositories/MetadataRepository"; import Dropdown from "../../../components/dropdown/Dropdown"; import { useAppContext } from "../../../contexts/app-context"; import { MetadataSharingWizardStepProps } from "../steps"; @@ -22,7 +22,7 @@ export const SelectMetadataStep: React.FC = ({ }>({ objects: [], pager: initialState.pagination }); const [isLoading, setIsLoading] = useState(false); const [selection, setSelection] = useState(metadata ?? []); - const [model, setModel] = useState("dashboards"); + const [model, setModel] = useState("dashboards"); const [search, setSearch] = useState(""); const columns = [ @@ -76,7 +76,7 @@ export const SelectMetadataStep: React.FC = ({ [search, compositionRoot] ); - const changeModelFilter = (modelName: GetMetadataModel) => { + const changeModelFilter = (modelName: MetadataModel) => { setModel(modelName); }; From 07654ed64e4b8f3c512d4bbc94ad46098b160bbf Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Fri, 27 Aug 2021 08:42:07 +0200 Subject: [PATCH 11/50] Simplify ref models --- src/data/models/Ref.ts | 20 ++++++++++++++++++++ src/domain/entities/Ref.ts | 12 +++--------- src/utils/codec.ts | 11 ++++------- 3 files changed, 27 insertions(+), 16 deletions(-) create mode 100644 src/data/models/Ref.ts diff --git a/src/data/models/Ref.ts b/src/data/models/Ref.ts new file mode 100644 index 0000000..e881786 --- /dev/null +++ b/src/data/models/Ref.ts @@ -0,0 +1,20 @@ +import { NamedRef, Ref, SharingSetting } from "../../domain/entities/Ref"; +import { Codec, Schema } from "../../utils/codec"; + +export const RefModel: Codec = Schema.object({ + id: Schema.string, +}); + +export const NamedRefModel: Codec = Schema.extend( + RefModel, + Schema.object({ + name: Schema.string, + }) +); + +export const SharingSettingModel: Codec = Schema.extend( + NamedRefModel, + Schema.object({ + access: Schema.string, + }) +); diff --git a/src/domain/entities/Ref.ts b/src/domain/entities/Ref.ts index 5816ac1..7fa8161 100644 --- a/src/domain/entities/Ref.ts +++ b/src/domain/entities/Ref.ts @@ -1,5 +1,3 @@ -import { GetSchemaType, Schema } from "../../utils/codec"; - export type Id = string; export interface Ref { @@ -10,10 +8,6 @@ export interface NamedRef extends Ref { name: string; } -export const SharingSettingModel = Schema.object({ - access: Schema.string, - id: Schema.dhis2Id, - name: Schema.string, -}); - -export type SharingSetting = GetSchemaType; +export interface SharingSetting extends NamedRef { + access: string; +} diff --git a/src/utils/codec.ts b/src/utils/codec.ts index e1325d8..e6b309a 100644 --- a/src/utils/codec.ts +++ b/src/utils/codec.ts @@ -28,12 +28,12 @@ import { FormattedStringFromDate, Integer, IntegerFromString, + Interface, JsonFromString, NonEmptyString, NumberFromString, NumberRangedIn, StringLengthRangedIn, - RegExpMatchedString, } from "purify-ts-extra-codec"; import { Either } from "../domain/entities/Either"; @@ -95,11 +95,8 @@ export const falseType = Codec.custom({ schema: () => ({ type: "boolean" }), }); -// DHIS2 valid uid -const dhis2Uid = /^[a-zA-Z]{1}[a-zA-Z0-9]{10}$/; - export const Schema = { - object: Codec.interface, + object: Interface, stringObject: JsonFromString, array, nonEmptyArray: nonEmptyList, @@ -111,6 +108,8 @@ export const Schema = { number: oneOf([number, NumberFromString]), numberBetween: NumberRangedIn, boolean: booleanFromString, + true: trueType, + false: falseType, null: nullType, undefined: undefinedType, unknown, @@ -125,7 +124,6 @@ export const Schema = { exact: exactly, extend: intersect, maybe, - dhis2Id: RegExpMatchedString(dhis2Uid), chain: chainCodec, custom: Codec.custom, lazy, @@ -137,4 +135,3 @@ export declare type FromType = { export { Codec, parseError as parseSchemaError } from "purify-ts"; export type { DecodeError as SchemaDecodeError } from "purify-ts"; -export type { FromType as GetTypeFromSchema, GetType as GetSchemaType } from "purify-ts"; From 7a66adfd43c626f52eb3ace9eb47e7a6aeeabb2a Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Fri, 27 Aug 2021 08:46:23 +0200 Subject: [PATCH 12/50] Rename bulk apply page --- .../repositories/MetadataD2ApiRepository.ts | 12 ++++---- src/domain/entities/Schemas.ts | 28 ------------------- src/domain/repositories/InstanceRepository.ts | 2 +- src/domain/repositories/MetadataRepository.ts | 8 +++--- .../GetMetadataWithDependenciesUseCase.ts | 4 +-- src/domain/usecases/ListMetadataUseCase.ts | 4 +-- src/webapp/pages/Router.tsx | 9 ++---- .../{BulkApply.tsx => BulkApplyPage.tsx} | 6 ++-- .../bulk-apply/steps/SummaryApplyStep.tsx | 2 +- src/webapp/pages/example/ExamplePage.tsx | 21 -------------- .../pages/example/__tests__/Example.spec.tsx | 17 ----------- 11 files changed, 21 insertions(+), 92 deletions(-) delete mode 100644 src/domain/entities/Schemas.ts rename src/webapp/pages/bulk-apply/{BulkApply.tsx => BulkApplyPage.tsx} (91%) delete mode 100644 src/webapp/pages/example/ExamplePage.tsx delete mode 100644 src/webapp/pages/example/__tests__/Example.spec.tsx diff --git a/src/data/repositories/MetadataD2ApiRepository.ts b/src/data/repositories/MetadataD2ApiRepository.ts index e7b5d2f..079cbed 100644 --- a/src/data/repositories/MetadataD2ApiRepository.ts +++ b/src/data/repositories/MetadataD2ApiRepository.ts @@ -2,10 +2,10 @@ import _ from "lodash"; import { Future, FutureData } from "../../domain/entities/Future"; import { GetDependenciesItem, + ListMetadataResponse, ListOptions, + MetadataPayload, MetadataRepository, - MetadataResponse, - Payload, } from "../../domain/repositories/MetadataRepository"; import { D2Api } from "../../types/d2-api"; import { getD2APiFromInstance } from "../../utils/d2-api"; @@ -19,7 +19,7 @@ export class MetadataD2ApiRepository implements MetadataRepository { this.api = getD2APiFromInstance(instance); } - public list(options: ListOptions): FutureData { + public list(options: ListOptions): FutureData { const { model, page, pageSize, search, sorting = { field: "id", order: "asc" } } = options; return apiToFuture( @@ -35,13 +35,13 @@ export class MetadataD2ApiRepository implements MetadataRepository { ); } - public getDependencies(options: GetDependenciesItem[]): FutureData { + public getDependencies(options: GetDependenciesItem[]): FutureData { return Future.futureMap(options, item => - apiToFuture(this.api.get(`/${item.model}/${item.id}/metadata.json`)) + apiToFuture(this.api.get(`/${item.model}/${item.id}/metadata.json`)) ).map(data => this.mergePayloads(data)); } - private mergePayloads(payloads: Payload[]): Payload { + private mergePayloads(payloads: MetadataPayload[]): MetadataPayload { return _.reduce( payloads, (result, payload) => { diff --git a/src/domain/entities/Schemas.ts b/src/domain/entities/Schemas.ts deleted file mode 100644 index a5bb349..0000000 --- a/src/domain/entities/Schemas.ts +++ /dev/null @@ -1,28 +0,0 @@ -export type Id = string; - -export interface Access { - read: boolean; - update: boolean; - externalize: boolean; - delete: boolean; - write: boolean; - manage: boolean; -} - -export interface Translation { - property: string; - locale: string; - value: string; -} - -export interface Style { - color: string; - icon: string; -} - -export interface Expression { - expression: string; - description: string; - missingValueStrategy: "NEVER_SKIP" | "SKIP_IF_ANY_VALUE_MISSING" | "SKIP_IF_ALL_VALUES_MISSING"; - slidingWindow: boolean; -} diff --git a/src/domain/repositories/InstanceRepository.ts b/src/domain/repositories/InstanceRepository.ts index 78aeb51..3d6dfa1 100644 --- a/src/domain/repositories/InstanceRepository.ts +++ b/src/domain/repositories/InstanceRepository.ts @@ -1,6 +1,6 @@ +import { UserSearch } from "../../data/entities/SearchUser"; import { FutureData } from "../entities/Future"; import { User } from "../entities/User"; -import { UserSearch } from "../../data/entities/SearchUser"; export interface InstanceRepository { getBaseUrl(): string; diff --git a/src/domain/repositories/MetadataRepository.ts b/src/domain/repositories/MetadataRepository.ts index 6c90a1b..50719ee 100644 --- a/src/domain/repositories/MetadataRepository.ts +++ b/src/domain/repositories/MetadataRepository.ts @@ -1,8 +1,8 @@ import { FutureData } from "../entities/Future"; export interface MetadataRepository { - list(options: ListOptions): FutureData; - getDependencies(items: GetDependenciesItem[]): FutureData; + list(options: ListOptions): FutureData; + getDependencies(items: GetDependenciesItem[]): FutureData; } export interface ListOptions { @@ -17,11 +17,11 @@ export type MetadataModel = "dataSets" | "programs" | "dashboards"; export type GetDependenciesItem = { model: MetadataModel; id: string }; -export type Payload = Record; +export type MetadataPayload = Record; export type MetadataItem = { id: string; [key: string]: string | number | boolean | undefined }; -export interface MetadataResponse { +export interface ListMetadataResponse { objects: MetadataItem[]; pager: Pager; } diff --git a/src/domain/usecases/GetMetadataWithDependenciesUseCase.ts b/src/domain/usecases/GetMetadataWithDependenciesUseCase.ts index 184b49f..54ea392 100644 --- a/src/domain/usecases/GetMetadataWithDependenciesUseCase.ts +++ b/src/domain/usecases/GetMetadataWithDependenciesUseCase.ts @@ -1,11 +1,11 @@ import { UseCase } from "../../CompositionRoot"; import { FutureData } from "../entities/Future"; -import { GetDependenciesItem, MetadataRepository, Payload } from "../repositories/MetadataRepository"; +import { GetDependenciesItem, MetadataPayload, MetadataRepository } from "../repositories/MetadataRepository"; export class GetMetadataDependenciesUseCase implements UseCase { constructor(private metadataRepository: MetadataRepository) {} - public execute(params: GetDependenciesItem[]): FutureData { + public execute(params: GetDependenciesItem[]): FutureData { return this.metadataRepository.getDependencies(params); } } diff --git a/src/domain/usecases/ListMetadataUseCase.ts b/src/domain/usecases/ListMetadataUseCase.ts index 15cfe7f..4004b61 100644 --- a/src/domain/usecases/ListMetadataUseCase.ts +++ b/src/domain/usecases/ListMetadataUseCase.ts @@ -1,11 +1,11 @@ import { UseCase } from "../../CompositionRoot"; import { FutureData } from "../entities/Future"; -import { ListOptions, MetadataRepository, MetadataResponse } from "../repositories/MetadataRepository"; +import { ListMetadataResponse, ListOptions, MetadataRepository } from "../repositories/MetadataRepository"; export class ListMetadataUseCase implements UseCase { constructor(private metadataRepository: MetadataRepository) {} - public execute(params: ListOptions): FutureData { + public execute(params: ListOptions): FutureData { return this.metadataRepository.list(params); } } diff --git a/src/webapp/pages/Router.tsx b/src/webapp/pages/Router.tsx index f3910f3..df62a11 100644 --- a/src/webapp/pages/Router.tsx +++ b/src/webapp/pages/Router.tsx @@ -1,17 +1,12 @@ import { HashRouter, Route, Switch } from "react-router-dom"; -import { ExamplePage } from "./example/ExamplePage"; +import { BulkApplyPage } from "./bulk-apply/BulkApplyPage"; import { LandingPage } from "./landing/LandingPage"; -import { BulkApply } from "./bulk-apply/BulkApply"; export const Router = () => { return ( - } /> - } - /> + } /> {/* Default route */} } /> diff --git a/src/webapp/pages/bulk-apply/BulkApply.tsx b/src/webapp/pages/bulk-apply/BulkApplyPage.tsx similarity index 91% rename from src/webapp/pages/bulk-apply/BulkApply.tsx rename to src/webapp/pages/bulk-apply/BulkApplyPage.tsx index 903b82d..4d47a4a 100644 --- a/src/webapp/pages/bulk-apply/BulkApply.tsx +++ b/src/webapp/pages/bulk-apply/BulkApplyPage.tsx @@ -3,7 +3,7 @@ import { SharingWizard } from "./SharingWizard"; import { ConfirmationDialog, ConfirmationDialogProps } from "@eyeseetea/d2-ui-components"; import i18n from "@dhis2/d2-i18n"; -export const BulkApply: React.FC = () => { +export const BulkApplyPage: React.FC = () => { const [metadata, setMetadata] = useState[]>(); const [dialogProps, updateDialog] = useState(null); @@ -19,9 +19,9 @@ export const BulkApply: React.FC = () => { }, []); return ( - <> + {dialogProps && } setMetadata(update)} onCancel={onCancel} metadata={metadata} />; - + ); }; diff --git a/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx b/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx index 59969b3..58c73e3 100644 --- a/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx @@ -2,5 +2,5 @@ import React from "react"; import { MetadataSharingWizardStepProps } from "../steps"; export const SummaryApplyStep: React.FC = () => { - return
; + return null; }; diff --git a/src/webapp/pages/example/ExamplePage.tsx b/src/webapp/pages/example/ExamplePage.tsx deleted file mode 100644 index d427601..0000000 --- a/src/webapp/pages/example/ExamplePage.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from "react"; -import styled from "styled-components"; -import i18n from "../../../locales"; - -export const ExamplePage: React.FC = props => { - const { name } = props; - const title = i18n.t("Hello {{name}}", { name }); - - return ( - - {title} - - ); -}; -const Title = styled.h2` - color: blue; -`; - -interface ExamplePageProps { - name: string; -} diff --git a/src/webapp/pages/example/__tests__/Example.spec.tsx b/src/webapp/pages/example/__tests__/Example.spec.tsx deleted file mode 100644 index 894a4d3..0000000 --- a/src/webapp/pages/example/__tests__/Example.spec.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import "@testing-library/jest-dom/extend-expect"; -import { RenderResult, waitFor } from "@testing-library/react"; -import { getReactComponent, getTestContext } from "../../../../utils/tests"; -import { ExamplePage } from "../ExamplePage"; - -const { context } = getTestContext(); - -function getComponent({ name = "Some Name" } = {}): RenderResult { - return getReactComponent(, context); -} - -describe("Example component", () => { - test("renders a greeting", async () => { - const component = getComponent(); - await waitFor(() => expect(component.queryByText("Hello Some Name")).toBeInTheDocument()); - }); -}); From c26417741a8cc20d9b178602f57be1915a8a66af Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Fri, 27 Aug 2021 08:47:13 +0200 Subject: [PATCH 13/50] Remove ts-ignores --- src/data/repositories/MetadataD2ApiRepository.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/data/repositories/MetadataD2ApiRepository.ts b/src/data/repositories/MetadataD2ApiRepository.ts index 079cbed..7f96306 100644 --- a/src/data/repositories/MetadataD2ApiRepository.ts +++ b/src/data/repositories/MetadataD2ApiRepository.ts @@ -47,15 +47,13 @@ export class MetadataD2ApiRepository implements MetadataRepository { (result, payload) => { _.forOwn(payload, (value, key) => { if (Array.isArray(value)) { - //@ts-ignore const existing = result[key] ?? []; - //@ts-ignore result[key] = _.uniqBy([...existing, ...value], ({ id }) => id); } }); return result; }, - {} + {} as MetadataPayload ); } } From d6d41ef5d5de1e9425329cddad80156487cd9060 Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Fri, 27 Aug 2021 08:51:24 +0200 Subject: [PATCH 14/50] Add go back and update margin --- src/webapp/components/card-grid/CardGrid.tsx | 2 +- src/webapp/hooks/useGoBack.ts | 14 ++++++++++++++ src/webapp/pages/Router.tsx | 13 ++++++++++--- src/webapp/pages/bulk-apply/BulkApplyPage.tsx | 6 ++++++ 4 files changed, 31 insertions(+), 4 deletions(-) create mode 100644 src/webapp/hooks/useGoBack.ts diff --git a/src/webapp/components/card-grid/CardGrid.tsx b/src/webapp/components/card-grid/CardGrid.tsx index ed4c7c9..e746066 100644 --- a/src/webapp/components/card-grid/CardGrid.tsx +++ b/src/webapp/components/card-grid/CardGrid.tsx @@ -36,7 +36,7 @@ export interface Card { } const Container = styled.div` - margin-left: 30px; + margin-left: 15px; display: flex; flex-direction: column; `; diff --git a/src/webapp/hooks/useGoBack.ts b/src/webapp/hooks/useGoBack.ts new file mode 100644 index 0000000..3008c27 --- /dev/null +++ b/src/webapp/hooks/useGoBack.ts @@ -0,0 +1,14 @@ +import { useCallback } from "react"; +import { useHistory } from "react-router-dom"; + +export const useGoBack = (defaultRoute = "/") => { + const history = useHistory(); + + return useCallback( + (force = false) => { + if (force || history.length <= 2) history.push(defaultRoute); + else history.goBack(); + }, + [history, defaultRoute] + ); +}; diff --git a/src/webapp/pages/Router.tsx b/src/webapp/pages/Router.tsx index df62a11..e04c88f 100644 --- a/src/webapp/pages/Router.tsx +++ b/src/webapp/pages/Router.tsx @@ -1,4 +1,5 @@ import { HashRouter, Route, Switch } from "react-router-dom"; +import styled from "styled-components"; import { BulkApplyPage } from "./bulk-apply/BulkApplyPage"; import { LandingPage } from "./landing/LandingPage"; @@ -6,11 +7,17 @@ export const Router = () => { return ( - } /> + + } /> - {/* Default route */} - } /> + {/* Default route */} + } /> + ); }; + +const Container = styled.div` + margin: 15px; +`; diff --git a/src/webapp/pages/bulk-apply/BulkApplyPage.tsx b/src/webapp/pages/bulk-apply/BulkApplyPage.tsx index 4d47a4a..28b3855 100644 --- a/src/webapp/pages/bulk-apply/BulkApplyPage.tsx +++ b/src/webapp/pages/bulk-apply/BulkApplyPage.tsx @@ -2,8 +2,12 @@ import React, { useState, useCallback } from "react"; import { SharingWizard } from "./SharingWizard"; import { ConfirmationDialog, ConfirmationDialogProps } from "@eyeseetea/d2-ui-components"; import i18n from "@dhis2/d2-i18n"; +import { PageHeader } from "../../components/page-header/PageHeader"; +import { useGoBack } from "../../hooks/useGoBack"; export const BulkApplyPage: React.FC = () => { + const goBack = useGoBack(); + const [metadata, setMetadata] = useState[]>(); const [dialogProps, updateDialog] = useState(null); @@ -20,6 +24,8 @@ export const BulkApplyPage: React.FC = () => { return ( + + {dialogProps && } setMetadata(update)} onCancel={onCancel} metadata={metadata} />; From 215a7c401134cd0654c934e4ada059ee2e97fb83 Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Fri, 27 Aug 2021 08:52:11 +0200 Subject: [PATCH 15/50] Fix router rendering --- src/webapp/pages/Router.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/webapp/pages/Router.tsx b/src/webapp/pages/Router.tsx index e04c88f..0e1156a 100644 --- a/src/webapp/pages/Router.tsx +++ b/src/webapp/pages/Router.tsx @@ -5,16 +5,16 @@ import { LandingPage } from "./landing/LandingPage"; export const Router = () => { return ( - - - + + + } /> {/* Default route */} } /> - - - +
+
+ ); }; From 4bdbb37eeca04b34be00624d864f6a01a874ca09 Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Fri, 27 Aug 2021 09:39:25 +0200 Subject: [PATCH 16/50] Clean-up logic --- src/data/models/Ref.ts | 9 +- .../repositories/MetadataD2ApiRepository.ts | 25 ++- src/domain/entities/Ref.ts | 4 - src/domain/entities/SharedObject.ts | 11 ++ src/domain/repositories/MetadataRepository.ts | 5 +- .../GetMetadataWithDependenciesUseCase.ts | 6 +- src/webapp/pages/bulk-apply/BulkApplyPage.tsx | 21 +- src/webapp/pages/bulk-apply/SharingWizard.tsx | 2 +- .../{steps.ts => SharingWizardSteps.ts} | 10 +- .../pages/bulk-apply/steps/AccessStep.tsx | 55 +++--- .../bulk-apply/steps/ListDependenciesStep.tsx | 8 +- .../bulk-apply/steps/SelectMetadataStep.tsx | 185 +++++++++--------- .../bulk-apply/steps/SummaryApplyStep.tsx | 2 +- 13 files changed, 181 insertions(+), 162 deletions(-) create mode 100644 src/domain/entities/SharedObject.ts rename src/webapp/pages/bulk-apply/{steps.ts => SharingWizardSteps.ts} (81%) diff --git a/src/data/models/Ref.ts b/src/data/models/Ref.ts index e881786..6557519 100644 --- a/src/data/models/Ref.ts +++ b/src/data/models/Ref.ts @@ -1,4 +1,4 @@ -import { NamedRef, Ref, SharingSetting } from "../../domain/entities/Ref"; +import { NamedRef, Ref } from "../../domain/entities/Ref"; import { Codec, Schema } from "../../utils/codec"; export const RefModel: Codec = Schema.object({ @@ -11,10 +11,3 @@ export const NamedRefModel: Codec = Schema.extend( name: Schema.string, }) ); - -export const SharingSettingModel: Codec = Schema.extend( - NamedRefModel, - Schema.object({ - access: Schema.string, - }) -); diff --git a/src/data/repositories/MetadataD2ApiRepository.ts b/src/data/repositories/MetadataD2ApiRepository.ts index 7f96306..097acf1 100644 --- a/src/data/repositories/MetadataD2ApiRepository.ts +++ b/src/data/repositories/MetadataD2ApiRepository.ts @@ -1,7 +1,6 @@ import _ from "lodash"; import { Future, FutureData } from "../../domain/entities/Future"; import { - GetDependenciesItem, ListMetadataResponse, ListOptions, MetadataPayload, @@ -35,10 +34,26 @@ export class MetadataD2ApiRepository implements MetadataRepository { ); } - public getDependencies(options: GetDependenciesItem[]): FutureData { - return Future.futureMap(options, item => - apiToFuture(this.api.get(`/${item.model}/${item.id}/metadata.json`)) - ).map(data => this.mergePayloads(data)); + public getDependencies(ids: string[]): FutureData { + return this.getMetadata(ids) + .flatMap(payload => { + const items = _(payload) + .mapValues((items, key) => { + return items.map(item => ({ model: key, id: item.id })); + }) + .values() + .flatten() + .value(); + + return Future.futureMap(items, item => + apiToFuture(this.api.get(`/${item.model}/${item.id}/metadata.json`)) + ); + }) + .map(data => this.mergePayloads(data)); + } + + private getMetadata(ids: string[]): FutureData { + return apiToFuture(this.api.get("/metadata", { filter: `id:in:[${ids.join(",")}]` })); } private mergePayloads(payloads: MetadataPayload[]): MetadataPayload { diff --git a/src/domain/entities/Ref.ts b/src/domain/entities/Ref.ts index 7fa8161..8b95ca2 100644 --- a/src/domain/entities/Ref.ts +++ b/src/domain/entities/Ref.ts @@ -7,7 +7,3 @@ export interface Ref { export interface NamedRef extends Ref { name: string; } - -export interface SharingSetting extends NamedRef { - access: string; -} diff --git a/src/domain/entities/SharedObject.ts b/src/domain/entities/SharedObject.ts new file mode 100644 index 0000000..128fb9a --- /dev/null +++ b/src/domain/entities/SharedObject.ts @@ -0,0 +1,11 @@ +import { NamedRef } from "./Ref"; + +export interface SharingSetting extends NamedRef { + access: string; +} + +export interface SharedObject { + publicAccess: string; + userAccesses: SharingSetting[]; + userGroupAccesses: SharingSetting[]; +} diff --git a/src/domain/repositories/MetadataRepository.ts b/src/domain/repositories/MetadataRepository.ts index 50719ee..da4e5c4 100644 --- a/src/domain/repositories/MetadataRepository.ts +++ b/src/domain/repositories/MetadataRepository.ts @@ -2,7 +2,7 @@ import { FutureData } from "../entities/Future"; export interface MetadataRepository { list(options: ListOptions): FutureData; - getDependencies(items: GetDependenciesItem[]): FutureData; + getDependencies(ids: string[]): FutureData; } export interface ListOptions { @@ -15,8 +15,6 @@ export interface ListOptions { export type MetadataModel = "dataSets" | "programs" | "dashboards"; -export type GetDependenciesItem = { model: MetadataModel; id: string }; - export type MetadataPayload = Record; export type MetadataItem = { id: string; [key: string]: string | number | boolean | undefined }; @@ -28,7 +26,6 @@ export interface ListMetadataResponse { export interface Pager { page: number; - pageCount: number; pageSize: number; total: number; } diff --git a/src/domain/usecases/GetMetadataWithDependenciesUseCase.ts b/src/domain/usecases/GetMetadataWithDependenciesUseCase.ts index 54ea392..f475fc3 100644 --- a/src/domain/usecases/GetMetadataWithDependenciesUseCase.ts +++ b/src/domain/usecases/GetMetadataWithDependenciesUseCase.ts @@ -1,11 +1,11 @@ import { UseCase } from "../../CompositionRoot"; import { FutureData } from "../entities/Future"; -import { GetDependenciesItem, MetadataPayload, MetadataRepository } from "../repositories/MetadataRepository"; +import { MetadataPayload, MetadataRepository } from "../repositories/MetadataRepository"; export class GetMetadataDependenciesUseCase implements UseCase { constructor(private metadataRepository: MetadataRepository) {} - public execute(params: GetDependenciesItem[]): FutureData { - return this.metadataRepository.getDependencies(params); + public execute(ids: string[]): FutureData { + return this.metadataRepository.getDependencies(ids); } } diff --git a/src/webapp/pages/bulk-apply/BulkApplyPage.tsx b/src/webapp/pages/bulk-apply/BulkApplyPage.tsx index 28b3855..b4d92b5 100644 --- a/src/webapp/pages/bulk-apply/BulkApplyPage.tsx +++ b/src/webapp/pages/bulk-apply/BulkApplyPage.tsx @@ -1,16 +1,20 @@ -import React, { useState, useCallback } from "react"; -import { SharingWizard } from "./SharingWizard"; -import { ConfirmationDialog, ConfirmationDialogProps } from "@eyeseetea/d2-ui-components"; import i18n from "@dhis2/d2-i18n"; +import { ConfirmationDialog, ConfirmationDialogProps } from "@eyeseetea/d2-ui-components"; +import React, { useCallback, useState } from "react"; +import { Ref } from "../../../domain/entities/Ref"; +import { SharedObject } from "../../../domain/entities/SharedObject"; import { PageHeader } from "../../components/page-header/PageHeader"; import { useGoBack } from "../../hooks/useGoBack"; +import { SharingWizard } from "./SharingWizard"; export const BulkApplyPage: React.FC = () => { const goBack = useGoBack(); - const [metadata, setMetadata] = useState[]>(); const [dialogProps, updateDialog] = useState(null); + const [selection, setSelection] = useState([]); + const [sharingSettings, setSharingSettings] = useState(defaultSharedObject); + const onCancel = useCallback(() => { updateDialog({ title: i18n.t("Cancel sharing action?"), @@ -27,7 +31,14 @@ export const BulkApplyPage: React.FC = () => { {dialogProps && } - setMetadata(update)} onCancel={onCancel} metadata={metadata} />; + + ; ); }; + +const defaultSharedObject: SharedObject = { + publicAccess: "--------", + userAccesses: [], + userGroupAccesses: [], +}; diff --git a/src/webapp/pages/bulk-apply/SharingWizard.tsx b/src/webapp/pages/bulk-apply/SharingWizard.tsx index a2c3f2d..7895f94 100644 --- a/src/webapp/pages/bulk-apply/SharingWizard.tsx +++ b/src/webapp/pages/bulk-apply/SharingWizard.tsx @@ -3,7 +3,7 @@ import { Wizard, WizardStep } from "@eyeseetea/d2-ui-components"; import { useLocation } from "react-router-dom"; import _ from "lodash"; -import { MetadataSharingWizardStepProps, metadataSharingWizardSteps } from "./steps"; +import { MetadataSharingWizardStepProps, metadataSharingWizardSteps } from "./SharingWizardSteps"; export interface MetadataSharingWizardProps extends MetadataSharingWizardStepProps { className?: string; diff --git a/src/webapp/pages/bulk-apply/steps.ts b/src/webapp/pages/bulk-apply/SharingWizardSteps.ts similarity index 81% rename from src/webapp/pages/bulk-apply/steps.ts rename to src/webapp/pages/bulk-apply/SharingWizardSteps.ts index 658f092..5bd1f39 100644 --- a/src/webapp/pages/bulk-apply/steps.ts +++ b/src/webapp/pages/bulk-apply/SharingWizardSteps.ts @@ -4,6 +4,8 @@ import { ListDependenciesStep } from "./steps/ListDependenciesStep"; import { SelectMetadataStep } from "./steps/SelectMetadataStep"; import { AccessStep } from "./steps/AccessStep"; import { SummaryApplyStep } from "./steps/SummaryApplyStep"; +import { Ref } from "../../../domain/entities/Ref"; +import { SharedObject } from "../../../domain/entities/SharedObject"; export interface MetadataSharingWizardStep extends WizardStep { validationKeys: string[]; @@ -11,11 +13,15 @@ export interface MetadataSharingWizardStep extends WizardStep { } export interface MetadataSharingWizardStepProps { - metadata: any; - onChange: (update: any | ((prev: any) => any)) => void; + selection: Ref[]; + changeSelection: UpdateMethod; + sharingSettings: SharedObject; + changeSharingSettings: UpdateMethod; onCancel: () => void; } +type UpdateMethod = (update: T | ((prev: T) => T)) => void; + export const metadataSharingWizardSteps: MetadataSharingWizardStep[] = [ { key: "select-metadata", diff --git a/src/webapp/pages/bulk-apply/steps/AccessStep.tsx b/src/webapp/pages/bulk-apply/steps/AccessStep.tsx index f53d345..b024116 100644 --- a/src/webapp/pages/bulk-apply/steps/AccessStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/AccessStep.tsx @@ -1,12 +1,12 @@ import { ShareUpdate, Sharing, SharingRule } from "@eyeseetea/d2-ui-components"; import React, { useCallback } from "react"; -import { SharingSetting } from "../../../../domain/entities/Ref"; +import { SharingSetting } from "../../../../domain/entities/SharedObject"; import { useAppContext } from "../../../contexts/app-context"; -import { MetadataSharingWizardStepProps } from "../steps"; +import { MetadataSharingWizardStepProps } from "../SharingWizardSteps"; export const AccessStep: React.FC = ({ - metadata, - onChange, + sharingSettings, + changeSharingSettings, }: MetadataSharingWizardStepProps) => { const { compositionRoot } = useAppContext(); @@ -17,42 +17,31 @@ export const AccessStep: React.FC = ({ const setModuleSharing = useCallback( async ({ publicAccess, userAccesses, userGroupAccesses }: ShareUpdate) => { - onChange((metadata: any) => { - return { - ...metadata, - publicAccess: publicAccess ?? metadata.publicAccess, - userAccesses: userAccesses ? mapSharingSettings(userAccesses) : metadata.userAccesses, - userGroupAccesses: userGroupAccesses - ? mapSharingSettings(userGroupAccesses) - : metadata.userGroupAccesses, - }; - }); + changeSharingSettings(metadata => ({ + publicAccess: publicAccess ?? metadata.publicAccess, + userAccesses: mapSharingSettings(userAccesses) ?? metadata.userAccesses, + userGroupAccesses: mapSharingSettings(userGroupAccesses) ?? metadata.userGroupAccesses, + })); }, - [onChange] + [changeSharingSettings] ); return ( ); @@ -69,3 +58,11 @@ const mapSharingRules = (settings?: SharingSetting[]): SharingRule[] | undefined return { id: item.id, access: item.access, displayName: item.name }; }); }; + +const showOptions = { + title: false, + dataSharing: false, + publicSharing: true, + externalSharing: false, + permissionPicker: true, +}; diff --git a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx index cdb791c..6d1ab37 100644 --- a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx @@ -5,10 +5,10 @@ import { Ref } from "../../../../domain/entities/Ref"; import { MetadataItem } from "../../../../domain/repositories/MetadataRepository"; import i18n from "../../../../locales"; import { useAppContext } from "../../../contexts/app-context"; -import { MetadataSharingWizardStepProps } from "../steps"; +import { MetadataSharingWizardStepProps } from "../SharingWizardSteps"; export const ListDependenciesStep: React.FC = ({ - metadata, + selection: metadata, }: MetadataSharingWizardStepProps) => { const { compositionRoot } = useAppContext(); const [metadataDependencies, setMetadataDependencies] = useState([]); @@ -38,7 +38,9 @@ export const ListDependenciesStep: React.FC = ({ useEffect(() => { const getMetadataDependencies = async () => { setIsLoading(true); - const { data = {} } = await compositionRoot.metadata.getDependencies(metadata).runAsync(); + const { data = {} } = await compositionRoot.metadata + .getDependencies(metadata.map(({ id }) => id)) + .runAsync(); const dataWithIdsAndName = Object.entries(data).map(([key, value]) => { return value.map(item => ({ ...item, model: key })); diff --git a/src/webapp/pages/bulk-apply/steps/SelectMetadataStep.tsx b/src/webapp/pages/bulk-apply/steps/SelectMetadataStep.tsx index 6a2bcc3..51d38cf 100644 --- a/src/webapp/pages/bulk-apply/steps/SelectMetadataStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/SelectMetadataStep.tsx @@ -1,119 +1,110 @@ import i18n from "@dhis2/d2-i18n"; -import { ObjectsTable, TablePagination, TableSelection, TableState } from "@eyeseetea/d2-ui-components"; -import React, { useCallback, useEffect, useState } from "react"; -import { MetadataModel, MetadataItem } from "../../../../domain/repositories/MetadataRepository"; -import Dropdown from "../../../components/dropdown/Dropdown"; +import { ObjectsTable, TableState, useSnackbar } from "@eyeseetea/d2-ui-components"; +import React, { useCallback, useEffect, useMemo, useState } from "react"; +import { + ListMetadataResponse, + ListOptions, + MetadataItem, + MetadataModel +} from "../../../../domain/repositories/MetadataRepository"; +import Dropdown, { DropdownOption } from "../../../components/dropdown/Dropdown"; import { useAppContext } from "../../../contexts/app-context"; -import { MetadataSharingWizardStepProps } from "../steps"; - -const initialState = { - sorting: { field: "displayName" as const, order: "asc" as const }, - pagination: { page: 1, pageSize: 25 }, -}; +import { MetadataSharingWizardStepProps } from "../SharingWizardSteps"; export const SelectMetadataStep: React.FC = ({ - metadata, - onChange, + selection, + changeSelection: onChange, }: MetadataSharingWizardStepProps) => { const { compositionRoot } = useAppContext(); - const [allMetadata, setAllMetadata] = useState<{ - objects: MetadataItem[]; - pager: Partial; - }>({ objects: [], pager: initialState.pagination }); - const [isLoading, setIsLoading] = useState(false); - const [selection, setSelection] = useState(metadata ?? []); - const [model, setModel] = useState("dashboards"); - const [search, setSearch] = useState(""); + const snackbar = useSnackbar(); + + const [isLoading, setLoading] = useState(false); + + const [response, setResponse] = useState(initialResponse); + const [listOptions, setListOptions] = useState(initialState); + + const columns = useMemo( + () => [ + { name: "name", text: i18n.t("Name"), sortable: true }, + { name: "id", text: i18n.t("ID"), sortable: true }, + { name: "publicAccess", text: i18n.t("Public Access"), sortable: true }, + { name: "userAccesses", text: i18n.t("Users"), sortable: true }, + { name: "userGroupAccesses", text: i18n.t("User Groups"), sortable: true }, + ], + [] + ); - const columns = [ - { name: "name", text: i18n.t("Name"), sortable: true }, - { name: "id", text: i18n.t("ID"), sortable: true }, - { name: "publicAccess", text: i18n.t("Public Access"), sortable: true }, - { name: "userAccesses", text: i18n.t("Users"), sortable: true }, - { name: "userGroupAccesses", text: i18n.t("User Groups"), sortable: true }, - ]; - useEffect(() => onChange(selection), [onChange, selection]); useEffect(() => { - const getMetadata = async () => { - setIsLoading(true); - const { data } = await compositionRoot.metadata.list({ ...initialState, model, search }).runAsync(); - if (data) { + setLoading(true); + + compositionRoot.metadata.list(listOptions).run( + data => { const rows = data.objects.map((item: MetadataItem) => ({ ...item, - model, + model: listOptions.model, })); - setAllMetadata({ objects: rows, pager: data.pager }); - setIsLoading(false); - } - }; - getMetadata(); - }, [compositionRoot, search, model]); - const onTableChange = useCallback( - async (tableState: TableState, model) => { - setIsLoading(true); - setAllMetadata({ objects: [], pager: {} }); - setSelection(oldSelection => { - const selection = tableState?.selection ?? oldSelection; - return selection.map((select: any) => (!select.model ? { id: select.id, model } : select)); - }); + setResponse({ objects: rows, pager: data.pager }); + setLoading(false); + }, + error => snackbar.error(error) + ); + }, [compositionRoot, snackbar, listOptions]); - const { pagination, sorting } = tableState ?? initialState; - const { data } = await compositionRoot.metadata - .list({ - pageSize: pagination.pageSize, - page: pagination.page, - sorting: { field: sorting.field.toString(), order: sorting.order }, - search, - model, - }) - .runAsync(); - if (data) { - setAllMetadata({ objects: data?.objects, pager: data?.pager }); - } - setIsLoading(false); + const onTableChange = useCallback( + async ({ pagination, sorting, selection }: TableState) => { + onChange(selection); + setListOptions(options => ({ + ...options, + pageSize: pagination.pageSize, + page: pagination.page, + sorting: { field: String(sorting.field), order: sorting.order }, + })); }, - [search, compositionRoot] + [onChange] ); - const changeModelFilter = (modelName: MetadataModel) => { - setModel(modelName); - }; - const filterComponents = ( - -
- -
-
+ + items={filterModels} + onValueChange={model => setListOptions(options => ({ ...options, model }))} + value={listOptions.model} + label={i18n.t("Metadata type")} + hideEmpty={true} + /> ); return ( -
- - rows={allMetadata.objects} - columns={columns} - onChange={tableState => onTableChange(tableState, model)} - pagination={allMetadata.pager} - sorting={{ field: "displayName", order: "asc" }} - loading={isLoading} - initialState={initialState} - selection={selection} - forceSelectionColumn={true} - filterComponents={filterComponents} - onChangeSearch={setSearch} - searchBoxLabel={i18n.t(`Search by name`)} - /> -
+ + rows={response.objects} + columns={columns} + onChange={onTableChange} + pagination={response.pager} + sorting={{ field: "displayName", order: "asc" }} + loading={isLoading} + initialState={initialState} + selection={selection} + forceSelectionColumn={true} + filterComponents={filterComponents} + onChangeSearch={search => setListOptions(options => ({ ...options, search }))} + searchBoxLabel={i18n.t(`Search by name`)} + /> ); }; + +const initialState: ListOptions = { + model: "dashboards", + sorting: { field: "name", order: "asc" }, + pageSize: 10, +}; + +const initialResponse: ListMetadataResponse = { + objects: [], + pager: { pageSize: 10, page: 1, total: 0 }, +}; + +const filterModels: DropdownOption[] = [ + { id: "dataSets", name: i18n.t("Data Sets") }, + { id: "dashboards", name: i18n.t("Dashboards") }, + { id: "programs", name: i18n.t("Programs") }, +]; diff --git a/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx b/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx index 58c73e3..7dd0c54 100644 --- a/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx @@ -1,5 +1,5 @@ import React from "react"; -import { MetadataSharingWizardStepProps } from "../steps"; +import { MetadataSharingWizardStepProps } from "../SharingWizardSteps"; export const SummaryApplyStep: React.FC = () => { return null; From 97d0624ffa85254644bd61ae6db411119b0b1d31 Mon Sep 17 00:00:00 2001 From: Jocelyn Dunkley Date: Wed, 1 Sep 2021 07:44:54 +0200 Subject: [PATCH 17/50] copied changes from step 1 to step 2 --- .env | 2 +- i18n/en.pot | 43 ++++++------- i18n/es.po | 41 ++++++------- .../repositories/MetadataD2ApiRepository.ts | 2 + src/webapp/pages/bulk-apply/BulkApplyPage.tsx | 11 +++- .../bulk-apply/steps/ListDependenciesStep.tsx | 61 ++++++++++--------- .../bulk-apply/steps/SelectMetadataStep.tsx | 8 +-- 7 files changed, 87 insertions(+), 81 deletions(-) diff --git a/.env b/.env index e99a73e..b44ae71 100644 --- a/.env +++ b/.env @@ -1,7 +1,7 @@ BROWSER=false PORT=8081 SKIP_PREFLIGHT_CHECK=true -REACT_APP_DHIS2_BASE_URL=https://dev.eyeseetea.com/play +REACT_APP_DHIS2_BASE_URL=https://dev.eyeseetea.com/who-dev-234 CYPRESS_DHIS2_AUTH='admin:district' CYPRESS_EXTERNAL_API="https://dev.eyeseetea.com/play" diff --git a/i18n/en.pot b/i18n/en.pot index b0d6606..c4a02f3 100644 --- a/i18n/en.pot +++ b/i18n/en.pot @@ -5,8 +5,8 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -"POT-Creation-Date: 2021-08-26T11:56:17.100Z\n" -"PO-Revision-Date: 2021-08-26T11:56:17.100Z\n" +"POT-Creation-Date: 2021-08-27T08:28:36.728Z\n" +"PO-Revision-Date: 2021-08-27T08:28:36.728Z\n" msgid "Add" msgstr "" @@ -35,61 +35,58 @@ msgstr "" msgid "No" msgstr "" -msgid "Name" -msgstr "" - -msgid "ID" +msgid "Bulk apply" msgstr "" -msgid "Metadata Type" +msgid "Select Metadata" msgstr "" -msgid "Public Access" +msgid "Select metadata to share" msgstr "" -msgid "Users" +msgid "List Dependencies and Exclude" msgstr "" -msgid "User Groups" +msgid "Sharing Access" msgstr "" -msgid "Data Sets" +msgid "Summary and Apply Metadata" msgstr "" -msgid "Dashboards" +msgid "List errors and warnings and apply metadata sharing" msgstr "" -msgid "Programs" +msgid "Name" msgstr "" -msgid "Metadata type" +msgid "ID" msgstr "" -msgid "Search by name" +msgid "Metadata Type" msgstr "" -msgid "Select Metadata" +msgid "Public Access" msgstr "" -msgid "Select metadata to share" +msgid "Users" msgstr "" -msgid "List Dependencies and Exclude" +msgid "User Groups" msgstr "" -msgid "Sharing Access" +msgid "Metadata type" msgstr "" -msgid "Summary and Apply Metadata" +msgid "Search by name" msgstr "" -msgid "List errors and warnings and apply metadata sharing" +msgid "Data Sets" msgstr "" -msgid "Hello {{name}}" +msgid "Dashboards" msgstr "" -msgid "Bulk apply" +msgid "Programs" msgstr "" msgid "Edit sharing settings to data sets, programs and dashboards." diff --git a/i18n/es.po b/i18n/es.po index fe2d02e..5103d06 100644 --- a/i18n/es.po +++ b/i18n/es.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: i18next-conv\n" -"POT-Creation-Date: 2021-08-26T11:56:17.100Z\n" +"POT-Creation-Date: 2021-08-27T08:28:36.728Z\n" "PO-Revision-Date: 2018-10-25T09:02:35.143Z\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,61 +35,58 @@ msgstr "" msgid "No" msgstr "" -msgid "Name" -msgstr "" - -msgid "ID" +msgid "Bulk apply" msgstr "" -msgid "Metadata Type" +msgid "Select Metadata" msgstr "" -msgid "Public Access" +msgid "Select metadata to share" msgstr "" -msgid "Users" +msgid "List Dependencies and Exclude" msgstr "" -msgid "User Groups" +msgid "Sharing Access" msgstr "" -msgid "Data Sets" +msgid "Summary and Apply Metadata" msgstr "" -msgid "Dashboards" +msgid "List errors and warnings and apply metadata sharing" msgstr "" -msgid "Programs" +msgid "Name" msgstr "" -msgid "Metadata type" +msgid "ID" msgstr "" -msgid "Search by name" +msgid "Metadata Type" msgstr "" -msgid "Select Metadata" +msgid "Public Access" msgstr "" -msgid "Select metadata to share" +msgid "Users" msgstr "" -msgid "List Dependencies and Exclude" +msgid "User Groups" msgstr "" -msgid "Sharing Access" +msgid "Metadata type" msgstr "" -msgid "Summary and Apply Metadata" +msgid "Search by name" msgstr "" -msgid "List errors and warnings and apply metadata sharing" +msgid "Data Sets" msgstr "" -msgid "Hello {{name}}" +msgid "Dashboards" msgstr "" -msgid "Bulk apply" +msgid "Programs" msgstr "" msgid "Edit sharing settings to data sets, programs and dashboards." diff --git a/src/data/repositories/MetadataD2ApiRepository.ts b/src/data/repositories/MetadataD2ApiRepository.ts index 097acf1..8e2594e 100644 --- a/src/data/repositories/MetadataD2ApiRepository.ts +++ b/src/data/repositories/MetadataD2ApiRepository.ts @@ -39,10 +39,12 @@ export class MetadataD2ApiRepository implements MetadataRepository { .flatMap(payload => { const items = _(payload) .mapValues((items, key) => { + if (!Array.isArray(items)) return undefined; return items.map(item => ({ model: key, id: item.id })); }) .values() .flatten() + .compact() .value(); return Future.futureMap(items, item => diff --git a/src/webapp/pages/bulk-apply/BulkApplyPage.tsx b/src/webapp/pages/bulk-apply/BulkApplyPage.tsx index b4d92b5..aac0a74 100644 --- a/src/webapp/pages/bulk-apply/BulkApplyPage.tsx +++ b/src/webapp/pages/bulk-apply/BulkApplyPage.tsx @@ -29,10 +29,15 @@ export const BulkApplyPage: React.FC = () => { return ( - {dialogProps && } - - ; + + ; ); }; diff --git a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx index 6d1ab37..62702f0 100644 --- a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx @@ -1,6 +1,6 @@ -import { ObjectsTable, TableSelection, TableState } from "@eyeseetea/d2-ui-components"; +import { ObjectsTable, TableSelection, TableState, useSnackbar } from "@eyeseetea/d2-ui-components"; import _ from "lodash"; -import React, { useCallback, useEffect, useState } from "react"; +import React, { useCallback, useEffect, useState, useMemo } from "react"; import { Ref } from "../../../../domain/entities/Ref"; import { MetadataItem } from "../../../../domain/repositories/MetadataRepository"; import i18n from "../../../../locales"; @@ -11,18 +11,23 @@ export const ListDependenciesStep: React.FC = ({ selection: metadata, }: MetadataSharingWizardStepProps) => { const { compositionRoot } = useAppContext(); + const snackbar = useSnackbar(); const [metadataDependencies, setMetadataDependencies] = useState([]); const [isLoading, setIsLoading] = useState(false); const [selection, setSelection] = useState([]); - const columns = [ - { name: "name", text: i18n.t("Name"), sortable: true }, - { name: "id", text: i18n.t("ID"), sortable: true }, - { name: "model", text: i18n.t("Metadata Type"), sortable: false }, - { name: "publicAccess", text: i18n.t("Public Access"), sortable: true }, - { name: "userAccesses", text: i18n.t("Users"), sortable: true }, - { name: "userGroupAccesses", text: i18n.t("User Groups"), sortable: true }, - ]; + const columns = useMemo( + () => [ + { name: "name", text: i18n.t("Name"), sortable: true }, + { name: "id", text: i18n.t("ID"), sortable: true }, + { name: "model", text: i18n.t("Metadata Type"), sortable: false }, + + { name: "publicAccess", text: i18n.t("Public Access"), sortable: true }, + { name: "userAccesses", text: i18n.t("Users"), sortable: true }, + { name: "userGroupAccesses", text: i18n.t("User Groups"), sortable: true }, + ], + [] + ); const initialState = { sorting: { @@ -36,25 +41,25 @@ export const ListDependenciesStep: React.FC = ({ }; useEffect(() => { - const getMetadataDependencies = async () => { - setIsLoading(true); - const { data = {} } = await compositionRoot.metadata - .getDependencies(metadata.map(({ id }) => id)) - .runAsync(); - - const dataWithIdsAndName = Object.entries(data).map(([key, value]) => { - return value.map(item => ({ ...item, model: key })); - }); + setIsLoading(true); + compositionRoot.metadata.getDependencies(metadata.map(({ id }) => id)).run( + data => { + const dataWithIdsAndName = Object.entries(data).map(([key, value]) => { + return value.map(item => ({ ...item, model: key })); + }); + setMetadataDependencies(_.flatten(dataWithIdsAndName)); + setIsLoading(false); + }, + error => snackbar.error(error) + ); + }, [metadata, compositionRoot, snackbar]); - setMetadataDependencies(_.flatten(dataWithIdsAndName)); - setIsLoading(false); - }; - getMetadataDependencies(); - }, [metadata, compositionRoot]); - - const onTableChange = useCallback(({ selection }: TableState) => { - setSelection(selection); - }, []); + const onTableChange = useCallback( + ({ selection }: TableState) => { + setSelection(selection); + }, + [setSelection] + ); return (
diff --git a/src/webapp/pages/bulk-apply/steps/SelectMetadataStep.tsx b/src/webapp/pages/bulk-apply/steps/SelectMetadataStep.tsx index 51d38cf..8c314d5 100644 --- a/src/webapp/pages/bulk-apply/steps/SelectMetadataStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/SelectMetadataStep.tsx @@ -5,7 +5,7 @@ import { ListMetadataResponse, ListOptions, MetadataItem, - MetadataModel + MetadataModel, } from "../../../../domain/repositories/MetadataRepository"; import Dropdown, { DropdownOption } from "../../../components/dropdown/Dropdown"; import { useAppContext } from "../../../contexts/app-context"; @@ -18,7 +18,7 @@ export const SelectMetadataStep: React.FC = ({ const { compositionRoot } = useAppContext(); const snackbar = useSnackbar(); - const [isLoading, setLoading] = useState(false); + const [isLoading, setIsLoading] = useState(false); const [response, setResponse] = useState(initialResponse); const [listOptions, setListOptions] = useState(initialState); @@ -35,7 +35,7 @@ export const SelectMetadataStep: React.FC = ({ ); useEffect(() => { - setLoading(true); + setIsLoading(true); compositionRoot.metadata.list(listOptions).run( data => { @@ -45,7 +45,7 @@ export const SelectMetadataStep: React.FC = ({ })); setResponse({ objects: rows, pager: data.pager }); - setLoading(false); + setIsLoading(false); }, error => snackbar.error(error) ); From d96e7c69c9d1f5337043124c4580522fe13afe59 Mon Sep 17 00:00:00 2001 From: Jocelyn Dunkley Date: Wed, 1 Sep 2021 07:47:31 +0200 Subject: [PATCH 18/50] revert env --- .env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env b/.env index b44ae71..e99a73e 100644 --- a/.env +++ b/.env @@ -1,7 +1,7 @@ BROWSER=false PORT=8081 SKIP_PREFLIGHT_CHECK=true -REACT_APP_DHIS2_BASE_URL=https://dev.eyeseetea.com/who-dev-234 +REACT_APP_DHIS2_BASE_URL=https://dev.eyeseetea.com/play CYPRESS_DHIS2_AUTH='admin:district' CYPRESS_EXTERNAL_API="https://dev.eyeseetea.com/play" From e529db39f565d2dfa4a6fee3ec421357cd9a6292 Mon Sep 17 00:00:00 2001 From: Jocelyn Dunkley Date: Thu, 2 Sep 2021 09:25:19 +0200 Subject: [PATCH 19/50] adding strategy toggle/switch in access step --- .env | 2 +- src/webapp/pages/bulk-apply/BulkApplyPage.tsx | 1 - .../pages/bulk-apply/steps/AccessStep.tsx | 21 +++++++++++++++++-- 3 files changed, 20 insertions(+), 4 deletions(-) diff --git a/.env b/.env index e99a73e..b44ae71 100644 --- a/.env +++ b/.env @@ -1,7 +1,7 @@ BROWSER=false PORT=8081 SKIP_PREFLIGHT_CHECK=true -REACT_APP_DHIS2_BASE_URL=https://dev.eyeseetea.com/play +REACT_APP_DHIS2_BASE_URL=https://dev.eyeseetea.com/who-dev-234 CYPRESS_DHIS2_AUTH='admin:district' CYPRESS_EXTERNAL_API="https://dev.eyeseetea.com/play" diff --git a/src/webapp/pages/bulk-apply/BulkApplyPage.tsx b/src/webapp/pages/bulk-apply/BulkApplyPage.tsx index aac0a74..da6ee24 100644 --- a/src/webapp/pages/bulk-apply/BulkApplyPage.tsx +++ b/src/webapp/pages/bulk-apply/BulkApplyPage.tsx @@ -37,7 +37,6 @@ export const BulkApplyPage: React.FC = () => { sharingSettings={sharingSettings} changeSharingSettings={setSharingSettings} /> - ; ); }; diff --git a/src/webapp/pages/bulk-apply/steps/AccessStep.tsx b/src/webapp/pages/bulk-apply/steps/AccessStep.tsx index b024116..cdf66c3 100644 --- a/src/webapp/pages/bulk-apply/steps/AccessStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/AccessStep.tsx @@ -1,20 +1,23 @@ import { ShareUpdate, Sharing, SharingRule } from "@eyeseetea/d2-ui-components"; -import React, { useCallback } from "react"; +import React, { useCallback, useState } from "react"; import { SharingSetting } from "../../../../domain/entities/SharedObject"; import { useAppContext } from "../../../contexts/app-context"; import { MetadataSharingWizardStepProps } from "../SharingWizardSteps"; +import { Switch, FormControlLabel } from "@material-ui/core"; +import i18n from "@dhis2/d2-i18n"; export const AccessStep: React.FC = ({ sharingSettings, changeSharingSettings, }: MetadataSharingWizardStepProps) => { const { compositionRoot } = useAppContext(); + const [updateStrategy, setUpdateStrategy] = useState("Replace"); const search = useCallback( (query: string) => compositionRoot.instance.searchUsers(query).toPromise(), [compositionRoot] ); - + const label = i18n.t("Update strategy:") + " "+i18n.t(updateStrategy) const setModuleSharing = useCallback( async ({ publicAccess, userAccesses, userGroupAccesses }: ShareUpdate) => { changeSharingSettings(metadata => ({ @@ -43,6 +46,20 @@ export const AccessStep: React.FC = ({ }, }} /> +

Advanced options

+ + setUpdateStrategy(strategy => strategy === "Merge" ? "Replace" : "Merge") + } + color="primary" + /> + } + label={label} + /> ); }; From d17959fa3cb9127e597b07c72fb4c95944169f59 Mon Sep 17 00:00:00 2001 From: Jocelyn Dunkley Date: Sun, 5 Sep 2021 15:48:05 +0300 Subject: [PATCH 20/50] added exclude metadata and started a little on summary logic --- i18n/en.pot | 7 ++-- i18n/es.po | 5 ++- src/CompositionRoot.ts | 2 ++ .../repositories/MetadataD2ApiRepository.ts | 6 +++- src/domain/repositories/MetadataRepository.ts | 2 ++ .../SaveMetadataSharingSettingsUseCase.ts | 12 +++++++ src/webapp/pages/bulk-apply/BulkApplyPage.tsx | 6 ++++ .../pages/bulk-apply/SharingWizardSteps.ts | 4 +++ .../pages/bulk-apply/steps/AccessStep.tsx | 26 +++++++------- .../bulk-apply/steps/ListDependenciesStep.tsx | 29 ++++++++++++--- .../bulk-apply/steps/SummaryApplyStep.tsx | 35 +++++++++++++++++-- 11 files changed, 108 insertions(+), 26 deletions(-) create mode 100644 src/domain/usecases/SaveMetadataSharingSettingsUseCase.ts diff --git a/i18n/en.pot b/i18n/en.pot index c4a02f3..b62ed78 100644 --- a/i18n/en.pot +++ b/i18n/en.pot @@ -5,8 +5,8 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -"POT-Creation-Date: 2021-08-27T08:28:36.728Z\n" -"PO-Revision-Date: 2021-08-27T08:28:36.728Z\n" +"POT-Creation-Date: 2021-09-02T14:46:58.729Z\n" +"PO-Revision-Date: 2021-09-02T14:46:58.729Z\n" msgid "Add" msgstr "" @@ -74,6 +74,9 @@ msgstr "" msgid "User Groups" msgstr "" +msgid "Exclude Metadata" +msgstr "" + msgid "Metadata type" msgstr "" diff --git a/i18n/es.po b/i18n/es.po index 5103d06..a09918a 100644 --- a/i18n/es.po +++ b/i18n/es.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: i18next-conv\n" -"POT-Creation-Date: 2021-08-27T08:28:36.728Z\n" +"POT-Creation-Date: 2021-09-02T14:46:58.729Z\n" "PO-Revision-Date: 2018-10-25T09:02:35.143Z\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -74,6 +74,9 @@ msgstr "" msgid "User Groups" msgstr "" +msgid "Exclude Metadata" +msgstr "" + msgid "Metadata type" msgstr "" diff --git a/src/CompositionRoot.ts b/src/CompositionRoot.ts index 896208c..2bbb84c 100644 --- a/src/CompositionRoot.ts +++ b/src/CompositionRoot.ts @@ -6,6 +6,7 @@ import { GetCurrentUserUseCase } from "./domain/usecases/GetCurrentUserUseCase"; import { GetInstanceVersionUseCase } from "./domain/usecases/GetInstanceVersionUseCase"; import { GetMetadataDependenciesUseCase } from "./domain/usecases/GetMetadataWithDependenciesUseCase"; import { SearchUsersUseCase } from "./domain/usecases/SearchUsersUseCase"; +import { SaveMetadataSharingSettingsUseCase } from "./domain/usecases/SaveMetadataSharingSettingsUseCase"; export function getCompositionRoot(instance: Instance) { const instanceRepository = new InstanceDefaultRepository(instance); @@ -20,6 +21,7 @@ export function getCompositionRoot(instance: Instance) { metadata: getExecute({ list: new ListMetadataUseCase(metadataRepository), getDependencies: new GetMetadataDependenciesUseCase(metadataRepository), + save: new SaveMetadataSharingSettingsUseCase(metadataRepository) }), }; } diff --git a/src/data/repositories/MetadataD2ApiRepository.ts b/src/data/repositories/MetadataD2ApiRepository.ts index 8e2594e..27c6032 100644 --- a/src/data/repositories/MetadataD2ApiRepository.ts +++ b/src/data/repositories/MetadataD2ApiRepository.ts @@ -6,7 +6,7 @@ import { MetadataPayload, MetadataRepository, } from "../../domain/repositories/MetadataRepository"; -import { D2Api } from "../../types/d2-api"; +import { MetadataResponse, D2Api } from "../../types/d2-api"; import { getD2APiFromInstance } from "../../utils/d2-api"; import { apiToFuture } from "../../utils/futures"; import { Instance } from "../entities/Instance"; @@ -34,6 +34,10 @@ export class MetadataD2ApiRepository implements MetadataRepository { ); } + public save(payload: MetadataPayload): FutureData { + return apiToFuture(this.api.metadata.post(payload)); + } + public getDependencies(ids: string[]): FutureData { return this.getMetadata(ids) .flatMap(payload => { diff --git a/src/domain/repositories/MetadataRepository.ts b/src/domain/repositories/MetadataRepository.ts index da4e5c4..c0a492a 100644 --- a/src/domain/repositories/MetadataRepository.ts +++ b/src/domain/repositories/MetadataRepository.ts @@ -1,8 +1,10 @@ import { FutureData } from "../entities/Future"; +import { MetadataResponse } from "../../types/d2-api"; export interface MetadataRepository { list(options: ListOptions): FutureData; getDependencies(ids: string[]): FutureData; + save(payload: MetadataPayload): FutureData; } export interface ListOptions { diff --git a/src/domain/usecases/SaveMetadataSharingSettingsUseCase.ts b/src/domain/usecases/SaveMetadataSharingSettingsUseCase.ts new file mode 100644 index 0000000..0fa0431 --- /dev/null +++ b/src/domain/usecases/SaveMetadataSharingSettingsUseCase.ts @@ -0,0 +1,12 @@ +import { UseCase } from "../../CompositionRoot"; +import { FutureData } from "../entities/Future"; +import { MetadataPayload, MetadataRepository } from "../repositories/MetadataRepository"; +import { MetadataResponse } from "../../types/d2-api"; + +export class SaveMetadataSharingSettingsUseCase implements UseCase { + constructor(private metadataRepository: MetadataRepository) {} + + public execute(payload: MetadataPayload): FutureData { + return this.metadataRepository.save(payload); + } +} diff --git a/src/webapp/pages/bulk-apply/BulkApplyPage.tsx b/src/webapp/pages/bulk-apply/BulkApplyPage.tsx index da6ee24..4706e9e 100644 --- a/src/webapp/pages/bulk-apply/BulkApplyPage.tsx +++ b/src/webapp/pages/bulk-apply/BulkApplyPage.tsx @@ -13,6 +13,8 @@ export const BulkApplyPage: React.FC = () => { const [dialogProps, updateDialog] = useState(null); const [selection, setSelection] = useState([]); + const [excluded, setExcluded] = useState([]); + const [updateStrategy, setUpdateStrategy] = useState("Replace"); const [sharingSettings, setSharingSettings] = useState(defaultSharedObject); const onCancel = useCallback(() => { @@ -34,6 +36,10 @@ export const BulkApplyPage: React.FC = () => { onCancel={onCancel} changeSelection={setSelection} selection={selection} + setExcluded={setExcluded} + excluded={excluded} + updateStrategy={updateStrategy} + setUpdateStrategy={setUpdateStrategy} sharingSettings={sharingSettings} changeSharingSettings={setSharingSettings} /> diff --git a/src/webapp/pages/bulk-apply/SharingWizardSteps.ts b/src/webapp/pages/bulk-apply/SharingWizardSteps.ts index 5bd1f39..e815350 100644 --- a/src/webapp/pages/bulk-apply/SharingWizardSteps.ts +++ b/src/webapp/pages/bulk-apply/SharingWizardSteps.ts @@ -15,6 +15,10 @@ export interface MetadataSharingWizardStep extends WizardStep { export interface MetadataSharingWizardStepProps { selection: Ref[]; changeSelection: UpdateMethod; + excluded: string[]; + setExcluded: UpdateMethod; + updateStrategy: string; + setUpdateStrategy: UpdateMethod; sharingSettings: SharedObject; changeSharingSettings: UpdateMethod; onCancel: () => void; diff --git a/src/webapp/pages/bulk-apply/steps/AccessStep.tsx b/src/webapp/pages/bulk-apply/steps/AccessStep.tsx index cdf66c3..a44ec05 100644 --- a/src/webapp/pages/bulk-apply/steps/AccessStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/AccessStep.tsx @@ -1,5 +1,5 @@ import { ShareUpdate, Sharing, SharingRule } from "@eyeseetea/d2-ui-components"; -import React, { useCallback, useState } from "react"; +import React, { useCallback } from "react"; import { SharingSetting } from "../../../../domain/entities/SharedObject"; import { useAppContext } from "../../../contexts/app-context"; import { MetadataSharingWizardStepProps } from "../SharingWizardSteps"; @@ -9,15 +9,15 @@ import i18n from "@dhis2/d2-i18n"; export const AccessStep: React.FC = ({ sharingSettings, changeSharingSettings, + updateStrategy, + setUpdateStrategy, }: MetadataSharingWizardStepProps) => { const { compositionRoot } = useAppContext(); - const [updateStrategy, setUpdateStrategy] = useState("Replace"); - const search = useCallback( (query: string) => compositionRoot.instance.searchUsers(query).toPromise(), [compositionRoot] ); - const label = i18n.t("Update strategy:") + " "+i18n.t(updateStrategy) + const label = i18n.t("Update strategy:") + " " + i18n.t(updateStrategy); const setModuleSharing = useCallback( async ({ publicAccess, userAccesses, userGroupAccesses }: ShareUpdate) => { changeSharingSettings(metadata => ({ @@ -48,18 +48,16 @@ export const AccessStep: React.FC = ({ />

Advanced options

- setUpdateStrategy(strategy => strategy === "Merge" ? "Replace" : "Merge") + control={ + setUpdateStrategy(strategy => (strategy === "Merge" ? "Replace" : "Merge"))} + color="primary" + /> } - color="primary" + label={label} /> - } - label={label} - /> ); }; diff --git a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx index 62702f0..3431e9a 100644 --- a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx @@ -1,14 +1,17 @@ -import { ObjectsTable, TableSelection, TableState, useSnackbar } from "@eyeseetea/d2-ui-components"; +import { ObjectsTable, useSnackbar, TableSelection, TableState } from "@eyeseetea/d2-ui-components"; // TableSelection, TableState, import _ from "lodash"; -import React, { useCallback, useEffect, useState, useMemo } from "react"; +import React, { useEffect, useState, useMemo, useCallback } from "react"; //useCallback, import { Ref } from "../../../../domain/entities/Ref"; import { MetadataItem } from "../../../../domain/repositories/MetadataRepository"; import i18n from "../../../../locales"; import { useAppContext } from "../../../contexts/app-context"; import { MetadataSharingWizardStepProps } from "../SharingWizardSteps"; +import NotInterestedIcon from "@material-ui/icons/NotInterested"; export const ListDependenciesStep: React.FC = ({ selection: metadata, + changeSelection: onChange, + setExcluded, }: MetadataSharingWizardStepProps) => { const { compositionRoot } = useAppContext(); const snackbar = useSnackbar(); @@ -47,12 +50,13 @@ export const ListDependenciesStep: React.FC = ({ const dataWithIdsAndName = Object.entries(data).map(([key, value]) => { return value.map(item => ({ ...item, model: key })); }); + onChange(_.flatten(dataWithIdsAndName)); setMetadataDependencies(_.flatten(dataWithIdsAndName)); setIsLoading(false); }, error => snackbar.error(error) ); - }, [metadata, compositionRoot, snackbar]); + }, [onChange, compositionRoot, snackbar]); const onTableChange = useCallback( ({ selection }: TableState) => { @@ -61,17 +65,32 @@ export const ListDependenciesStep: React.FC = ({ [setSelection] ); + const excludeMetadata = (selectedMDs: string[]) => { + setExcluded(metadata => [...new Set(metadata.concat(selectedMDs))]); + }; + + const tableActions = [ + { + name: "exclude", + text: i18n.t("Exclude Metadata"), + multiple: true, + onClick: excludeMetadata, + icon: , + }, + ]; + return (
rows={metadataDependencies} columns={columns} - onChange={onTableChange} sorting={{ field: "displayName", order: "asc" }} initialState={initialState} - selection={selection} forceSelectionColumn={true} loading={isLoading} + actions={tableActions} + onChange={onTableChange} + selection={selection} />
); diff --git a/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx b/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx index 7dd0c54..470a91b 100644 --- a/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx @@ -1,6 +1,35 @@ -import React from "react"; +import React, { useCallback } from "react"; import { MetadataSharingWizardStepProps } from "../SharingWizardSteps"; +//import { useSnackbar } from "@eyeseetea/d2-ui-components"; +import Button from "@material-ui/core/Button"; +//import { useAppContext } from "../../../contexts/app-context"; -export const SummaryApplyStep: React.FC = () => { - return null; +export const SummaryApplyStep: React.FC = ({ + sharingSettings, + updateStrategy, + selection, + excluded, +}: MetadataSharingWizardStepProps) => { + //const { compositionRoot } = useAppContext(); + //const snackbar = useSnackbar(); + + const applySharingSync = useCallback(async () => { + console.log(sharingSettings); + console.log(updateStrategy); + console.log(selection); + console.log(excluded); + const metadataWithOutExcluded = selection.filter(item => excluded.indexOf(item.id) === -1); + console.log(metadataWithOutExcluded); + /*compositionRoot.metadata.save(metadataWithOutExcluded).run( + data => { + console.log(data); + }, + error => snackbar.error(error) + );*/ + }, []); + return ( + + ); }; From 40a18846c9a7b26148ad844e5468ba423bf9d09d Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Wed, 8 Sep 2021 08:42:41 +0200 Subject: [PATCH 21/50] Prettify code --- src/CompositionRoot.ts | 2 +- .../bulk-apply/steps/ListDependenciesStep.tsx | 2 +- .../bulk-apply/steps/SummaryApplyStep.tsx | 28 ++----------------- 3 files changed, 5 insertions(+), 27 deletions(-) diff --git a/src/CompositionRoot.ts b/src/CompositionRoot.ts index 2bbb84c..7919455 100644 --- a/src/CompositionRoot.ts +++ b/src/CompositionRoot.ts @@ -21,7 +21,7 @@ export function getCompositionRoot(instance: Instance) { metadata: getExecute({ list: new ListMetadataUseCase(metadataRepository), getDependencies: new GetMetadataDependenciesUseCase(metadataRepository), - save: new SaveMetadataSharingSettingsUseCase(metadataRepository) + save: new SaveMetadataSharingSettingsUseCase(metadataRepository), }), }; } diff --git a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx index 3431e9a..b6b171c 100644 --- a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx @@ -56,7 +56,7 @@ export const ListDependenciesStep: React.FC = ({ }, error => snackbar.error(error) ); - }, [onChange, compositionRoot, snackbar]); + }, [metadata, onChange, compositionRoot, snackbar]); const onTableChange = useCallback( ({ selection }: TableState) => { diff --git a/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx b/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx index 470a91b..100ba22 100644 --- a/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx @@ -1,32 +1,10 @@ +import Button from "@material-ui/core/Button"; import React, { useCallback } from "react"; import { MetadataSharingWizardStepProps } from "../SharingWizardSteps"; -//import { useSnackbar } from "@eyeseetea/d2-ui-components"; -import Button from "@material-ui/core/Button"; -//import { useAppContext } from "../../../contexts/app-context"; -export const SummaryApplyStep: React.FC = ({ - sharingSettings, - updateStrategy, - selection, - excluded, -}: MetadataSharingWizardStepProps) => { - //const { compositionRoot } = useAppContext(); - //const snackbar = useSnackbar(); +export const SummaryApplyStep: React.FC = () => { + const applySharingSync = useCallback(async () => {}, []); - const applySharingSync = useCallback(async () => { - console.log(sharingSettings); - console.log(updateStrategy); - console.log(selection); - console.log(excluded); - const metadataWithOutExcluded = selection.filter(item => excluded.indexOf(item.id) === -1); - console.log(metadataWithOutExcluded); - /*compositionRoot.metadata.save(metadataWithOutExcluded).run( - data => { - console.log(data); - }, - error => snackbar.error(error) - );*/ - }, []); return ( + + {importResult && setImportResult(undefined)} />} + + + ); }; diff --git a/yarn.lock b/yarn.lock index 04ad8f3..933add8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6094,6 +6094,11 @@ balanced-match@^1.0.0: resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= +base16@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/base16/-/base16-1.0.0.tgz#e297f60d7ec1014a7a971a39ebc8a98c0b681e70" + integrity sha1-4pf2DX7BAUp6lxo568ipjAtoHnA= + base64-js@^1.0.2: version "1.3.1" resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" @@ -7289,6 +7294,13 @@ cronstrue@^1.81.0: resolved "https://registry.yarnpkg.com/cronstrue/-/cronstrue-1.94.0.tgz#d6e545f14daf43a4b4b00b04614ab9ac637174b7" integrity sha512-DW5OIfJwNGj9R8RCRGsFt0lxp0LKUl6BOElhaNAEkswwihbv6s867oKyOVgh/eQt1z90bBpelWMTR5/mGRB9Hw== +cross-fetch@^3.0.4: + version "3.1.4" + resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.4.tgz#9723f3a3a247bf8b89039f3a380a9244e8fa2f39" + integrity sha512-1eAtFWdIubi6T4XPy6ei9iUFoKpUkIF971QLN8lIvvvwueI65+Nw5haMNKUwfJxabqlIIDODJKGrQ66gxC0PbQ== + dependencies: + node-fetch "2.6.1" + cross-spawn@7.0.3, cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3: version "7.0.3" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" @@ -9204,6 +9216,18 @@ fb-watchman@^2.0.0: dependencies: bser "2.1.1" +fbemitter@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/fbemitter/-/fbemitter-3.0.0.tgz#00b2a1af5411254aab416cd75f9e6289bee4bff3" + integrity sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw== + dependencies: + fbjs "^3.0.0" + +fbjs-css-vars@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz#216551136ae02fe255932c3ec8775f18e2c078b8" + integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ== + fbjs@^0.8.1: version "0.8.17" resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd" @@ -9217,6 +9241,19 @@ fbjs@^0.8.1: setimmediate "^1.0.5" ua-parser-js "^0.7.18" +fbjs@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-3.0.0.tgz#0907067fb3f57a78f45d95f1eacffcacd623c165" + integrity sha512-dJd4PiDOFuhe7vk4F80Mba83Vr2QuK86FoxtgPmzBqEJahncp+13YCmfoa53KHCo6OnlXLG7eeMWPfB5CrpVKg== + dependencies: + cross-fetch "^3.0.4" + fbjs-css-vars "^1.0.0" + loose-envify "^1.0.0" + object-assign "^4.1.0" + promise "^7.1.1" + setimmediate "^1.0.5" + ua-parser-js "^0.7.18" + fd-slicer@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" @@ -9392,6 +9429,14 @@ fluture@14.0.0: sanctuary-show "^2.0.0" sanctuary-type-identifiers "^3.0.0" +flux@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/flux/-/flux-4.0.1.tgz#7843502b02841d4aaa534af0b373034a1f75ee5c" + integrity sha512-emk4RCvJ8RzNP2lNpphKnG7r18q8elDYNAPx7xn+bDeOIo9FFfxEfIQ2y6YbQNmnsGD3nH1noxtLE64Puz1bRQ== + dependencies: + fbemitter "^3.0.0" + fbjs "^3.0.0" + follow-redirects@1.5.10: version "1.5.10" resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.5.10.tgz#7b7a9f9aea2fdff36786a94ff643ed07f4ff5e2a" @@ -12483,11 +12528,21 @@ lodash.clonedeep@^4.5.0: resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8= +lodash.curry@^4.0.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.curry/-/lodash.curry-4.1.1.tgz#248e36072ede906501d75966200a86dab8b23170" + integrity sha1-JI42By7ekGUB11lmIAqG2riyMXA= + lodash.debounce@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= +lodash.flow@^3.3.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/lodash.flow/-/lodash.flow-3.5.0.tgz#87bf40292b8cf83e4e8ce1a3ae4209e20071675a" + integrity sha1-h79AKSuM+D5OjOGjrkIJ4gBxZ1o= + lodash.get@^4.4.2: version "4.4.2" resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" @@ -13113,6 +13168,11 @@ no-case@^3.0.3: lower-case "^2.0.1" tslib "^1.10.0" +node-fetch@2.6.1, node-fetch@^2.6.1: + version "2.6.1" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" + integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== + node-fetch@^1.0.1: version "1.7.3" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" @@ -13121,11 +13181,6 @@ node-fetch@^1.0.1: encoding "^0.1.11" is-stream "^1.0.1" -node-fetch@^2.6.1: - version "2.6.1" - resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" - integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== - node-forge@^0.10.0: version "0.10.0" resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz#32dea2afb3e9926f02ee5ce8794902691a676bf3" @@ -14854,6 +14909,11 @@ punycode@^2.1.0, punycode@^2.1.1: resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== +pure-color@^1.2.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/pure-color/-/pure-color-1.3.0.tgz#1fe064fb0ac851f0de61320a8bf796836422f33e" + integrity sha1-H+Bk+wrIUfDeYTIKi/eWg2Qi8z4= + purify-ts-extra-codec@0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/purify-ts-extra-codec/-/purify-ts-extra-codec-0.6.0.tgz#4d06756cbf4d9def5a44bb192f18178726400547" @@ -14966,6 +15026,16 @@ react-app-polyfill@^2.0.0: regenerator-runtime "^0.13.7" whatwg-fetch "^3.4.1" +react-base16-styling@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/react-base16-styling/-/react-base16-styling-0.6.0.tgz#ef2156d66cf4139695c8a167886cb69ea660792c" + integrity sha1-7yFW1mz0E5aVyKFniGy2nqZgeSw= + dependencies: + base16 "^1.0.0" + lodash.curry "^4.0.1" + lodash.flow "^3.3.0" + pure-color "^1.2.0" + react-dev-utils@^11.0.3: version "11.0.4" resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-11.0.4.tgz#a7ccb60257a1ca2e0efe7a83e38e6700d17aa37a" @@ -15046,6 +15116,21 @@ react-is@^17.0.2: resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== +react-json-view@1.21.3: + version "1.21.3" + resolved "https://registry.yarnpkg.com/react-json-view/-/react-json-view-1.21.3.tgz#f184209ee8f1bf374fb0c41b0813cff54549c475" + integrity sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw== + dependencies: + flux "^4.0.1" + react-base16-styling "^0.6.0" + react-lifecycles-compat "^3.0.4" + react-textarea-autosize "^8.3.2" + +react-lifecycles-compat@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" + integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== + react-linkify@1.0.0-alpha: version "1.0.0-alpha" resolved "https://registry.yarnpkg.com/react-linkify/-/react-linkify-1.0.0-alpha.tgz#b391c7b88e3443752fafe76a95ca4434e82e70d5" @@ -15189,6 +15274,15 @@ react-test-renderer@17.0.2: react-shallow-renderer "^16.13.1" scheduler "^0.20.2" +react-textarea-autosize@^8.3.2: + version "8.3.3" + resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-8.3.3.tgz#f70913945369da453fd554c168f6baacd1fa04d8" + integrity sha512-2XlHXK2TDxS6vbQaoPbMOfQ8GK7+irc2fVK6QFIcC8GOnH3zI/v481n+j1L0WaPVvKxwesnY93fEfH++sus2rQ== + dependencies: + "@babel/runtime" "^7.10.2" + use-composed-ref "^1.0.0" + use-latest "^1.0.0" + react-transition-group@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-1.2.1.tgz#e11f72b257f921b213229a774df46612346c7ca6" @@ -17186,6 +17280,11 @@ tryer@^1.0.1: resolved "https://registry.yarnpkg.com/tryer/-/tryer-1.0.1.tgz#f2c85406800b9b0f74c9f7465b81eaad241252f8" integrity sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA== +ts-essentials@^2.0.3: + version "2.0.12" + resolved "https://registry.yarnpkg.com/ts-essentials/-/ts-essentials-2.0.12.tgz#c9303f3d74f75fa7528c3d49b80e089ab09d8745" + integrity sha512-3IVX4nI6B5cc31/GFFE+i8ey/N2eA0CZDbo6n0yrz0zDX8ZJ8djmU1p+XRz7G3is0F3bB3pu2pAroFdAWQKU3w== + ts-jest@27.0.5: version "27.0.5" resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-27.0.5.tgz#0b0604e2271167ec43c12a69770f0bb65ad1b750" @@ -17561,6 +17660,25 @@ url@^0.11.0: punycode "1.3.2" querystring "0.2.0" +use-composed-ref@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/use-composed-ref/-/use-composed-ref-1.1.0.tgz#9220e4e94a97b7b02d7d27eaeab0b37034438bbc" + integrity sha512-my1lNHGWsSDAhhVAT4MKs6IjBUtG6ZG11uUqexPH9PptiIZDQOzaF4f5tEbJ2+7qvNbtXNBbU3SfmN+fXlWDhg== + dependencies: + ts-essentials "^2.0.3" + +use-isomorphic-layout-effect@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.1.tgz#7bb6589170cd2987a152042f9084f9effb75c225" + integrity sha512-L7Evj8FGcwo/wpbv/qvSfrkHFtOpCzvM5yl2KVyDJoylVuSvzphiiasmjgQPttIGBAy2WKiBNR98q8w7PiNgKQ== + +use-latest@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/use-latest/-/use-latest-1.2.0.tgz#a44f6572b8288e0972ec411bdd0840ada366f232" + integrity sha512-d2TEuG6nSLKQLAfW3By8mKr8HurOlTkul0sOpxbClIv4SQ4iOd7BYr7VIzdbktUCnv7dua/60xzd8igMU6jmyw== + dependencies: + use-isomorphic-layout-effect "^1.0.0" + use@^3.1.0: version "3.1.1" resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" From b36bf73b717fd1d0f3c524be9e3947ba5d371daf Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Wed, 8 Sep 2021 11:53:42 +0200 Subject: [PATCH 31/50] Remove old comments --- src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx index bb5c97b..9dd79bb 100644 --- a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx @@ -6,11 +6,11 @@ import { TableSelection, TableState, useSnackbar, -} from "@eyeseetea/d2-ui-components"; // TableSelection, TableState, +} from "@eyeseetea/d2-ui-components"; import AddCircleOutlineIcon from "@material-ui/icons/AddCircleOutline"; import RemoveCircleOutlineIcon from "@material-ui/icons/RemoveCircleOutline"; import _ from "lodash"; -import React, { useCallback, useEffect, useMemo, useState } from "react"; //useCallback, +import React, { useCallback, useEffect, useMemo, useState } from "react"; import { MetadataItem } from "../../../../domain/entities/MetadataItem"; import { Ref } from "../../../../domain/entities/Ref"; import i18n from "../../../../locales"; From c19d266c1a2e55e580c50db977b045ab20f3e64f Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Wed, 8 Sep 2021 11:56:54 +0200 Subject: [PATCH 32/50] Clean-up landing page --- src/webapp/pages/landing/LandingPage.tsx | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/webapp/pages/landing/LandingPage.tsx b/src/webapp/pages/landing/LandingPage.tsx index 6ccdb91..67301dd 100644 --- a/src/webapp/pages/landing/LandingPage.tsx +++ b/src/webapp/pages/landing/LandingPage.tsx @@ -12,17 +12,10 @@ export const LandingPage: React.FC = () => { key: "main", children: [ { - name: i18n.t("Bulk apply"), + name: i18n.t("Apply update"), description: i18n.t("Edit sharing settings to data sets, programs and dashboards."), listAction: () => history.push("/apply"), }, - { - name: i18n.t("List depedencies"), - description: i18n.t( - "List the dependencies of a data set, program or dashboard and their sharing settings." - ), - listAction: () => history.push("/list-dependencies"), - }, ], }, { From aaabaa4147ade8f6fecc8bfa8de8cff53843044a Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Wed, 8 Sep 2021 11:57:07 +0200 Subject: [PATCH 33/50] Update pot files --- i18n/en.pot | 13 ++++--------- i18n/es.po | 11 +++-------- 2 files changed, 7 insertions(+), 17 deletions(-) diff --git a/i18n/en.pot b/i18n/en.pot index 91ed119..a1e4e4f 100644 --- a/i18n/en.pot +++ b/i18n/en.pot @@ -5,8 +5,8 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -"POT-Creation-Date: 2021-09-08T09:20:09.383Z\n" -"PO-Revision-Date: 2021-09-08T09:20:09.383Z\n" +"POT-Creation-Date: 2021-09-08T09:56:59.289Z\n" +"PO-Revision-Date: 2021-09-08T09:56:59.289Z\n" msgid "Unknown model" msgstr "" @@ -152,15 +152,10 @@ msgstr "" msgid "Programs" msgstr "" -msgid "Edit sharing settings to data sets, programs and dashboards." -msgstr "" - -msgid "List depedencies" +msgid "Apply update" msgstr "" -msgid "" -"List the dependencies of a data set, program or dashboard and their sharing " -"settings." +msgid "Edit sharing settings to data sets, programs and dashboards." msgstr "" msgid "Settings" diff --git a/i18n/es.po b/i18n/es.po index 6b7b164..c4bbcec 100644 --- a/i18n/es.po +++ b/i18n/es.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: i18next-conv\n" -"POT-Creation-Date: 2021-09-08T09:20:09.383Z\n" +"POT-Creation-Date: 2021-09-08T09:56:59.289Z\n" "PO-Revision-Date: 2018-10-25T09:02:35.143Z\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -152,15 +152,10 @@ msgstr "" msgid "Programs" msgstr "" -msgid "Edit sharing settings to data sets, programs and dashboards." -msgstr "" - -msgid "List depedencies" +msgid "Apply update" msgstr "" -msgid "" -"List the dependencies of a data set, program or dashboard and their sharing " -"settings." +msgid "Edit sharing settings to data sets, programs and dashboards." msgstr "" msgid "Settings" From 221a75c60d62fba339c40641beb80d6147152625 Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Wed, 8 Sep 2021 12:35:16 +0200 Subject: [PATCH 34/50] Split use cases --- src/CompositionRoot.ts | 2 ++ .../metadata/ApplySharingSettingsUseCase.ts | 6 ++---- .../usecases/metadata/ImportMetadataUseCase.ts | 13 +++++++++++++ .../pages/bulk-apply/steps/SummaryApplyStep.tsx | 11 +++++++---- 4 files changed, 24 insertions(+), 8 deletions(-) create mode 100644 src/domain/usecases/metadata/ImportMetadataUseCase.ts diff --git a/src/CompositionRoot.ts b/src/CompositionRoot.ts index f92ed04..9122c1f 100644 --- a/src/CompositionRoot.ts +++ b/src/CompositionRoot.ts @@ -6,6 +6,7 @@ import { GetInstanceVersionUseCase } from "./domain/usecases/instance/GetInstanc import { SearchUsersUseCase } from "./domain/usecases/instance/SearchUsersUseCase"; import { ApplySharingSettingsUseCase } from "./domain/usecases/metadata/ApplySharingSettingsUseCase"; import { GetModelNameUseCase } from "./domain/usecases/metadata/GetModelNameUseCase"; +import { ImportMetadataUseCase } from "./domain/usecases/metadata/ImportMetadataUseCase"; import { ListDependenciesUseCase } from "./domain/usecases/metadata/ListDependenciesUseCase"; import { ListMetadataUseCase } from "./domain/usecases/metadata/ListMetadataUseCase"; @@ -24,6 +25,7 @@ export function getCompositionRoot(instance: Instance) { listDependencies: new ListDependenciesUseCase(metadataRepository), applySharingSettings: new ApplySharingSettingsUseCase(metadataRepository), getModelName: new GetModelNameUseCase(metadataRepository), + import: new ImportMetadataUseCase(metadataRepository), }), }; } diff --git a/src/domain/usecases/metadata/ApplySharingSettingsUseCase.ts b/src/domain/usecases/metadata/ApplySharingSettingsUseCase.ts index fffbf5f..b95ed4b 100644 --- a/src/domain/usecases/metadata/ApplySharingSettingsUseCase.ts +++ b/src/domain/usecases/metadata/ApplySharingSettingsUseCase.ts @@ -1,7 +1,6 @@ import _ from "lodash"; import { UseCase } from "../../../CompositionRoot"; import { FutureData } from "../../entities/Future"; -import { ImportResult } from "../../entities/ImportResult"; import { isValidMetadataItem, MetadataItem, MetadataPayload } from "../../entities/MetadataItem"; import { buildAccessString, getAccessFromString, SharedObject, SharingSetting } from "../../entities/SharedObject"; import { SharingUpdate } from "../../entities/SharingUpdate"; @@ -10,14 +9,13 @@ import { MetadataRepository } from "../../repositories/MetadataRepository"; export class ApplySharingSettingsUseCase implements UseCase { constructor(private metadataRepository: MetadataRepository) {} - public execute(update: SharingUpdate): FutureData { + public execute(update: SharingUpdate): FutureData { const { baseElements, excludedDependencies, sharings, replaceExistingSharings } = update; return this.metadataRepository .getDependencies(baseElements) .map(payload => this.cleanPayload(payload, excludedDependencies)) - .map(payload => this.sharePayload(payload, sharings, replaceExistingSharings)) - .flatMap(payload => this.metadataRepository.save(payload)); + .map(payload => this.sharePayload(payload, sharings, replaceExistingSharings)); } private cleanPayload(payload: Record, excludedDependencies: string[]): MetadataPayload { diff --git a/src/domain/usecases/metadata/ImportMetadataUseCase.ts b/src/domain/usecases/metadata/ImportMetadataUseCase.ts new file mode 100644 index 0000000..b278c90 --- /dev/null +++ b/src/domain/usecases/metadata/ImportMetadataUseCase.ts @@ -0,0 +1,13 @@ +import { UseCase } from "../../../CompositionRoot"; +import { FutureData } from "../../entities/Future"; +import { ImportResult } from "../../entities/ImportResult"; +import { MetadataPayload } from "../../entities/MetadataItem"; +import { MetadataRepository } from "../../repositories/MetadataRepository"; + +export class ImportMetadataUseCase implements UseCase { + constructor(private metadataRepository: MetadataRepository) {} + + public execute(payload: MetadataPayload): FutureData { + return this.metadataRepository.save(payload); + } +} diff --git a/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx b/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx index 26df2e0..063b04e 100644 --- a/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx @@ -13,10 +13,13 @@ export const SummaryApplyStep: React.FC = ({ bui const [importResult, setImportResult] = useState(); const applySharingSync = useCallback(() => { - compositionRoot.metadata.applySharingSettings(builder).run( - result => setImportResult(result), - error => snackbar.error(error) - ); + compositionRoot.metadata + .applySharingSettings(builder) + .flatMap(payload => compositionRoot.metadata.import(payload)) + .run( + result => setImportResult(result), + error => snackbar.error(error) + ); }, [builder, compositionRoot, snackbar]); return ( From a8d4d2b6ead89f78e8500784986efbb8ff692b36 Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Mon, 20 Sep 2021 09:09:40 +0200 Subject: [PATCH 35/50] Add test example --- .../ApplySharingSettingsUseCase.spec.ts | 63 +++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts diff --git a/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts new file mode 100644 index 0000000..7dba89f --- /dev/null +++ b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts @@ -0,0 +1,63 @@ +import { Future, FutureData } from "../../../entities/Future"; +import { ImportResult } from "../../../entities/ImportResult"; +import { MetadataPayload } from "../../../entities/MetadataItem"; +import { ListMetadataResponse, ListOptions, MetadataRepository } from "../../../repositories/MetadataRepository"; +import { ApplySharingSettingsUseCase } from "../ApplySharingSettingsUseCase"; + +describe("Apply sharing settings use case", () => { + let metadataRepository: MetadataRepository; + + beforeEach(() => { + metadataRepository = new MockMetadataRepository(); + }); + + // TODO: Add more tests until we have a complete set of use cases + it("should apply sharing settings", async () => { + const usecase = new ApplySharingSettingsUseCase(metadataRepository); + const results = usecase + .execute({ + baseElements: [], + excludedDependencies: [], + sharings: { + publicAccess: "--------", + userAccesses: [], + userGroupAccesses: [], + }, + replaceExistingSharings: false, + }) + .toPromise(); + + // TODO: Validate results, check that sharing settings have been applied + expect(results).toBeDefined(); + }); +}); + +class MockMetadataRepository implements MetadataRepository { + getDependencies(_ids: string[]): FutureData { + // TODO: Include a medium-sized complex payload + return Future.success({}); + } + + list(_options: ListOptions): FutureData { + throw new Error("Method not implemented."); + } + + save(_payload: MetadataPayload): FutureData { + throw new Error("Method not implemented."); + } + + getModelName(_model: string): string { + throw new Error("Method not implemented."); + } + + isShareable(_model: string): boolean { + throw new Error("Method not implemented."); + } + + isDataShareable(_model: string): boolean { + throw new Error("Method not implemented."); + } +} + +export { }; + From 48bfc035dd22988760a6745b625ef8abadd3258d Mon Sep 17 00:00:00 2001 From: Jocelyn Dunkley Date: Wed, 22 Sep 2021 11:54:01 +0200 Subject: [PATCH 36/50] afirst test with hard coded values, trying to add it to a loop but having issues --- .env | 2 +- package.json | 2 +- .../repositories/MetadataD2ApiRepository.ts | 2 +- .../metadata/ApplySharingSettingsUseCase.ts | 7 +- .../ApplySharingSettingsUseCase.spec.ts | 70 +- .../metadata/__tests__/dashboardProgram1.ts | 6090 +++++++++++++++++ .../bulk-apply/steps/SummaryApplyStep.tsx | 1 - 7 files changed, 6143 insertions(+), 31 deletions(-) create mode 100644 src/domain/usecases/metadata/__tests__/dashboardProgram1.ts diff --git a/.env b/.env index e99a73e..b44ae71 100644 --- a/.env +++ b/.env @@ -1,7 +1,7 @@ BROWSER=false PORT=8081 SKIP_PREFLIGHT_CHECK=true -REACT_APP_DHIS2_BASE_URL=https://dev.eyeseetea.com/play +REACT_APP_DHIS2_BASE_URL=https://dev.eyeseetea.com/who-dev-234 CYPRESS_DHIS2_AUTH='admin:district' CYPRESS_EXTERNAL_API="https://dev.eyeseetea.com/play" diff --git a/package.json b/package.json index 04848e3..5bc631f 100644 --- a/package.json +++ b/package.json @@ -93,7 +93,7 @@ "prebuild": "yarn localize && yarn test", "build-folder": "rm -rf build/ && d2-manifest package.json manifest.webapp && react-scripts build && yarn run manifest && cp -r i18n icon.png build", "build": "yarn build-folder && rm -f $npm_package_name.zip && cd build && zip --quiet -r ../$npm_package_name.zip *", - "test": "jest --passWithNoTests", + "test": "jest", "lint": "eslint src cypress --ext .js,.jsx,.ts,.tsx", "eject": "react-scripts eject", "prettify": "prettier \"./**/*.{js,jsx,json,css,ts,tsx}\" --write", diff --git a/src/data/repositories/MetadataD2ApiRepository.ts b/src/data/repositories/MetadataD2ApiRepository.ts index 40cb4e9..0efdda4 100644 --- a/src/data/repositories/MetadataD2ApiRepository.ts +++ b/src/data/repositories/MetadataD2ApiRepository.ts @@ -76,7 +76,7 @@ export class MetadataD2ApiRepository implements MetadataRepository { } } -function mergePayloads(payloads: MetadataPayload[]): MetadataPayload { +export function mergePayloads(payloads: MetadataPayload[]): MetadataPayload { return _.reduce( payloads, (result, payload) => { diff --git a/src/domain/usecases/metadata/ApplySharingSettingsUseCase.ts b/src/domain/usecases/metadata/ApplySharingSettingsUseCase.ts index b95ed4b..c1403d4 100644 --- a/src/domain/usecases/metadata/ApplySharingSettingsUseCase.ts +++ b/src/domain/usecases/metadata/ApplySharingSettingsUseCase.ts @@ -11,11 +11,10 @@ export class ApplySharingSettingsUseCase implements UseCase { public execute(update: SharingUpdate): FutureData { const { baseElements, excludedDependencies, sharings, replaceExistingSharings } = update; - return this.metadataRepository - .getDependencies(baseElements) - .map(payload => this.cleanPayload(payload, excludedDependencies)) - .map(payload => this.sharePayload(payload, sharings, replaceExistingSharings)); + .getDependencies(baseElements) + .map(payload => this.cleanPayload(payload, excludedDependencies)) + .map(payload => this.sharePayload(payload, sharings, replaceExistingSharings)); } private cleanPayload(payload: Record, excludedDependencies: string[]): MetadataPayload { diff --git a/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts index 7dba89f..eff6e95 100644 --- a/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts +++ b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts @@ -2,40 +2,62 @@ import { Future, FutureData } from "../../../entities/Future"; import { ImportResult } from "../../../entities/ImportResult"; import { MetadataPayload } from "../../../entities/MetadataItem"; import { ListMetadataResponse, ListOptions, MetadataRepository } from "../../../repositories/MetadataRepository"; +import { mergePayloads } from "../../../../data/repositories/MetadataD2ApiRepository"; +import { dashboardProgram1 } from "./dashboardProgram1"; import { ApplySharingSettingsUseCase } from "../ApplySharingSettingsUseCase"; +import _ from "lodash"; describe("Apply sharing settings use case", () => { let metadataRepository: MetadataRepository; - + let usecase: ApplySharingSettingsUseCase; + const tests = [ + { ids: ["dashboard1", "dashboard2", "program1", "program2"], strategy: "merge", users: [{id: 's5EVHUwoFKu', access: 'rw------', name: 'Alexis Rico'}], userGroups: [], publicAccess: "--------" }, + ]; beforeEach(() => { metadataRepository = new MockMetadataRepository(); - }); + usecase = new ApplySharingSettingsUseCase(metadataRepository); - // TODO: Add more tests until we have a complete set of use cases - it("should apply sharing settings", async () => { - const usecase = new ApplySharingSettingsUseCase(metadataRepository); - const results = usecase - .execute({ - baseElements: [], - excludedDependencies: [], - sharings: { - publicAccess: "--------", - userAccesses: [], - userGroupAccesses: [], - }, - replaceExistingSharings: false, - }) - .toPromise(); - - // TODO: Validate results, check that sharing settings have been applied - expect(results).toBeDefined(); }); + for (const test in tests) { + // TODO: Add more tests until we have a complete set of use cases + it('dashboards and programs with users and no public access', async () => { + usecase + .execute({ + baseElements: ["dashboard1", "dashboard2", "program1", "program2"], + excludedDependencies: [], + sharings: { + publicAccess: "--------", //test.publicAccess + userAccesses: [{id: 's5EVHUwoFKu', access: 'rw------', name: 'Alexis Rico'}], + userGroupAccesses: [], + }, + replaceExistingSharings: false, + }) + .run(results => { + // TODO: Validate results, check that sharing settings have been applied + const resultsValue = _.values(results) + const allMdTypesTogether = [...(_.flatten(resultsValue))]; + allMdTypesTogether.forEach(arr => { + expect(arr.publicAccess).toBe("--------"); + expect(arr.userAccesses).toContainEqual({id: 's5EVHUwoFKu', access: 'rw------', name: 'Alexis Rico'}); + + }) + }, error => console.log(error)); + }) + } }); class MockMetadataRepository implements MetadataRepository { getDependencies(_ids: string[]): FutureData { // TODO: Include a medium-sized complex payload - return Future.success({}); + const dictionary:Record = { + dashboard1: dashboardProgram1[0], + dashboard2: dashboardProgram1[1], + program1: dashboardProgram1[2], + program2: dashboardProgram1[3] + } + + const ff = mergePayloads(_ids.map(id => dictionary[id])) + return Future.success(ff); } list(_options: ListOptions): FutureData { @@ -51,11 +73,13 @@ class MockMetadataRepository implements MetadataRepository { } isShareable(_model: string): boolean { - throw new Error("Method not implemented."); + return true; + //throw new Error("Method not implemented."); } isDataShareable(_model: string): boolean { - throw new Error("Method not implemented."); + return true; + //throw new Error("Method not implemented."); } } diff --git a/src/domain/usecases/metadata/__tests__/dashboardProgram1.ts b/src/domain/usecases/metadata/__tests__/dashboardProgram1.ts new file mode 100644 index 0000000..dceaced --- /dev/null +++ b/src/domain/usecases/metadata/__tests__/dashboardProgram1.ts @@ -0,0 +1,6090 @@ +export const dashboardProgram1 = [ + { + "date": "2021-09-21T08:57:04.104", + "dashboards": [ + { + "created": "2019-08-07T10:21:04.280", + "lastUpdated": "2021-01-22T10:41:52.766", + "name": "0. Aggregate Metrics Across Facilities", + "id": "oarhBUuQMop", + "publicAccess": "--------", + "description": "This dashboard shows aggregate trends in injury epidemiology and emergency care service delivery across facilities or sub-national regions.", + "externalAccess": false, + "lastUpdatedBy": { + "id": "rjqURGgOShK" + }, + "user": { + "id": "wUd8NBL7fn2" + }, + "favorites": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "x8Tk2UMgpAd", + "displayName": "ETA Ministry Analysis Only - Events", + "id": "x8Tk2UMgpAd" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + }, + { + "access": "rw------", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + } + ], + "dashboardItems": [ + { + "lastUpdated": "2019-10-03T12:41:12.718", + "id": "Tw1C88i7OuQ", + "created": "2019-10-03T12:41:12.664", + "type": "VISUALIZATION", + "externalAccess": false, + "contentCount": 1, + "height": 23, + "shape": "NORMAL", + "interpretationCount": 0, + "width": 29, + "x": 29, + "y": 115, + "interpretationLikeCount": 0, + "favorite": false, + "visualization": { + "id": "MZVcLW1IEC4" + }, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "favorites": [], + "reports": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + }, + { + "lastUpdated": "2019-10-03T12:41:12.718", + "id": "sWpEfbeZTqp", + "created": "2019-10-03T12:41:12.664", + "type": "VISUALIZATION", + "externalAccess": false, + "contentCount": 1, + "height": 23, + "shape": "NORMAL", + "interpretationCount": 0, + "width": 29, + "x": 0, + "y": 115, + "interpretationLikeCount": 0, + "favorite": false, + "visualization": { + "id": "i5KdtSPPR1s" + }, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "favorites": [], + "reports": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + }, + { + "lastUpdated": "2019-10-03T12:41:12.718", + "id": "VqgBa4cQhpd", + "created": "2019-10-03T12:41:12.664", + "type": "VISUALIZATION", + "externalAccess": false, + "contentCount": 1, + "height": 27, + "shape": "NORMAL", + "interpretationCount": 0, + "width": 28, + "x": 29, + "y": 88, + "interpretationLikeCount": 0, + "favorite": false, + "visualization": { + "id": "PeQt42fW5at" + }, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "favorites": [], + "reports": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + }, + { + "lastUpdated": "2019-10-03T12:41:12.718", + "id": "bGHJkc21EIH", + "created": "2019-10-03T12:41:12.664", + "type": "VISUALIZATION", + "externalAccess": false, + "contentCount": 1, + "height": 27, + "shape": "NORMAL", + "interpretationCount": 0, + "width": 29, + "x": 0, + "y": 88, + "interpretationLikeCount": 0, + "favorite": false, + "visualization": { + "id": "WcrODt1Ny6v" + }, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "favorites": [], + "reports": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + }, + { + "lastUpdated": "2019-10-03T12:41:12.718", + "id": "dbgjUHo1so4", + "created": "2019-10-03T12:41:12.664", + "type": "VISUALIZATION", + "externalAccess": false, + "contentCount": 1, + "height": 20, + "shape": "NORMAL", + "interpretationCount": 0, + "width": 28, + "x": 29, + "y": 68, + "interpretationLikeCount": 0, + "favorite": false, + "visualization": { + "id": "y6xD2lJ8ner" + }, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "favorites": [], + "reports": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + }, + { + "lastUpdated": "2019-10-03T12:41:12.719", + "id": "JavyddBFRNx", + "created": "2019-10-03T12:41:12.664", + "type": "VISUALIZATION", + "externalAccess": false, + "contentCount": 1, + "height": 20, + "shape": "NORMAL", + "interpretationCount": 0, + "width": 29, + "x": 0, + "y": 68, + "interpretationLikeCount": 0, + "favorite": false, + "visualization": { + "id": "ze8ogu7SMV0" + }, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "favorites": [], + "reports": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + }, + { + "lastUpdated": "2019-10-03T12:41:12.719", + "id": "eQx20tLPAIy", + "created": "2019-10-03T12:41:12.664", + "type": "REPORTS", + "externalAccess": false, + "contentCount": 1, + "height": 6, + "shape": "NORMAL", + "interpretationCount": 0, + "width": 57, + "x": 0, + "y": 0, + "interpretationLikeCount": 0, + "favorite": false, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "favorites": [], + "reports": [ + { + "id": "U1gvkjiEd7p" + } + ], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + }, + { + "lastUpdated": "2019-10-03T12:41:12.719", + "id": "asWpvfXnH7w", + "created": "2019-10-03T12:41:12.664", + "type": "VISUALIZATION", + "externalAccess": false, + "contentCount": 1, + "height": 20, + "shape": "NORMAL", + "interpretationCount": 0, + "width": 29, + "x": 0, + "y": 48, + "interpretationLikeCount": 0, + "favorite": false, + "visualization": { + "id": "LaBh3UndSn0" + }, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "favorites": [], + "reports": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + }, + { + "lastUpdated": "2019-10-03T12:41:12.719", + "id": "aG7gzSF4ION", + "created": "2019-10-03T12:41:12.664", + "type": "VISUALIZATION", + "externalAccess": false, + "contentCount": 1, + "height": 20, + "shape": "NORMAL", + "interpretationCount": 0, + "width": 28, + "x": 29, + "y": 48, + "interpretationLikeCount": 0, + "favorite": false, + "visualization": { + "id": "D240hYLRs1P" + }, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "favorites": [], + "reports": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + }, + { + "lastUpdated": "2019-10-03T12:41:12.719", + "id": "uyyBLEFAqu9", + "created": "2019-10-03T12:41:12.664", + "type": "VISUALIZATION", + "externalAccess": false, + "contentCount": 1, + "height": 21, + "shape": "NORMAL", + "interpretationCount": 0, + "width": 28, + "x": 29, + "y": 27, + "interpretationLikeCount": 0, + "favorite": false, + "visualization": { + "id": "Kny8eI7Fmc2" + }, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "favorites": [], + "reports": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + }, + { + "lastUpdated": "2019-10-03T12:41:12.719", + "id": "HvVzQ45EQ2c", + "created": "2019-10-03T12:41:12.664", + "type": "VISUALIZATION", + "externalAccess": false, + "contentCount": 1, + "height": 21, + "shape": "NORMAL", + "interpretationCount": 0, + "width": 29, + "x": 0, + "y": 27, + "interpretationLikeCount": 0, + "favorite": false, + "visualization": { + "id": "WaznCszwnj7" + }, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "favorites": [], + "reports": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + }, + { + "lastUpdated": "2019-10-03T12:41:12.719", + "id": "xiNd35sTLg7", + "created": "2019-10-03T12:41:12.664", + "type": "VISUALIZATION", + "externalAccess": false, + "contentCount": 1, + "height": 21, + "shape": "NORMAL", + "interpretationCount": 0, + "width": 28, + "x": 29, + "y": 6, + "interpretationLikeCount": 0, + "favorite": false, + "visualization": { + "id": "sLwsZrhJApo" + }, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "favorites": [], + "reports": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + }, + { + "lastUpdated": "2019-10-03T12:41:12.719", + "id": "KKyBvXXA2eF", + "created": "2019-10-03T12:41:12.664", + "type": "VISUALIZATION", + "externalAccess": false, + "contentCount": 1, + "height": 21, + "shape": "NORMAL", + "interpretationCount": 0, + "width": 29, + "x": 0, + "y": 6, + "interpretationLikeCount": 0, + "favorite": false, + "visualization": { + "id": "p80Lq4yL3YK" + }, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "favorites": [], + "reports": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + } + ], + "translations": [], + "userAccesses": [] + } + ], + "reports": [ + { + "created": "2019-08-22T12:38:07.255", + "lastUpdated": "2021-01-22T10:41:53.070", + "name": "Injury Epidemiology", + "id": "U1gvkjiEd7p", + "designContent": "\n\n\n\n\n
\n
\n
\n
\n \n \n \n \n
\n

Injury Epidemiology

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Organisation Unit:\n
\n
Export to CSV
Report Quarter:\n
\n
Generated on:\n
\n
\n
\n
\n

\n
Click on a column name to change the sort order
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
GroupSub-Group\n \n < 1 yr\n 1 - 4 yr5 - 9 yr10 - 14 yr15 - 19 yr20 - 40 yr40 - 60 yr60 - 80 yr80+ yrUnknownTotal
SexFemale\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Male\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Other\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Major Medical ComorbiditiesMean (Standard Deviation)\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
Injury MechanismRoad traffic incident\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Other transport incident\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Hit by person object\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Falls\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Gun shot\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Stab, cut, and all penetrating than gunshot\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Sexual assault\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Animal Bite or Scratch (not snake)\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Snake bite\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Drowning submersion\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Burns\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Electric lightning injury\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Poisoning or toxic exposure\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Radiation exposure\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Suffocation, choking, hanging\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Explosive blast\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Exposure to forces nature\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Other\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Unknown\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Missing from chart\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
ConditionContusion, haematoma or abrasion\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Laceration/wound (not amputation)\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Sprain or other muscle/tendon injury\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Joint dislocation\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Closed fracture\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Open fracture\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Burn\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Crush injury\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Compartment syndrome\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Focal sensory or motor deficit\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Amputation\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Foreign body\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Pneumothorax haemothorax\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Shock\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Coagulopathy\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Respiratory failure\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Airway obstruction\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Altered mental status\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Complication of pregnancy, trauma induced,\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Other unspecified\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Missing from chart\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Injury Anatomic LocationIntracranial\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Head, Face, Neck\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Chest Wall, Intrathoracic\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Spine (bony and cord)\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Abdominal wall, Abdominopelvic, Bony pelivs, Genitalia\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Upper Extremity\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Lower Extremity\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
External (skin)\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Other, including systemic\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Missing from chart\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Arrival ModeAmbulance\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Private vehicle- car or truck\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Private vehicle- motorised 2- or 3- wheeler 2- 3-wheeler\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Taxi- car or truck\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Taxi- motorised 2- or 3- wheeler\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Public transportation\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Police\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Non-motorised vehicle (bicycle, rickshaw, cart vehicle\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Walking\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Other\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Unknown\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Missing from chart\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Number of Operating Theatre EncountersMean (Standard Deviation)\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
Length of stayMean (Standard Deviation)\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
Patients Referred In-\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Referring Facility LevelCommunity health post/dispensary\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Primary health centre\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
First-level hospital\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Second-level hospital\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Tertiary hospital and higher level\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Missing from chart\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Unknown\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
DispositionAdmitted\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Transferred\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
\n *Percentages are displayed as percent of specific age group aggregations divided by the total registry cases for that age group during the period. It is possible for some values to be entered multiple times for a single patient (i.e. Injury Mechanism,\n Condition, etc), so percentages may have a sum total greater than 100% due to some patients being counted multiple times for different conditions.\n
\n
\n
\n
\n", + "publicAccess": "--------", + "type": "HTML", + "externalAccess": false, + "cacheStrategy": "RESPECT_SYSTEM_SETTING", + "lastUpdatedBy": { + "id": "wUd8NBL7fn2" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": true, + "last12Months": false, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": false, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": false + }, + "reportParams": { + "parentOrganisationUnit": false, + "reportingPeriod": true, + "organisationUnit": true, + "grandParentOrganisationUnit": false + }, + "user": { + "id": "wUd8NBL7fn2" + }, + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "c8sN59GDJpC", + "displayName": "ETA Data Entry - Events", + "id": "c8sN59GDJpC" + }, + { + "access": "r-------", + "userGroupUid": "x8Tk2UMgpAd", + "displayName": "ETA Ministry Analysis Only - Events", + "id": "x8Tk2UMgpAd" + }, + { + "access": "r-------", + "userGroupUid": "J68LnyQufb9", + "displayName": "ETA Facility Analysis Only - Events", + "id": "J68LnyQufb9" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + }, + { + "access": "rw------", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + } + ], + "translations": [], + "userAccesses": [] + } + ], + "visualizations": [ + { + "lastUpdated": "2021-01-22T10:41:52.787", + "id": "LaBh3UndSn0", + "created": "2019-10-04T13:01:27.457", + "name": "Number of Pediatric Patients (<5 and <13), by Facility", + "showData": true, + "publicAccess": "--------", + "userOrganisationUnitChildren": true, + "type": "COLUMN", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "userOrganisationUnit": true, + "rowSubTotals": false, + "displayDensity": "NORMAL", + "regressionType": "NONE", + "cumulativeValues": false, + "completedOnly": false, + "colTotals": false, + "showDimensionLabels": false, + "sortOrder": 0, + "subtitle": "Aggregate, last 12 months and current month", + "fontSize": "NORMAL", + "rangeAxisDecimals": 0, + "topLimit": 0, + "hideEmptyRowItems": "NONE", + "aggregationType": "DEFAULT", + "userOrganisationUnitGrandChildren": false, + "hideSubtitle": false, + "title": "Number of Pediatric Patients by Facility", + "hideLegend": false, + "externalAccess": false, + "percentStackedValues": false, + "colSubTotals": false, + "noSpaceBetweenColumns": true, + "showHierarchy": false, + "rowTotals": false, + "digitGroupSeparator": "SPACE", + "hideTitle": true, + "regression": false, + "skipRounding": false, + "lastUpdatedBy": { + "id": "rjqURGgOShK" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": false, + "last12Months": true, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": true, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": false + }, + "reportingParams": { + "parentOrganisationUnit": false, + "reportingPeriod": false, + "organisationUnit": false, + "grandParentOrganisationUnit": false + }, + "user": { + "id": "rjqURGgOShK" + }, + "dataElementGroupSetDimensions": [], + "translations": [], + "yearlySeries": [], + "filterDimensions": [ + "pe" + ], + "itemOrganisationUnitGroups": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "x8Tk2UMgpAd", + "displayName": "ETA Ministry Analysis Only - Events", + "id": "x8Tk2UMgpAd" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + }, + { + "access": "rw------", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + } + ], + "subscribers": [], + "columnDimensions": [ + "dx" + ], + "optionalAxes": [], + "userAccesses": [], + "favorites": [], + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "AQUofPo1l6y" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "fa6QZ4nhZ5s" + } + } + ], + "categoryOptionGroupSetDimensions": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "periods": [], + "organisationUnits": [], + "categoryDimensions": [], + "rowDimensions": [ + "ou" + ] + }, + { + "lastUpdated": "2021-01-22T10:41:52.801", + "id": "i5KdtSPPR1s", + "created": "2019-10-01T15:56:38.048", + "name": "Quarterly Count of Emergency Unit Procedures", + "showData": false, + "numberType": "VALUE", + "publicAccess": "--------", + "userOrganisationUnitChildren": false, + "legendDisplayStyle": "FILL", + "type": "PIVOT_TABLE", + "hideEmptyColumns": false, + "hideEmptyRows": true, + "userOrganisationUnit": false, + "rowSubTotals": false, + "displayDensity": "NORMAL", + "cumulativeValues": false, + "completedOnly": false, + "colTotals": true, + "showDimensionLabels": false, + "sortOrder": 2, + "fontSize": "NORMAL", + "topLimit": 0, + "aggregationType": "DEFAULT", + "userOrganisationUnitGrandChildren": false, + "hideSubtitle": false, + "description": "", + "title": "EU Procedures, by Quarter", + "hideLegend": false, + "externalAccess": false, + "percentStackedValues": false, + "legendDisplayStrategy": "BY_DATA_ITEM", + "colSubTotals": false, + "noSpaceBetweenColumns": false, + "showHierarchy": false, + "rowTotals": true, + "digitGroupSeparator": "SPACE", + "hideTitle": false, + "regression": false, + "skipRounding": false, + "lastUpdatedBy": { + "id": "rjqURGgOShK" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": true, + "last12Months": false, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": false, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": true + }, + "reportingParams": { + "parentOrganisationUnit": false, + "reportingPeriod": false, + "organisationUnit": false, + "grandParentOrganisationUnit": false + }, + "user": { + "id": "rjqURGgOShK" + }, + "dataElementGroupSetDimensions": [], + "translations": [], + "yearlySeries": [], + "filterDimensions": [], + "itemOrganisationUnitGroups": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "x8Tk2UMgpAd", + "displayName": "ETA Ministry Analysis Only - Events", + "id": "x8Tk2UMgpAd" + }, + { + "access": "rw------", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + } + ], + "subscribers": [], + "columnDimensions": [ + "pe" + ], + "optionalAxes": [], + "userAccesses": [], + "favorites": [], + "dataDimensionItems": [ + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "lZHlad1rM9U" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "hziRVPDODLn" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "I7y4f6rF3ip" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "S4VX7xv3bs9" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "kEZS9lHXbeY" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "gXViC97LApE" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "DPEblEZOc6u" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "i74lXmKESwR" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "yWFCUWwl2B9" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "EVJKVHsW2eL" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "JodeAtujwwJ" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "XwGxfDrfNIp" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "pC56ztPB7jg" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "nAspvO4H4jL" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "UUKGnVKh9SY" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "tVlMlqGKG8z" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "RyeGXWPUskX" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "FoQkURIBXTy" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "laut8Mic6xi" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "kpAyOpSF1lT" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "Itxb3OFRq7F" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "hMmRhBp29Us" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "ukvUpDy7DeS" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "xzX7rErk8yu" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "Uab9E4NQDfI" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "zTsrc5t9Ci9" + } + } + ], + "categoryOptionGroupSetDimensions": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "periods": [], + "organisationUnits": [], + "categoryDimensions": [], + "rowDimensions": [ + "dx" + ] + }, + { + "lastUpdated": "2021-01-22T10:41:52.806", + "id": "sLwsZrhJApo", + "created": "2019-10-09T10:46:34.810", + "name": "Monthly Case Volume", + "showData": true, + "publicAccess": "--------", + "userOrganisationUnitChildren": true, + "type": "LINE", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "userOrganisationUnit": true, + "rowSubTotals": false, + "displayDensity": "NORMAL", + "regressionType": "NONE", + "cumulativeValues": false, + "completedOnly": false, + "colTotals": false, + "showDimensionLabels": false, + "sortOrder": 0, + "subtitle": "by Facility", + "fontSize": "NORMAL", + "topLimit": 0, + "hideEmptyRowItems": "NONE", + "aggregationType": "DEFAULT", + "userOrganisationUnitGrandChildren": false, + "hideSubtitle": false, + "title": "Monthly Case Volume by Facility", + "hideLegend": false, + "externalAccess": false, + "percentStackedValues": false, + "colSubTotals": false, + "noSpaceBetweenColumns": false, + "showHierarchy": false, + "rowTotals": false, + "digitGroupSeparator": "SPACE", + "hideTitle": true, + "regression": false, + "skipRounding": false, + "lastUpdatedBy": { + "id": "rjqURGgOShK" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": false, + "last12Months": true, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": true, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": false + }, + "reportingParams": { + "parentOrganisationUnit": false, + "reportingPeriod": false, + "organisationUnit": false, + "grandParentOrganisationUnit": false + }, + "user": { + "id": "rjqURGgOShK" + }, + "dataElementGroupSetDimensions": [], + "translations": [], + "yearlySeries": [], + "filterDimensions": [ + "dx" + ], + "itemOrganisationUnitGroups": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "x8Tk2UMgpAd", + "displayName": "ETA Ministry Analysis Only - Events", + "id": "x8Tk2UMgpAd" + }, + { + "access": "rw------", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + } + ], + "subscribers": [], + "columnDimensions": [ + "ou" + ], + "optionalAxes": [], + "userAccesses": [], + "favorites": [], + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "SpJHPYCY9i1" + } + } + ], + "categoryOptionGroupSetDimensions": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "periods": [], + "organisationUnits": [], + "categoryDimensions": [], + "rowDimensions": [ + "pe" + ] + }, + { + "lastUpdated": "2021-01-22T10:41:52.753", + "id": "MZVcLW1IEC4", + "created": "2019-10-01T15:57:14.808", + "name": "Quarterly Count of Inpatient Procedures", + "showData": false, + "numberType": "VALUE", + "publicAccess": "--------", + "userOrganisationUnitChildren": false, + "legendDisplayStyle": "FILL", + "type": "PIVOT_TABLE", + "hideEmptyColumns": false, + "hideEmptyRows": true, + "userOrganisationUnit": false, + "rowSubTotals": false, + "displayDensity": "NORMAL", + "regressionType": "NONE", + "cumulativeValues": false, + "completedOnly": false, + "colTotals": true, + "showDimensionLabels": false, + "sortOrder": 2, + "fontSize": "NORMAL", + "topLimit": 0, + "hideEmptyRowItems": "NONE", + "aggregationType": "DEFAULT", + "userOrganisationUnitGrandChildren": false, + "hideSubtitle": false, + "title": "Inpatient Procedures, by Quarter ", + "hideLegend": false, + "externalAccess": false, + "percentStackedValues": false, + "legendDisplayStrategy": "FIXED", + "colSubTotals": false, + "noSpaceBetweenColumns": false, + "showHierarchy": false, + "rowTotals": true, + "digitGroupSeparator": "SPACE", + "hideTitle": false, + "regression": false, + "skipRounding": false, + "lastUpdatedBy": { + "id": "bI1uY3KuAKV" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": true, + "last12Months": false, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": false, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": true + }, + "reportingParams": { + "parentOrganisationUnit": false, + "reportingPeriod": false, + "organisationUnit": false, + "grandParentOrganisationUnit": false + }, + "user": { + "id": "rjqURGgOShK" + }, + "dataElementGroupSetDimensions": [], + "translations": [], + "yearlySeries": [], + "filterDimensions": [], + "itemOrganisationUnitGroups": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "x8Tk2UMgpAd", + "displayName": "ETA Ministry Analysis Only - Events", + "id": "x8Tk2UMgpAd" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + }, + { + "access": "rw------", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + } + ], + "subscribers": [], + "columnDimensions": [ + "pe" + ], + "optionalAxes": [], + "userAccesses": [], + "favorites": [], + "dataDimensionItems": [ + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "VaqcvRuMLsl" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "AukzgvkYnCl" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "GRJkLaRW08x" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "Ia7ohMA8SGJ" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "jWbH4bHTAK4" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "r3gubApP7np" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "VcKSZuC3q40" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "sh11ZNfp1PJ" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "Zd95KTVH2mR" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "IDQQaklTghF" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "S6XHLg4ZsIN" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "TmAzVaNmC63" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "TbuNWprkqWn" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "AlgvLd7Urni" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "rqcP2H58vqe" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "Nq3QXJw0aRt" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "ZRh3BCv71EG" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "TMKkR2LEvYT" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "juYXRtehrfz" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "l9cJyWIS4nA" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "sYZo7YX11yP" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "wmlBimAThiv" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "cg5f7AWJJMW" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "KDHODKMiXf1" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "zOPIzimkiJx" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "GrX0lRzeMbc" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "GeGz6vP4ii1" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "GupSnxG98nq" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "mWVK9CQHPhe" + } + } + ], + "categoryOptionGroupSetDimensions": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "periods": [], + "organisationUnits": [], + "categoryDimensions": [], + "rowDimensions": [ + "dx" + ] + }, + { + "lastUpdated": "2021-01-22T10:41:52.810", + "id": "p80Lq4yL3YK", + "created": "2019-10-04T12:52:42.086", + "name": "Number of Road Traffic Injuries, by Facility", + "showData": true, + "publicAccess": "--------", + "userOrganisationUnitChildren": true, + "type": "COLUMN", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "userOrganisationUnit": true, + "rowSubTotals": false, + "displayDensity": "NORMAL", + "regressionType": "NONE", + "cumulativeValues": false, + "completedOnly": false, + "colTotals": false, + "showDimensionLabels": false, + "sortOrder": 0, + "subtitle": "Aggregate, last 12 months and current month", + "fontSize": "NORMAL", + "topLimit": 0, + "hideEmptyRowItems": "NONE", + "aggregationType": "DEFAULT", + "userOrganisationUnitGrandChildren": false, + "hideSubtitle": false, + "hideLegend": true, + "externalAccess": false, + "percentStackedValues": false, + "colSubTotals": false, + "noSpaceBetweenColumns": false, + "showHierarchy": false, + "rowTotals": false, + "digitGroupSeparator": "SPACE", + "hideTitle": true, + "regression": false, + "skipRounding": false, + "lastUpdatedBy": { + "id": "rjqURGgOShK" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": false, + "last12Months": true, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": true, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": false + }, + "reportingParams": { + "parentOrganisationUnit": false, + "reportingPeriod": false, + "organisationUnit": false, + "grandParentOrganisationUnit": false + }, + "user": { + "id": "rjqURGgOShK" + }, + "dataElementGroupSetDimensions": [], + "translations": [], + "yearlySeries": [], + "filterDimensions": [ + "pe" + ], + "itemOrganisationUnitGroups": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "x8Tk2UMgpAd", + "displayName": "ETA Ministry Analysis Only - Events", + "id": "x8Tk2UMgpAd" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + }, + { + "access": "rw------", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + } + ], + "subscribers": [], + "columnDimensions": [ + "dx" + ], + "optionalAxes": [], + "userAccesses": [], + "favorites": [], + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "MIXqjxF6Qdb" + } + } + ], + "categoryOptionGroupSetDimensions": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "periods": [], + "organisationUnits": [], + "categoryDimensions": [], + "rowDimensions": [ + "ou" + ] + }, + { + "lastUpdated": "2021-01-22T10:41:52.901", + "id": "D240hYLRs1P", + "created": "2019-10-04T13:39:33.596", + "name": "Monthly Number of Severely Injured Patients", + "showData": true, + "publicAccess": "--------", + "userOrganisationUnitChildren": true, + "type": "COLUMN", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "userOrganisationUnit": true, + "rowSubTotals": false, + "displayDensity": "NORMAL", + "rangeAxisLabel": "Number of cases", + "regressionType": "NONE", + "cumulativeValues": false, + "completedOnly": false, + "colTotals": false, + "showDimensionLabels": false, + "sortOrder": 0, + "subtitle": "by Any Scoring Mechanism (GAP, mGAP, RTS, KTS)", + "fontSize": "NORMAL", + "rangeAxisDecimals": 0, + "topLimit": 0, + "hideEmptyRowItems": "NONE", + "aggregationType": "DEFAULT", + "userOrganisationUnitGrandChildren": false, + "hideSubtitle": false, + "description": "By any scoring mechanism", + "hideLegend": false, + "externalAccess": false, + "percentStackedValues": false, + "colSubTotals": false, + "noSpaceBetweenColumns": true, + "showHierarchy": false, + "rowTotals": false, + "digitGroupSeparator": "SPACE", + "hideTitle": true, + "regression": false, + "skipRounding": false, + "lastUpdatedBy": { + "id": "rjqURGgOShK" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": false, + "last12Months": true, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": true, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": false + }, + "reportingParams": { + "parentOrganisationUnit": false, + "reportingPeriod": false, + "organisationUnit": false, + "grandParentOrganisationUnit": false + }, + "user": { + "id": "rjqURGgOShK" + }, + "dataElementGroupSetDimensions": [], + "translations": [], + "yearlySeries": [], + "filterDimensions": [ + "dx" + ], + "itemOrganisationUnitGroups": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "c8sN59GDJpC", + "displayName": "ETA Data Entry - Events", + "id": "c8sN59GDJpC" + }, + { + "access": "r-------", + "userGroupUid": "x8Tk2UMgpAd", + "displayName": "ETA Ministry Analysis Only - Events", + "id": "x8Tk2UMgpAd" + }, + { + "access": "r-------", + "userGroupUid": "J68LnyQufb9", + "displayName": "ETA Facility Analysis Only - Events", + "id": "J68LnyQufb9" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + }, + { + "access": "rw------", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + } + ], + "subscribers": [], + "columnDimensions": [ + "ou" + ], + "optionalAxes": [], + "userAccesses": [], + "favorites": [], + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "lopcRuRTviN" + } + } + ], + "categoryOptionGroupSetDimensions": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "periods": [], + "organisationUnits": [], + "categoryDimensions": [], + "rowDimensions": [ + "pe" + ] + }, + { + "lastUpdated": "2021-01-22T10:41:52.895", + "id": "y6xD2lJ8ner", + "created": "2019-10-04T13:07:25.787", + "name": "Mean Time (Hours) from Injury Event to EU Arrival, by Facility", + "showData": true, + "publicAccess": "--------", + "userOrganisationUnitChildren": true, + "type": "COLUMN", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "userOrganisationUnit": true, + "rowSubTotals": false, + "displayDensity": "NORMAL", + "rangeAxisLabel": "Number of hours", + "regressionType": "NONE", + "cumulativeValues": false, + "completedOnly": false, + "colTotals": false, + "showDimensionLabels": false, + "sortOrder": 0, + "subtitle": "Aggregate, last 12 months and current month", + "fontSize": "NORMAL", + "topLimit": 0, + "hideEmptyRowItems": "NONE", + "aggregationType": "DEFAULT", + "userOrganisationUnitGrandChildren": false, + "hideSubtitle": false, + "title": "Mean Time (Hours) from Injury Event to EU Arrival", + "hideLegend": true, + "externalAccess": false, + "percentStackedValues": false, + "colSubTotals": false, + "noSpaceBetweenColumns": true, + "showHierarchy": false, + "rowTotals": false, + "digitGroupSeparator": "SPACE", + "hideTitle": true, + "regression": false, + "skipRounding": false, + "lastUpdatedBy": { + "id": "rjqURGgOShK" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": false, + "last12Months": true, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": true, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": false + }, + "reportingParams": { + "parentOrganisationUnit": false, + "reportingPeriod": false, + "organisationUnit": false, + "grandParentOrganisationUnit": false + }, + "user": { + "id": "rjqURGgOShK" + }, + "dataElementGroupSetDimensions": [], + "translations": [], + "yearlySeries": [], + "filterDimensions": [ + "pe" + ], + "itemOrganisationUnitGroups": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "x8Tk2UMgpAd", + "displayName": "ETA Ministry Analysis Only - Events", + "id": "x8Tk2UMgpAd" + }, + { + "access": "rw------", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + } + ], + "subscribers": [], + "columnDimensions": [ + "dx" + ], + "optionalAxes": [], + "userAccesses": [], + "favorites": [], + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "HFFlnyM9FOu" + } + } + ], + "categoryOptionGroupSetDimensions": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "periods": [], + "organisationUnits": [], + "categoryDimensions": [], + "rowDimensions": [ + "ou" + ] + }, + { + "lastUpdated": "2021-01-22T10:41:52.913", + "id": "Kny8eI7Fmc2", + "created": "2019-10-04T13:04:17.918", + "name": "Monthly Deaths in Patients with Low Injury Severity Scores, by Facility", + "showData": true, + "publicAccess": "--------", + "userOrganisationUnitChildren": true, + "type": "COLUMN", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "userOrganisationUnit": true, + "rowSubTotals": false, + "displayDensity": "NORMAL", + "regressionType": "NONE", + "cumulativeValues": false, + "completedOnly": false, + "colTotals": false, + "showDimensionLabels": false, + "sortOrder": 0, + "subtitle": "By Any Scoring Mechanism (GAP, mGAP, KTS, RTS)", + "fontSize": "NORMAL", + "topLimit": 0, + "hideEmptyRowItems": "NONE", + "aggregationType": "DEFAULT", + "userOrganisationUnitGrandChildren": false, + "hideSubtitle": false, + "description": "By any scoring mechanism", + "title": "Monthly Deaths in Patients with Low Injury Severity Scores by Facility", + "hideLegend": false, + "externalAccess": false, + "percentStackedValues": false, + "colSubTotals": false, + "noSpaceBetweenColumns": true, + "showHierarchy": false, + "rowTotals": false, + "digitGroupSeparator": "SPACE", + "hideTitle": true, + "regression": false, + "skipRounding": false, + "lastUpdatedBy": { + "id": "rjqURGgOShK" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": false, + "last12Months": true, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": true, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": false + }, + "reportingParams": { + "parentOrganisationUnit": false, + "reportingPeriod": false, + "organisationUnit": false, + "grandParentOrganisationUnit": false + }, + "user": { + "id": "rjqURGgOShK" + }, + "dataElementGroupSetDimensions": [], + "translations": [], + "yearlySeries": [], + "filterDimensions": [ + "dx" + ], + "itemOrganisationUnitGroups": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "x8Tk2UMgpAd", + "displayName": "ETA Ministry Analysis Only - Events", + "id": "x8Tk2UMgpAd" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + }, + { + "access": "rw------", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + } + ], + "subscribers": [], + "columnDimensions": [ + "ou" + ], + "optionalAxes": [], + "userAccesses": [], + "favorites": [], + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "CNEw1Q9FrRC" + } + } + ], + "categoryOptionGroupSetDimensions": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "periods": [], + "organisationUnits": [], + "categoryDimensions": [], + "rowDimensions": [ + "pe" + ] + }, + { + "lastUpdated": "2021-01-22T10:41:52.911", + "id": "PeQt42fW5at", + "created": "2019-10-04T13:08:43.389", + "name": "Emergency Unit Procedures, by Facility", + "showData": true, + "publicAccess": "--------", + "userOrganisationUnitChildren": true, + "type": "BAR", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "userOrganisationUnit": true, + "rowSubTotals": false, + "displayDensity": "NORMAL", + "rangeAxisLabel": "Count of procedures performed", + "regressionType": "NONE", + "cumulativeValues": false, + "completedOnly": false, + "colTotals": false, + "showDimensionLabels": false, + "sortOrder": 1, + "subtitle": "Aggregate, last 12 months and current month", + "fontSize": "NORMAL", + "rangeAxisDecimals": 0, + "topLimit": 0, + "hideEmptyRowItems": "ALL", + "aggregationType": "DEFAULT", + "userOrganisationUnitGrandChildren": false, + "hideSubtitle": false, + "description": "", + "title": "EU Procedures Performed by Facility", + "hideLegend": false, + "externalAccess": false, + "percentStackedValues": false, + "colSubTotals": false, + "noSpaceBetweenColumns": true, + "showHierarchy": false, + "rowTotals": false, + "digitGroupSeparator": "SPACE", + "hideTitle": true, + "regression": false, + "skipRounding": false, + "lastUpdatedBy": { + "id": "rjqURGgOShK" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": false, + "last12Months": true, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": true, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": false + }, + "reportingParams": { + "parentOrganisationUnit": false, + "reportingPeriod": false, + "organisationUnit": false, + "grandParentOrganisationUnit": false + }, + "user": { + "id": "rjqURGgOShK" + }, + "dataElementGroupSetDimensions": [], + "translations": [], + "yearlySeries": [], + "filterDimensions": [ + "pe" + ], + "itemOrganisationUnitGroups": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "x8Tk2UMgpAd", + "displayName": "ETA Ministry Analysis Only - Events", + "id": "x8Tk2UMgpAd" + }, + { + "access": "rw------", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + } + ], + "subscribers": [], + "columnDimensions": [ + "ou" + ], + "optionalAxes": [], + "userAccesses": [], + "favorites": [], + "dataDimensionItems": [ + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "lZHlad1rM9U" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "hziRVPDODLn" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "I7y4f6rF3ip" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "S4VX7xv3bs9" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "kEZS9lHXbeY" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "gXViC97LApE" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "DPEblEZOc6u" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "i74lXmKESwR" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "yWFCUWwl2B9" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "EVJKVHsW2eL" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "JodeAtujwwJ" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "XwGxfDrfNIp" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "pC56ztPB7jg" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "nAspvO4H4jL" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "UUKGnVKh9SY" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "tVlMlqGKG8z" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "RyeGXWPUskX" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "FoQkURIBXTy" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "laut8Mic6xi" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "kpAyOpSF1lT" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "Itxb3OFRq7F" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "hMmRhBp29Us" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "ukvUpDy7DeS" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "xzX7rErk8yu" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "Uab9E4NQDfI" + } + }, + { + "dataDimensionItemType": "PROGRAM_INDICATOR", + "programIndicator": { + "id": "zTsrc5t9Ci9" + } + } + ], + "categoryOptionGroupSetDimensions": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "periods": [], + "organisationUnits": [], + "categoryDimensions": [], + "rowDimensions": [ + "dx" + ] + }, + { + "lastUpdated": "2021-01-22T10:41:53.066", + "id": "ze8ogu7SMV0", + "created": "2019-10-04T13:04:53.011", + "name": "Mean Time (Hours) from Prior Facility Arrival to EU Arrival, by Facility", + "showData": true, + "publicAccess": "--------", + "userOrganisationUnitChildren": true, + "type": "COLUMN", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "userOrganisationUnit": true, + "rowSubTotals": false, + "displayDensity": "NORMAL", + "rangeAxisLabel": "Number of hours", + "regressionType": "NONE", + "cumulativeValues": false, + "completedOnly": false, + "colTotals": false, + "showDimensionLabels": false, + "sortOrder": 0, + "subtitle": "Aggregate, last 12 months and current month", + "fontSize": "NORMAL", + "topLimit": 0, + "hideEmptyRowItems": "NONE", + "aggregationType": "DEFAULT", + "userOrganisationUnitGrandChildren": false, + "hideSubtitle": false, + "description": "", + "hideLegend": true, + "externalAccess": false, + "percentStackedValues": false, + "colSubTotals": false, + "noSpaceBetweenColumns": true, + "showHierarchy": false, + "rowTotals": false, + "digitGroupSeparator": "SPACE", + "hideTitle": true, + "regression": false, + "skipRounding": false, + "lastUpdatedBy": { + "id": "rjqURGgOShK" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": false, + "last12Months": true, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": true, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": false + }, + "reportingParams": { + "parentOrganisationUnit": false, + "reportingPeriod": false, + "organisationUnit": false, + "grandParentOrganisationUnit": false + }, + "user": { + "id": "rjqURGgOShK" + }, + "dataElementGroupSetDimensions": [], + "translations": [], + "yearlySeries": [], + "filterDimensions": [ + "pe" + ], + "itemOrganisationUnitGroups": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "x8Tk2UMgpAd", + "displayName": "ETA Ministry Analysis Only - Events", + "id": "x8Tk2UMgpAd" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + }, + { + "access": "rw------", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + } + ], + "subscribers": [], + "columnDimensions": [ + "dx" + ], + "optionalAxes": [], + "userAccesses": [], + "favorites": [], + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "Kn7hS1KNm9t" + } + } + ], + "categoryOptionGroupSetDimensions": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "periods": [], + "organisationUnits": [], + "categoryDimensions": [], + "rowDimensions": [ + "ou" + ] + }, + { + "lastUpdated": "2021-01-22T10:41:52.933", + "id": "WcrODt1Ny6v", + "created": "2019-10-04T13:07:54.183", + "name": "Mechanisms of Injury Among Deceased Patients - % Breakdown", + "showData": true, + "publicAccess": "--------", + "userOrganisationUnitChildren": true, + "type": "PIE", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "userOrganisationUnit": true, + "rowSubTotals": false, + "displayDensity": "NORMAL", + "regressionType": "NONE", + "cumulativeValues": false, + "completedOnly": false, + "colTotals": false, + "showDimensionLabels": false, + "sortOrder": 1, + "subtitle": "Aggregate, last 12 months and current month", + "fontSize": "NORMAL", + "topLimit": 0, + "hideEmptyRowItems": "ALL", + "aggregationType": "DEFAULT", + "userOrganisationUnitGrandChildren": false, + "hideSubtitle": false, + "description": "", + "title": "Mechanisms of Injury Among Deceased Patients - % Breakdown", + "hideLegend": false, + "externalAccess": false, + "percentStackedValues": false, + "colSubTotals": false, + "noSpaceBetweenColumns": true, + "showHierarchy": false, + "rowTotals": false, + "digitGroupSeparator": "SPACE", + "hideTitle": true, + "regression": false, + "skipRounding": false, + "lastUpdatedBy": { + "id": "rjqURGgOShK" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": false, + "last12Months": true, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": true, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": false + }, + "reportingParams": { + "parentOrganisationUnit": false, + "reportingPeriod": false, + "organisationUnit": false, + "grandParentOrganisationUnit": false + }, + "user": { + "id": "rjqURGgOShK" + }, + "dataElementGroupSetDimensions": [], + "translations": [], + "yearlySeries": [], + "filterDimensions": [ + "pe", + "ou" + ], + "itemOrganisationUnitGroups": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "c8sN59GDJpC", + "displayName": "ETA Data Entry - Events", + "id": "c8sN59GDJpC" + }, + { + "access": "r-------", + "userGroupUid": "x8Tk2UMgpAd", + "displayName": "ETA Ministry Analysis Only - Events", + "id": "x8Tk2UMgpAd" + }, + { + "access": "r-------", + "userGroupUid": "J68LnyQufb9", + "displayName": "ETA Facility Analysis Only - Events", + "id": "J68LnyQufb9" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + }, + { + "access": "rw------", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + } + ], + "subscribers": [], + "columnDimensions": [ + "dx" + ], + "optionalAxes": [], + "userAccesses": [], + "favorites": [], + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "w8oGuDISCAz" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "tcrGAWGElkX" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "XqzrIl3vRER" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "tNfmCsggwF7" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "FGV71tgRhkH" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "D684pNr8Fya" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "J5MweYUJ2fb" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "kaVi6wJ95se" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "n2gdFibFiOc" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "w5JyRxrabcY" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "Yv6bnk9BRic" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "kh0OtQcNdoE" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "xVPjvaWcK3t" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "XEyX6F0DnpY" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "UqgvjyGhEGm" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "udHcLuH9XCA" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "eHPi1hxor3A" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "x0pcIea48gx" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "UpTkF252DNQ" + } + } + ], + "categoryOptionGroupSetDimensions": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "periods": [], + "organisationUnits": [], + "categoryDimensions": [], + "rowDimensions": [] + }, + { + "lastUpdated": "2021-01-22T10:41:52.946", + "id": "WaznCszwnj7", + "created": "2019-10-04T12:57:37.331", + "name": "Proportion of Cases Arriving to EU via Referral, by Facility", + "showData": true, + "publicAccess": "--------", + "userOrganisationUnitChildren": true, + "type": "COLUMN", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "userOrganisationUnit": true, + "rowSubTotals": false, + "displayDensity": "NORMAL", + "rangeAxisLabel": "% cases referred to EU, of total cases", + "regressionType": "NONE", + "cumulativeValues": false, + "completedOnly": false, + "colTotals": false, + "showDimensionLabels": false, + "sortOrder": 0, + "subtitle": "Aggregate, last 12 months and current month", + "fontSize": "NORMAL", + "topLimit": 0, + "hideEmptyRowItems": "NONE", + "aggregationType": "DEFAULT", + "userOrganisationUnitGrandChildren": false, + "hideSubtitle": false, + "description": "", + "title": "Percent of Patients Referred In by Facility", + "hideLegend": true, + "externalAccess": false, + "percentStackedValues": false, + "colSubTotals": false, + "noSpaceBetweenColumns": false, + "showHierarchy": false, + "rowTotals": false, + "digitGroupSeparator": "SPACE", + "hideTitle": true, + "regression": false, + "skipRounding": false, + "lastUpdatedBy": { + "id": "rjqURGgOShK" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": false, + "last12Months": true, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": true, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": false + }, + "reportingParams": { + "parentOrganisationUnit": false, + "reportingPeriod": false, + "organisationUnit": false, + "grandParentOrganisationUnit": false + }, + "user": { + "id": "rjqURGgOShK" + }, + "dataElementGroupSetDimensions": [], + "translations": [], + "yearlySeries": [], + "filterDimensions": [ + "pe" + ], + "itemOrganisationUnitGroups": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "x8Tk2UMgpAd", + "displayName": "ETA Ministry Analysis Only - Events", + "id": "x8Tk2UMgpAd" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + }, + { + "access": "rw------", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + } + ], + "subscribers": [], + "columnDimensions": [ + "dx" + ], + "optionalAxes": [], + "userAccesses": [], + "favorites": [], + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "I37a3GkniJq" + } + } + ], + "categoryOptionGroupSetDimensions": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "periods": [], + "organisationUnits": [], + "categoryDimensions": [], + "rowDimensions": [ + "ou" + ] + } + ] + }, + { + "date": "2021-09-21T08:57:04.096", + "dashboards": [ + { + "created": "2018-01-22T19:17:39.908", + "lastUpdated": "2021-04-14T12:55:29.185", + "name": "0. MOH Dashboard (Tracker)", + "id": "BIRA5ngrKRP", + "publicAccess": "--------", + "externalAccess": false, + "lastUpdatedBy": { + "id": "rjqURGgOShK" + }, + "user": { + "id": "wUd8NBL7fn2" + }, + "favorites": [ + "H4atNsEuKxP" + ], + "userGroupAccesses": [ + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + } + ], + "dashboardItems": [ + { + "lastUpdated": "2019-10-03T15:21:53.161", + "id": "Io2ahNgQewk", + "created": "2019-10-03T15:21:53.020", + "type": "VISUALIZATION", + "externalAccess": false, + "contentCount": 1, + "height": 20, + "shape": "NORMAL", + "interpretationCount": 0, + "width": 29, + "x": 0, + "y": 0, + "interpretationLikeCount": 0, + "favorite": false, + "visualization": { + "id": "QEzQtxVef2E" + }, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "favorites": [], + "reports": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + }, + { + "lastUpdated": "2019-10-03T15:21:53.161", + "id": "mPojkHOutXf", + "created": "2019-10-03T15:21:53.020", + "type": "VISUALIZATION", + "externalAccess": false, + "contentCount": 1, + "height": 20, + "shape": "NORMAL", + "interpretationCount": 0, + "width": 29, + "x": 29, + "y": 0, + "interpretationLikeCount": 0, + "favorite": false, + "visualization": { + "id": "oMz2k4EvzR8" + }, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "favorites": [], + "reports": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + }, + { + "lastUpdated": "2019-10-03T15:21:53.161", + "id": "vvpgnDY6gm5", + "created": "2019-10-03T15:21:53.020", + "type": "VISUALIZATION", + "externalAccess": false, + "contentCount": 1, + "height": 20, + "shape": "NORMAL", + "interpretationCount": 0, + "width": 29, + "x": 0, + "y": 20, + "interpretationLikeCount": 0, + "favorite": false, + "visualization": { + "id": "LFbfXNQrrbz" + }, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "favorites": [], + "reports": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + }, + { + "lastUpdated": "2019-10-03T15:21:53.161", + "id": "OeZlaiRi5dC", + "created": "2019-10-03T15:21:53.020", + "type": "VISUALIZATION", + "externalAccess": false, + "contentCount": 1, + "height": 20, + "shape": "NORMAL", + "interpretationCount": 0, + "width": 29, + "x": 29, + "y": 20, + "interpretationLikeCount": 0, + "favorite": false, + "visualization": { + "id": "NyF7rJxFaAw" + }, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "favorites": [], + "reports": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + }, + { + "lastUpdated": "2019-10-03T15:21:53.161", + "id": "PDSLgxk8sQh", + "created": "2019-10-03T15:21:53.020", + "type": "VISUALIZATION", + "externalAccess": false, + "contentCount": 1, + "height": 20, + "shape": "NORMAL", + "interpretationCount": 0, + "width": 29, + "x": 0, + "y": 40, + "interpretationLikeCount": 0, + "favorite": false, + "visualization": { + "id": "dbzUM8efvEO" + }, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "favorites": [], + "reports": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + }, + { + "lastUpdated": "2019-10-03T15:21:53.161", + "id": "QCgQ3AaX8Ab", + "created": "2019-10-03T15:21:53.020", + "type": "VISUALIZATION", + "externalAccess": false, + "contentCount": 1, + "height": 20, + "shape": "NORMAL", + "interpretationCount": 0, + "width": 29, + "x": 29, + "y": 40, + "interpretationLikeCount": 0, + "favorite": false, + "visualization": { + "id": "y6ABwhql1Lr" + }, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "favorites": [], + "reports": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + }, + { + "lastUpdated": "2019-10-03T15:21:53.161", + "id": "AlUsUZOsoXY", + "created": "2019-10-03T15:21:53.020", + "type": "VISUALIZATION", + "externalAccess": false, + "contentCount": 1, + "height": 20, + "shape": "NORMAL", + "interpretationCount": 0, + "width": 29, + "x": 0, + "y": 60, + "interpretationLikeCount": 0, + "favorite": false, + "visualization": { + "id": "HuvKzZ4cJ6a" + }, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "favorites": [], + "reports": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + }, + { + "lastUpdated": "2019-10-03T15:21:53.161", + "id": "olmOPjPEGTx", + "created": "2019-10-03T15:21:53.021", + "type": "REPORTS", + "externalAccess": false, + "contentCount": 1, + "height": 20, + "shape": "NORMAL", + "interpretationCount": 0, + "width": 29, + "x": 29, + "y": 60, + "interpretationLikeCount": 0, + "favorite": false, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "favorites": [], + "reports": [ + { + "id": "kwl6sGJU1VM" + } + ], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + }, + { + "lastUpdated": "2019-10-03T15:21:53.161", + "id": "c914D9yKrDG", + "created": "2019-10-03T15:21:53.021", + "type": "VISUALIZATION", + "externalAccess": false, + "contentCount": 1, + "height": 20, + "shape": "DOUBLE_WIDTH", + "interpretationCount": 0, + "width": 29, + "x": 0, + "y": 80, + "interpretationLikeCount": 0, + "favorite": false, + "visualization": { + "id": "bHyxSrNnhiJ" + }, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "favorites": [], + "reports": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + }, + { + "lastUpdated": "2019-10-03T15:21:53.161", + "id": "JfnmZWnjAdj", + "created": "2019-10-03T15:21:53.021", + "type": "EVENT_REPORT", + "externalAccess": false, + "contentCount": 1, + "height": 20, + "shape": "DOUBLE_WIDTH", + "interpretationCount": 0, + "width": 29, + "x": 29, + "y": 80, + "interpretationLikeCount": 0, + "favorite": false, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "eventReport": { + "id": "yEPEWO405v9" + }, + "favorites": [], + "reports": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + }, + { + "lastUpdated": "2019-10-03T15:21:53.161", + "id": "sfH7TBb3LYD", + "created": "2019-10-03T15:21:53.021", + "type": "EVENT_REPORT", + "externalAccess": false, + "contentCount": 1, + "height": 20, + "shape": "DOUBLE_WIDTH", + "interpretationCount": 0, + "width": 29, + "x": 0, + "y": 100, + "interpretationLikeCount": 0, + "favorite": false, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "eventReport": { + "id": "dTenEaC7Qeu" + }, + "favorites": [], + "reports": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "resources": [], + "users": [], + "userAccesses": [] + } + ], + "translations": [], + "userAccesses": [] + } + ], + "reports": [ + { + "created": "2018-07-01T09:17:52.414", + "lastUpdated": "2020-10-20T11:17:19.228", + "name": "Injury Epidemiology (TRACKER)", + "id": "kwl6sGJU1VM", + "designContent": "\r\n\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n
\r\n

Injury Epidemiology

\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Organisation Unit:\r\n
\r\n
Export to CSV
Report Quarter:\r\n
\r\n
Generated on:\r\n
\r\n
\r\n
\r\n
\r\n

\r\n
Click on a column name to change the sort order
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
GroupSub-Group\r\n \r\n < 1 yr\r\n 1 - 4 yr5 - 9 yr10 - 14 yr15 - 19 yr20 - 40 yr40 - 60 yr60 - 80 yr80+ yrUnknownTotal
SexFemale\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Male\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Other\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Major Medical ComorbiditiesMean (Standard Deviation)\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
Injury MechanismRoad traffic incident\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Other transport incident\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Hit by person object\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Falls\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Gun shot\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Stab, cut, and all penetrating than gunshot\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Sexual assault\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Animal Bite or Scratch (not snake)\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Snake bite\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Drowning submersion\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Burns\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Electric lightning injury\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Poisoning or toxic exposure\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Radiation exposure\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Suffocation, choking, hanging\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Explosive blast\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Exposure to forces nature\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Other\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Unknown\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Missing from chart\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
ConditionContusion, haematoma or abrasion\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Laceration/wound (not amputation)\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Sprain or other muscle/tendon injury\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Joint dislocation\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Closed fracture\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Open fracture\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Burn\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Crush injury\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Compartment syndrome\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Focal sensory or motor deficit\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Amputation\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Foreign body\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Pneumothorax haemothorax\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Shock\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Coagulopathy\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Respiratory failure\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Airway obstruction\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Altered mental status\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Complication of pregnancy, trauma induced,\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Other unspecified\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Missing from chart\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Injury Anatomic LocationIntracranial\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Head, Face, Neck\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Chest Wall, Intrathoracic\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Spine (bony and cord)\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Abdominal wall, Abdominopelvic, Bony pelivs, Genitalia\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Upper Extremity\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Lower Extremity\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
External (skin)\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Other, including systemic\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Missing from chart\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Arrival ModeAmbulance\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Private vehicle- car or truck\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Private vehicle- motorised 2- or 3- wheeler 2- 3-wheeler\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Taxi- car or truck\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Taxi- motorised 2- or 3- wheeler\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Public transportation\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Police\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Non-motorised vehicle (bicycle, rickshaw, cart vehicle\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Walking\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Other\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Unknown\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Missing from chart\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Number of Operating Theatre EncountersMean (Standard Deviation)\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
Length of stayMean (Standard Deviation)\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
Patients Referred In-\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Referring Facility LevelCommunity health post/dispensary\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Primary health centre\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
First-level hospital\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Second-level hospital\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Tertiary hospital and higher level\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Missing from chart\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Unknown\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
DispositionAdmitted\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Transferred\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
\r\n *Percentages are displayed as percent of specific age group aggregations divided by the total registry cases for that age group during the period. It is possible for some values to be entered multiple times for a single patient (i.e. Injury Mechanism,\r\n Condition, etc), so percentages may have a sum total greater than 100% due to some patients being counted multiple times for different conditions.\r\n
\r\n
\r\n
\r\n
\r\n", + "publicAccess": "--------", + "type": "HTML", + "externalAccess": false, + "cacheStrategy": "NO_CACHE", + "lastUpdatedBy": { + "id": "kD52FGwJgDF" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": true, + "last12Months": false, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": false, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": false + }, + "reportParams": { + "parentOrganisationUnit": false, + "reportingPeriod": true, + "organisationUnit": true, + "grandParentOrganisationUnit": false + }, + "user": { + "id": "H4atNsEuKxP" + }, + "userGroupAccesses": [ + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + } + ], + "translations": [], + "userAccesses": [] + } + ], + "visualizations": [ + { + "lastUpdated": "2019-10-03T15:23:53.140", + "id": "y6ABwhql1Lr", + "created": "2018-07-10T04:05:10.725", + "name": "ETA Number of Severely Injured Patients (TRACKER)", + "showData": true, + "publicAccess": "--------", + "userOrganisationUnitChildren": true, + "type": "COLUMN", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "userOrganisationUnit": true, + "rowSubTotals": false, + "displayDensity": "NORMAL", + "regressionType": "NONE", + "cumulativeValues": false, + "completedOnly": false, + "colTotals": false, + "showDimensionLabels": false, + "sortOrder": 0, + "subtitle": "by Facility", + "fontSize": "NORMAL", + "rangeAxisDecimals": 0, + "topLimit": 0, + "hideEmptyRowItems": "NONE", + "aggregationType": "DEFAULT", + "userOrganisationUnitGrandChildren": false, + "hideSubtitle": false, + "description": "By any scoring mechanism", + "title": "Number of Severely Injured Patients", + "hideLegend": false, + "externalAccess": false, + "percentStackedValues": false, + "colSubTotals": false, + "noSpaceBetweenColumns": false, + "showHierarchy": false, + "rowTotals": false, + "digitGroupSeparator": "SPACE", + "hideTitle": false, + "regression": false, + "skipRounding": false, + "lastUpdatedBy": { + "id": "rjqURGgOShK" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": false, + "last12Months": true, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": true, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": false + }, + "reportingParams": { + "parentOrganisationUnit": false, + "reportingPeriod": false, + "organisationUnit": false, + "grandParentOrganisationUnit": false + }, + "user": { + "id": "kD52FGwJgDF" + }, + "dataElementGroupSetDimensions": [], + "translations": [], + "yearlySeries": [], + "filterDimensions": [ + "dx" + ], + "itemOrganisationUnitGroups": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "QhhxtdJ8HL7", + "displayName": "ETA Ministry Analysis Only", + "id": "QhhxtdJ8HL7" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + } + ], + "subscribers": [], + "columnDimensions": [ + "ou" + ], + "optionalAxes": [], + "userAccesses": [], + "favorites": [], + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "CGm4fhoAeqN" + } + } + ], + "categoryOptionGroupSetDimensions": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "periods": [], + "organisationUnits": [], + "categoryDimensions": [], + "rowDimensions": [ + "pe" + ] + }, + { + "lastUpdated": "2019-10-03T15:23:34.116", + "id": "dbzUM8efvEO", + "created": "2018-07-10T04:04:33.217", + "name": "ETA Mean Prehospital Transport Time by Facility (TRACKER)", + "showData": false, + "numberType": "VALUE", + "publicAccess": "--------", + "userOrganisationUnitChildren": true, + "legendDisplayStyle": "FILL", + "type": "PIVOT_TABLE", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "userOrganisationUnit": true, + "rowSubTotals": false, + "displayDensity": "NORMAL", + "cumulativeValues": false, + "completedOnly": false, + "colTotals": true, + "showDimensionLabels": false, + "sortOrder": 0, + "fontSize": "NORMAL", + "topLimit": 0, + "aggregationType": "DEFAULT", + "userOrganisationUnitGrandChildren": false, + "hideSubtitle": false, + "description": "", + "title": "Mean Prehospital Transport Time by Facility", + "hideLegend": false, + "externalAccess": false, + "percentStackedValues": false, + "legendDisplayStrategy": "FIXED", + "colSubTotals": false, + "noSpaceBetweenColumns": false, + "showHierarchy": false, + "rowTotals": false, + "digitGroupSeparator": "SPACE", + "hideTitle": false, + "regression": false, + "skipRounding": false, + "lastUpdatedBy": { + "id": "rjqURGgOShK" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": false, + "last12Months": true, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": true, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": false + }, + "reportingParams": { + "parentOrganisationUnit": false, + "reportingPeriod": false, + "organisationUnit": false, + "grandParentOrganisationUnit": false + }, + "user": { + "id": "kD52FGwJgDF" + }, + "dataElementGroupSetDimensions": [], + "translations": [], + "yearlySeries": [], + "filterDimensions": [ + "pe" + ], + "itemOrganisationUnitGroups": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "QhhxtdJ8HL7", + "displayName": "ETA Ministry Analysis Only", + "id": "QhhxtdJ8HL7" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + } + ], + "subscribers": [], + "columnDimensions": [ + "dx" + ], + "optionalAxes": [], + "userAccesses": [], + "favorites": [], + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "OMpKvwZaGRd" + } + } + ], + "categoryOptionGroupSetDimensions": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "periods": [], + "organisationUnits": [], + "categoryDimensions": [], + "rowDimensions": [ + "ou" + ] + }, + { + "lastUpdated": "2019-10-03T15:24:16.388", + "id": "HuvKzZ4cJ6a", + "created": "2018-07-10T04:05:43.789", + "name": "ETA Number of Pediatric Patients by Facility (<5 and <13) (TRACKER)", + "showData": true, + "publicAccess": "--------", + "userOrganisationUnitChildren": true, + "type": "COLUMN", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "userOrganisationUnit": true, + "rowSubTotals": false, + "displayDensity": "NORMAL", + "regressionType": "NONE", + "cumulativeValues": false, + "completedOnly": false, + "colTotals": false, + "showDimensionLabels": false, + "sortOrder": 0, + "subtitle": "by Facility (last 12 months and current month)", + "fontSize": "NORMAL", + "rangeAxisDecimals": 0, + "topLimit": 0, + "hideEmptyRowItems": "NONE", + "aggregationType": "DEFAULT", + "userOrganisationUnitGrandChildren": false, + "hideSubtitle": false, + "description": "", + "title": "Number of Pediatric Patients", + "hideLegend": false, + "externalAccess": false, + "percentStackedValues": false, + "colSubTotals": false, + "noSpaceBetweenColumns": true, + "showHierarchy": false, + "rowTotals": false, + "digitGroupSeparator": "SPACE", + "hideTitle": false, + "regression": false, + "skipRounding": false, + "lastUpdatedBy": { + "id": "rjqURGgOShK" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": false, + "last12Months": true, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": true, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": false + }, + "reportingParams": { + "parentOrganisationUnit": false, + "reportingPeriod": false, + "organisationUnit": false, + "grandParentOrganisationUnit": false + }, + "user": { + "id": "kD52FGwJgDF" + }, + "dataElementGroupSetDimensions": [], + "translations": [], + "yearlySeries": [], + "filterDimensions": [ + "pe" + ], + "itemOrganisationUnitGroups": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "QhhxtdJ8HL7", + "displayName": "ETA Ministry Analysis Only", + "id": "QhhxtdJ8HL7" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + } + ], + "subscribers": [], + "columnDimensions": [ + "dx" + ], + "optionalAxes": [], + "userAccesses": [], + "favorites": [], + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "MUN9jnG63Jh" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "LahBNH3Qeh8" + } + } + ], + "categoryOptionGroupSetDimensions": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "periods": [], + "organisationUnits": [], + "categoryDimensions": [], + "rowDimensions": [ + "ou" + ] + }, + { + "lastUpdated": "2019-10-03T15:24:53.261", + "id": "bHyxSrNnhiJ", + "created": "2018-07-10T04:07:07.096", + "name": "ETA Mechanisms of Injury Amongst Deceased Patients (TRACKER)", + "showData": false, + "numberType": "VALUE", + "publicAccess": "--------", + "userOrganisationUnitChildren": true, + "legendDisplayStyle": "FILL", + "type": "PIVOT_TABLE", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "userOrganisationUnit": true, + "rowSubTotals": false, + "displayDensity": "NORMAL", + "cumulativeValues": false, + "completedOnly": false, + "colTotals": false, + "showDimensionLabels": true, + "sortOrder": 0, + "fontSize": "NORMAL", + "topLimit": 0, + "aggregationType": "DEFAULT", + "userOrganisationUnitGrandChildren": false, + "hideSubtitle": false, + "description": "", + "title": "Mechanisms of Injury Amongst Deceased Patients % (last 12 months and current month)", + "hideLegend": false, + "externalAccess": false, + "percentStackedValues": false, + "legendDisplayStrategy": "FIXED", + "colSubTotals": false, + "noSpaceBetweenColumns": false, + "showHierarchy": false, + "rowTotals": false, + "digitGroupSeparator": "SPACE", + "hideTitle": false, + "regression": false, + "skipRounding": false, + "lastUpdatedBy": { + "id": "rjqURGgOShK" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": false, + "last12Months": true, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": true, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": false + }, + "reportingParams": { + "parentOrganisationUnit": false, + "reportingPeriod": false, + "organisationUnit": false, + "grandParentOrganisationUnit": false + }, + "user": { + "id": "kD52FGwJgDF" + }, + "dataElementGroupSetDimensions": [], + "translations": [], + "yearlySeries": [], + "filterDimensions": [ + "pe" + ], + "itemOrganisationUnitGroups": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "QhhxtdJ8HL7", + "displayName": "ETA Ministry Analysis Only", + "id": "QhhxtdJ8HL7" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + } + ], + "subscribers": [], + "columnDimensions": [ + "ou" + ], + "optionalAxes": [], + "userAccesses": [], + "favorites": [], + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "NIOPOmvlDA1" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "sn09s6u7ILo" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "W5m6SV14TqU" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "Y4jCxjZ5lSL" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "z4BEWN5WAmu" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "XiLkPJs6t0D" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "OBVGwC3q76J" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "W6MZiOWURyv" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "HOZO3JFQec1" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "d6Neg6nfbBY" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "TSAwCbCUmWD" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "ej9IB9ZY5bX" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "Ykw0XZX1xyf" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "Y1h0bp3ZqpW" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "gGmhyE5f0o6" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "ybE34XKMQjt" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "pBVNeN0sCI8" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "xrg8iyD0Pp0" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "VqVvl2TyQZj" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "xlhd2LMCnP5" + } + } + ], + "categoryOptionGroupSetDimensions": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "periods": [], + "organisationUnits": [], + "categoryDimensions": [], + "rowDimensions": [ + "dx" + ] + }, + { + "lastUpdated": "2019-10-03T15:22:58.031", + "id": "LFbfXNQrrbz", + "created": "2018-07-10T04:08:58.479", + "name": "ETA Proportion of Patients Referred In (TRACKER)", + "showData": true, + "publicAccess": "--------", + "userOrganisationUnitChildren": true, + "type": "COLUMN", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "userOrganisationUnit": true, + "rowSubTotals": false, + "displayDensity": "NORMAL", + "regressionType": "NONE", + "cumulativeValues": false, + "completedOnly": false, + "colTotals": false, + "showDimensionLabels": false, + "sortOrder": 0, + "subtitle": "last 12 months and current month", + "fontSize": "NORMAL", + "topLimit": 0, + "hideEmptyRowItems": "NONE", + "aggregationType": "DEFAULT", + "userOrganisationUnitGrandChildren": false, + "hideSubtitle": false, + "description": "", + "title": "Percent of Patients Referred In", + "hideLegend": true, + "externalAccess": false, + "percentStackedValues": false, + "colSubTotals": false, + "noSpaceBetweenColumns": false, + "showHierarchy": false, + "rowTotals": false, + "digitGroupSeparator": "SPACE", + "hideTitle": false, + "regression": false, + "skipRounding": false, + "lastUpdatedBy": { + "id": "rjqURGgOShK" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": false, + "last12Months": true, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": true, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": false + }, + "reportingParams": { + "parentOrganisationUnit": false, + "reportingPeriod": false, + "organisationUnit": false, + "grandParentOrganisationUnit": false + }, + "user": { + "id": "kD52FGwJgDF" + }, + "dataElementGroupSetDimensions": [], + "translations": [], + "yearlySeries": [], + "filterDimensions": [ + "pe" + ], + "itemOrganisationUnitGroups": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "QhhxtdJ8HL7", + "displayName": "ETA Ministry Analysis Only", + "id": "QhhxtdJ8HL7" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + } + ], + "subscribers": [], + "columnDimensions": [ + "dx" + ], + "optionalAxes": [], + "userAccesses": [], + "favorites": [], + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "o5pfPiPMCQG" + } + } + ], + "categoryOptionGroupSetDimensions": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "periods": [], + "organisationUnits": [], + "categoryDimensions": [], + "rowDimensions": [ + "ou" + ] + }, + { + "lastUpdated": "2019-10-03T15:23:17.202", + "id": "NyF7rJxFaAw", + "created": "2018-07-10T04:03:44.744", + "name": "ETA Deaths in patients with low injury severity scores (TRACKER)", + "showData": true, + "publicAccess": "--------", + "userOrganisationUnitChildren": true, + "type": "COLUMN", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "userOrganisationUnit": true, + "rowSubTotals": false, + "displayDensity": "NORMAL", + "regressionType": "NONE", + "cumulativeValues": false, + "completedOnly": false, + "colTotals": false, + "showDimensionLabels": false, + "sortOrder": 0, + "subtitle": "by Facility", + "fontSize": "NORMAL", + "topLimit": 0, + "hideEmptyRowItems": "NONE", + "aggregationType": "DEFAULT", + "userOrganisationUnitGrandChildren": false, + "hideSubtitle": false, + "description": "By any scoring mechanism", + "title": "Deaths in patients with low injury severity scores", + "hideLegend": false, + "externalAccess": false, + "percentStackedValues": false, + "colSubTotals": false, + "noSpaceBetweenColumns": true, + "showHierarchy": false, + "rowTotals": false, + "digitGroupSeparator": "SPACE", + "hideTitle": false, + "regression": false, + "skipRounding": false, + "lastUpdatedBy": { + "id": "rjqURGgOShK" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": false, + "last12Months": true, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": true, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": false + }, + "reportingParams": { + "parentOrganisationUnit": false, + "reportingPeriod": false, + "organisationUnit": false, + "grandParentOrganisationUnit": false + }, + "user": { + "id": "kD52FGwJgDF" + }, + "dataElementGroupSetDimensions": [], + "translations": [], + "yearlySeries": [], + "filterDimensions": [ + "dx" + ], + "itemOrganisationUnitGroups": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "QhhxtdJ8HL7", + "displayName": "ETA Ministry Analysis Only", + "id": "QhhxtdJ8HL7" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + } + ], + "subscribers": [], + "columnDimensions": [ + "ou" + ], + "optionalAxes": [], + "userAccesses": [], + "favorites": [], + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "rJnvbs6Dt2h" + } + } + ], + "categoryOptionGroupSetDimensions": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "periods": [], + "organisationUnits": [], + "categoryDimensions": [], + "rowDimensions": [ + "pe" + ] + }, + { + "lastUpdated": "2019-10-03T15:22:10.279", + "id": "QEzQtxVef2E", + "created": "2018-07-10T03:58:29.171", + "name": "ETA Number of Road Traffic Injuries by Facility (TRACKER)", + "showData": true, + "publicAccess": "--------", + "userOrganisationUnitChildren": true, + "type": "COLUMN", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "userOrganisationUnit": true, + "rowSubTotals": false, + "displayDensity": "NORMAL", + "regressionType": "NONE", + "cumulativeValues": false, + "completedOnly": false, + "colTotals": false, + "showDimensionLabels": false, + "sortOrder": 0, + "subtitle": "last 12 months and current month", + "fontSize": "NORMAL", + "topLimit": 0, + "hideEmptyRowItems": "NONE", + "aggregationType": "DEFAULT", + "userOrganisationUnitGrandChildren": false, + "hideSubtitle": false, + "description": "", + "title": "Number of Road Traffic Injuries by Facility", + "hideLegend": true, + "externalAccess": false, + "percentStackedValues": false, + "colSubTotals": false, + "noSpaceBetweenColumns": false, + "showHierarchy": false, + "rowTotals": false, + "digitGroupSeparator": "SPACE", + "hideTitle": false, + "regression": false, + "skipRounding": false, + "lastUpdatedBy": { + "id": "rjqURGgOShK" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": false, + "last12Months": true, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": true, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": false + }, + "reportingParams": { + "parentOrganisationUnit": false, + "reportingPeriod": false, + "organisationUnit": false, + "grandParentOrganisationUnit": false + }, + "user": { + "id": "kD52FGwJgDF" + }, + "dataElementGroupSetDimensions": [], + "translations": [], + "yearlySeries": [], + "filterDimensions": [ + "pe" + ], + "itemOrganisationUnitGroups": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "QhhxtdJ8HL7", + "displayName": "ETA Ministry Analysis Only", + "id": "QhhxtdJ8HL7" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + } + ], + "subscribers": [], + "columnDimensions": [ + "dx" + ], + "optionalAxes": [], + "userAccesses": [], + "favorites": [], + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "kI6PGaKzSqK" + } + } + ], + "categoryOptionGroupSetDimensions": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "periods": [], + "organisationUnits": [], + "categoryDimensions": [], + "rowDimensions": [ + "ou" + ] + }, + { + "lastUpdated": "2019-10-03T15:22:32.975", + "id": "oMz2k4EvzR8", + "created": "2018-07-10T04:02:06.406", + "name": "ETA Case Volume by Time and Facility (TRACKER)", + "showData": true, + "publicAccess": "--------", + "userOrganisationUnitChildren": true, + "type": "COLUMN", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "userOrganisationUnit": true, + "rowSubTotals": false, + "displayDensity": "NORMAL", + "regressionType": "NONE", + "cumulativeValues": false, + "completedOnly": false, + "colTotals": false, + "showDimensionLabels": false, + "sortOrder": 0, + "fontSize": "NORMAL", + "topLimit": 0, + "hideEmptyRowItems": "NONE", + "aggregationType": "DEFAULT", + "userOrganisationUnitGrandChildren": false, + "hideSubtitle": true, + "description": "", + "title": "Case Volume by Time and Facility", + "hideLegend": false, + "externalAccess": false, + "percentStackedValues": false, + "colSubTotals": false, + "noSpaceBetweenColumns": false, + "showHierarchy": false, + "rowTotals": false, + "digitGroupSeparator": "SPACE", + "hideTitle": false, + "regression": false, + "skipRounding": false, + "lastUpdatedBy": { + "id": "rjqURGgOShK" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": false, + "last12Months": true, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": true, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": false + }, + "reportingParams": { + "parentOrganisationUnit": false, + "reportingPeriod": false, + "organisationUnit": false, + "grandParentOrganisationUnit": false + }, + "user": { + "id": "kD52FGwJgDF" + }, + "dataElementGroupSetDimensions": [], + "translations": [], + "yearlySeries": [], + "filterDimensions": [ + "dx" + ], + "itemOrganisationUnitGroups": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "QhhxtdJ8HL7", + "displayName": "ETA Ministry Analysis Only", + "id": "QhhxtdJ8HL7" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + } + ], + "subscribers": [], + "columnDimensions": [ + "ou" + ], + "optionalAxes": [], + "userAccesses": [], + "favorites": [], + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "FLdt0VPf82H" + } + } + ], + "categoryOptionGroupSetDimensions": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "periods": [], + "organisationUnits": [], + "categoryDimensions": [], + "rowDimensions": [ + "pe" + ] + } + ], + "eventReports": [ + { + "lastUpdated": "2019-10-03T15:25:29.072", + "id": "dTenEaC7Qeu", + "created": "2018-07-10T04:08:06.587", + "name": "Most Commonly Performed Inpatient Procedures (TRACKER)", + "publicAccess": "--------", + "userOrganisationUnitChildren": true, + "hideEmptyRows": false, + "userOrganisationUnit": true, + "rowSubTotals": true, + "hideNaData": false, + "displayDensity": "NORMAL", + "dataType": "AGGREGATED_VALUES", + "completedOnly": false, + "colTotals": true, + "showDimensionLabels": true, + "sortOrder": 1, + "fontSize": "NORMAL", + "topLimit": 10, + "collapseDataDimensions": false, + "userOrganisationUnitGrandChildren": false, + "hideSubtitle": false, + "outputType": "ENROLLMENT", + "description": "", + "externalAccess": false, + "colSubTotals": true, + "showHierarchy": false, + "rowTotals": true, + "digitGroupSeparator": "COMMA", + "hideTitle": false, + "program": { + "id": "YGa3BmrwwiU" + }, + "lastUpdatedBy": { + "id": "rjqURGgOShK" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": true, + "last12Months": false, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": false, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": true + }, + "programStage": { + "id": "bPZlPTESUvO" + }, + "user": { + "id": "kD52FGwJgDF" + }, + "attributeDimensions": [], + "translations": [], + "filterDimensions": [], + "itemOrganisationUnitGroups": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "QhhxtdJ8HL7", + "displayName": "ETA Ministry Analysis Only", + "id": "QhhxtdJ8HL7" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + } + ], + "programIndicatorDimensions": [], + "subscribers": [], + "columnDimensions": [ + "pe" + ], + "userAccesses": [], + "favorites": [], + "categoryOptionGroupSetDimensions": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "dataElementDimensions": [ + { + "dataElement": { + "id": "EDsQRWoZSJP" + } + } + ], + "periods": [], + "organisationUnits": [], + "categoryDimensions": [], + "rowDimensions": [ + "ou", + "EDsQRWoZSJP" + ] + }, + { + "lastUpdated": "2019-10-03T15:25:12.148", + "id": "yEPEWO405v9", + "created": "2018-07-10T04:07:45.599", + "name": "Most Commonly Performed EU Procedures (TRACKER)", + "publicAccess": "--------", + "userOrganisationUnitChildren": true, + "hideEmptyRows": false, + "userOrganisationUnit": true, + "rowSubTotals": true, + "hideNaData": false, + "displayDensity": "NORMAL", + "dataType": "AGGREGATED_VALUES", + "completedOnly": false, + "colTotals": true, + "showDimensionLabels": true, + "sortOrder": 1, + "fontSize": "NORMAL", + "topLimit": 10, + "collapseDataDimensions": false, + "userOrganisationUnitGrandChildren": false, + "hideSubtitle": false, + "outputType": "ENROLLMENT", + "description": "", + "externalAccess": false, + "colSubTotals": true, + "showHierarchy": false, + "rowTotals": true, + "digitGroupSeparator": "COMMA", + "hideTitle": false, + "program": { + "id": "YGa3BmrwwiU" + }, + "lastUpdatedBy": { + "id": "rjqURGgOShK" + }, + "relativePeriods": { + "thisYear": false, + "quartersLastYear": false, + "last52Weeks": false, + "thisWeek": false, + "lastMonth": false, + "last14Days": false, + "biMonthsThisYear": false, + "monthsThisYear": false, + "last2SixMonths": false, + "yesterday": false, + "thisQuarter": true, + "last12Months": false, + "last5FinancialYears": false, + "thisSixMonth": false, + "lastQuarter": false, + "thisFinancialYear": false, + "last4Weeks": false, + "last3Months": false, + "thisDay": false, + "thisMonth": false, + "last5Years": false, + "last6BiMonths": false, + "last4BiWeeks": false, + "lastFinancialYear": false, + "lastBiWeek": false, + "weeksThisYear": false, + "last6Months": false, + "last3Days": false, + "quartersThisYear": false, + "monthsLastYear": false, + "lastWeek": false, + "last7Days": false, + "thisBimonth": false, + "lastBimonth": false, + "lastSixMonth": false, + "thisBiWeek": false, + "lastYear": false, + "last12Weeks": false, + "last4Quarters": true + }, + "programStage": { + "id": "NliaouB66pN" + }, + "user": { + "id": "kD52FGwJgDF" + }, + "attributeDimensions": [], + "translations": [], + "filterDimensions": [], + "itemOrganisationUnitGroups": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "QhhxtdJ8HL7", + "displayName": "ETA Ministry Analysis Only", + "id": "QhhxtdJ8HL7" + }, + { + "access": "rw------", + "userGroupUid": "Urx6COfeLkm", + "displayName": "ETA administrators", + "id": "Urx6COfeLkm" + } + ], + "programIndicatorDimensions": [], + "subscribers": [], + "columnDimensions": [ + "pe" + ], + "userAccesses": [], + "favorites": [], + "categoryOptionGroupSetDimensions": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "dataElementDimensions": [ + { + "dataElement": { + "id": "AlkbwOe8hCK" + } + } + ], + "periods": [], + "organisationUnits": [], + "categoryDimensions": [], + "rowDimensions": [ + "ou", + "AlkbwOe8hCK" + ] + } + ] + }, + { + "date": "2021-09-21T08:57:04.095", + "categoryCombos": [ + { + "code": "default", + "created": "2017-05-10T17:53:55.156", + "lastUpdated": "2019-02-20T16:22:55.336", + "name": "default", + "id": "JzvGfLYkX17", + "dataDimensionType": "DISAGGREGATION", + "publicAccess": "rw------", + "skipTotal": false, + "lastUpdatedBy": { + "id": "eK26I7dRbC4" + }, + "user": { + "id": "eK26I7dRbC4" + }, + "userGroupAccesses": [], + "translations": [], + "userAccesses": [], + "categories": [ + { + "id": "DMyxTSpvKOp" + } + ] + } + ], + "programs": [ + { + "lastUpdated": "2020-06-04T17:17:44.859", + "id": "yx6VLBFBlrK", + "created": "2019-08-21T11:19:35.553", + "name": "ADMIN_Analytics_Check(Event)", + "shortName": "ADMIN_Analytics_Check(Event)", + "publicAccess": "--------", + "completeEventsExpiryDays": 0, + "ignoreOverdueEvents": false, + "skipOffline": false, + "featureType": "NONE", + "minAttributesRequiredToSearch": 1, + "displayFrontPageList": false, + "onlyEnrollOnce": false, + "programType": "WITHOUT_REGISTRATION", + "accessLevel": "OPEN", + "version": 1, + "maxTeiCountToReturn": 0, + "selectIncidentDatesInFuture": false, + "displayIncidentDate": true, + "selectEnrollmentDatesInFuture": false, + "expiryDays": 0, + "useFirstStageDuringRegistration": false, + "categoryCombo": { + "id": "JzvGfLYkX17" + }, + "lastUpdatedBy": { + "id": "H4atNsEuKxP" + }, + "user": { + "id": "kD52FGwJgDF" + }, + "programTrackedEntityAttributes": [], + "notificationTemplates": [], + "translations": [], + "organisationUnits": [ + { + "id": "H8RixfF8ugH" + } + ], + "userGroupAccesses": [ + { + "access": "r-r-----", + "userGroupUid": "sCjEPgiOhP1", + "displayName": "WIDP admins", + "id": "sCjEPgiOhP1" + }, + { + "access": "rwrw----", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + } + ], + "programSections": [], + "attributeValues": [], + "programStages": [ + { + "id": "EGA9fqLFtxM" + } + ], + "userAccesses": [] + } + ], + "categoryOptionCombos": [ + { + "lastUpdated": "2017-05-10T17:53:55.158", + "code": "default", + "created": "2017-05-10T17:53:55.157", + "name": "default", + "id": "Xr12mI7VPn3", + "ignoreApproval": false, + "categoryCombo": { + "id": "JzvGfLYkX17" + }, + "translations": [], + "attributeValues": [], + "categoryOptions": [ + { + "id": "Y7fcspgsU43" + } + ] + } + ], + "programStages": [ + { + "lastUpdated": "2020-06-04T17:17:44.805", + "id": "EGA9fqLFtxM", + "created": "2019-08-21T11:19:35.521", + "name": "ADMIN_Analytics_Check(Event)", + "allowGenerateNextVisit": false, + "preGenerateUID": false, + "publicAccess": "--------", + "openAfterEnrollment": false, + "repeatable": false, + "featureType": "NONE", + "remindCompleted": false, + "displayGenerateEventBox": true, + "generatedByEnrollmentDate": false, + "validationStrategy": "ON_UPDATE_AND_INSERT", + "autoGenerateEvent": true, + "sortOrder": 1, + "hideDueDate": false, + "blockEntryForm": false, + "enableUserAssignment": false, + "minDaysFromStart": 0, + "program": { + "id": "yx6VLBFBlrK" + }, + "lastUpdatedBy": { + "id": "H4atNsEuKxP" + }, + "user": { + "id": "kD52FGwJgDF" + }, + "notificationTemplates": [], + "programStageDataElements": [ + { + "lastUpdated": "2020-06-04T17:17:44.806", + "id": "QxkWkYWHGhS", + "created": "2019-09-10T17:17:31.872", + "displayInReports": false, + "skipSynchronization": false, + "externalAccess": false, + "renderOptionsAsRadio": false, + "allowFutureDate": false, + "compulsory": false, + "allowProvidedElsewhere": false, + "sortOrder": 1, + "favorite": false, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "programStage": { + "id": "EGA9fqLFtxM" + }, + "dataElement": { + "id": "JKmrptCJjQN" + }, + "favorites": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "userAccesses": [] + }, + { + "lastUpdated": "2020-06-04T17:17:44.806", + "id": "lggWjTVxKXg", + "created": "2019-09-10T17:17:44.152", + "displayInReports": false, + "skipSynchronization": false, + "externalAccess": false, + "renderOptionsAsRadio": false, + "allowFutureDate": false, + "compulsory": false, + "allowProvidedElsewhere": false, + "sortOrder": 2, + "favorite": false, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "programStage": { + "id": "EGA9fqLFtxM" + }, + "dataElement": { + "id": "KfhTiPYwKPm" + }, + "favorites": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "userAccesses": [] + } + ], + "translations": [], + "userGroupAccesses": [ + { + "access": "r-r-----", + "userGroupUid": "sCjEPgiOhP1", + "displayName": "WIDP admins", + "id": "sCjEPgiOhP1" + }, + { + "access": "rwrw----", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + } + ], + "attributeValues": [], + "userAccesses": [], + "programStageSections": [] + } + ], + "categoryOptions": [ + { + "code": "default", + "created": "2017-05-10T17:53:55.138", + "lastUpdated": "2018-07-27T16:09:07.425", + "name": "default", + "id": "Y7fcspgsU43", + "shortName": "default", + "publicAccess": "rwrw----", + "user": { + "id": "eK26I7dRbC4" + }, + "userGroupAccesses": [], + "attributeValues": [], + "translations": [], + "userAccesses": [], + "organisationUnits": [] + } + ], + "dataElements": [ + { + "lastUpdated": "2020-06-05T11:13:45.280", + "id": "JKmrptCJjQN", + "created": "2019-09-10T17:16:59.679", + "name": "ADMIN_Analytics_Execution_1_Events", + "shortName": "ADMIN_Analytics_Execution_1_Events", + "aggregationType": "SUM", + "domainType": "TRACKER", + "publicAccess": "--------", + "valueType": "TRUE_ONLY", + "formName": "Analytics run at 0h", + "zeroIsSignificant": true, + "categoryCombo": { + "id": "JzvGfLYkX17" + }, + "lastUpdatedBy": { + "id": "eK26I7dRbC4" + }, + "user": { + "id": "H4atNsEuKxP" + }, + "translations": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "sCjEPgiOhP1", + "displayName": "WIDP admins", + "id": "sCjEPgiOhP1" + }, + { + "access": "rw------", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + } + ], + "attributeValues": [], + "userAccesses": [], + "legendSets": [], + "aggregationLevels": [] + }, + { + "lastUpdated": "2020-06-05T11:13:56.574", + "id": "KfhTiPYwKPm", + "created": "2019-09-10T17:17:18.194", + "name": "ADMIN_Analytics_Execution_2_Events", + "shortName": "ADMIN_Analytics_Execution_2_Events", + "aggregationType": "SUM", + "domainType": "TRACKER", + "publicAccess": "--------", + "valueType": "TRUE_ONLY", + "formName": "Analytics run at 12h", + "zeroIsSignificant": true, + "categoryCombo": { + "id": "JzvGfLYkX17" + }, + "lastUpdatedBy": { + "id": "eK26I7dRbC4" + }, + "user": { + "id": "H4atNsEuKxP" + }, + "translations": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "sCjEPgiOhP1", + "displayName": "WIDP admins", + "id": "sCjEPgiOhP1" + }, + { + "access": "rw------", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + } + ], + "attributeValues": [], + "userAccesses": [], + "legendSets": [], + "aggregationLevels": [] + } + ], + "categories": [ + { + "code": "default", + "created": "2017-05-10T17:53:55.152", + "lastUpdated": "2021-08-07T06:18:19.628", + "name": "default", + "id": "DMyxTSpvKOp", + "dataDimensionType": "DISAGGREGATION", + "publicAccess": "rw------", + "dataDimension": false, + "user": { + "id": "eK26I7dRbC4" + }, + "userGroupAccesses": [], + "attributeValues": [], + "translations": [], + "userAccesses": [], + "categoryOptions": [ + { + "id": "Y7fcspgsU43" + } + ] + } + ], + "programStageDataElements": [ + { + "created": "2019-09-10T17:17:31.872", + "lastUpdated": "2020-06-04T17:17:44.806", + "id": "QxkWkYWHGhS", + "displayInReports": false, + "skipSynchronization": false, + "renderOptionsAsRadio": false, + "compulsory": false, + "allowProvidedElsewhere": false, + "sortOrder": 1, + "allowFutureDate": false, + "programStage": { + "id": "EGA9fqLFtxM" + }, + "dataElement": { + "id": "JKmrptCJjQN" + } + }, + { + "created": "2019-09-10T17:17:44.152", + "lastUpdated": "2020-06-04T17:17:44.806", + "id": "lggWjTVxKXg", + "displayInReports": false, + "skipSynchronization": false, + "renderOptionsAsRadio": false, + "compulsory": false, + "allowProvidedElsewhere": false, + "sortOrder": 2, + "allowFutureDate": false, + "programStage": { + "id": "EGA9fqLFtxM" + }, + "dataElement": { + "id": "KfhTiPYwKPm" + } + } + ] + }, + { + "date": "2021-09-21T08:57:05.105", + "categoryCombos": [ + { + "code": "default", + "created": "2017-05-10T17:53:55.156", + "lastUpdated": "2019-02-20T16:22:55.336", + "name": "default", + "id": "JzvGfLYkX17", + "dataDimensionType": "DISAGGREGATION", + "publicAccess": "rw------", + "skipTotal": false, + "lastUpdatedBy": { + "id": "eK26I7dRbC4" + }, + "user": { + "id": "eK26I7dRbC4" + }, + "userGroupAccesses": [], + "translations": [], + "userAccesses": [], + "categories": [ + { + "id": "DMyxTSpvKOp" + } + ] + } + ], + "programs": [ + { + "lastUpdated": "2020-06-04T17:17:12.801", + "id": "rjsnrRKjtwU", + "created": "2019-08-21T11:24:20.251", + "name": "ADMIN_Analytics_Check(Tracker)", + "shortName": "ADMIN_Analytics_Check(Tracker)", + "publicAccess": "--------", + "completeEventsExpiryDays": 0, + "ignoreOverdueEvents": false, + "skipOffline": false, + "featureType": "NONE", + "minAttributesRequiredToSearch": 1, + "displayFrontPageList": false, + "onlyEnrollOnce": false, + "programType": "WITH_REGISTRATION", + "accessLevel": "OPEN", + "version": 2, + "maxTeiCountToReturn": 0, + "selectIncidentDatesInFuture": false, + "displayIncidentDate": true, + "selectEnrollmentDatesInFuture": false, + "expiryDays": 0, + "useFirstStageDuringRegistration": false, + "categoryCombo": { + "id": "JzvGfLYkX17" + }, + "lastUpdatedBy": { + "id": "H4atNsEuKxP" + }, + "trackedEntityType": { + "id": "MCPQUTHX1Ze" + }, + "user": { + "id": "kD52FGwJgDF" + }, + "programTrackedEntityAttributes": [ + { + "lastUpdated": "2020-06-04T17:17:12.802", + "id": "OT1TfVwhsBO", + "created": "2019-09-11T12:37:56.247", + "name": "ADMIN_Analytics_Check(Tracker) First name", + "displayName": "ADMIN_Analytics_Check(Tracker) First name", + "mandatory": false, + "displayShortName": "ADMIN_Analytics_Check(Tracker) First Name", + "externalAccess": false, + "renderOptionsAsRadio": false, + "valueType": "TEXT", + "allowFutureDate": false, + "searchable": true, + "displayInList": true, + "sortOrder": 1, + "favorite": false, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "program": { + "id": "rjsnrRKjtwU" + }, + "trackedEntityAttribute": { + "id": "DwZNiXy5Daz" + }, + "favorites": [], + "programTrackedEntityAttributeGroups": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "userAccesses": [] + } + ], + "notificationTemplates": [], + "translations": [], + "organisationUnits": [ + { + "id": "H8RixfF8ugH" + } + ], + "userGroupAccesses": [ + { + "access": "r-r-----", + "userGroupUid": "sCjEPgiOhP1", + "displayName": "WIDP admins", + "id": "sCjEPgiOhP1" + }, + { + "access": "rwrw----", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + } + ], + "programSections": [], + "attributeValues": [], + "programStages": [ + { + "id": "DQitAUlaicG" + } + ], + "userAccesses": [] + } + ], + "categoryOptionCombos": [ + { + "lastUpdated": "2017-05-10T17:53:55.158", + "code": "default", + "created": "2017-05-10T17:53:55.157", + "name": "default", + "id": "Xr12mI7VPn3", + "ignoreApproval": false, + "categoryCombo": { + "id": "JzvGfLYkX17" + }, + "translations": [], + "attributeValues": [], + "categoryOptions": [ + { + "id": "Y7fcspgsU43" + } + ] + } + ], + "programStages": [ + { + "lastUpdated": "2020-06-04T17:17:12.733", + "id": "DQitAUlaicG", + "created": "2019-08-21T11:24:20.216", + "name": "check", + "allowGenerateNextVisit": false, + "preGenerateUID": false, + "publicAccess": "--------", + "openAfterEnrollment": false, + "repeatable": true, + "featureType": "NONE", + "remindCompleted": false, + "displayGenerateEventBox": true, + "generatedByEnrollmentDate": false, + "validationStrategy": "ON_COMPLETE", + "autoGenerateEvent": true, + "sortOrder": 1, + "hideDueDate": false, + "blockEntryForm": false, + "enableUserAssignment": false, + "minDaysFromStart": 0, + "program": { + "id": "rjsnrRKjtwU" + }, + "lastUpdatedBy": { + "id": "H4atNsEuKxP" + }, + "user": { + "id": "kD52FGwJgDF" + }, + "notificationTemplates": [], + "programStageDataElements": [ + { + "lastUpdated": "2020-06-04T17:17:12.734", + "id": "tzA1MiQtotT", + "created": "2019-08-21T11:24:20.216", + "displayInReports": false, + "skipSynchronization": false, + "externalAccess": false, + "renderOptionsAsRadio": false, + "allowFutureDate": false, + "compulsory": false, + "allowProvidedElsewhere": false, + "sortOrder": 1, + "favorite": false, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "programStage": { + "id": "DQitAUlaicG" + }, + "dataElement": { + "id": "euPtt2LWNis" + }, + "favorites": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "userAccesses": [] + }, + { + "lastUpdated": "2020-06-04T17:17:12.734", + "id": "RVMZjwFEH1y", + "created": "2019-08-21T11:24:20.216", + "displayInReports": false, + "skipSynchronization": false, + "externalAccess": false, + "renderOptionsAsRadio": false, + "allowFutureDate": false, + "compulsory": false, + "allowProvidedElsewhere": false, + "sortOrder": 2, + "favorite": false, + "access": { + "read": true, + "update": true, + "externalize": true, + "delete": true, + "write": true, + "manage": true + }, + "programStage": { + "id": "DQitAUlaicG" + }, + "dataElement": { + "id": "X8XLOWOJsbR" + }, + "favorites": [], + "translations": [], + "userGroupAccesses": [], + "attributeValues": [], + "userAccesses": [] + } + ], + "translations": [], + "userGroupAccesses": [ + { + "access": "r-r-----", + "userGroupUid": "sCjEPgiOhP1", + "displayName": "WIDP admins", + "id": "sCjEPgiOhP1" + }, + { + "access": "rwrw----", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + } + ], + "attributeValues": [], + "userAccesses": [], + "programStageSections": [] + } + ], + "trackedEntityTypes": [ + { + "code": "Person", + "created": "2018-11-29T00:00:00.000", + "lastUpdated": "2021-06-18T12:10:43.381", + "name": "Person", + "id": "MCPQUTHX1Ze", + "publicAccess": "--------", + "description": "Person", + "maxTeiCountToReturn": 0, + "allowAuditLog": false, + "featureType": "NONE", + "minAttributesRequiredToSearch": 1, + "lastUpdatedBy": { + "id": "Qu9goywu6cV" + }, + "user": { + "id": "ilJDyuqlwDC" + }, + "userGroupAccesses": [ + { + "access": "rwrw----", + "userGroupUid": "k1KjQJqaHpz", + "displayName": "NTD_SKIN_Admin", + "id": "k1KjQJqaHpz" + }, + { + "access": "r-------", + "userGroupUid": "Wx8ovUuTEEU", + "displayName": "SS_NTD_LSH_VL_LeishManTracker_Entry", + "id": "Wx8ovUuTEEU" + }, + { + "access": "r-r-----", + "userGroupUid": "ZyQlPOL3aSD", + "displayName": "NTD_SKIN_BU_HQ", + "id": "ZyQlPOL3aSD" + }, + { + "access": "r-------", + "userGroupUid": "adE2VMPwCI5", + "displayName": "SS_NTD_LSH_VL_LeishManTracker_View", + "id": "adE2VMPwCI5" + }, + { + "access": "r-rw----", + "userGroupUid": "HJRKloCWNeh", + "displayName": "SS_NTD_SKIN_ACD_Event_Entry", + "id": "HJRKloCWNeh" + }, + { + "access": "r-rw----", + "userGroupUid": "bzuIPO5zQPV", + "displayName": "SS_NTD_SKIN_BU_Event_Entry", + "id": "bzuIPO5zQPV" + }, + { + "access": "r-rw----", + "userGroupUid": "BIIJN4E57xU", + "displayName": "SS_NTD_SKIN_YAWS_Event_Entry", + "id": "BIIJN4E57xU" + }, + { + "access": "r-r-----", + "userGroupUid": "cy0qXsDxzxe", + "displayName": "SS_NTD_LSH_VL_LabLog_View", + "id": "cy0qXsDxzxe" + }, + { + "access": "r-------", + "userGroupUid": "GHGv3VsHn1a", + "displayName": "SS_NTD_LSH_CL_LeishManTracker_View", + "id": "GHGv3VsHn1a" + }, + { + "access": "r-r-----", + "userGroupUid": "SttGU3eGd4O", + "displayName": "SS_NTD_LSH_CL_Tracker_View", + "id": "SttGU3eGd4O" + }, + { + "access": "r-r-----", + "userGroupUid": "yBUSIP5IhrF", + "displayName": "NTD_LSH_HQ", + "id": "yBUSIP5IhrF" + }, + { + "access": "r-rw----", + "userGroupUid": "JcHpRoc6nyA", + "displayName": "SS_NTD_LSH_CL_Event_Entry", + "id": "JcHpRoc6nyA" + }, + { + "access": "r-rw----", + "userGroupUid": "urN5y60pAuu", + "displayName": "NTD_CH_HQ", + "id": "urN5y60pAuu" + }, + { + "access": "r-rw----", + "userGroupUid": "AKCiUSICdUT", + "displayName": "SS_NTD_LSH_VL_Event_Entry", + "id": "AKCiUSICdUT" + }, + { + "access": "r-r-----", + "userGroupUid": "Ot2xz1vXELL", + "displayName": "SS_NTD_CH_Healthcare_Event_View", + "id": "Ot2xz1vXELL" + }, + { + "access": "r-r-----", + "userGroupUid": "DzvWl4E1DhF", + "displayName": "SS_NTD_CH_HealthSystem_Event_View", + "id": "DzvWl4E1DhF" + }, + { + "access": "r-rw----", + "userGroupUid": "UxF4jhfIylS", + "displayName": "SS_NTD_LSH_CL_Tracker_Entry", + "id": "UxF4jhfIylS" + }, + { + "access": "r-r-----", + "userGroupUid": "XqznB7ROzB3", + "displayName": "NTD_SKIN_HQ", + "id": "XqznB7ROzB3" + }, + { + "access": "r-r-----", + "userGroupUid": "cDb6nhH0rXS", + "displayName": "SS_NTD_LSH_VL_Tracker_View", + "id": "cDb6nhH0rXS" + }, + { + "access": "r-r-----", + "userGroupUid": "YJ4SW7rs30P", + "displayName": "SS_NTD_LSH_CPG", + "id": "YJ4SW7rs30P" + }, + { + "access": "r-r-----", + "userGroupUid": "ODVk6IF6Dso", + "displayName": "SS_NTD_SKIN_ACD_Event_View", + "id": "ODVk6IF6Dso" + }, + { + "access": "r-r-----", + "userGroupUid": "YWgdwKzbsnN", + "displayName": "SS_NTD_LSH_VL_Event_View", + "id": "YWgdwKzbsnN" + }, + { + "access": "r-r-----", + "userGroupUid": "fC90V0CPRFC", + "displayName": "SS_NTD_SKIN_YAWS_Event_View", + "id": "fC90V0CPRFC" + }, + { + "access": "r-rw----", + "userGroupUid": "ln8nJQmOSpJ", + "displayName": "SS_NTD_CH_Healthcare_Event_Entry", + "id": "ln8nJQmOSpJ" + }, + { + "access": "rwr-----", + "userGroupUid": "irooBniCRle", + "displayName": "NTD admin team", + "id": "irooBniCRle" + }, + { + "access": "r-------", + "userGroupUid": "fDujq7N2i6v", + "displayName": "SS_NTD_LSH_CL_LeishManTracker_Entry", + "id": "fDujq7N2i6v" + }, + { + "access": "r-rw----", + "userGroupUid": "UnTaQrY57qi", + "displayName": "NTD_LSH_Monthly_Importer", + "id": "UnTaQrY57qi" + }, + { + "access": "rwrw----", + "userGroupUid": "r4gcKCyB5fF", + "displayName": "NTD_LSH_VL_PHC", + "id": "r4gcKCyB5fF" + }, + { + "access": "r-------", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + }, + { + "access": "r-rw----", + "userGroupUid": "TbGA9fMJpCR", + "displayName": "SS_NTD_LSH_VL_LabLog_Entry", + "id": "TbGA9fMJpCR" + }, + { + "access": "rwr-----", + "userGroupUid": "Un2GLxeuVZ2", + "displayName": "NTD_LSH_Admin", + "id": "Un2GLxeuVZ2" + }, + { + "access": "r-r-----", + "userGroupUid": "ZvxncLTan3w", + "displayName": "NTD_SKIN_Yaws_WHO", + "id": "ZvxncLTan3w" + }, + { + "access": "r-rw----", + "userGroupUid": "Qi5B1pnVvEH", + "displayName": "SS_NTD_CH_HealthSystem_Event_Entry", + "id": "Qi5B1pnVvEH" + }, + { + "access": "r-rw----", + "userGroupUid": "mYtjuODefO4", + "displayName": "SS_NTD_LSH_VL_Tracker_Entry", + "id": "mYtjuODefO4" + }, + { + "access": "r-r-----", + "userGroupUid": "UQe9YTumaCV", + "displayName": "SS_NTD_SKIN_BU_Event_View", + "id": "UQe9YTumaCV" + } + ], + "attributeValues": [], + "trackedEntityTypeAttributes": [], + "translations": [], + "userAccesses": [ + { + "access": "r-------", + "displayName": "NTD CHECK", + "id": "xgKMFzwPLs6", + "userUid": "xgKMFzwPLs6" + }, + { + "access": "r-rw----", + "displayName": "Duplicator Event", + "id": "UlXOWwGGx7W", + "userUid": "UlXOWwGGx7W" + } + ] + } + ], + "categoryOptions": [ + { + "code": "default", + "created": "2017-05-10T17:53:55.138", + "lastUpdated": "2018-07-27T16:09:07.425", + "name": "default", + "id": "Y7fcspgsU43", + "shortName": "default", + "publicAccess": "rwrw----", + "user": { + "id": "eK26I7dRbC4" + }, + "userGroupAccesses": [], + "attributeValues": [], + "translations": [], + "userAccesses": [], + "organisationUnits": [] + } + ], + "dataElements": [ + { + "lastUpdated": "2020-06-09T18:01:24.388", + "id": "euPtt2LWNis", + "created": "2019-08-21T11:20:31.515", + "name": "ADMIN_Analytics_Execution_1_Tracker", + "shortName": "ADMIN_Analytics_Execution_1_Tracker", + "aggregationType": "SUM", + "domainType": "TRACKER", + "publicAccess": "--------", + "valueType": "TRUE_ONLY", + "formName": "Analytics run at 0h", + "zeroIsSignificant": true, + "categoryCombo": { + "id": "JzvGfLYkX17" + }, + "lastUpdatedBy": { + "id": "kD52FGwJgDF" + }, + "user": { + "id": "H4atNsEuKxP" + }, + "translations": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "sCjEPgiOhP1", + "displayName": "WIDP admins", + "id": "sCjEPgiOhP1" + }, + { + "access": "rw------", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + } + ], + "attributeValues": [], + "userAccesses": [], + "legendSets": [], + "aggregationLevels": [] + }, + { + "lastUpdated": "2020-06-09T18:01:32.053", + "id": "X8XLOWOJsbR", + "created": "2019-08-21T11:22:01.691", + "name": "ADMIN_Analytics_Execution_2_Tracker", + "shortName": "ADMIN_Analytics_Execution_2_Tracker", + "aggregationType": "SUM", + "domainType": "TRACKER", + "publicAccess": "--------", + "valueType": "TRUE_ONLY", + "formName": "Analytics run at 12h", + "zeroIsSignificant": true, + "categoryCombo": { + "id": "JzvGfLYkX17" + }, + "lastUpdatedBy": { + "id": "kD52FGwJgDF" + }, + "user": { + "id": "H4atNsEuKxP" + }, + "translations": [], + "userGroupAccesses": [ + { + "access": "r-------", + "userGroupUid": "sCjEPgiOhP1", + "displayName": "WIDP admins", + "id": "sCjEPgiOhP1" + }, + { + "access": "rw------", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + } + ], + "attributeValues": [], + "userAccesses": [], + "legendSets": [], + "aggregationLevels": [] + } + ], + "categories": [ + { + "code": "default", + "created": "2017-05-10T17:53:55.152", + "lastUpdated": "2021-08-07T06:18:19.628", + "name": "default", + "id": "DMyxTSpvKOp", + "dataDimensionType": "DISAGGREGATION", + "publicAccess": "rw------", + "dataDimension": false, + "user": { + "id": "eK26I7dRbC4" + }, + "userGroupAccesses": [], + "attributeValues": [], + "translations": [], + "userAccesses": [], + "categoryOptions": [ + { + "id": "Y7fcspgsU43" + } + ] + } + ], + "programStageDataElements": [ + { + "created": "2019-08-21T11:24:20.216", + "lastUpdated": "2020-06-04T17:17:12.734", + "id": "tzA1MiQtotT", + "displayInReports": false, + "skipSynchronization": false, + "renderOptionsAsRadio": false, + "compulsory": false, + "allowProvidedElsewhere": false, + "sortOrder": 1, + "allowFutureDate": false, + "programStage": { + "id": "DQitAUlaicG" + }, + "dataElement": { + "id": "euPtt2LWNis" + } + }, + { + "created": "2019-08-21T11:24:20.216", + "lastUpdated": "2020-06-04T17:17:12.734", + "id": "RVMZjwFEH1y", + "displayInReports": false, + "skipSynchronization": false, + "renderOptionsAsRadio": false, + "compulsory": false, + "allowProvidedElsewhere": false, + "sortOrder": 2, + "allowFutureDate": false, + "programStage": { + "id": "DQitAUlaicG" + }, + "dataElement": { + "id": "X8XLOWOJsbR" + } + } + ], + "programTrackedEntityAttributes": [ + { + "created": "2019-09-11T12:37:56.247", + "lastUpdated": "2020-06-04T17:17:12.802", + "id": "OT1TfVwhsBO", + "mandatory": false, + "searchable": true, + "renderOptionsAsRadio": false, + "displayInList": true, + "sortOrder": 1, + "allowFutureDate": false, + "program": { + "id": "rjsnrRKjtwU" + }, + "trackedEntityAttribute": { + "id": "DwZNiXy5Daz" + }, + "programTrackedEntityAttributeGroups": [] + } + ], + "trackedEntityAttributes": [ + { + "code": "ALL_At_FirstName", + "lastUpdated": "2021-05-26T19:30:52.289", + "id": "DwZNiXy5Daz", + "created": "2016-06-08T12:49:53.384", + "name": "First name", + "shortName": "First Name", + "aggregationType": "NONE", + "displayInListNoProgram": true, + "publicAccess": "r-------", + "pattern": "", + "description": "First name of patient", + "skipSynchronization": false, + "sortOrderInListNoProgram": 2, + "generated": false, + "displayOnVisitSchedule": false, + "valueType": "TEXT", + "orgunitScope": false, + "confidential": false, + "unique": false, + "inherit": false, + "lastUpdatedBy": { + "id": "kD52FGwJgDF" + }, + "user": { + "id": "ilJDyuqlwDC" + }, + "translations": [ + { + "property": "DESCRIPTION", + "locale": "pt", + "value": "Primeiro nome do Paciente" + } + ], + "userGroupAccesses": [ + { + "access": "rw------", + "userGroupUid": "UfhhwZK73Lg", + "displayName": "WIDP IT team", + "id": "UfhhwZK73Lg" + } + ], + "attributeValues": [], + "userAccesses": [], + "legendSets": [] + } + ] + } +] \ No newline at end of file diff --git a/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx b/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx index 063b04e..a17b4b5 100644 --- a/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx @@ -11,7 +11,6 @@ export const SummaryApplyStep: React.FC = ({ bui const snackbar = useSnackbar(); const [importResult, setImportResult] = useState(); - const applySharingSync = useCallback(() => { compositionRoot.metadata .applySharingSettings(builder) From 4a0f6a63c41943fae198f0cfac0e35f5183e7cbe Mon Sep 17 00:00:00 2001 From: Jocelyn Dunkley Date: Wed, 22 Sep 2021 11:54:37 +0200 Subject: [PATCH 37/50] revert env --- .env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env b/.env index b44ae71..e99a73e 100644 --- a/.env +++ b/.env @@ -1,7 +1,7 @@ BROWSER=false PORT=8081 SKIP_PREFLIGHT_CHECK=true -REACT_APP_DHIS2_BASE_URL=https://dev.eyeseetea.com/who-dev-234 +REACT_APP_DHIS2_BASE_URL=https://dev.eyeseetea.com/play CYPRESS_DHIS2_AUTH='admin:district' CYPRESS_EXTERNAL_API="https://dev.eyeseetea.com/play" From 880b202ad617c5dc63dcdc7013cd4fe7823d2c25 Mon Sep 17 00:00:00 2001 From: Jocelyn Dunkley Date: Wed, 22 Sep 2021 11:56:48 +0200 Subject: [PATCH 38/50] prettify --- .../metadata/ApplySharingSettingsUseCase.ts | 6 +- .../ApplySharingSettingsUseCase.spec.ts | 60 +- .../metadata/__tests__/dashboardProgram1.ts | 11032 ++++++++-------- .../bulk-apply/steps/SummaryApplyStep.tsx | 1 + 4 files changed, 5493 insertions(+), 5606 deletions(-) diff --git a/src/domain/usecases/metadata/ApplySharingSettingsUseCase.ts b/src/domain/usecases/metadata/ApplySharingSettingsUseCase.ts index c1403d4..e2db405 100644 --- a/src/domain/usecases/metadata/ApplySharingSettingsUseCase.ts +++ b/src/domain/usecases/metadata/ApplySharingSettingsUseCase.ts @@ -12,9 +12,9 @@ export class ApplySharingSettingsUseCase implements UseCase { public execute(update: SharingUpdate): FutureData { const { baseElements, excludedDependencies, sharings, replaceExistingSharings } = update; return this.metadataRepository - .getDependencies(baseElements) - .map(payload => this.cleanPayload(payload, excludedDependencies)) - .map(payload => this.sharePayload(payload, sharings, replaceExistingSharings)); + .getDependencies(baseElements) + .map(payload => this.cleanPayload(payload, excludedDependencies)) + .map(payload => this.sharePayload(payload, sharings, replaceExistingSharings)); } private cleanPayload(payload: Record, excludedDependencies: string[]): MetadataPayload { diff --git a/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts index eff6e95..b1e850d 100644 --- a/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts +++ b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts @@ -11,52 +11,63 @@ describe("Apply sharing settings use case", () => { let metadataRepository: MetadataRepository; let usecase: ApplySharingSettingsUseCase; const tests = [ - { ids: ["dashboard1", "dashboard2", "program1", "program2"], strategy: "merge", users: [{id: 's5EVHUwoFKu', access: 'rw------', name: 'Alexis Rico'}], userGroups: [], publicAccess: "--------" }, - ]; + { + ids: ["dashboard1", "dashboard2", "program1", "program2"], + strategy: "merge", + users: [{ id: "s5EVHUwoFKu", access: "rw------", name: "Alexis Rico" }], + userGroups: [], + publicAccess: "--------", + }, + ]; beforeEach(() => { metadataRepository = new MockMetadataRepository(); usecase = new ApplySharingSettingsUseCase(metadataRepository); - }); for (const test in tests) { - // TODO: Add more tests until we have a complete set of use cases - it('dashboards and programs with users and no public access', async () => { + // TODO: Add more tests until we have a complete set of use cases + it("dashboards and programs with users and no public access", async () => { usecase .execute({ baseElements: ["dashboard1", "dashboard2", "program1", "program2"], excludedDependencies: [], sharings: { publicAccess: "--------", //test.publicAccess - userAccesses: [{id: 's5EVHUwoFKu', access: 'rw------', name: 'Alexis Rico'}], + userAccesses: [{ id: "s5EVHUwoFKu", access: "rw------", name: "Alexis Rico" }], userGroupAccesses: [], }, replaceExistingSharings: false, }) - .run(results => { - // TODO: Validate results, check that sharing settings have been applied - const resultsValue = _.values(results) - const allMdTypesTogether = [...(_.flatten(resultsValue))]; - allMdTypesTogether.forEach(arr => { - expect(arr.publicAccess).toBe("--------"); - expect(arr.userAccesses).toContainEqual({id: 's5EVHUwoFKu', access: 'rw------', name: 'Alexis Rico'}); - - }) - }, error => console.log(error)); - }) - } + .run( + results => { + // TODO: Validate results, check that sharing settings have been applied + const resultsValue = _.values(results); + const allMdTypesTogether = [..._.flatten(resultsValue)]; + allMdTypesTogether.forEach(arr => { + expect(arr.publicAccess).toBe("--------"); + expect(arr.userAccesses).toContainEqual({ + id: "s5EVHUwoFKu", + access: "rw------", + name: "Alexis Rico", + }); + }); + }, + error => console.log(error) + ); + }); + } }); class MockMetadataRepository implements MetadataRepository { getDependencies(_ids: string[]): FutureData { // TODO: Include a medium-sized complex payload - const dictionary:Record = { + const dictionary: Record = { dashboard1: dashboardProgram1[0], dashboard2: dashboardProgram1[1], program1: dashboardProgram1[2], - program2: dashboardProgram1[3] - } - - const ff = mergePayloads(_ids.map(id => dictionary[id])) + program2: dashboardProgram1[3], + }; + + const ff = mergePayloads(_ids.map(id => dictionary[id])); return Future.success(ff); } @@ -83,5 +94,4 @@ class MockMetadataRepository implements MetadataRepository { } } -export { }; - +export {}; diff --git a/src/domain/usecases/metadata/__tests__/dashboardProgram1.ts b/src/domain/usecases/metadata/__tests__/dashboardProgram1.ts index dceaced..5908db3 100644 --- a/src/domain/usecases/metadata/__tests__/dashboardProgram1.ts +++ b/src/domain/usecases/metadata/__tests__/dashboardProgram1.ts @@ -1,6090 +1,5966 @@ export const dashboardProgram1 = [ { - "date": "2021-09-21T08:57:04.104", - "dashboards": [ + date: "2021-09-21T08:57:04.104", + dashboards: [ { - "created": "2019-08-07T10:21:04.280", - "lastUpdated": "2021-01-22T10:41:52.766", - "name": "0. Aggregate Metrics Across Facilities", - "id": "oarhBUuQMop", - "publicAccess": "--------", - "description": "This dashboard shows aggregate trends in injury epidemiology and emergency care service delivery across facilities or sub-national regions.", - "externalAccess": false, - "lastUpdatedBy": { - "id": "rjqURGgOShK" - }, - "user": { - "id": "wUd8NBL7fn2" - }, - "favorites": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "x8Tk2UMgpAd", - "displayName": "ETA Ministry Analysis Only - Events", - "id": "x8Tk2UMgpAd" - }, - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" - }, - { - "access": "rw------", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" - } + created: "2019-08-07T10:21:04.280", + lastUpdated: "2021-01-22T10:41:52.766", + name: "0. Aggregate Metrics Across Facilities", + id: "oarhBUuQMop", + publicAccess: "--------", + description: + "This dashboard shows aggregate trends in injury epidemiology and emergency care service delivery across facilities or sub-national regions.", + externalAccess: false, + lastUpdatedBy: { + id: "rjqURGgOShK", + }, + user: { + id: "wUd8NBL7fn2", + }, + favorites: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "x8Tk2UMgpAd", + displayName: "ETA Ministry Analysis Only - Events", + id: "x8Tk2UMgpAd", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, ], - "dashboardItems": [ - { - "lastUpdated": "2019-10-03T12:41:12.718", - "id": "Tw1C88i7OuQ", - "created": "2019-10-03T12:41:12.664", - "type": "VISUALIZATION", - "externalAccess": false, - "contentCount": 1, - "height": 23, - "shape": "NORMAL", - "interpretationCount": 0, - "width": 29, - "x": 29, - "y": 115, - "interpretationLikeCount": 0, - "favorite": false, - "visualization": { - "id": "MZVcLW1IEC4" - }, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "favorites": [], - "reports": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - }, - { - "lastUpdated": "2019-10-03T12:41:12.718", - "id": "sWpEfbeZTqp", - "created": "2019-10-03T12:41:12.664", - "type": "VISUALIZATION", - "externalAccess": false, - "contentCount": 1, - "height": 23, - "shape": "NORMAL", - "interpretationCount": 0, - "width": 29, - "x": 0, - "y": 115, - "interpretationLikeCount": 0, - "favorite": false, - "visualization": { - "id": "i5KdtSPPR1s" - }, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "favorites": [], - "reports": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - }, - { - "lastUpdated": "2019-10-03T12:41:12.718", - "id": "VqgBa4cQhpd", - "created": "2019-10-03T12:41:12.664", - "type": "VISUALIZATION", - "externalAccess": false, - "contentCount": 1, - "height": 27, - "shape": "NORMAL", - "interpretationCount": 0, - "width": 28, - "x": 29, - "y": 88, - "interpretationLikeCount": 0, - "favorite": false, - "visualization": { - "id": "PeQt42fW5at" - }, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "favorites": [], - "reports": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - }, - { - "lastUpdated": "2019-10-03T12:41:12.718", - "id": "bGHJkc21EIH", - "created": "2019-10-03T12:41:12.664", - "type": "VISUALIZATION", - "externalAccess": false, - "contentCount": 1, - "height": 27, - "shape": "NORMAL", - "interpretationCount": 0, - "width": 29, - "x": 0, - "y": 88, - "interpretationLikeCount": 0, - "favorite": false, - "visualization": { - "id": "WcrODt1Ny6v" - }, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "favorites": [], - "reports": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - }, - { - "lastUpdated": "2019-10-03T12:41:12.718", - "id": "dbgjUHo1so4", - "created": "2019-10-03T12:41:12.664", - "type": "VISUALIZATION", - "externalAccess": false, - "contentCount": 1, - "height": 20, - "shape": "NORMAL", - "interpretationCount": 0, - "width": 28, - "x": 29, - "y": 68, - "interpretationLikeCount": 0, - "favorite": false, - "visualization": { - "id": "y6xD2lJ8ner" - }, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "favorites": [], - "reports": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - }, - { - "lastUpdated": "2019-10-03T12:41:12.719", - "id": "JavyddBFRNx", - "created": "2019-10-03T12:41:12.664", - "type": "VISUALIZATION", - "externalAccess": false, - "contentCount": 1, - "height": 20, - "shape": "NORMAL", - "interpretationCount": 0, - "width": 29, - "x": 0, - "y": 68, - "interpretationLikeCount": 0, - "favorite": false, - "visualization": { - "id": "ze8ogu7SMV0" - }, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "favorites": [], - "reports": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - }, - { - "lastUpdated": "2019-10-03T12:41:12.719", - "id": "eQx20tLPAIy", - "created": "2019-10-03T12:41:12.664", - "type": "REPORTS", - "externalAccess": false, - "contentCount": 1, - "height": 6, - "shape": "NORMAL", - "interpretationCount": 0, - "width": 57, - "x": 0, - "y": 0, - "interpretationLikeCount": 0, - "favorite": false, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "favorites": [], - "reports": [ + dashboardItems: [ + { + lastUpdated: "2019-10-03T12:41:12.718", + id: "Tw1C88i7OuQ", + created: "2019-10-03T12:41:12.664", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 23, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 29, + y: 115, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "MZVcLW1IEC4", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2019-10-03T12:41:12.718", + id: "sWpEfbeZTqp", + created: "2019-10-03T12:41:12.664", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 23, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 115, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "i5KdtSPPR1s", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2019-10-03T12:41:12.718", + id: "VqgBa4cQhpd", + created: "2019-10-03T12:41:12.664", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 27, + shape: "NORMAL", + interpretationCount: 0, + width: 28, + x: 29, + y: 88, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "PeQt42fW5at", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2019-10-03T12:41:12.718", + id: "bGHJkc21EIH", + created: "2019-10-03T12:41:12.664", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 27, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 88, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "WcrODt1Ny6v", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2019-10-03T12:41:12.718", + id: "dbgjUHo1so4", + created: "2019-10-03T12:41:12.664", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 28, + x: 29, + y: 68, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "y6xD2lJ8ner", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2019-10-03T12:41:12.719", + id: "JavyddBFRNx", + created: "2019-10-03T12:41:12.664", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 68, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "ze8ogu7SMV0", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2019-10-03T12:41:12.719", + id: "eQx20tLPAIy", + created: "2019-10-03T12:41:12.664", + type: "REPORTS", + externalAccess: false, + contentCount: 1, + height: 6, + shape: "NORMAL", + interpretationCount: 0, + width: 57, + x: 0, + y: 0, + interpretationLikeCount: 0, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [ { - "id": "U1gvkjiEd7p" - } + id: "U1gvkjiEd7p", + }, ], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - }, - { - "lastUpdated": "2019-10-03T12:41:12.719", - "id": "asWpvfXnH7w", - "created": "2019-10-03T12:41:12.664", - "type": "VISUALIZATION", - "externalAccess": false, - "contentCount": 1, - "height": 20, - "shape": "NORMAL", - "interpretationCount": 0, - "width": 29, - "x": 0, - "y": 48, - "interpretationLikeCount": 0, - "favorite": false, - "visualization": { - "id": "LaBh3UndSn0" - }, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "favorites": [], - "reports": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - }, - { - "lastUpdated": "2019-10-03T12:41:12.719", - "id": "aG7gzSF4ION", - "created": "2019-10-03T12:41:12.664", - "type": "VISUALIZATION", - "externalAccess": false, - "contentCount": 1, - "height": 20, - "shape": "NORMAL", - "interpretationCount": 0, - "width": 28, - "x": 29, - "y": 48, - "interpretationLikeCount": 0, - "favorite": false, - "visualization": { - "id": "D240hYLRs1P" - }, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "favorites": [], - "reports": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - }, - { - "lastUpdated": "2019-10-03T12:41:12.719", - "id": "uyyBLEFAqu9", - "created": "2019-10-03T12:41:12.664", - "type": "VISUALIZATION", - "externalAccess": false, - "contentCount": 1, - "height": 21, - "shape": "NORMAL", - "interpretationCount": 0, - "width": 28, - "x": 29, - "y": 27, - "interpretationLikeCount": 0, - "favorite": false, - "visualization": { - "id": "Kny8eI7Fmc2" - }, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "favorites": [], - "reports": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - }, - { - "lastUpdated": "2019-10-03T12:41:12.719", - "id": "HvVzQ45EQ2c", - "created": "2019-10-03T12:41:12.664", - "type": "VISUALIZATION", - "externalAccess": false, - "contentCount": 1, - "height": 21, - "shape": "NORMAL", - "interpretationCount": 0, - "width": 29, - "x": 0, - "y": 27, - "interpretationLikeCount": 0, - "favorite": false, - "visualization": { - "id": "WaznCszwnj7" - }, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "favorites": [], - "reports": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - }, - { - "lastUpdated": "2019-10-03T12:41:12.719", - "id": "xiNd35sTLg7", - "created": "2019-10-03T12:41:12.664", - "type": "VISUALIZATION", - "externalAccess": false, - "contentCount": 1, - "height": 21, - "shape": "NORMAL", - "interpretationCount": 0, - "width": 28, - "x": 29, - "y": 6, - "interpretationLikeCount": 0, - "favorite": false, - "visualization": { - "id": "sLwsZrhJApo" - }, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "favorites": [], - "reports": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - }, - { - "lastUpdated": "2019-10-03T12:41:12.719", - "id": "KKyBvXXA2eF", - "created": "2019-10-03T12:41:12.664", - "type": "VISUALIZATION", - "externalAccess": false, - "contentCount": 1, - "height": 21, - "shape": "NORMAL", - "interpretationCount": 0, - "width": 29, - "x": 0, - "y": 6, - "interpretationLikeCount": 0, - "favorite": false, - "visualization": { - "id": "p80Lq4yL3YK" - }, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "favorites": [], - "reports": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - } + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2019-10-03T12:41:12.719", + id: "asWpvfXnH7w", + created: "2019-10-03T12:41:12.664", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 48, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "LaBh3UndSn0", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2019-10-03T12:41:12.719", + id: "aG7gzSF4ION", + created: "2019-10-03T12:41:12.664", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 28, + x: 29, + y: 48, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "D240hYLRs1P", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2019-10-03T12:41:12.719", + id: "uyyBLEFAqu9", + created: "2019-10-03T12:41:12.664", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 21, + shape: "NORMAL", + interpretationCount: 0, + width: 28, + x: 29, + y: 27, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "Kny8eI7Fmc2", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2019-10-03T12:41:12.719", + id: "HvVzQ45EQ2c", + created: "2019-10-03T12:41:12.664", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 21, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 27, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "WaznCszwnj7", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2019-10-03T12:41:12.719", + id: "xiNd35sTLg7", + created: "2019-10-03T12:41:12.664", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 21, + shape: "NORMAL", + interpretationCount: 0, + width: 28, + x: 29, + y: 6, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "sLwsZrhJApo", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2019-10-03T12:41:12.719", + id: "KKyBvXXA2eF", + created: "2019-10-03T12:41:12.664", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 21, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 6, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "p80Lq4yL3YK", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, ], - "translations": [], - "userAccesses": [] - } + translations: [], + userAccesses: [], + }, ], - "reports": [ + reports: [ { - "created": "2019-08-22T12:38:07.255", - "lastUpdated": "2021-01-22T10:41:53.070", - "name": "Injury Epidemiology", - "id": "U1gvkjiEd7p", - "designContent": "\n\n\n\n\n
\n
\n
\n
\n \n \n \n \n
\n

Injury Epidemiology

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Organisation Unit:\n
\n
Export to CSV
Report Quarter:\n
\n
Generated on:\n
\n
\n
\n
\n

\n
Click on a column name to change the sort order
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
GroupSub-Group\n \n < 1 yr\n 1 - 4 yr5 - 9 yr10 - 14 yr15 - 19 yr20 - 40 yr40 - 60 yr60 - 80 yr80+ yrUnknownTotal
SexFemale\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Male\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Other\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Major Medical ComorbiditiesMean (Standard Deviation)\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
Injury MechanismRoad traffic incident\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Other transport incident\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Hit by person object\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Falls\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Gun shot\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Stab, cut, and all penetrating than gunshot\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Sexual assault\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Animal Bite or Scratch (not snake)\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Snake bite\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Drowning submersion\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Burns\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Electric lightning injury\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Poisoning or toxic exposure\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Radiation exposure\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Suffocation, choking, hanging\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Explosive blast\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Exposure to forces nature\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Other\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Unknown\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Missing from chart\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
ConditionContusion, haematoma or abrasion\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Laceration/wound (not amputation)\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Sprain or other muscle/tendon injury\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Joint dislocation\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Closed fracture\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Open fracture\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Burn\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Crush injury\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Compartment syndrome\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Focal sensory or motor deficit\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Amputation\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Foreign body\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Pneumothorax haemothorax\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Shock\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Coagulopathy\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Respiratory failure\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Airway obstruction\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Altered mental status\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Complication of pregnancy, trauma induced,\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Other unspecified\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Missing from chart\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Injury Anatomic LocationIntracranial\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Head, Face, Neck\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Chest Wall, Intrathoracic\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Spine (bony and cord)\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Abdominal wall, Abdominopelvic, Bony pelivs, Genitalia\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Upper Extremity\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Lower Extremity\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
External (skin)\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Other, including systemic\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Missing from chart\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Arrival ModeAmbulance\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Private vehicle- car or truck\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Private vehicle- motorised 2- or 3- wheeler 2- 3-wheeler\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Taxi- car or truck\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Taxi- motorised 2- or 3- wheeler\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Public transportation\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Police\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Non-motorised vehicle (bicycle, rickshaw, cart vehicle\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Walking\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Other\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Unknown\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Missing from chart\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Number of Operating Theatre EncountersMean (Standard Deviation)\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
Length of stayMean (Standard Deviation)\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
Patients Referred In-\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Referring Facility LevelCommunity health post/dispensary\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Primary health centre\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
First-level hospital\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Second-level hospital\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Tertiary hospital and higher level\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Missing from chart\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Unknown\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
DispositionAdmitted\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Transferred\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
\n *Percentages are displayed as percent of specific age group aggregations divided by the total registry cases for that age group during the period. It is possible for some values to be entered multiple times for a single patient (i.e. Injury Mechanism,\n Condition, etc), so percentages may have a sum total greater than 100% due to some patients being counted multiple times for different conditions.\n
\n
\n
\n
\n", - "publicAccess": "--------", - "type": "HTML", - "externalAccess": false, - "cacheStrategy": "RESPECT_SYSTEM_SETTING", - "lastUpdatedBy": { - "id": "wUd8NBL7fn2" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": true, - "last12Months": false, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": false, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": false - }, - "reportParams": { - "parentOrganisationUnit": false, - "reportingPeriod": true, - "organisationUnit": true, - "grandParentOrganisationUnit": false - }, - "user": { - "id": "wUd8NBL7fn2" - }, - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "c8sN59GDJpC", - "displayName": "ETA Data Entry - Events", - "id": "c8sN59GDJpC" - }, - { - "access": "r-------", - "userGroupUid": "x8Tk2UMgpAd", - "displayName": "ETA Ministry Analysis Only - Events", - "id": "x8Tk2UMgpAd" - }, - { - "access": "r-------", - "userGroupUid": "J68LnyQufb9", - "displayName": "ETA Facility Analysis Only - Events", - "id": "J68LnyQufb9" - }, - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" - }, - { - "access": "rw------", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" - } + created: "2019-08-22T12:38:07.255", + lastUpdated: "2021-01-22T10:41:53.070", + name: "Injury Epidemiology", + id: "U1gvkjiEd7p", + designContent: + '\n\n\n\n\n
\n
\n
\n
\n \n \n \n \n
\n

Injury Epidemiology

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Organisation Unit:\n
\n
Export to CSV
Report Quarter:\n
\n
Generated on:\n
\n
\n
\n
\n

\n
Click on a column name to change the sort order
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
GroupSub-Group\n \n < 1 yr\n 1 - 4 yr5 - 9 yr10 - 14 yr15 - 19 yr20 - 40 yr40 - 60 yr60 - 80 yr80+ yrUnknownTotal
SexFemale\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Male\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Other\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Major Medical ComorbiditiesMean (Standard Deviation)\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
Injury MechanismRoad traffic incident\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Other transport incident\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Hit by person object\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Falls\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Gun shot\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Stab, cut, and all penetrating than gunshot\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Sexual assault\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Animal Bite or Scratch (not snake)\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Snake bite\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Drowning submersion\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Burns\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Electric lightning injury\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Poisoning or toxic exposure\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Radiation exposure\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Suffocation, choking, hanging\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Explosive blast\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Exposure to forces nature\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Other\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Unknown\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Missing from chart\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
ConditionContusion, haematoma or abrasion\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Laceration/wound (not amputation)\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Sprain or other muscle/tendon injury\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Joint dislocation\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Closed fracture\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Open fracture\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Burn\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Crush injury\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Compartment syndrome\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Focal sensory or motor deficit\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Amputation\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Foreign body\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Pneumothorax haemothorax\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Shock\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Coagulopathy\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Respiratory failure\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Airway obstruction\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Altered mental status\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Complication of pregnancy, trauma induced,\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Other unspecified\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Missing from chart\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Injury Anatomic LocationIntracranial\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Head, Face, Neck\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Chest Wall, Intrathoracic\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Spine (bony and cord)\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Abdominal wall, Abdominopelvic, Bony pelivs, Genitalia\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Upper Extremity\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Lower Extremity\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
External (skin)\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Other, including systemic\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Missing from chart\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Arrival ModeAmbulance\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Private vehicle- car or truck\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Private vehicle- motorised 2- or 3- wheeler 2- 3-wheeler\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Taxi- car or truck\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Taxi- motorised 2- or 3- wheeler\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Public transportation\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Police\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Non-motorised vehicle (bicycle, rickshaw, cart vehicle\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Walking\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Other\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Unknown\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Missing from chart\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Number of Operating Theatre EncountersMean (Standard Deviation)\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
Length of stayMean (Standard Deviation)\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
\n
0 (SD 0)
\n
Patients Referred In-\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Referring Facility LevelCommunity health post/dispensary\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Primary health centre\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
First-level hospital\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Second-level hospital\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Tertiary hospital and higher level\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Missing from chart\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Unknown\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
DispositionAdmitted\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
Transferred\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
0 (0.0%)
\n
\n
\n *Percentages are displayed as percent of specific age group aggregations divided by the total registry cases for that age group during the period. It is possible for some values to be entered multiple times for a single patient (i.e. Injury Mechanism,\n Condition, etc), so percentages may have a sum total greater than 100% due to some patients being counted multiple times for different conditions.\n
\n
\n
\n
\n', + publicAccess: "--------", + type: "HTML", + externalAccess: false, + cacheStrategy: "RESPECT_SYSTEM_SETTING", + lastUpdatedBy: { + id: "wUd8NBL7fn2", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: true, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, + }, + reportParams: { + parentOrganisationUnit: false, + reportingPeriod: true, + organisationUnit: true, + grandParentOrganisationUnit: false, + }, + user: { + id: "wUd8NBL7fn2", + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "c8sN59GDJpC", + displayName: "ETA Data Entry - Events", + id: "c8sN59GDJpC", + }, + { + access: "r-------", + userGroupUid: "x8Tk2UMgpAd", + displayName: "ETA Ministry Analysis Only - Events", + id: "x8Tk2UMgpAd", + }, + { + access: "r-------", + userGroupUid: "J68LnyQufb9", + displayName: "ETA Facility Analysis Only - Events", + id: "J68LnyQufb9", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, ], - "translations": [], - "userAccesses": [] - } + translations: [], + userAccesses: [], + }, ], - "visualizations": [ + visualizations: [ { - "lastUpdated": "2021-01-22T10:41:52.787", - "id": "LaBh3UndSn0", - "created": "2019-10-04T13:01:27.457", - "name": "Number of Pediatric Patients (<5 and <13), by Facility", - "showData": true, - "publicAccess": "--------", - "userOrganisationUnitChildren": true, - "type": "COLUMN", - "hideEmptyColumns": false, - "hideEmptyRows": false, - "userOrganisationUnit": true, - "rowSubTotals": false, - "displayDensity": "NORMAL", - "regressionType": "NONE", - "cumulativeValues": false, - "completedOnly": false, - "colTotals": false, - "showDimensionLabels": false, - "sortOrder": 0, - "subtitle": "Aggregate, last 12 months and current month", - "fontSize": "NORMAL", - "rangeAxisDecimals": 0, - "topLimit": 0, - "hideEmptyRowItems": "NONE", - "aggregationType": "DEFAULT", - "userOrganisationUnitGrandChildren": false, - "hideSubtitle": false, - "title": "Number of Pediatric Patients by Facility", - "hideLegend": false, - "externalAccess": false, - "percentStackedValues": false, - "colSubTotals": false, - "noSpaceBetweenColumns": true, - "showHierarchy": false, - "rowTotals": false, - "digitGroupSeparator": "SPACE", - "hideTitle": true, - "regression": false, - "skipRounding": false, - "lastUpdatedBy": { - "id": "rjqURGgOShK" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": false, - "last12Months": true, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": true, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": false - }, - "reportingParams": { - "parentOrganisationUnit": false, - "reportingPeriod": false, - "organisationUnit": false, - "grandParentOrganisationUnit": false - }, - "user": { - "id": "rjqURGgOShK" - }, - "dataElementGroupSetDimensions": [], - "translations": [], - "yearlySeries": [], - "filterDimensions": [ - "pe" + lastUpdated: "2021-01-22T10:41:52.787", + id: "LaBh3UndSn0", + created: "2019-10-04T13:01:27.457", + name: "Number of Pediatric Patients (<5 and <13), by Facility", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: true, + type: "COLUMN", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + subtitle: "Aggregate, last 12 months and current month", + fontSize: "NORMAL", + rangeAxisDecimals: 0, + topLimit: 0, + hideEmptyRowItems: "NONE", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + title: "Number of Pediatric Patients by Facility", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: true, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: true, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "rjqURGgOShK", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: true, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: true, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, + }, + user: { + id: "rjqURGgOShK", + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: ["pe"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "x8Tk2UMgpAd", + displayName: "ETA Ministry Analysis Only - Events", + id: "x8Tk2UMgpAd", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, ], - "itemOrganisationUnitGroups": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "x8Tk2UMgpAd", - "displayName": "ETA Ministry Analysis Only - Events", - "id": "x8Tk2UMgpAd" + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "AQUofPo1l6y", + }, }, { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" + dataDimensionItemType: "INDICATOR", + indicator: { + id: "fa6QZ4nhZ5s", + }, }, - { - "access": "rw------", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" - } - ], - "subscribers": [], - "columnDimensions": [ - "dx" - ], - "optionalAxes": [], - "userAccesses": [], - "favorites": [], - "dataDimensionItems": [ - { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "AQUofPo1l6y" - } - }, - { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "fa6QZ4nhZ5s" - } - } ], - "categoryOptionGroupSetDimensions": [], - "organisationUnitGroupSetDimensions": [], - "organisationUnitLevels": [], - "periods": [], - "organisationUnits": [], - "categoryDimensions": [], - "rowDimensions": [ - "ou" - ] + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["ou"], }, { - "lastUpdated": "2021-01-22T10:41:52.801", - "id": "i5KdtSPPR1s", - "created": "2019-10-01T15:56:38.048", - "name": "Quarterly Count of Emergency Unit Procedures", - "showData": false, - "numberType": "VALUE", - "publicAccess": "--------", - "userOrganisationUnitChildren": false, - "legendDisplayStyle": "FILL", - "type": "PIVOT_TABLE", - "hideEmptyColumns": false, - "hideEmptyRows": true, - "userOrganisationUnit": false, - "rowSubTotals": false, - "displayDensity": "NORMAL", - "cumulativeValues": false, - "completedOnly": false, - "colTotals": true, - "showDimensionLabels": false, - "sortOrder": 2, - "fontSize": "NORMAL", - "topLimit": 0, - "aggregationType": "DEFAULT", - "userOrganisationUnitGrandChildren": false, - "hideSubtitle": false, - "description": "", - "title": "EU Procedures, by Quarter", - "hideLegend": false, - "externalAccess": false, - "percentStackedValues": false, - "legendDisplayStrategy": "BY_DATA_ITEM", - "colSubTotals": false, - "noSpaceBetweenColumns": false, - "showHierarchy": false, - "rowTotals": true, - "digitGroupSeparator": "SPACE", - "hideTitle": false, - "regression": false, - "skipRounding": false, - "lastUpdatedBy": { - "id": "rjqURGgOShK" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": true, - "last12Months": false, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": false, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": true - }, - "reportingParams": { - "parentOrganisationUnit": false, - "reportingPeriod": false, - "organisationUnit": false, - "grandParentOrganisationUnit": false - }, - "user": { - "id": "rjqURGgOShK" - }, - "dataElementGroupSetDimensions": [], - "translations": [], - "yearlySeries": [], - "filterDimensions": [], - "itemOrganisationUnitGroups": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "x8Tk2UMgpAd", - "displayName": "ETA Ministry Analysis Only - Events", - "id": "x8Tk2UMgpAd" - }, - { - "access": "rw------", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" - }, - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" - } - ], - "subscribers": [], - "columnDimensions": [ - "pe" + lastUpdated: "2021-01-22T10:41:52.801", + id: "i5KdtSPPR1s", + created: "2019-10-01T15:56:38.048", + name: "Quarterly Count of Emergency Unit Procedures", + showData: false, + numberType: "VALUE", + publicAccess: "--------", + userOrganisationUnitChildren: false, + legendDisplayStyle: "FILL", + type: "PIVOT_TABLE", + hideEmptyColumns: false, + hideEmptyRows: true, + userOrganisationUnit: false, + rowSubTotals: false, + displayDensity: "NORMAL", + cumulativeValues: false, + completedOnly: false, + colTotals: true, + showDimensionLabels: false, + sortOrder: 2, + fontSize: "NORMAL", + topLimit: 0, + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + description: "", + title: "EU Procedures, by Quarter", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + legendDisplayStrategy: "BY_DATA_ITEM", + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: true, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "rjqURGgOShK", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: true, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: true, + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, + }, + user: { + id: "rjqURGgOShK", + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: [], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "x8Tk2UMgpAd", + displayName: "ETA Ministry Analysis Only - Events", + id: "x8Tk2UMgpAd", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", + }, ], - "optionalAxes": [], - "userAccesses": [], - "favorites": [], - "dataDimensionItems": [ - { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "lZHlad1rM9U" - } + subscribers: [], + columnDimensions: ["pe"], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "lZHlad1rM9U", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "hziRVPDODLn" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "hziRVPDODLn", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "I7y4f6rF3ip" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "I7y4f6rF3ip", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "S4VX7xv3bs9" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "S4VX7xv3bs9", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "kEZS9lHXbeY" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "kEZS9lHXbeY", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "gXViC97LApE" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "gXViC97LApE", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "DPEblEZOc6u" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "DPEblEZOc6u", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "i74lXmKESwR" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "i74lXmKESwR", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "yWFCUWwl2B9" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "yWFCUWwl2B9", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "EVJKVHsW2eL" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "EVJKVHsW2eL", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "JodeAtujwwJ" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "JodeAtujwwJ", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "XwGxfDrfNIp" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "XwGxfDrfNIp", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "pC56ztPB7jg" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "pC56ztPB7jg", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "nAspvO4H4jL" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "nAspvO4H4jL", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "UUKGnVKh9SY" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "UUKGnVKh9SY", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "tVlMlqGKG8z" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "tVlMlqGKG8z", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "RyeGXWPUskX" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "RyeGXWPUskX", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "FoQkURIBXTy" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "FoQkURIBXTy", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "laut8Mic6xi" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "laut8Mic6xi", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "kpAyOpSF1lT" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "kpAyOpSF1lT", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "Itxb3OFRq7F" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "Itxb3OFRq7F", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "hMmRhBp29Us" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "hMmRhBp29Us", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "ukvUpDy7DeS" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "ukvUpDy7DeS", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "xzX7rErk8yu" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "xzX7rErk8yu", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "Uab9E4NQDfI" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "Uab9E4NQDfI", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "zTsrc5t9Ci9" - } - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "zTsrc5t9Ci9", + }, + }, ], - "categoryOptionGroupSetDimensions": [], - "organisationUnitGroupSetDimensions": [], - "organisationUnitLevels": [], - "periods": [], - "organisationUnits": [], - "categoryDimensions": [], - "rowDimensions": [ - "dx" - ] + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["dx"], }, { - "lastUpdated": "2021-01-22T10:41:52.806", - "id": "sLwsZrhJApo", - "created": "2019-10-09T10:46:34.810", - "name": "Monthly Case Volume", - "showData": true, - "publicAccess": "--------", - "userOrganisationUnitChildren": true, - "type": "LINE", - "hideEmptyColumns": false, - "hideEmptyRows": false, - "userOrganisationUnit": true, - "rowSubTotals": false, - "displayDensity": "NORMAL", - "regressionType": "NONE", - "cumulativeValues": false, - "completedOnly": false, - "colTotals": false, - "showDimensionLabels": false, - "sortOrder": 0, - "subtitle": "by Facility", - "fontSize": "NORMAL", - "topLimit": 0, - "hideEmptyRowItems": "NONE", - "aggregationType": "DEFAULT", - "userOrganisationUnitGrandChildren": false, - "hideSubtitle": false, - "title": "Monthly Case Volume by Facility", - "hideLegend": false, - "externalAccess": false, - "percentStackedValues": false, - "colSubTotals": false, - "noSpaceBetweenColumns": false, - "showHierarchy": false, - "rowTotals": false, - "digitGroupSeparator": "SPACE", - "hideTitle": true, - "regression": false, - "skipRounding": false, - "lastUpdatedBy": { - "id": "rjqURGgOShK" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": false, - "last12Months": true, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": true, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": false - }, - "reportingParams": { - "parentOrganisationUnit": false, - "reportingPeriod": false, - "organisationUnit": false, - "grandParentOrganisationUnit": false - }, - "user": { - "id": "rjqURGgOShK" - }, - "dataElementGroupSetDimensions": [], - "translations": [], - "yearlySeries": [], - "filterDimensions": [ - "dx" - ], - "itemOrganisationUnitGroups": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "x8Tk2UMgpAd", - "displayName": "ETA Ministry Analysis Only - Events", - "id": "x8Tk2UMgpAd" - }, - { - "access": "rw------", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" + lastUpdated: "2021-01-22T10:41:52.806", + id: "sLwsZrhJApo", + created: "2019-10-09T10:46:34.810", + name: "Monthly Case Volume", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: true, + type: "LINE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + subtitle: "by Facility", + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "NONE", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + title: "Monthly Case Volume by Facility", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: true, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "rjqURGgOShK", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: true, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: true, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, + }, + user: { + id: "rjqURGgOShK", + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: ["dx"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "x8Tk2UMgpAd", + displayName: "ETA Ministry Analysis Only - Events", + id: "x8Tk2UMgpAd", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", }, - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" - } - ], - "subscribers": [], - "columnDimensions": [ - "ou" ], - "optionalAxes": [], - "userAccesses": [], - "favorites": [], - "dataDimensionItems": [ - { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "SpJHPYCY9i1" - } - } + subscribers: [], + columnDimensions: ["ou"], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "SpJHPYCY9i1", + }, + }, ], - "categoryOptionGroupSetDimensions": [], - "organisationUnitGroupSetDimensions": [], - "organisationUnitLevels": [], - "periods": [], - "organisationUnits": [], - "categoryDimensions": [], - "rowDimensions": [ - "pe" - ] + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["pe"], }, { - "lastUpdated": "2021-01-22T10:41:52.753", - "id": "MZVcLW1IEC4", - "created": "2019-10-01T15:57:14.808", - "name": "Quarterly Count of Inpatient Procedures", - "showData": false, - "numberType": "VALUE", - "publicAccess": "--------", - "userOrganisationUnitChildren": false, - "legendDisplayStyle": "FILL", - "type": "PIVOT_TABLE", - "hideEmptyColumns": false, - "hideEmptyRows": true, - "userOrganisationUnit": false, - "rowSubTotals": false, - "displayDensity": "NORMAL", - "regressionType": "NONE", - "cumulativeValues": false, - "completedOnly": false, - "colTotals": true, - "showDimensionLabels": false, - "sortOrder": 2, - "fontSize": "NORMAL", - "topLimit": 0, - "hideEmptyRowItems": "NONE", - "aggregationType": "DEFAULT", - "userOrganisationUnitGrandChildren": false, - "hideSubtitle": false, - "title": "Inpatient Procedures, by Quarter ", - "hideLegend": false, - "externalAccess": false, - "percentStackedValues": false, - "legendDisplayStrategy": "FIXED", - "colSubTotals": false, - "noSpaceBetweenColumns": false, - "showHierarchy": false, - "rowTotals": true, - "digitGroupSeparator": "SPACE", - "hideTitle": false, - "regression": false, - "skipRounding": false, - "lastUpdatedBy": { - "id": "bI1uY3KuAKV" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": true, - "last12Months": false, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": false, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": true - }, - "reportingParams": { - "parentOrganisationUnit": false, - "reportingPeriod": false, - "organisationUnit": false, - "grandParentOrganisationUnit": false - }, - "user": { - "id": "rjqURGgOShK" - }, - "dataElementGroupSetDimensions": [], - "translations": [], - "yearlySeries": [], - "filterDimensions": [], - "itemOrganisationUnitGroups": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "x8Tk2UMgpAd", - "displayName": "ETA Ministry Analysis Only - Events", - "id": "x8Tk2UMgpAd" - }, - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" - }, - { - "access": "rw------", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" - } - ], - "subscribers": [], - "columnDimensions": [ - "pe" + lastUpdated: "2021-01-22T10:41:52.753", + id: "MZVcLW1IEC4", + created: "2019-10-01T15:57:14.808", + name: "Quarterly Count of Inpatient Procedures", + showData: false, + numberType: "VALUE", + publicAccess: "--------", + userOrganisationUnitChildren: false, + legendDisplayStyle: "FILL", + type: "PIVOT_TABLE", + hideEmptyColumns: false, + hideEmptyRows: true, + userOrganisationUnit: false, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: true, + showDimensionLabels: false, + sortOrder: 2, + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "NONE", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + title: "Inpatient Procedures, by Quarter ", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + legendDisplayStrategy: "FIXED", + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: true, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: true, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: true, + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, + }, + user: { + id: "rjqURGgOShK", + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: [], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "x8Tk2UMgpAd", + displayName: "ETA Ministry Analysis Only - Events", + id: "x8Tk2UMgpAd", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, ], - "optionalAxes": [], - "userAccesses": [], - "favorites": [], - "dataDimensionItems": [ - { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "VaqcvRuMLsl" - } + subscribers: [], + columnDimensions: ["pe"], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "VaqcvRuMLsl", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "AukzgvkYnCl" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "AukzgvkYnCl", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "GRJkLaRW08x" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "GRJkLaRW08x", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "Ia7ohMA8SGJ" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "Ia7ohMA8SGJ", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "jWbH4bHTAK4" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "jWbH4bHTAK4", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "r3gubApP7np" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "r3gubApP7np", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "VcKSZuC3q40" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "VcKSZuC3q40", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "sh11ZNfp1PJ" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "sh11ZNfp1PJ", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "Zd95KTVH2mR" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "Zd95KTVH2mR", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "IDQQaklTghF" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "IDQQaklTghF", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "S6XHLg4ZsIN" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "S6XHLg4ZsIN", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "TmAzVaNmC63" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "TmAzVaNmC63", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "TbuNWprkqWn" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "TbuNWprkqWn", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "AlgvLd7Urni" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "AlgvLd7Urni", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "rqcP2H58vqe" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "rqcP2H58vqe", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "Nq3QXJw0aRt" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "Nq3QXJw0aRt", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "ZRh3BCv71EG" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "ZRh3BCv71EG", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "TMKkR2LEvYT" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "TMKkR2LEvYT", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "juYXRtehrfz" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "juYXRtehrfz", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "l9cJyWIS4nA" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "l9cJyWIS4nA", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "sYZo7YX11yP" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "sYZo7YX11yP", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "wmlBimAThiv" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "wmlBimAThiv", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "cg5f7AWJJMW" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "cg5f7AWJJMW", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "KDHODKMiXf1" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "KDHODKMiXf1", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "zOPIzimkiJx" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "zOPIzimkiJx", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "GrX0lRzeMbc" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "GrX0lRzeMbc", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "GeGz6vP4ii1" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "GeGz6vP4ii1", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "GupSnxG98nq" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "GupSnxG98nq", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "mWVK9CQHPhe" - } - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "mWVK9CQHPhe", + }, + }, ], - "categoryOptionGroupSetDimensions": [], - "organisationUnitGroupSetDimensions": [], - "organisationUnitLevels": [], - "periods": [], - "organisationUnits": [], - "categoryDimensions": [], - "rowDimensions": [ - "dx" - ] + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["dx"], }, { - "lastUpdated": "2021-01-22T10:41:52.810", - "id": "p80Lq4yL3YK", - "created": "2019-10-04T12:52:42.086", - "name": "Number of Road Traffic Injuries, by Facility", - "showData": true, - "publicAccess": "--------", - "userOrganisationUnitChildren": true, - "type": "COLUMN", - "hideEmptyColumns": false, - "hideEmptyRows": false, - "userOrganisationUnit": true, - "rowSubTotals": false, - "displayDensity": "NORMAL", - "regressionType": "NONE", - "cumulativeValues": false, - "completedOnly": false, - "colTotals": false, - "showDimensionLabels": false, - "sortOrder": 0, - "subtitle": "Aggregate, last 12 months and current month", - "fontSize": "NORMAL", - "topLimit": 0, - "hideEmptyRowItems": "NONE", - "aggregationType": "DEFAULT", - "userOrganisationUnitGrandChildren": false, - "hideSubtitle": false, - "hideLegend": true, - "externalAccess": false, - "percentStackedValues": false, - "colSubTotals": false, - "noSpaceBetweenColumns": false, - "showHierarchy": false, - "rowTotals": false, - "digitGroupSeparator": "SPACE", - "hideTitle": true, - "regression": false, - "skipRounding": false, - "lastUpdatedBy": { - "id": "rjqURGgOShK" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": false, - "last12Months": true, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": true, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": false - }, - "reportingParams": { - "parentOrganisationUnit": false, - "reportingPeriod": false, - "organisationUnit": false, - "grandParentOrganisationUnit": false - }, - "user": { - "id": "rjqURGgOShK" - }, - "dataElementGroupSetDimensions": [], - "translations": [], - "yearlySeries": [], - "filterDimensions": [ - "pe" - ], - "itemOrganisationUnitGroups": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "x8Tk2UMgpAd", - "displayName": "ETA Ministry Analysis Only - Events", - "id": "x8Tk2UMgpAd" + lastUpdated: "2021-01-22T10:41:52.810", + id: "p80Lq4yL3YK", + created: "2019-10-04T12:52:42.086", + name: "Number of Road Traffic Injuries, by Facility", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: true, + type: "COLUMN", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + subtitle: "Aggregate, last 12 months and current month", + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "NONE", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + hideLegend: true, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: true, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "rjqURGgOShK", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: true, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: true, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, + }, + user: { + id: "rjqURGgOShK", + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: ["pe"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "x8Tk2UMgpAd", + displayName: "ETA Ministry Analysis Only - Events", + id: "x8Tk2UMgpAd", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", }, - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" - }, - { - "access": "rw------", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" - } ], - "subscribers": [], - "columnDimensions": [ - "dx" - ], - "optionalAxes": [], - "userAccesses": [], - "favorites": [], - "dataDimensionItems": [ - { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "MIXqjxF6Qdb" - } - } + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "MIXqjxF6Qdb", + }, + }, ], - "categoryOptionGroupSetDimensions": [], - "organisationUnitGroupSetDimensions": [], - "organisationUnitLevels": [], - "periods": [], - "organisationUnits": [], - "categoryDimensions": [], - "rowDimensions": [ - "ou" - ] + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["ou"], }, { - "lastUpdated": "2021-01-22T10:41:52.901", - "id": "D240hYLRs1P", - "created": "2019-10-04T13:39:33.596", - "name": "Monthly Number of Severely Injured Patients", - "showData": true, - "publicAccess": "--------", - "userOrganisationUnitChildren": true, - "type": "COLUMN", - "hideEmptyColumns": false, - "hideEmptyRows": false, - "userOrganisationUnit": true, - "rowSubTotals": false, - "displayDensity": "NORMAL", - "rangeAxisLabel": "Number of cases", - "regressionType": "NONE", - "cumulativeValues": false, - "completedOnly": false, - "colTotals": false, - "showDimensionLabels": false, - "sortOrder": 0, - "subtitle": "by Any Scoring Mechanism (GAP, mGAP, RTS, KTS)", - "fontSize": "NORMAL", - "rangeAxisDecimals": 0, - "topLimit": 0, - "hideEmptyRowItems": "NONE", - "aggregationType": "DEFAULT", - "userOrganisationUnitGrandChildren": false, - "hideSubtitle": false, - "description": "By any scoring mechanism", - "hideLegend": false, - "externalAccess": false, - "percentStackedValues": false, - "colSubTotals": false, - "noSpaceBetweenColumns": true, - "showHierarchy": false, - "rowTotals": false, - "digitGroupSeparator": "SPACE", - "hideTitle": true, - "regression": false, - "skipRounding": false, - "lastUpdatedBy": { - "id": "rjqURGgOShK" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": false, - "last12Months": true, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": true, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": false - }, - "reportingParams": { - "parentOrganisationUnit": false, - "reportingPeriod": false, - "organisationUnit": false, - "grandParentOrganisationUnit": false - }, - "user": { - "id": "rjqURGgOShK" - }, - "dataElementGroupSetDimensions": [], - "translations": [], - "yearlySeries": [], - "filterDimensions": [ - "dx" - ], - "itemOrganisationUnitGroups": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "c8sN59GDJpC", - "displayName": "ETA Data Entry - Events", - "id": "c8sN59GDJpC" - }, - { - "access": "r-------", - "userGroupUid": "x8Tk2UMgpAd", - "displayName": "ETA Ministry Analysis Only - Events", - "id": "x8Tk2UMgpAd" + lastUpdated: "2021-01-22T10:41:52.901", + id: "D240hYLRs1P", + created: "2019-10-04T13:39:33.596", + name: "Monthly Number of Severely Injured Patients", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: true, + type: "COLUMN", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + rangeAxisLabel: "Number of cases", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + subtitle: "by Any Scoring Mechanism (GAP, mGAP, RTS, KTS)", + fontSize: "NORMAL", + rangeAxisDecimals: 0, + topLimit: 0, + hideEmptyRowItems: "NONE", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + description: "By any scoring mechanism", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: true, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: true, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "rjqURGgOShK", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: true, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: true, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, + }, + user: { + id: "rjqURGgOShK", + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: ["dx"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "c8sN59GDJpC", + displayName: "ETA Data Entry - Events", + id: "c8sN59GDJpC", + }, + { + access: "r-------", + userGroupUid: "x8Tk2UMgpAd", + displayName: "ETA Ministry Analysis Only - Events", + id: "x8Tk2UMgpAd", + }, + { + access: "r-------", + userGroupUid: "J68LnyQufb9", + displayName: "ETA Facility Analysis Only - Events", + id: "J68LnyQufb9", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", }, - { - "access": "r-------", - "userGroupUid": "J68LnyQufb9", - "displayName": "ETA Facility Analysis Only - Events", - "id": "J68LnyQufb9" - }, - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" - }, - { - "access": "rw------", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" - } - ], - "subscribers": [], - "columnDimensions": [ - "ou" ], - "optionalAxes": [], - "userAccesses": [], - "favorites": [], - "dataDimensionItems": [ - { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "lopcRuRTviN" - } - } + subscribers: [], + columnDimensions: ["ou"], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "lopcRuRTviN", + }, + }, ], - "categoryOptionGroupSetDimensions": [], - "organisationUnitGroupSetDimensions": [], - "organisationUnitLevels": [], - "periods": [], - "organisationUnits": [], - "categoryDimensions": [], - "rowDimensions": [ - "pe" - ] + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["pe"], }, { - "lastUpdated": "2021-01-22T10:41:52.895", - "id": "y6xD2lJ8ner", - "created": "2019-10-04T13:07:25.787", - "name": "Mean Time (Hours) from Injury Event to EU Arrival, by Facility", - "showData": true, - "publicAccess": "--------", - "userOrganisationUnitChildren": true, - "type": "COLUMN", - "hideEmptyColumns": false, - "hideEmptyRows": false, - "userOrganisationUnit": true, - "rowSubTotals": false, - "displayDensity": "NORMAL", - "rangeAxisLabel": "Number of hours", - "regressionType": "NONE", - "cumulativeValues": false, - "completedOnly": false, - "colTotals": false, - "showDimensionLabels": false, - "sortOrder": 0, - "subtitle": "Aggregate, last 12 months and current month", - "fontSize": "NORMAL", - "topLimit": 0, - "hideEmptyRowItems": "NONE", - "aggregationType": "DEFAULT", - "userOrganisationUnitGrandChildren": false, - "hideSubtitle": false, - "title": "Mean Time (Hours) from Injury Event to EU Arrival", - "hideLegend": true, - "externalAccess": false, - "percentStackedValues": false, - "colSubTotals": false, - "noSpaceBetweenColumns": true, - "showHierarchy": false, - "rowTotals": false, - "digitGroupSeparator": "SPACE", - "hideTitle": true, - "regression": false, - "skipRounding": false, - "lastUpdatedBy": { - "id": "rjqURGgOShK" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": false, - "last12Months": true, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": true, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": false - }, - "reportingParams": { - "parentOrganisationUnit": false, - "reportingPeriod": false, - "organisationUnit": false, - "grandParentOrganisationUnit": false - }, - "user": { - "id": "rjqURGgOShK" - }, - "dataElementGroupSetDimensions": [], - "translations": [], - "yearlySeries": [], - "filterDimensions": [ - "pe" - ], - "itemOrganisationUnitGroups": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "x8Tk2UMgpAd", - "displayName": "ETA Ministry Analysis Only - Events", - "id": "x8Tk2UMgpAd" + lastUpdated: "2021-01-22T10:41:52.895", + id: "y6xD2lJ8ner", + created: "2019-10-04T13:07:25.787", + name: "Mean Time (Hours) from Injury Event to EU Arrival, by Facility", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: true, + type: "COLUMN", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + rangeAxisLabel: "Number of hours", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + subtitle: "Aggregate, last 12 months and current month", + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "NONE", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + title: "Mean Time (Hours) from Injury Event to EU Arrival", + hideLegend: true, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: true, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: true, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "rjqURGgOShK", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: true, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: true, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, + }, + user: { + id: "rjqURGgOShK", + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: ["pe"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "x8Tk2UMgpAd", + displayName: "ETA Ministry Analysis Only - Events", + id: "x8Tk2UMgpAd", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", }, - { - "access": "rw------", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" - }, - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" - } ], - "subscribers": [], - "columnDimensions": [ - "dx" - ], - "optionalAxes": [], - "userAccesses": [], - "favorites": [], - "dataDimensionItems": [ - { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "HFFlnyM9FOu" - } - } + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "HFFlnyM9FOu", + }, + }, ], - "categoryOptionGroupSetDimensions": [], - "organisationUnitGroupSetDimensions": [], - "organisationUnitLevels": [], - "periods": [], - "organisationUnits": [], - "categoryDimensions": [], - "rowDimensions": [ - "ou" - ] + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["ou"], }, { - "lastUpdated": "2021-01-22T10:41:52.913", - "id": "Kny8eI7Fmc2", - "created": "2019-10-04T13:04:17.918", - "name": "Monthly Deaths in Patients with Low Injury Severity Scores, by Facility", - "showData": true, - "publicAccess": "--------", - "userOrganisationUnitChildren": true, - "type": "COLUMN", - "hideEmptyColumns": false, - "hideEmptyRows": false, - "userOrganisationUnit": true, - "rowSubTotals": false, - "displayDensity": "NORMAL", - "regressionType": "NONE", - "cumulativeValues": false, - "completedOnly": false, - "colTotals": false, - "showDimensionLabels": false, - "sortOrder": 0, - "subtitle": "By Any Scoring Mechanism (GAP, mGAP, KTS, RTS)", - "fontSize": "NORMAL", - "topLimit": 0, - "hideEmptyRowItems": "NONE", - "aggregationType": "DEFAULT", - "userOrganisationUnitGrandChildren": false, - "hideSubtitle": false, - "description": "By any scoring mechanism", - "title": "Monthly Deaths in Patients with Low Injury Severity Scores by Facility", - "hideLegend": false, - "externalAccess": false, - "percentStackedValues": false, - "colSubTotals": false, - "noSpaceBetweenColumns": true, - "showHierarchy": false, - "rowTotals": false, - "digitGroupSeparator": "SPACE", - "hideTitle": true, - "regression": false, - "skipRounding": false, - "lastUpdatedBy": { - "id": "rjqURGgOShK" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": false, - "last12Months": true, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": true, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": false - }, - "reportingParams": { - "parentOrganisationUnit": false, - "reportingPeriod": false, - "organisationUnit": false, - "grandParentOrganisationUnit": false - }, - "user": { - "id": "rjqURGgOShK" - }, - "dataElementGroupSetDimensions": [], - "translations": [], - "yearlySeries": [], - "filterDimensions": [ - "dx" - ], - "itemOrganisationUnitGroups": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "x8Tk2UMgpAd", - "displayName": "ETA Ministry Analysis Only - Events", - "id": "x8Tk2UMgpAd" - }, - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" + lastUpdated: "2021-01-22T10:41:52.913", + id: "Kny8eI7Fmc2", + created: "2019-10-04T13:04:17.918", + name: "Monthly Deaths in Patients with Low Injury Severity Scores, by Facility", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: true, + type: "COLUMN", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + subtitle: "By Any Scoring Mechanism (GAP, mGAP, KTS, RTS)", + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "NONE", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + description: "By any scoring mechanism", + title: "Monthly Deaths in Patients with Low Injury Severity Scores by Facility", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: true, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: true, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "rjqURGgOShK", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: true, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: true, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, + }, + user: { + id: "rjqURGgOShK", + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: ["dx"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "x8Tk2UMgpAd", + displayName: "ETA Ministry Analysis Only - Events", + id: "x8Tk2UMgpAd", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", }, - { - "access": "rw------", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" - } ], - "subscribers": [], - "columnDimensions": [ - "ou" - ], - "optionalAxes": [], - "userAccesses": [], - "favorites": [], - "dataDimensionItems": [ - { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "CNEw1Q9FrRC" - } - } + subscribers: [], + columnDimensions: ["ou"], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "CNEw1Q9FrRC", + }, + }, ], - "categoryOptionGroupSetDimensions": [], - "organisationUnitGroupSetDimensions": [], - "organisationUnitLevels": [], - "periods": [], - "organisationUnits": [], - "categoryDimensions": [], - "rowDimensions": [ - "pe" - ] + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["pe"], }, { - "lastUpdated": "2021-01-22T10:41:52.911", - "id": "PeQt42fW5at", - "created": "2019-10-04T13:08:43.389", - "name": "Emergency Unit Procedures, by Facility", - "showData": true, - "publicAccess": "--------", - "userOrganisationUnitChildren": true, - "type": "BAR", - "hideEmptyColumns": false, - "hideEmptyRows": false, - "userOrganisationUnit": true, - "rowSubTotals": false, - "displayDensity": "NORMAL", - "rangeAxisLabel": "Count of procedures performed", - "regressionType": "NONE", - "cumulativeValues": false, - "completedOnly": false, - "colTotals": false, - "showDimensionLabels": false, - "sortOrder": 1, - "subtitle": "Aggregate, last 12 months and current month", - "fontSize": "NORMAL", - "rangeAxisDecimals": 0, - "topLimit": 0, - "hideEmptyRowItems": "ALL", - "aggregationType": "DEFAULT", - "userOrganisationUnitGrandChildren": false, - "hideSubtitle": false, - "description": "", - "title": "EU Procedures Performed by Facility", - "hideLegend": false, - "externalAccess": false, - "percentStackedValues": false, - "colSubTotals": false, - "noSpaceBetweenColumns": true, - "showHierarchy": false, - "rowTotals": false, - "digitGroupSeparator": "SPACE", - "hideTitle": true, - "regression": false, - "skipRounding": false, - "lastUpdatedBy": { - "id": "rjqURGgOShK" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": false, - "last12Months": true, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": true, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": false - }, - "reportingParams": { - "parentOrganisationUnit": false, - "reportingPeriod": false, - "organisationUnit": false, - "grandParentOrganisationUnit": false - }, - "user": { - "id": "rjqURGgOShK" - }, - "dataElementGroupSetDimensions": [], - "translations": [], - "yearlySeries": [], - "filterDimensions": [ - "pe" - ], - "itemOrganisationUnitGroups": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "x8Tk2UMgpAd", - "displayName": "ETA Ministry Analysis Only - Events", - "id": "x8Tk2UMgpAd" + lastUpdated: "2021-01-22T10:41:52.911", + id: "PeQt42fW5at", + created: "2019-10-04T13:08:43.389", + name: "Emergency Unit Procedures, by Facility", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: true, + type: "BAR", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + rangeAxisLabel: "Count of procedures performed", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 1, + subtitle: "Aggregate, last 12 months and current month", + fontSize: "NORMAL", + rangeAxisDecimals: 0, + topLimit: 0, + hideEmptyRowItems: "ALL", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + description: "", + title: "EU Procedures Performed by Facility", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: true, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: true, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "rjqURGgOShK", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: true, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: true, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, + }, + user: { + id: "rjqURGgOShK", + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: ["pe"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "x8Tk2UMgpAd", + displayName: "ETA Ministry Analysis Only - Events", + id: "x8Tk2UMgpAd", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", }, - { - "access": "rw------", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" - }, - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" - } ], - "subscribers": [], - "columnDimensions": [ - "ou" - ], - "optionalAxes": [], - "userAccesses": [], - "favorites": [], - "dataDimensionItems": [ - { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "lZHlad1rM9U" - } + subscribers: [], + columnDimensions: ["ou"], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "lZHlad1rM9U", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "hziRVPDODLn" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "hziRVPDODLn", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "I7y4f6rF3ip" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "I7y4f6rF3ip", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "S4VX7xv3bs9" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "S4VX7xv3bs9", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "kEZS9lHXbeY" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "kEZS9lHXbeY", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "gXViC97LApE" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "gXViC97LApE", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "DPEblEZOc6u" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "DPEblEZOc6u", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "i74lXmKESwR" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "i74lXmKESwR", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "yWFCUWwl2B9" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "yWFCUWwl2B9", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "EVJKVHsW2eL" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "EVJKVHsW2eL", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "JodeAtujwwJ" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "JodeAtujwwJ", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "XwGxfDrfNIp" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "XwGxfDrfNIp", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "pC56ztPB7jg" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "pC56ztPB7jg", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "nAspvO4H4jL" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "nAspvO4H4jL", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "UUKGnVKh9SY" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "UUKGnVKh9SY", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "tVlMlqGKG8z" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "tVlMlqGKG8z", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "RyeGXWPUskX" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "RyeGXWPUskX", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "FoQkURIBXTy" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "FoQkURIBXTy", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "laut8Mic6xi" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "laut8Mic6xi", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "kpAyOpSF1lT" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "kpAyOpSF1lT", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "Itxb3OFRq7F" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "Itxb3OFRq7F", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "hMmRhBp29Us" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "hMmRhBp29Us", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "ukvUpDy7DeS" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "ukvUpDy7DeS", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "xzX7rErk8yu" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "xzX7rErk8yu", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "Uab9E4NQDfI" - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "Uab9E4NQDfI", + }, }, { - "dataDimensionItemType": "PROGRAM_INDICATOR", - "programIndicator": { - "id": "zTsrc5t9Ci9" - } - } + dataDimensionItemType: "PROGRAM_INDICATOR", + programIndicator: { + id: "zTsrc5t9Ci9", + }, + }, ], - "categoryOptionGroupSetDimensions": [], - "organisationUnitGroupSetDimensions": [], - "organisationUnitLevels": [], - "periods": [], - "organisationUnits": [], - "categoryDimensions": [], - "rowDimensions": [ - "dx" - ] + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["dx"], }, { - "lastUpdated": "2021-01-22T10:41:53.066", - "id": "ze8ogu7SMV0", - "created": "2019-10-04T13:04:53.011", - "name": "Mean Time (Hours) from Prior Facility Arrival to EU Arrival, by Facility", - "showData": true, - "publicAccess": "--------", - "userOrganisationUnitChildren": true, - "type": "COLUMN", - "hideEmptyColumns": false, - "hideEmptyRows": false, - "userOrganisationUnit": true, - "rowSubTotals": false, - "displayDensity": "NORMAL", - "rangeAxisLabel": "Number of hours", - "regressionType": "NONE", - "cumulativeValues": false, - "completedOnly": false, - "colTotals": false, - "showDimensionLabels": false, - "sortOrder": 0, - "subtitle": "Aggregate, last 12 months and current month", - "fontSize": "NORMAL", - "topLimit": 0, - "hideEmptyRowItems": "NONE", - "aggregationType": "DEFAULT", - "userOrganisationUnitGrandChildren": false, - "hideSubtitle": false, - "description": "", - "hideLegend": true, - "externalAccess": false, - "percentStackedValues": false, - "colSubTotals": false, - "noSpaceBetweenColumns": true, - "showHierarchy": false, - "rowTotals": false, - "digitGroupSeparator": "SPACE", - "hideTitle": true, - "regression": false, - "skipRounding": false, - "lastUpdatedBy": { - "id": "rjqURGgOShK" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": false, - "last12Months": true, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": true, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": false - }, - "reportingParams": { - "parentOrganisationUnit": false, - "reportingPeriod": false, - "organisationUnit": false, - "grandParentOrganisationUnit": false - }, - "user": { - "id": "rjqURGgOShK" - }, - "dataElementGroupSetDimensions": [], - "translations": [], - "yearlySeries": [], - "filterDimensions": [ - "pe" - ], - "itemOrganisationUnitGroups": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "x8Tk2UMgpAd", - "displayName": "ETA Ministry Analysis Only - Events", - "id": "x8Tk2UMgpAd" - }, - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" + lastUpdated: "2021-01-22T10:41:53.066", + id: "ze8ogu7SMV0", + created: "2019-10-04T13:04:53.011", + name: "Mean Time (Hours) from Prior Facility Arrival to EU Arrival, by Facility", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: true, + type: "COLUMN", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + rangeAxisLabel: "Number of hours", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + subtitle: "Aggregate, last 12 months and current month", + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "NONE", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + description: "", + hideLegend: true, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: true, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: true, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "rjqURGgOShK", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: true, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: true, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, + }, + user: { + id: "rjqURGgOShK", + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: ["pe"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "x8Tk2UMgpAd", + displayName: "ETA Ministry Analysis Only - Events", + id: "x8Tk2UMgpAd", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", }, - { - "access": "rw------", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" - } - ], - "subscribers": [], - "columnDimensions": [ - "dx" ], - "optionalAxes": [], - "userAccesses": [], - "favorites": [], - "dataDimensionItems": [ - { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "Kn7hS1KNm9t" - } - } + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "Kn7hS1KNm9t", + }, + }, ], - "categoryOptionGroupSetDimensions": [], - "organisationUnitGroupSetDimensions": [], - "organisationUnitLevels": [], - "periods": [], - "organisationUnits": [], - "categoryDimensions": [], - "rowDimensions": [ - "ou" - ] + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["ou"], }, { - "lastUpdated": "2021-01-22T10:41:52.933", - "id": "WcrODt1Ny6v", - "created": "2019-10-04T13:07:54.183", - "name": "Mechanisms of Injury Among Deceased Patients - % Breakdown", - "showData": true, - "publicAccess": "--------", - "userOrganisationUnitChildren": true, - "type": "PIE", - "hideEmptyColumns": false, - "hideEmptyRows": false, - "userOrganisationUnit": true, - "rowSubTotals": false, - "displayDensity": "NORMAL", - "regressionType": "NONE", - "cumulativeValues": false, - "completedOnly": false, - "colTotals": false, - "showDimensionLabels": false, - "sortOrder": 1, - "subtitle": "Aggregate, last 12 months and current month", - "fontSize": "NORMAL", - "topLimit": 0, - "hideEmptyRowItems": "ALL", - "aggregationType": "DEFAULT", - "userOrganisationUnitGrandChildren": false, - "hideSubtitle": false, - "description": "", - "title": "Mechanisms of Injury Among Deceased Patients - % Breakdown", - "hideLegend": false, - "externalAccess": false, - "percentStackedValues": false, - "colSubTotals": false, - "noSpaceBetweenColumns": true, - "showHierarchy": false, - "rowTotals": false, - "digitGroupSeparator": "SPACE", - "hideTitle": true, - "regression": false, - "skipRounding": false, - "lastUpdatedBy": { - "id": "rjqURGgOShK" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": false, - "last12Months": true, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": true, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": false - }, - "reportingParams": { - "parentOrganisationUnit": false, - "reportingPeriod": false, - "organisationUnit": false, - "grandParentOrganisationUnit": false - }, - "user": { - "id": "rjqURGgOShK" - }, - "dataElementGroupSetDimensions": [], - "translations": [], - "yearlySeries": [], - "filterDimensions": [ - "pe", - "ou" - ], - "itemOrganisationUnitGroups": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "c8sN59GDJpC", - "displayName": "ETA Data Entry - Events", - "id": "c8sN59GDJpC" - }, - { - "access": "r-------", - "userGroupUid": "x8Tk2UMgpAd", - "displayName": "ETA Ministry Analysis Only - Events", - "id": "x8Tk2UMgpAd" - }, - { - "access": "r-------", - "userGroupUid": "J68LnyQufb9", - "displayName": "ETA Facility Analysis Only - Events", - "id": "J68LnyQufb9" - }, - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" + lastUpdated: "2021-01-22T10:41:52.933", + id: "WcrODt1Ny6v", + created: "2019-10-04T13:07:54.183", + name: "Mechanisms of Injury Among Deceased Patients - % Breakdown", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: true, + type: "PIE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 1, + subtitle: "Aggregate, last 12 months and current month", + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "ALL", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + description: "", + title: "Mechanisms of Injury Among Deceased Patients - % Breakdown", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: true, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: true, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "rjqURGgOShK", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: true, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: true, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, + }, + user: { + id: "rjqURGgOShK", + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: ["pe", "ou"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "c8sN59GDJpC", + displayName: "ETA Data Entry - Events", + id: "c8sN59GDJpC", + }, + { + access: "r-------", + userGroupUid: "x8Tk2UMgpAd", + displayName: "ETA Ministry Analysis Only - Events", + id: "x8Tk2UMgpAd", + }, + { + access: "r-------", + userGroupUid: "J68LnyQufb9", + displayName: "ETA Facility Analysis Only - Events", + id: "J68LnyQufb9", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", }, - { - "access": "rw------", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" - } ], - "subscribers": [], - "columnDimensions": [ - "dx" - ], - "optionalAxes": [], - "userAccesses": [], - "favorites": [], - "dataDimensionItems": [ - { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "w8oGuDISCAz" - } + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "w8oGuDISCAz", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "tcrGAWGElkX" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "tcrGAWGElkX", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "XqzrIl3vRER" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "XqzrIl3vRER", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "tNfmCsggwF7" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "tNfmCsggwF7", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "FGV71tgRhkH" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "FGV71tgRhkH", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "D684pNr8Fya" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "D684pNr8Fya", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "J5MweYUJ2fb" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "J5MweYUJ2fb", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "kaVi6wJ95se" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "kaVi6wJ95se", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "n2gdFibFiOc" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "n2gdFibFiOc", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "w5JyRxrabcY" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "w5JyRxrabcY", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "Yv6bnk9BRic" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "Yv6bnk9BRic", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "kh0OtQcNdoE" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "kh0OtQcNdoE", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "xVPjvaWcK3t" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "xVPjvaWcK3t", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "XEyX6F0DnpY" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "XEyX6F0DnpY", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "UqgvjyGhEGm" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "UqgvjyGhEGm", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "udHcLuH9XCA" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "udHcLuH9XCA", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "eHPi1hxor3A" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "eHPi1hxor3A", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "x0pcIea48gx" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "x0pcIea48gx", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "UpTkF252DNQ" - } - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "UpTkF252DNQ", + }, + }, ], - "categoryOptionGroupSetDimensions": [], - "organisationUnitGroupSetDimensions": [], - "organisationUnitLevels": [], - "periods": [], - "organisationUnits": [], - "categoryDimensions": [], - "rowDimensions": [] + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: [], }, { - "lastUpdated": "2021-01-22T10:41:52.946", - "id": "WaznCszwnj7", - "created": "2019-10-04T12:57:37.331", - "name": "Proportion of Cases Arriving to EU via Referral, by Facility", - "showData": true, - "publicAccess": "--------", - "userOrganisationUnitChildren": true, - "type": "COLUMN", - "hideEmptyColumns": false, - "hideEmptyRows": false, - "userOrganisationUnit": true, - "rowSubTotals": false, - "displayDensity": "NORMAL", - "rangeAxisLabel": "% cases referred to EU, of total cases", - "regressionType": "NONE", - "cumulativeValues": false, - "completedOnly": false, - "colTotals": false, - "showDimensionLabels": false, - "sortOrder": 0, - "subtitle": "Aggregate, last 12 months and current month", - "fontSize": "NORMAL", - "topLimit": 0, - "hideEmptyRowItems": "NONE", - "aggregationType": "DEFAULT", - "userOrganisationUnitGrandChildren": false, - "hideSubtitle": false, - "description": "", - "title": "Percent of Patients Referred In by Facility", - "hideLegend": true, - "externalAccess": false, - "percentStackedValues": false, - "colSubTotals": false, - "noSpaceBetweenColumns": false, - "showHierarchy": false, - "rowTotals": false, - "digitGroupSeparator": "SPACE", - "hideTitle": true, - "regression": false, - "skipRounding": false, - "lastUpdatedBy": { - "id": "rjqURGgOShK" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": false, - "last12Months": true, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": true, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": false - }, - "reportingParams": { - "parentOrganisationUnit": false, - "reportingPeriod": false, - "organisationUnit": false, - "grandParentOrganisationUnit": false - }, - "user": { - "id": "rjqURGgOShK" - }, - "dataElementGroupSetDimensions": [], - "translations": [], - "yearlySeries": [], - "filterDimensions": [ - "pe" - ], - "itemOrganisationUnitGroups": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "x8Tk2UMgpAd", - "displayName": "ETA Ministry Analysis Only - Events", - "id": "x8Tk2UMgpAd" - }, - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" + lastUpdated: "2021-01-22T10:41:52.946", + id: "WaznCszwnj7", + created: "2019-10-04T12:57:37.331", + name: "Proportion of Cases Arriving to EU via Referral, by Facility", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: true, + type: "COLUMN", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + rangeAxisLabel: "% cases referred to EU, of total cases", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + subtitle: "Aggregate, last 12 months and current month", + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "NONE", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + description: "", + title: "Percent of Patients Referred In by Facility", + hideLegend: true, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: true, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "rjqURGgOShK", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: true, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: true, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, + }, + user: { + id: "rjqURGgOShK", + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: ["pe"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "x8Tk2UMgpAd", + displayName: "ETA Ministry Analysis Only - Events", + id: "x8Tk2UMgpAd", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", }, - { - "access": "rw------", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" - } ], - "subscribers": [], - "columnDimensions": [ - "dx" - ], - "optionalAxes": [], - "userAccesses": [], - "favorites": [], - "dataDimensionItems": [ - { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "I37a3GkniJq" - } - } + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "I37a3GkniJq", + }, + }, ], - "categoryOptionGroupSetDimensions": [], - "organisationUnitGroupSetDimensions": [], - "organisationUnitLevels": [], - "periods": [], - "organisationUnits": [], - "categoryDimensions": [], - "rowDimensions": [ - "ou" - ] - } - ] + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["ou"], + }, + ], }, { - "date": "2021-09-21T08:57:04.096", - "dashboards": [ + date: "2021-09-21T08:57:04.096", + dashboards: [ { - "created": "2018-01-22T19:17:39.908", - "lastUpdated": "2021-04-14T12:55:29.185", - "name": "0. MOH Dashboard (Tracker)", - "id": "BIRA5ngrKRP", - "publicAccess": "--------", - "externalAccess": false, - "lastUpdatedBy": { - "id": "rjqURGgOShK" - }, - "user": { - "id": "wUd8NBL7fn2" - }, - "favorites": [ - "H4atNsEuKxP" - ], - "userGroupAccesses": [ - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" - } + created: "2018-01-22T19:17:39.908", + lastUpdated: "2021-04-14T12:55:29.185", + name: "0. MOH Dashboard (Tracker)", + id: "BIRA5ngrKRP", + publicAccess: "--------", + externalAccess: false, + lastUpdatedBy: { + id: "rjqURGgOShK", + }, + user: { + id: "wUd8NBL7fn2", + }, + favorites: ["H4atNsEuKxP"], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", + }, ], - "dashboardItems": [ - { - "lastUpdated": "2019-10-03T15:21:53.161", - "id": "Io2ahNgQewk", - "created": "2019-10-03T15:21:53.020", - "type": "VISUALIZATION", - "externalAccess": false, - "contentCount": 1, - "height": 20, - "shape": "NORMAL", - "interpretationCount": 0, - "width": 29, - "x": 0, - "y": 0, - "interpretationLikeCount": 0, - "favorite": false, - "visualization": { - "id": "QEzQtxVef2E" - }, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "favorites": [], - "reports": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - }, - { - "lastUpdated": "2019-10-03T15:21:53.161", - "id": "mPojkHOutXf", - "created": "2019-10-03T15:21:53.020", - "type": "VISUALIZATION", - "externalAccess": false, - "contentCount": 1, - "height": 20, - "shape": "NORMAL", - "interpretationCount": 0, - "width": 29, - "x": 29, - "y": 0, - "interpretationLikeCount": 0, - "favorite": false, - "visualization": { - "id": "oMz2k4EvzR8" - }, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "favorites": [], - "reports": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - }, - { - "lastUpdated": "2019-10-03T15:21:53.161", - "id": "vvpgnDY6gm5", - "created": "2019-10-03T15:21:53.020", - "type": "VISUALIZATION", - "externalAccess": false, - "contentCount": 1, - "height": 20, - "shape": "NORMAL", - "interpretationCount": 0, - "width": 29, - "x": 0, - "y": 20, - "interpretationLikeCount": 0, - "favorite": false, - "visualization": { - "id": "LFbfXNQrrbz" - }, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "favorites": [], - "reports": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - }, - { - "lastUpdated": "2019-10-03T15:21:53.161", - "id": "OeZlaiRi5dC", - "created": "2019-10-03T15:21:53.020", - "type": "VISUALIZATION", - "externalAccess": false, - "contentCount": 1, - "height": 20, - "shape": "NORMAL", - "interpretationCount": 0, - "width": 29, - "x": 29, - "y": 20, - "interpretationLikeCount": 0, - "favorite": false, - "visualization": { - "id": "NyF7rJxFaAw" - }, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "favorites": [], - "reports": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - }, - { - "lastUpdated": "2019-10-03T15:21:53.161", - "id": "PDSLgxk8sQh", - "created": "2019-10-03T15:21:53.020", - "type": "VISUALIZATION", - "externalAccess": false, - "contentCount": 1, - "height": 20, - "shape": "NORMAL", - "interpretationCount": 0, - "width": 29, - "x": 0, - "y": 40, - "interpretationLikeCount": 0, - "favorite": false, - "visualization": { - "id": "dbzUM8efvEO" - }, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "favorites": [], - "reports": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - }, - { - "lastUpdated": "2019-10-03T15:21:53.161", - "id": "QCgQ3AaX8Ab", - "created": "2019-10-03T15:21:53.020", - "type": "VISUALIZATION", - "externalAccess": false, - "contentCount": 1, - "height": 20, - "shape": "NORMAL", - "interpretationCount": 0, - "width": 29, - "x": 29, - "y": 40, - "interpretationLikeCount": 0, - "favorite": false, - "visualization": { - "id": "y6ABwhql1Lr" - }, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "favorites": [], - "reports": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - }, - { - "lastUpdated": "2019-10-03T15:21:53.161", - "id": "AlUsUZOsoXY", - "created": "2019-10-03T15:21:53.020", - "type": "VISUALIZATION", - "externalAccess": false, - "contentCount": 1, - "height": 20, - "shape": "NORMAL", - "interpretationCount": 0, - "width": 29, - "x": 0, - "y": 60, - "interpretationLikeCount": 0, - "favorite": false, - "visualization": { - "id": "HuvKzZ4cJ6a" - }, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "favorites": [], - "reports": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - }, - { - "lastUpdated": "2019-10-03T15:21:53.161", - "id": "olmOPjPEGTx", - "created": "2019-10-03T15:21:53.021", - "type": "REPORTS", - "externalAccess": false, - "contentCount": 1, - "height": 20, - "shape": "NORMAL", - "interpretationCount": 0, - "width": 29, - "x": 29, - "y": 60, - "interpretationLikeCount": 0, - "favorite": false, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "favorites": [], - "reports": [ + dashboardItems: [ + { + lastUpdated: "2019-10-03T15:21:53.161", + id: "Io2ahNgQewk", + created: "2019-10-03T15:21:53.020", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 0, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "QEzQtxVef2E", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2019-10-03T15:21:53.161", + id: "mPojkHOutXf", + created: "2019-10-03T15:21:53.020", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 29, + y: 0, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "oMz2k4EvzR8", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2019-10-03T15:21:53.161", + id: "vvpgnDY6gm5", + created: "2019-10-03T15:21:53.020", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 20, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "LFbfXNQrrbz", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2019-10-03T15:21:53.161", + id: "OeZlaiRi5dC", + created: "2019-10-03T15:21:53.020", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 29, + y: 20, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "NyF7rJxFaAw", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2019-10-03T15:21:53.161", + id: "PDSLgxk8sQh", + created: "2019-10-03T15:21:53.020", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 40, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "dbzUM8efvEO", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2019-10-03T15:21:53.161", + id: "QCgQ3AaX8Ab", + created: "2019-10-03T15:21:53.020", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 29, + y: 40, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "y6ABwhql1Lr", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2019-10-03T15:21:53.161", + id: "AlUsUZOsoXY", + created: "2019-10-03T15:21:53.020", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 60, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "HuvKzZ4cJ6a", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2019-10-03T15:21:53.161", + id: "olmOPjPEGTx", + created: "2019-10-03T15:21:53.021", + type: "REPORTS", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 29, + y: 60, + interpretationLikeCount: 0, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [ { - "id": "kwl6sGJU1VM" - } + id: "kwl6sGJU1VM", + }, ], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - }, - { - "lastUpdated": "2019-10-03T15:21:53.161", - "id": "c914D9yKrDG", - "created": "2019-10-03T15:21:53.021", - "type": "VISUALIZATION", - "externalAccess": false, - "contentCount": 1, - "height": 20, - "shape": "DOUBLE_WIDTH", - "interpretationCount": 0, - "width": 29, - "x": 0, - "y": 80, - "interpretationLikeCount": 0, - "favorite": false, - "visualization": { - "id": "bHyxSrNnhiJ" - }, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "favorites": [], - "reports": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - }, - { - "lastUpdated": "2019-10-03T15:21:53.161", - "id": "JfnmZWnjAdj", - "created": "2019-10-03T15:21:53.021", - "type": "EVENT_REPORT", - "externalAccess": false, - "contentCount": 1, - "height": 20, - "shape": "DOUBLE_WIDTH", - "interpretationCount": 0, - "width": 29, - "x": 29, - "y": 80, - "interpretationLikeCount": 0, - "favorite": false, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "eventReport": { - "id": "yEPEWO405v9" - }, - "favorites": [], - "reports": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - }, - { - "lastUpdated": "2019-10-03T15:21:53.161", - "id": "sfH7TBb3LYD", - "created": "2019-10-03T15:21:53.021", - "type": "EVENT_REPORT", - "externalAccess": false, - "contentCount": 1, - "height": 20, - "shape": "DOUBLE_WIDTH", - "interpretationCount": 0, - "width": 29, - "x": 0, - "y": 100, - "interpretationLikeCount": 0, - "favorite": false, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "eventReport": { - "id": "dTenEaC7Qeu" - }, - "favorites": [], - "reports": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "resources": [], - "users": [], - "userAccesses": [] - } + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2019-10-03T15:21:53.161", + id: "c914D9yKrDG", + created: "2019-10-03T15:21:53.021", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "DOUBLE_WIDTH", + interpretationCount: 0, + width: 29, + x: 0, + y: 80, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "bHyxSrNnhiJ", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2019-10-03T15:21:53.161", + id: "JfnmZWnjAdj", + created: "2019-10-03T15:21:53.021", + type: "EVENT_REPORT", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "DOUBLE_WIDTH", + interpretationCount: 0, + width: 29, + x: 29, + y: 80, + interpretationLikeCount: 0, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + eventReport: { + id: "yEPEWO405v9", + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2019-10-03T15:21:53.161", + id: "sfH7TBb3LYD", + created: "2019-10-03T15:21:53.021", + type: "EVENT_REPORT", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "DOUBLE_WIDTH", + interpretationCount: 0, + width: 29, + x: 0, + y: 100, + interpretationLikeCount: 0, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + eventReport: { + id: "dTenEaC7Qeu", + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, ], - "translations": [], - "userAccesses": [] - } + translations: [], + userAccesses: [], + }, ], - "reports": [ + reports: [ { - "created": "2018-07-01T09:17:52.414", - "lastUpdated": "2020-10-20T11:17:19.228", - "name": "Injury Epidemiology (TRACKER)", - "id": "kwl6sGJU1VM", - "designContent": "\r\n\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n
\r\n

Injury Epidemiology

\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Organisation Unit:\r\n
\r\n
Export to CSV
Report Quarter:\r\n
\r\n
Generated on:\r\n
\r\n
\r\n
\r\n
\r\n

\r\n
Click on a column name to change the sort order
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
GroupSub-Group\r\n \r\n < 1 yr\r\n 1 - 4 yr5 - 9 yr10 - 14 yr15 - 19 yr20 - 40 yr40 - 60 yr60 - 80 yr80+ yrUnknownTotal
SexFemale\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Male\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Other\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Major Medical ComorbiditiesMean (Standard Deviation)\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
Injury MechanismRoad traffic incident\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Other transport incident\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Hit by person object\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Falls\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Gun shot\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Stab, cut, and all penetrating than gunshot\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Sexual assault\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Animal Bite or Scratch (not snake)\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Snake bite\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Drowning submersion\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Burns\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Electric lightning injury\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Poisoning or toxic exposure\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Radiation exposure\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Suffocation, choking, hanging\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Explosive blast\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Exposure to forces nature\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Other\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Unknown\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Missing from chart\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
ConditionContusion, haematoma or abrasion\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Laceration/wound (not amputation)\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Sprain or other muscle/tendon injury\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Joint dislocation\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Closed fracture\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Open fracture\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Burn\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Crush injury\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Compartment syndrome\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Focal sensory or motor deficit\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Amputation\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Foreign body\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Pneumothorax haemothorax\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Shock\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Coagulopathy\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Respiratory failure\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Airway obstruction\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Altered mental status\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Complication of pregnancy, trauma induced,\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Other unspecified\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Missing from chart\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Injury Anatomic LocationIntracranial\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Head, Face, Neck\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Chest Wall, Intrathoracic\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Spine (bony and cord)\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Abdominal wall, Abdominopelvic, Bony pelivs, Genitalia\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Upper Extremity\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Lower Extremity\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
External (skin)\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Other, including systemic\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Missing from chart\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Arrival ModeAmbulance\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Private vehicle- car or truck\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Private vehicle- motorised 2- or 3- wheeler 2- 3-wheeler\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Taxi- car or truck\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Taxi- motorised 2- or 3- wheeler\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Public transportation\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Police\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Non-motorised vehicle (bicycle, rickshaw, cart vehicle\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Walking\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Other\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Unknown\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Missing from chart\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Number of Operating Theatre EncountersMean (Standard Deviation)\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
Length of stayMean (Standard Deviation)\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
Patients Referred In-\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Referring Facility LevelCommunity health post/dispensary\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Primary health centre\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
First-level hospital\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Second-level hospital\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Tertiary hospital and higher level\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Missing from chart\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Unknown\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
DispositionAdmitted\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Transferred\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
\r\n *Percentages are displayed as percent of specific age group aggregations divided by the total registry cases for that age group during the period. It is possible for some values to be entered multiple times for a single patient (i.e. Injury Mechanism,\r\n Condition, etc), so percentages may have a sum total greater than 100% due to some patients being counted multiple times for different conditions.\r\n
\r\n
\r\n
\r\n
\r\n", - "publicAccess": "--------", - "type": "HTML", - "externalAccess": false, - "cacheStrategy": "NO_CACHE", - "lastUpdatedBy": { - "id": "kD52FGwJgDF" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": true, - "last12Months": false, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": false, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": false - }, - "reportParams": { - "parentOrganisationUnit": false, - "reportingPeriod": true, - "organisationUnit": true, - "grandParentOrganisationUnit": false - }, - "user": { - "id": "H4atNsEuKxP" - }, - "userGroupAccesses": [ - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" - } + created: "2018-07-01T09:17:52.414", + lastUpdated: "2020-10-20T11:17:19.228", + name: "Injury Epidemiology (TRACKER)", + id: "kwl6sGJU1VM", + designContent: + '\r\n\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n
\r\n

Injury Epidemiology

\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Organisation Unit:\r\n
\r\n
Export to CSV
Report Quarter:\r\n
\r\n
Generated on:\r\n
\r\n
\r\n
\r\n
\r\n

\r\n
Click on a column name to change the sort order
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
GroupSub-Group\r\n \r\n < 1 yr\r\n 1 - 4 yr5 - 9 yr10 - 14 yr15 - 19 yr20 - 40 yr40 - 60 yr60 - 80 yr80+ yrUnknownTotal
SexFemale\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Male\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Other\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Major Medical ComorbiditiesMean (Standard Deviation)\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
Injury MechanismRoad traffic incident\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Other transport incident\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Hit by person object\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Falls\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Gun shot\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Stab, cut, and all penetrating than gunshot\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Sexual assault\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Animal Bite or Scratch (not snake)\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Snake bite\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Drowning submersion\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Burns\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Electric lightning injury\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Poisoning or toxic exposure\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Radiation exposure\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Suffocation, choking, hanging\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Explosive blast\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Exposure to forces nature\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Other\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Unknown\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Missing from chart\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
ConditionContusion, haematoma or abrasion\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Laceration/wound (not amputation)\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Sprain or other muscle/tendon injury\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Joint dislocation\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Closed fracture\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Open fracture\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Burn\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Crush injury\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Compartment syndrome\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Focal sensory or motor deficit\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Amputation\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Foreign body\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Pneumothorax haemothorax\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Shock\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Coagulopathy\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Respiratory failure\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Airway obstruction\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Altered mental status\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Complication of pregnancy, trauma induced,\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Other unspecified\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Missing from chart\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Injury Anatomic LocationIntracranial\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Head, Face, Neck\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Chest Wall, Intrathoracic\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Spine (bony and cord)\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Abdominal wall, Abdominopelvic, Bony pelivs, Genitalia\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Upper Extremity\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Lower Extremity\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
External (skin)\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Other, including systemic\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Missing from chart\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Arrival ModeAmbulance\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Private vehicle- car or truck\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Private vehicle- motorised 2- or 3- wheeler 2- 3-wheeler\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Taxi- car or truck\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Taxi- motorised 2- or 3- wheeler\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Public transportation\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Police\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Non-motorised vehicle (bicycle, rickshaw, cart vehicle\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Walking\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Other\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Unknown\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Missing from chart\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Number of Operating Theatre EncountersMean (Standard Deviation)\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
Length of stayMean (Standard Deviation)\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
\r\n
0 (SD 0)
\r\n
Patients Referred In-\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Referring Facility LevelCommunity health post/dispensary\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Primary health centre\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
First-level hospital\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Second-level hospital\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Tertiary hospital and higher level\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Missing from chart\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Unknown\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
DispositionAdmitted\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
Transferred\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
0 (0.0%)
\r\n
\r\n
\r\n *Percentages are displayed as percent of specific age group aggregations divided by the total registry cases for that age group during the period. It is possible for some values to be entered multiple times for a single patient (i.e. Injury Mechanism,\r\n Condition, etc), so percentages may have a sum total greater than 100% due to some patients being counted multiple times for different conditions.\r\n
\r\n
\r\n
\r\n
\r\n', + publicAccess: "--------", + type: "HTML", + externalAccess: false, + cacheStrategy: "NO_CACHE", + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: true, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, + }, + reportParams: { + parentOrganisationUnit: false, + reportingPeriod: true, + organisationUnit: true, + grandParentOrganisationUnit: false, + }, + user: { + id: "H4atNsEuKxP", + }, + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", + }, ], - "translations": [], - "userAccesses": [] - } + translations: [], + userAccesses: [], + }, ], - "visualizations": [ + visualizations: [ { - "lastUpdated": "2019-10-03T15:23:53.140", - "id": "y6ABwhql1Lr", - "created": "2018-07-10T04:05:10.725", - "name": "ETA Number of Severely Injured Patients (TRACKER)", - "showData": true, - "publicAccess": "--------", - "userOrganisationUnitChildren": true, - "type": "COLUMN", - "hideEmptyColumns": false, - "hideEmptyRows": false, - "userOrganisationUnit": true, - "rowSubTotals": false, - "displayDensity": "NORMAL", - "regressionType": "NONE", - "cumulativeValues": false, - "completedOnly": false, - "colTotals": false, - "showDimensionLabels": false, - "sortOrder": 0, - "subtitle": "by Facility", - "fontSize": "NORMAL", - "rangeAxisDecimals": 0, - "topLimit": 0, - "hideEmptyRowItems": "NONE", - "aggregationType": "DEFAULT", - "userOrganisationUnitGrandChildren": false, - "hideSubtitle": false, - "description": "By any scoring mechanism", - "title": "Number of Severely Injured Patients", - "hideLegend": false, - "externalAccess": false, - "percentStackedValues": false, - "colSubTotals": false, - "noSpaceBetweenColumns": false, - "showHierarchy": false, - "rowTotals": false, - "digitGroupSeparator": "SPACE", - "hideTitle": false, - "regression": false, - "skipRounding": false, - "lastUpdatedBy": { - "id": "rjqURGgOShK" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": false, - "last12Months": true, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": true, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": false - }, - "reportingParams": { - "parentOrganisationUnit": false, - "reportingPeriod": false, - "organisationUnit": false, - "grandParentOrganisationUnit": false - }, - "user": { - "id": "kD52FGwJgDF" - }, - "dataElementGroupSetDimensions": [], - "translations": [], - "yearlySeries": [], - "filterDimensions": [ - "dx" - ], - "itemOrganisationUnitGroups": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "QhhxtdJ8HL7", - "displayName": "ETA Ministry Analysis Only", - "id": "QhhxtdJ8HL7" + lastUpdated: "2019-10-03T15:23:53.140", + id: "y6ABwhql1Lr", + created: "2018-07-10T04:05:10.725", + name: "ETA Number of Severely Injured Patients (TRACKER)", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: true, + type: "COLUMN", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + subtitle: "by Facility", + fontSize: "NORMAL", + rangeAxisDecimals: 0, + topLimit: 0, + hideEmptyRowItems: "NONE", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + description: "By any scoring mechanism", + title: "Number of Severely Injured Patients", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "rjqURGgOShK", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: true, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: true, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, + }, + user: { + id: "kD52FGwJgDF", + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: ["dx"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "QhhxtdJ8HL7", + displayName: "ETA Ministry Analysis Only", + id: "QhhxtdJ8HL7", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", }, - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" - } - ], - "subscribers": [], - "columnDimensions": [ - "ou" ], - "optionalAxes": [], - "userAccesses": [], - "favorites": [], - "dataDimensionItems": [ - { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "CGm4fhoAeqN" - } - } + subscribers: [], + columnDimensions: ["ou"], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "CGm4fhoAeqN", + }, + }, ], - "categoryOptionGroupSetDimensions": [], - "organisationUnitGroupSetDimensions": [], - "organisationUnitLevels": [], - "periods": [], - "organisationUnits": [], - "categoryDimensions": [], - "rowDimensions": [ - "pe" - ] + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["pe"], }, { - "lastUpdated": "2019-10-03T15:23:34.116", - "id": "dbzUM8efvEO", - "created": "2018-07-10T04:04:33.217", - "name": "ETA Mean Prehospital Transport Time by Facility (TRACKER)", - "showData": false, - "numberType": "VALUE", - "publicAccess": "--------", - "userOrganisationUnitChildren": true, - "legendDisplayStyle": "FILL", - "type": "PIVOT_TABLE", - "hideEmptyColumns": false, - "hideEmptyRows": false, - "userOrganisationUnit": true, - "rowSubTotals": false, - "displayDensity": "NORMAL", - "cumulativeValues": false, - "completedOnly": false, - "colTotals": true, - "showDimensionLabels": false, - "sortOrder": 0, - "fontSize": "NORMAL", - "topLimit": 0, - "aggregationType": "DEFAULT", - "userOrganisationUnitGrandChildren": false, - "hideSubtitle": false, - "description": "", - "title": "Mean Prehospital Transport Time by Facility", - "hideLegend": false, - "externalAccess": false, - "percentStackedValues": false, - "legendDisplayStrategy": "FIXED", - "colSubTotals": false, - "noSpaceBetweenColumns": false, - "showHierarchy": false, - "rowTotals": false, - "digitGroupSeparator": "SPACE", - "hideTitle": false, - "regression": false, - "skipRounding": false, - "lastUpdatedBy": { - "id": "rjqURGgOShK" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": false, - "last12Months": true, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": true, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": false - }, - "reportingParams": { - "parentOrganisationUnit": false, - "reportingPeriod": false, - "organisationUnit": false, - "grandParentOrganisationUnit": false - }, - "user": { - "id": "kD52FGwJgDF" - }, - "dataElementGroupSetDimensions": [], - "translations": [], - "yearlySeries": [], - "filterDimensions": [ - "pe" - ], - "itemOrganisationUnitGroups": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "QhhxtdJ8HL7", - "displayName": "ETA Ministry Analysis Only", - "id": "QhhxtdJ8HL7" + lastUpdated: "2019-10-03T15:23:34.116", + id: "dbzUM8efvEO", + created: "2018-07-10T04:04:33.217", + name: "ETA Mean Prehospital Transport Time by Facility (TRACKER)", + showData: false, + numberType: "VALUE", + publicAccess: "--------", + userOrganisationUnitChildren: true, + legendDisplayStyle: "FILL", + type: "PIVOT_TABLE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + cumulativeValues: false, + completedOnly: false, + colTotals: true, + showDimensionLabels: false, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + description: "", + title: "Mean Prehospital Transport Time by Facility", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + legendDisplayStrategy: "FIXED", + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "rjqURGgOShK", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: true, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: true, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, + }, + user: { + id: "kD52FGwJgDF", + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: ["pe"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "QhhxtdJ8HL7", + displayName: "ETA Ministry Analysis Only", + id: "QhhxtdJ8HL7", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", }, - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" - } ], - "subscribers": [], - "columnDimensions": [ - "dx" - ], - "optionalAxes": [], - "userAccesses": [], - "favorites": [], - "dataDimensionItems": [ - { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "OMpKvwZaGRd" - } - } + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "OMpKvwZaGRd", + }, + }, ], - "categoryOptionGroupSetDimensions": [], - "organisationUnitGroupSetDimensions": [], - "organisationUnitLevels": [], - "periods": [], - "organisationUnits": [], - "categoryDimensions": [], - "rowDimensions": [ - "ou" - ] + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["ou"], }, { - "lastUpdated": "2019-10-03T15:24:16.388", - "id": "HuvKzZ4cJ6a", - "created": "2018-07-10T04:05:43.789", - "name": "ETA Number of Pediatric Patients by Facility (<5 and <13) (TRACKER)", - "showData": true, - "publicAccess": "--------", - "userOrganisationUnitChildren": true, - "type": "COLUMN", - "hideEmptyColumns": false, - "hideEmptyRows": false, - "userOrganisationUnit": true, - "rowSubTotals": false, - "displayDensity": "NORMAL", - "regressionType": "NONE", - "cumulativeValues": false, - "completedOnly": false, - "colTotals": false, - "showDimensionLabels": false, - "sortOrder": 0, - "subtitle": "by Facility (last 12 months and current month)", - "fontSize": "NORMAL", - "rangeAxisDecimals": 0, - "topLimit": 0, - "hideEmptyRowItems": "NONE", - "aggregationType": "DEFAULT", - "userOrganisationUnitGrandChildren": false, - "hideSubtitle": false, - "description": "", - "title": "Number of Pediatric Patients", - "hideLegend": false, - "externalAccess": false, - "percentStackedValues": false, - "colSubTotals": false, - "noSpaceBetweenColumns": true, - "showHierarchy": false, - "rowTotals": false, - "digitGroupSeparator": "SPACE", - "hideTitle": false, - "regression": false, - "skipRounding": false, - "lastUpdatedBy": { - "id": "rjqURGgOShK" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": false, - "last12Months": true, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": true, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": false - }, - "reportingParams": { - "parentOrganisationUnit": false, - "reportingPeriod": false, - "organisationUnit": false, - "grandParentOrganisationUnit": false - }, - "user": { - "id": "kD52FGwJgDF" - }, - "dataElementGroupSetDimensions": [], - "translations": [], - "yearlySeries": [], - "filterDimensions": [ - "pe" + lastUpdated: "2019-10-03T15:24:16.388", + id: "HuvKzZ4cJ6a", + created: "2018-07-10T04:05:43.789", + name: "ETA Number of Pediatric Patients by Facility (<5 and <13) (TRACKER)", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: true, + type: "COLUMN", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + subtitle: "by Facility (last 12 months and current month)", + fontSize: "NORMAL", + rangeAxisDecimals: 0, + topLimit: 0, + hideEmptyRowItems: "NONE", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + description: "", + title: "Number of Pediatric Patients", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: true, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "rjqURGgOShK", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: true, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: true, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, + }, + user: { + id: "kD52FGwJgDF", + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: ["pe"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "QhhxtdJ8HL7", + displayName: "ETA Ministry Analysis Only", + id: "QhhxtdJ8HL7", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", + }, ], - "itemOrganisationUnitGroups": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "QhhxtdJ8HL7", - "displayName": "ETA Ministry Analysis Only", - "id": "QhhxtdJ8HL7" + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "MUN9jnG63Jh", + }, }, { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" - } - ], - "subscribers": [], - "columnDimensions": [ - "dx" - ], - "optionalAxes": [], - "userAccesses": [], - "favorites": [], - "dataDimensionItems": [ - { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "MUN9jnG63Jh" - } - }, - { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "LahBNH3Qeh8" - } - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "LahBNH3Qeh8", + }, + }, ], - "categoryOptionGroupSetDimensions": [], - "organisationUnitGroupSetDimensions": [], - "organisationUnitLevels": [], - "periods": [], - "organisationUnits": [], - "categoryDimensions": [], - "rowDimensions": [ - "ou" - ] + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["ou"], }, { - "lastUpdated": "2019-10-03T15:24:53.261", - "id": "bHyxSrNnhiJ", - "created": "2018-07-10T04:07:07.096", - "name": "ETA Mechanisms of Injury Amongst Deceased Patients (TRACKER)", - "showData": false, - "numberType": "VALUE", - "publicAccess": "--------", - "userOrganisationUnitChildren": true, - "legendDisplayStyle": "FILL", - "type": "PIVOT_TABLE", - "hideEmptyColumns": false, - "hideEmptyRows": false, - "userOrganisationUnit": true, - "rowSubTotals": false, - "displayDensity": "NORMAL", - "cumulativeValues": false, - "completedOnly": false, - "colTotals": false, - "showDimensionLabels": true, - "sortOrder": 0, - "fontSize": "NORMAL", - "topLimit": 0, - "aggregationType": "DEFAULT", - "userOrganisationUnitGrandChildren": false, - "hideSubtitle": false, - "description": "", - "title": "Mechanisms of Injury Amongst Deceased Patients % (last 12 months and current month)", - "hideLegend": false, - "externalAccess": false, - "percentStackedValues": false, - "legendDisplayStrategy": "FIXED", - "colSubTotals": false, - "noSpaceBetweenColumns": false, - "showHierarchy": false, - "rowTotals": false, - "digitGroupSeparator": "SPACE", - "hideTitle": false, - "regression": false, - "skipRounding": false, - "lastUpdatedBy": { - "id": "rjqURGgOShK" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": false, - "last12Months": true, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": true, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": false - }, - "reportingParams": { - "parentOrganisationUnit": false, - "reportingPeriod": false, - "organisationUnit": false, - "grandParentOrganisationUnit": false - }, - "user": { - "id": "kD52FGwJgDF" - }, - "dataElementGroupSetDimensions": [], - "translations": [], - "yearlySeries": [], - "filterDimensions": [ - "pe" - ], - "itemOrganisationUnitGroups": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "QhhxtdJ8HL7", - "displayName": "ETA Ministry Analysis Only", - "id": "QhhxtdJ8HL7" + lastUpdated: "2019-10-03T15:24:53.261", + id: "bHyxSrNnhiJ", + created: "2018-07-10T04:07:07.096", + name: "ETA Mechanisms of Injury Amongst Deceased Patients (TRACKER)", + showData: false, + numberType: "VALUE", + publicAccess: "--------", + userOrganisationUnitChildren: true, + legendDisplayStyle: "FILL", + type: "PIVOT_TABLE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: true, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + description: "", + title: "Mechanisms of Injury Amongst Deceased Patients % (last 12 months and current month)", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + legendDisplayStrategy: "FIXED", + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "rjqURGgOShK", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: true, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: true, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, + }, + user: { + id: "kD52FGwJgDF", + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: ["pe"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "QhhxtdJ8HL7", + displayName: "ETA Ministry Analysis Only", + id: "QhhxtdJ8HL7", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", }, - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" - } - ], - "subscribers": [], - "columnDimensions": [ - "ou" ], - "optionalAxes": [], - "userAccesses": [], - "favorites": [], - "dataDimensionItems": [ - { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "NIOPOmvlDA1" - } + subscribers: [], + columnDimensions: ["ou"], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "NIOPOmvlDA1", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "sn09s6u7ILo" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "sn09s6u7ILo", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "W5m6SV14TqU" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "W5m6SV14TqU", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "Y4jCxjZ5lSL" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "Y4jCxjZ5lSL", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "z4BEWN5WAmu" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "z4BEWN5WAmu", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "XiLkPJs6t0D" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "XiLkPJs6t0D", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "OBVGwC3q76J" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "OBVGwC3q76J", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "W6MZiOWURyv" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "W6MZiOWURyv", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "HOZO3JFQec1" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "HOZO3JFQec1", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "d6Neg6nfbBY" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "d6Neg6nfbBY", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "TSAwCbCUmWD" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "TSAwCbCUmWD", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "ej9IB9ZY5bX" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "ej9IB9ZY5bX", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "Ykw0XZX1xyf" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "Ykw0XZX1xyf", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "Y1h0bp3ZqpW" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "Y1h0bp3ZqpW", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "gGmhyE5f0o6" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "gGmhyE5f0o6", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "ybE34XKMQjt" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "ybE34XKMQjt", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "pBVNeN0sCI8" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "pBVNeN0sCI8", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "xrg8iyD0Pp0" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "xrg8iyD0Pp0", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "VqVvl2TyQZj" - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "VqVvl2TyQZj", + }, }, { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "xlhd2LMCnP5" - } - } + dataDimensionItemType: "INDICATOR", + indicator: { + id: "xlhd2LMCnP5", + }, + }, ], - "categoryOptionGroupSetDimensions": [], - "organisationUnitGroupSetDimensions": [], - "organisationUnitLevels": [], - "periods": [], - "organisationUnits": [], - "categoryDimensions": [], - "rowDimensions": [ - "dx" - ] + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["dx"], }, { - "lastUpdated": "2019-10-03T15:22:58.031", - "id": "LFbfXNQrrbz", - "created": "2018-07-10T04:08:58.479", - "name": "ETA Proportion of Patients Referred In (TRACKER)", - "showData": true, - "publicAccess": "--------", - "userOrganisationUnitChildren": true, - "type": "COLUMN", - "hideEmptyColumns": false, - "hideEmptyRows": false, - "userOrganisationUnit": true, - "rowSubTotals": false, - "displayDensity": "NORMAL", - "regressionType": "NONE", - "cumulativeValues": false, - "completedOnly": false, - "colTotals": false, - "showDimensionLabels": false, - "sortOrder": 0, - "subtitle": "last 12 months and current month", - "fontSize": "NORMAL", - "topLimit": 0, - "hideEmptyRowItems": "NONE", - "aggregationType": "DEFAULT", - "userOrganisationUnitGrandChildren": false, - "hideSubtitle": false, - "description": "", - "title": "Percent of Patients Referred In", - "hideLegend": true, - "externalAccess": false, - "percentStackedValues": false, - "colSubTotals": false, - "noSpaceBetweenColumns": false, - "showHierarchy": false, - "rowTotals": false, - "digitGroupSeparator": "SPACE", - "hideTitle": false, - "regression": false, - "skipRounding": false, - "lastUpdatedBy": { - "id": "rjqURGgOShK" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": false, - "last12Months": true, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": true, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": false - }, - "reportingParams": { - "parentOrganisationUnit": false, - "reportingPeriod": false, - "organisationUnit": false, - "grandParentOrganisationUnit": false - }, - "user": { - "id": "kD52FGwJgDF" - }, - "dataElementGroupSetDimensions": [], - "translations": [], - "yearlySeries": [], - "filterDimensions": [ - "pe" - ], - "itemOrganisationUnitGroups": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "QhhxtdJ8HL7", - "displayName": "ETA Ministry Analysis Only", - "id": "QhhxtdJ8HL7" + lastUpdated: "2019-10-03T15:22:58.031", + id: "LFbfXNQrrbz", + created: "2018-07-10T04:08:58.479", + name: "ETA Proportion of Patients Referred In (TRACKER)", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: true, + type: "COLUMN", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + subtitle: "last 12 months and current month", + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "NONE", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + description: "", + title: "Percent of Patients Referred In", + hideLegend: true, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "rjqURGgOShK", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: true, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: true, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, + }, + user: { + id: "kD52FGwJgDF", + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: ["pe"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "QhhxtdJ8HL7", + displayName: "ETA Ministry Analysis Only", + id: "QhhxtdJ8HL7", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", }, - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" - } - ], - "subscribers": [], - "columnDimensions": [ - "dx" ], - "optionalAxes": [], - "userAccesses": [], - "favorites": [], - "dataDimensionItems": [ - { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "o5pfPiPMCQG" - } - } + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "o5pfPiPMCQG", + }, + }, ], - "categoryOptionGroupSetDimensions": [], - "organisationUnitGroupSetDimensions": [], - "organisationUnitLevels": [], - "periods": [], - "organisationUnits": [], - "categoryDimensions": [], - "rowDimensions": [ - "ou" - ] + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["ou"], }, { - "lastUpdated": "2019-10-03T15:23:17.202", - "id": "NyF7rJxFaAw", - "created": "2018-07-10T04:03:44.744", - "name": "ETA Deaths in patients with low injury severity scores (TRACKER)", - "showData": true, - "publicAccess": "--------", - "userOrganisationUnitChildren": true, - "type": "COLUMN", - "hideEmptyColumns": false, - "hideEmptyRows": false, - "userOrganisationUnit": true, - "rowSubTotals": false, - "displayDensity": "NORMAL", - "regressionType": "NONE", - "cumulativeValues": false, - "completedOnly": false, - "colTotals": false, - "showDimensionLabels": false, - "sortOrder": 0, - "subtitle": "by Facility", - "fontSize": "NORMAL", - "topLimit": 0, - "hideEmptyRowItems": "NONE", - "aggregationType": "DEFAULT", - "userOrganisationUnitGrandChildren": false, - "hideSubtitle": false, - "description": "By any scoring mechanism", - "title": "Deaths in patients with low injury severity scores", - "hideLegend": false, - "externalAccess": false, - "percentStackedValues": false, - "colSubTotals": false, - "noSpaceBetweenColumns": true, - "showHierarchy": false, - "rowTotals": false, - "digitGroupSeparator": "SPACE", - "hideTitle": false, - "regression": false, - "skipRounding": false, - "lastUpdatedBy": { - "id": "rjqURGgOShK" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": false, - "last12Months": true, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": true, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": false - }, - "reportingParams": { - "parentOrganisationUnit": false, - "reportingPeriod": false, - "organisationUnit": false, - "grandParentOrganisationUnit": false - }, - "user": { - "id": "kD52FGwJgDF" - }, - "dataElementGroupSetDimensions": [], - "translations": [], - "yearlySeries": [], - "filterDimensions": [ - "dx" - ], - "itemOrganisationUnitGroups": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "QhhxtdJ8HL7", - "displayName": "ETA Ministry Analysis Only", - "id": "QhhxtdJ8HL7" + lastUpdated: "2019-10-03T15:23:17.202", + id: "NyF7rJxFaAw", + created: "2018-07-10T04:03:44.744", + name: "ETA Deaths in patients with low injury severity scores (TRACKER)", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: true, + type: "COLUMN", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + subtitle: "by Facility", + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "NONE", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + description: "By any scoring mechanism", + title: "Deaths in patients with low injury severity scores", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: true, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "rjqURGgOShK", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: true, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: true, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, + }, + user: { + id: "kD52FGwJgDF", + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: ["dx"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "QhhxtdJ8HL7", + displayName: "ETA Ministry Analysis Only", + id: "QhhxtdJ8HL7", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", }, - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" - } - ], - "subscribers": [], - "columnDimensions": [ - "ou" ], - "optionalAxes": [], - "userAccesses": [], - "favorites": [], - "dataDimensionItems": [ - { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "rJnvbs6Dt2h" - } - } + subscribers: [], + columnDimensions: ["ou"], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "rJnvbs6Dt2h", + }, + }, ], - "categoryOptionGroupSetDimensions": [], - "organisationUnitGroupSetDimensions": [], - "organisationUnitLevels": [], - "periods": [], - "organisationUnits": [], - "categoryDimensions": [], - "rowDimensions": [ - "pe" - ] + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["pe"], }, { - "lastUpdated": "2019-10-03T15:22:10.279", - "id": "QEzQtxVef2E", - "created": "2018-07-10T03:58:29.171", - "name": "ETA Number of Road Traffic Injuries by Facility (TRACKER)", - "showData": true, - "publicAccess": "--------", - "userOrganisationUnitChildren": true, - "type": "COLUMN", - "hideEmptyColumns": false, - "hideEmptyRows": false, - "userOrganisationUnit": true, - "rowSubTotals": false, - "displayDensity": "NORMAL", - "regressionType": "NONE", - "cumulativeValues": false, - "completedOnly": false, - "colTotals": false, - "showDimensionLabels": false, - "sortOrder": 0, - "subtitle": "last 12 months and current month", - "fontSize": "NORMAL", - "topLimit": 0, - "hideEmptyRowItems": "NONE", - "aggregationType": "DEFAULT", - "userOrganisationUnitGrandChildren": false, - "hideSubtitle": false, - "description": "", - "title": "Number of Road Traffic Injuries by Facility", - "hideLegend": true, - "externalAccess": false, - "percentStackedValues": false, - "colSubTotals": false, - "noSpaceBetweenColumns": false, - "showHierarchy": false, - "rowTotals": false, - "digitGroupSeparator": "SPACE", - "hideTitle": false, - "regression": false, - "skipRounding": false, - "lastUpdatedBy": { - "id": "rjqURGgOShK" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": false, - "last12Months": true, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": true, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": false - }, - "reportingParams": { - "parentOrganisationUnit": false, - "reportingPeriod": false, - "organisationUnit": false, - "grandParentOrganisationUnit": false - }, - "user": { - "id": "kD52FGwJgDF" - }, - "dataElementGroupSetDimensions": [], - "translations": [], - "yearlySeries": [], - "filterDimensions": [ - "pe" - ], - "itemOrganisationUnitGroups": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "QhhxtdJ8HL7", - "displayName": "ETA Ministry Analysis Only", - "id": "QhhxtdJ8HL7" + lastUpdated: "2019-10-03T15:22:10.279", + id: "QEzQtxVef2E", + created: "2018-07-10T03:58:29.171", + name: "ETA Number of Road Traffic Injuries by Facility (TRACKER)", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: true, + type: "COLUMN", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + subtitle: "last 12 months and current month", + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "NONE", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + description: "", + title: "Number of Road Traffic Injuries by Facility", + hideLegend: true, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "rjqURGgOShK", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: true, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: true, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, + }, + user: { + id: "kD52FGwJgDF", + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: ["pe"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "QhhxtdJ8HL7", + displayName: "ETA Ministry Analysis Only", + id: "QhhxtdJ8HL7", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", }, - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" - } - ], - "subscribers": [], - "columnDimensions": [ - "dx" ], - "optionalAxes": [], - "userAccesses": [], - "favorites": [], - "dataDimensionItems": [ - { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "kI6PGaKzSqK" - } - } + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "kI6PGaKzSqK", + }, + }, ], - "categoryOptionGroupSetDimensions": [], - "organisationUnitGroupSetDimensions": [], - "organisationUnitLevels": [], - "periods": [], - "organisationUnits": [], - "categoryDimensions": [], - "rowDimensions": [ - "ou" - ] + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["ou"], }, { - "lastUpdated": "2019-10-03T15:22:32.975", - "id": "oMz2k4EvzR8", - "created": "2018-07-10T04:02:06.406", - "name": "ETA Case Volume by Time and Facility (TRACKER)", - "showData": true, - "publicAccess": "--------", - "userOrganisationUnitChildren": true, - "type": "COLUMN", - "hideEmptyColumns": false, - "hideEmptyRows": false, - "userOrganisationUnit": true, - "rowSubTotals": false, - "displayDensity": "NORMAL", - "regressionType": "NONE", - "cumulativeValues": false, - "completedOnly": false, - "colTotals": false, - "showDimensionLabels": false, - "sortOrder": 0, - "fontSize": "NORMAL", - "topLimit": 0, - "hideEmptyRowItems": "NONE", - "aggregationType": "DEFAULT", - "userOrganisationUnitGrandChildren": false, - "hideSubtitle": true, - "description": "", - "title": "Case Volume by Time and Facility", - "hideLegend": false, - "externalAccess": false, - "percentStackedValues": false, - "colSubTotals": false, - "noSpaceBetweenColumns": false, - "showHierarchy": false, - "rowTotals": false, - "digitGroupSeparator": "SPACE", - "hideTitle": false, - "regression": false, - "skipRounding": false, - "lastUpdatedBy": { - "id": "rjqURGgOShK" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": false, - "last12Months": true, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": true, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": false - }, - "reportingParams": { - "parentOrganisationUnit": false, - "reportingPeriod": false, - "organisationUnit": false, - "grandParentOrganisationUnit": false - }, - "user": { - "id": "kD52FGwJgDF" - }, - "dataElementGroupSetDimensions": [], - "translations": [], - "yearlySeries": [], - "filterDimensions": [ - "dx" - ], - "itemOrganisationUnitGroups": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "QhhxtdJ8HL7", - "displayName": "ETA Ministry Analysis Only", - "id": "QhhxtdJ8HL7" + lastUpdated: "2019-10-03T15:22:32.975", + id: "oMz2k4EvzR8", + created: "2018-07-10T04:02:06.406", + name: "ETA Case Volume by Time and Facility (TRACKER)", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: true, + type: "COLUMN", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "NONE", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: true, + description: "", + title: "Case Volume by Time and Facility", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "rjqURGgOShK", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: true, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: true, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, + }, + user: { + id: "kD52FGwJgDF", + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: ["dx"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "QhhxtdJ8HL7", + displayName: "ETA Ministry Analysis Only", + id: "QhhxtdJ8HL7", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", }, - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" - } ], - "subscribers": [], - "columnDimensions": [ - "ou" - ], - "optionalAxes": [], - "userAccesses": [], - "favorites": [], - "dataDimensionItems": [ - { - "dataDimensionItemType": "INDICATOR", - "indicator": { - "id": "FLdt0VPf82H" - } - } + subscribers: [], + columnDimensions: ["ou"], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "FLdt0VPf82H", + }, + }, ], - "categoryOptionGroupSetDimensions": [], - "organisationUnitGroupSetDimensions": [], - "organisationUnitLevels": [], - "periods": [], - "organisationUnits": [], - "categoryDimensions": [], - "rowDimensions": [ - "pe" - ] - } + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["pe"], + }, ], - "eventReports": [ + eventReports: [ { - "lastUpdated": "2019-10-03T15:25:29.072", - "id": "dTenEaC7Qeu", - "created": "2018-07-10T04:08:06.587", - "name": "Most Commonly Performed Inpatient Procedures (TRACKER)", - "publicAccess": "--------", - "userOrganisationUnitChildren": true, - "hideEmptyRows": false, - "userOrganisationUnit": true, - "rowSubTotals": true, - "hideNaData": false, - "displayDensity": "NORMAL", - "dataType": "AGGREGATED_VALUES", - "completedOnly": false, - "colTotals": true, - "showDimensionLabels": true, - "sortOrder": 1, - "fontSize": "NORMAL", - "topLimit": 10, - "collapseDataDimensions": false, - "userOrganisationUnitGrandChildren": false, - "hideSubtitle": false, - "outputType": "ENROLLMENT", - "description": "", - "externalAccess": false, - "colSubTotals": true, - "showHierarchy": false, - "rowTotals": true, - "digitGroupSeparator": "COMMA", - "hideTitle": false, - "program": { - "id": "YGa3BmrwwiU" - }, - "lastUpdatedBy": { - "id": "rjqURGgOShK" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": true, - "last12Months": false, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": false, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": true - }, - "programStage": { - "id": "bPZlPTESUvO" - }, - "user": { - "id": "kD52FGwJgDF" - }, - "attributeDimensions": [], - "translations": [], - "filterDimensions": [], - "itemOrganisationUnitGroups": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "QhhxtdJ8HL7", - "displayName": "ETA Ministry Analysis Only", - "id": "QhhxtdJ8HL7" - }, - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" - } - ], - "programIndicatorDimensions": [], - "subscribers": [], - "columnDimensions": [ - "pe" + lastUpdated: "2019-10-03T15:25:29.072", + id: "dTenEaC7Qeu", + created: "2018-07-10T04:08:06.587", + name: "Most Commonly Performed Inpatient Procedures (TRACKER)", + publicAccess: "--------", + userOrganisationUnitChildren: true, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: true, + hideNaData: false, + displayDensity: "NORMAL", + dataType: "AGGREGATED_VALUES", + completedOnly: false, + colTotals: true, + showDimensionLabels: true, + sortOrder: 1, + fontSize: "NORMAL", + topLimit: 10, + collapseDataDimensions: false, + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + outputType: "ENROLLMENT", + description: "", + externalAccess: false, + colSubTotals: true, + showHierarchy: false, + rowTotals: true, + digitGroupSeparator: "COMMA", + hideTitle: false, + program: { + id: "YGa3BmrwwiU", + }, + lastUpdatedBy: { + id: "rjqURGgOShK", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: true, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: true, + }, + programStage: { + id: "bPZlPTESUvO", + }, + user: { + id: "kD52FGwJgDF", + }, + attributeDimensions: [], + translations: [], + filterDimensions: [], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "QhhxtdJ8HL7", + displayName: "ETA Ministry Analysis Only", + id: "QhhxtdJ8HL7", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", + }, ], - "userAccesses": [], - "favorites": [], - "categoryOptionGroupSetDimensions": [], - "organisationUnitGroupSetDimensions": [], - "organisationUnitLevels": [], - "dataElementDimensions": [ - { - "dataElement": { - "id": "EDsQRWoZSJP" - } - } + programIndicatorDimensions: [], + subscribers: [], + columnDimensions: ["pe"], + userAccesses: [], + favorites: [], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + dataElementDimensions: [ + { + dataElement: { + id: "EDsQRWoZSJP", + }, + }, ], - "periods": [], - "organisationUnits": [], - "categoryDimensions": [], - "rowDimensions": [ - "ou", - "EDsQRWoZSJP" - ] + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["ou", "EDsQRWoZSJP"], }, { - "lastUpdated": "2019-10-03T15:25:12.148", - "id": "yEPEWO405v9", - "created": "2018-07-10T04:07:45.599", - "name": "Most Commonly Performed EU Procedures (TRACKER)", - "publicAccess": "--------", - "userOrganisationUnitChildren": true, - "hideEmptyRows": false, - "userOrganisationUnit": true, - "rowSubTotals": true, - "hideNaData": false, - "displayDensity": "NORMAL", - "dataType": "AGGREGATED_VALUES", - "completedOnly": false, - "colTotals": true, - "showDimensionLabels": true, - "sortOrder": 1, - "fontSize": "NORMAL", - "topLimit": 10, - "collapseDataDimensions": false, - "userOrganisationUnitGrandChildren": false, - "hideSubtitle": false, - "outputType": "ENROLLMENT", - "description": "", - "externalAccess": false, - "colSubTotals": true, - "showHierarchy": false, - "rowTotals": true, - "digitGroupSeparator": "COMMA", - "hideTitle": false, - "program": { - "id": "YGa3BmrwwiU" - }, - "lastUpdatedBy": { - "id": "rjqURGgOShK" - }, - "relativePeriods": { - "thisYear": false, - "quartersLastYear": false, - "last52Weeks": false, - "thisWeek": false, - "lastMonth": false, - "last14Days": false, - "biMonthsThisYear": false, - "monthsThisYear": false, - "last2SixMonths": false, - "yesterday": false, - "thisQuarter": true, - "last12Months": false, - "last5FinancialYears": false, - "thisSixMonth": false, - "lastQuarter": false, - "thisFinancialYear": false, - "last4Weeks": false, - "last3Months": false, - "thisDay": false, - "thisMonth": false, - "last5Years": false, - "last6BiMonths": false, - "last4BiWeeks": false, - "lastFinancialYear": false, - "lastBiWeek": false, - "weeksThisYear": false, - "last6Months": false, - "last3Days": false, - "quartersThisYear": false, - "monthsLastYear": false, - "lastWeek": false, - "last7Days": false, - "thisBimonth": false, - "lastBimonth": false, - "lastSixMonth": false, - "thisBiWeek": false, - "lastYear": false, - "last12Weeks": false, - "last4Quarters": true - }, - "programStage": { - "id": "NliaouB66pN" - }, - "user": { - "id": "kD52FGwJgDF" - }, - "attributeDimensions": [], - "translations": [], - "filterDimensions": [], - "itemOrganisationUnitGroups": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "QhhxtdJ8HL7", - "displayName": "ETA Ministry Analysis Only", - "id": "QhhxtdJ8HL7" - }, - { - "access": "rw------", - "userGroupUid": "Urx6COfeLkm", - "displayName": "ETA administrators", - "id": "Urx6COfeLkm" - } - ], - "programIndicatorDimensions": [], - "subscribers": [], - "columnDimensions": [ - "pe" + lastUpdated: "2019-10-03T15:25:12.148", + id: "yEPEWO405v9", + created: "2018-07-10T04:07:45.599", + name: "Most Commonly Performed EU Procedures (TRACKER)", + publicAccess: "--------", + userOrganisationUnitChildren: true, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: true, + hideNaData: false, + displayDensity: "NORMAL", + dataType: "AGGREGATED_VALUES", + completedOnly: false, + colTotals: true, + showDimensionLabels: true, + sortOrder: 1, + fontSize: "NORMAL", + topLimit: 10, + collapseDataDimensions: false, + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + outputType: "ENROLLMENT", + description: "", + externalAccess: false, + colSubTotals: true, + showHierarchy: false, + rowTotals: true, + digitGroupSeparator: "COMMA", + hideTitle: false, + program: { + id: "YGa3BmrwwiU", + }, + lastUpdatedBy: { + id: "rjqURGgOShK", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: true, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: true, + }, + programStage: { + id: "NliaouB66pN", + }, + user: { + id: "kD52FGwJgDF", + }, + attributeDimensions: [], + translations: [], + filterDimensions: [], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "QhhxtdJ8HL7", + displayName: "ETA Ministry Analysis Only", + id: "QhhxtdJ8HL7", + }, + { + access: "rw------", + userGroupUid: "Urx6COfeLkm", + displayName: "ETA administrators", + id: "Urx6COfeLkm", + }, ], - "userAccesses": [], - "favorites": [], - "categoryOptionGroupSetDimensions": [], - "organisationUnitGroupSetDimensions": [], - "organisationUnitLevels": [], - "dataElementDimensions": [ - { - "dataElement": { - "id": "AlkbwOe8hCK" - } - } + programIndicatorDimensions: [], + subscribers: [], + columnDimensions: ["pe"], + userAccesses: [], + favorites: [], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + dataElementDimensions: [ + { + dataElement: { + id: "AlkbwOe8hCK", + }, + }, ], - "periods": [], - "organisationUnits": [], - "categoryDimensions": [], - "rowDimensions": [ - "ou", - "AlkbwOe8hCK" - ] - } - ] + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["ou", "AlkbwOe8hCK"], + }, + ], }, { - "date": "2021-09-21T08:57:04.095", - "categoryCombos": [ + date: "2021-09-21T08:57:04.095", + categoryCombos: [ { - "code": "default", - "created": "2017-05-10T17:53:55.156", - "lastUpdated": "2019-02-20T16:22:55.336", - "name": "default", - "id": "JzvGfLYkX17", - "dataDimensionType": "DISAGGREGATION", - "publicAccess": "rw------", - "skipTotal": false, - "lastUpdatedBy": { - "id": "eK26I7dRbC4" - }, - "user": { - "id": "eK26I7dRbC4" - }, - "userGroupAccesses": [], - "translations": [], - "userAccesses": [], - "categories": [ - { - "id": "DMyxTSpvKOp" - } - ] - } + code: "default", + created: "2017-05-10T17:53:55.156", + lastUpdated: "2019-02-20T16:22:55.336", + name: "default", + id: "JzvGfLYkX17", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + skipTotal: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "eK26I7dRbC4", + }, + userGroupAccesses: [], + translations: [], + userAccesses: [], + categories: [ + { + id: "DMyxTSpvKOp", + }, + ], + }, ], - "programs": [ + programs: [ { - "lastUpdated": "2020-06-04T17:17:44.859", - "id": "yx6VLBFBlrK", - "created": "2019-08-21T11:19:35.553", - "name": "ADMIN_Analytics_Check(Event)", - "shortName": "ADMIN_Analytics_Check(Event)", - "publicAccess": "--------", - "completeEventsExpiryDays": 0, - "ignoreOverdueEvents": false, - "skipOffline": false, - "featureType": "NONE", - "minAttributesRequiredToSearch": 1, - "displayFrontPageList": false, - "onlyEnrollOnce": false, - "programType": "WITHOUT_REGISTRATION", - "accessLevel": "OPEN", - "version": 1, - "maxTeiCountToReturn": 0, - "selectIncidentDatesInFuture": false, - "displayIncidentDate": true, - "selectEnrollmentDatesInFuture": false, - "expiryDays": 0, - "useFirstStageDuringRegistration": false, - "categoryCombo": { - "id": "JzvGfLYkX17" - }, - "lastUpdatedBy": { - "id": "H4atNsEuKxP" - }, - "user": { - "id": "kD52FGwJgDF" - }, - "programTrackedEntityAttributes": [], - "notificationTemplates": [], - "translations": [], - "organisationUnits": [ - { - "id": "H8RixfF8ugH" - } + lastUpdated: "2020-06-04T17:17:44.859", + id: "yx6VLBFBlrK", + created: "2019-08-21T11:19:35.553", + name: "ADMIN_Analytics_Check(Event)", + shortName: "ADMIN_Analytics_Check(Event)", + publicAccess: "--------", + completeEventsExpiryDays: 0, + ignoreOverdueEvents: false, + skipOffline: false, + featureType: "NONE", + minAttributesRequiredToSearch: 1, + displayFrontPageList: false, + onlyEnrollOnce: false, + programType: "WITHOUT_REGISTRATION", + accessLevel: "OPEN", + version: 1, + maxTeiCountToReturn: 0, + selectIncidentDatesInFuture: false, + displayIncidentDate: true, + selectEnrollmentDatesInFuture: false, + expiryDays: 0, + useFirstStageDuringRegistration: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "H4atNsEuKxP", + }, + user: { + id: "kD52FGwJgDF", + }, + programTrackedEntityAttributes: [], + notificationTemplates: [], + translations: [], + organisationUnits: [ + { + id: "H8RixfF8ugH", + }, ], - "userGroupAccesses": [ + userGroupAccesses: [ { - "access": "r-r-----", - "userGroupUid": "sCjEPgiOhP1", - "displayName": "WIDP admins", - "id": "sCjEPgiOhP1" + access: "r-r-----", + userGroupUid: "sCjEPgiOhP1", + displayName: "WIDP admins", + id: "sCjEPgiOhP1", }, { - "access": "rwrw----", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" - } + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, ], - "programSections": [], - "attributeValues": [], - "programStages": [ + programSections: [], + attributeValues: [], + programStages: [ { - "id": "EGA9fqLFtxM" - } + id: "EGA9fqLFtxM", + }, ], - "userAccesses": [] - } + userAccesses: [], + }, ], - "categoryOptionCombos": [ + categoryOptionCombos: [ { - "lastUpdated": "2017-05-10T17:53:55.158", - "code": "default", - "created": "2017-05-10T17:53:55.157", - "name": "default", - "id": "Xr12mI7VPn3", - "ignoreApproval": false, - "categoryCombo": { - "id": "JzvGfLYkX17" - }, - "translations": [], - "attributeValues": [], - "categoryOptions": [ - { - "id": "Y7fcspgsU43" - } - ] - } + lastUpdated: "2017-05-10T17:53:55.158", + code: "default", + created: "2017-05-10T17:53:55.157", + name: "default", + id: "Xr12mI7VPn3", + ignoreApproval: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "Y7fcspgsU43", + }, + ], + }, ], - "programStages": [ + programStages: [ { - "lastUpdated": "2020-06-04T17:17:44.805", - "id": "EGA9fqLFtxM", - "created": "2019-08-21T11:19:35.521", - "name": "ADMIN_Analytics_Check(Event)", - "allowGenerateNextVisit": false, - "preGenerateUID": false, - "publicAccess": "--------", - "openAfterEnrollment": false, - "repeatable": false, - "featureType": "NONE", - "remindCompleted": false, - "displayGenerateEventBox": true, - "generatedByEnrollmentDate": false, - "validationStrategy": "ON_UPDATE_AND_INSERT", - "autoGenerateEvent": true, - "sortOrder": 1, - "hideDueDate": false, - "blockEntryForm": false, - "enableUserAssignment": false, - "minDaysFromStart": 0, - "program": { - "id": "yx6VLBFBlrK" - }, - "lastUpdatedBy": { - "id": "H4atNsEuKxP" - }, - "user": { - "id": "kD52FGwJgDF" - }, - "notificationTemplates": [], - "programStageDataElements": [ - { - "lastUpdated": "2020-06-04T17:17:44.806", - "id": "QxkWkYWHGhS", - "created": "2019-09-10T17:17:31.872", - "displayInReports": false, - "skipSynchronization": false, - "externalAccess": false, - "renderOptionsAsRadio": false, - "allowFutureDate": false, - "compulsory": false, - "allowProvidedElsewhere": false, - "sortOrder": 1, - "favorite": false, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "programStage": { - "id": "EGA9fqLFtxM" - }, - "dataElement": { - "id": "JKmrptCJjQN" - }, - "favorites": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "userAccesses": [] - }, - { - "lastUpdated": "2020-06-04T17:17:44.806", - "id": "lggWjTVxKXg", - "created": "2019-09-10T17:17:44.152", - "displayInReports": false, - "skipSynchronization": false, - "externalAccess": false, - "renderOptionsAsRadio": false, - "allowFutureDate": false, - "compulsory": false, - "allowProvidedElsewhere": false, - "sortOrder": 2, - "favorite": false, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "programStage": { - "id": "EGA9fqLFtxM" - }, - "dataElement": { - "id": "KfhTiPYwKPm" - }, - "favorites": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "userAccesses": [] - } + lastUpdated: "2020-06-04T17:17:44.805", + id: "EGA9fqLFtxM", + created: "2019-08-21T11:19:35.521", + name: "ADMIN_Analytics_Check(Event)", + allowGenerateNextVisit: false, + preGenerateUID: false, + publicAccess: "--------", + openAfterEnrollment: false, + repeatable: false, + featureType: "NONE", + remindCompleted: false, + displayGenerateEventBox: true, + generatedByEnrollmentDate: false, + validationStrategy: "ON_UPDATE_AND_INSERT", + autoGenerateEvent: true, + sortOrder: 1, + hideDueDate: false, + blockEntryForm: false, + enableUserAssignment: false, + minDaysFromStart: 0, + program: { + id: "yx6VLBFBlrK", + }, + lastUpdatedBy: { + id: "H4atNsEuKxP", + }, + user: { + id: "kD52FGwJgDF", + }, + notificationTemplates: [], + programStageDataElements: [ + { + lastUpdated: "2020-06-04T17:17:44.806", + id: "QxkWkYWHGhS", + created: "2019-09-10T17:17:31.872", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 1, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "EGA9fqLFtxM", + }, + dataElement: { + id: "JKmrptCJjQN", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2020-06-04T17:17:44.806", + id: "lggWjTVxKXg", + created: "2019-09-10T17:17:44.152", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 2, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "EGA9fqLFtxM", + }, + dataElement: { + id: "KfhTiPYwKPm", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, ], - "translations": [], - "userGroupAccesses": [ + translations: [], + userGroupAccesses: [ { - "access": "r-r-----", - "userGroupUid": "sCjEPgiOhP1", - "displayName": "WIDP admins", - "id": "sCjEPgiOhP1" + access: "r-r-----", + userGroupUid: "sCjEPgiOhP1", + displayName: "WIDP admins", + id: "sCjEPgiOhP1", }, { - "access": "rwrw----", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" - } + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, ], - "attributeValues": [], - "userAccesses": [], - "programStageSections": [] - } + attributeValues: [], + userAccesses: [], + programStageSections: [], + }, ], - "categoryOptions": [ + categoryOptions: [ { - "code": "default", - "created": "2017-05-10T17:53:55.138", - "lastUpdated": "2018-07-27T16:09:07.425", - "name": "default", - "id": "Y7fcspgsU43", - "shortName": "default", - "publicAccess": "rwrw----", - "user": { - "id": "eK26I7dRbC4" - }, - "userGroupAccesses": [], - "attributeValues": [], - "translations": [], - "userAccesses": [], - "organisationUnits": [] - } + code: "default", + created: "2017-05-10T17:53:55.138", + lastUpdated: "2018-07-27T16:09:07.425", + name: "default", + id: "Y7fcspgsU43", + shortName: "default", + publicAccess: "rwrw----", + user: { + id: "eK26I7dRbC4", + }, + userGroupAccesses: [], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [], + }, ], - "dataElements": [ + dataElements: [ { - "lastUpdated": "2020-06-05T11:13:45.280", - "id": "JKmrptCJjQN", - "created": "2019-09-10T17:16:59.679", - "name": "ADMIN_Analytics_Execution_1_Events", - "shortName": "ADMIN_Analytics_Execution_1_Events", - "aggregationType": "SUM", - "domainType": "TRACKER", - "publicAccess": "--------", - "valueType": "TRUE_ONLY", - "formName": "Analytics run at 0h", - "zeroIsSignificant": true, - "categoryCombo": { - "id": "JzvGfLYkX17" - }, - "lastUpdatedBy": { - "id": "eK26I7dRbC4" - }, - "user": { - "id": "H4atNsEuKxP" - }, - "translations": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "sCjEPgiOhP1", - "displayName": "WIDP admins", - "id": "sCjEPgiOhP1" - }, - { - "access": "rw------", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" - } + lastUpdated: "2020-06-05T11:13:45.280", + id: "JKmrptCJjQN", + created: "2019-09-10T17:16:59.679", + name: "ADMIN_Analytics_Execution_1_Events", + shortName: "ADMIN_Analytics_Execution_1_Events", + aggregationType: "SUM", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Analytics run at 0h", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "H4atNsEuKxP", + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "sCjEPgiOhP1", + displayName: "WIDP admins", + id: "sCjEPgiOhP1", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, ], - "attributeValues": [], - "userAccesses": [], - "legendSets": [], - "aggregationLevels": [] + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], }, { - "lastUpdated": "2020-06-05T11:13:56.574", - "id": "KfhTiPYwKPm", - "created": "2019-09-10T17:17:18.194", - "name": "ADMIN_Analytics_Execution_2_Events", - "shortName": "ADMIN_Analytics_Execution_2_Events", - "aggregationType": "SUM", - "domainType": "TRACKER", - "publicAccess": "--------", - "valueType": "TRUE_ONLY", - "formName": "Analytics run at 12h", - "zeroIsSignificant": true, - "categoryCombo": { - "id": "JzvGfLYkX17" - }, - "lastUpdatedBy": { - "id": "eK26I7dRbC4" - }, - "user": { - "id": "H4atNsEuKxP" - }, - "translations": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "sCjEPgiOhP1", - "displayName": "WIDP admins", - "id": "sCjEPgiOhP1" - }, - { - "access": "rw------", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" - } + lastUpdated: "2020-06-05T11:13:56.574", + id: "KfhTiPYwKPm", + created: "2019-09-10T17:17:18.194", + name: "ADMIN_Analytics_Execution_2_Events", + shortName: "ADMIN_Analytics_Execution_2_Events", + aggregationType: "SUM", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Analytics run at 12h", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "H4atNsEuKxP", + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "sCjEPgiOhP1", + displayName: "WIDP admins", + id: "sCjEPgiOhP1", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, ], - "attributeValues": [], - "userAccesses": [], - "legendSets": [], - "aggregationLevels": [] - } + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, ], - "categories": [ + categories: [ { - "code": "default", - "created": "2017-05-10T17:53:55.152", - "lastUpdated": "2021-08-07T06:18:19.628", - "name": "default", - "id": "DMyxTSpvKOp", - "dataDimensionType": "DISAGGREGATION", - "publicAccess": "rw------", - "dataDimension": false, - "user": { - "id": "eK26I7dRbC4" - }, - "userGroupAccesses": [], - "attributeValues": [], - "translations": [], - "userAccesses": [], - "categoryOptions": [ - { - "id": "Y7fcspgsU43" - } - ] - } + code: "default", + created: "2017-05-10T17:53:55.152", + lastUpdated: "2021-08-07T06:18:19.628", + name: "default", + id: "DMyxTSpvKOp", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + dataDimension: false, + user: { + id: "eK26I7dRbC4", + }, + userGroupAccesses: [], + attributeValues: [], + translations: [], + userAccesses: [], + categoryOptions: [ + { + id: "Y7fcspgsU43", + }, + ], + }, ], - "programStageDataElements": [ + programStageDataElements: [ { - "created": "2019-09-10T17:17:31.872", - "lastUpdated": "2020-06-04T17:17:44.806", - "id": "QxkWkYWHGhS", - "displayInReports": false, - "skipSynchronization": false, - "renderOptionsAsRadio": false, - "compulsory": false, - "allowProvidedElsewhere": false, - "sortOrder": 1, - "allowFutureDate": false, - "programStage": { - "id": "EGA9fqLFtxM" - }, - "dataElement": { - "id": "JKmrptCJjQN" - } + created: "2019-09-10T17:17:31.872", + lastUpdated: "2020-06-04T17:17:44.806", + id: "QxkWkYWHGhS", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 1, + allowFutureDate: false, + programStage: { + id: "EGA9fqLFtxM", + }, + dataElement: { + id: "JKmrptCJjQN", + }, }, { - "created": "2019-09-10T17:17:44.152", - "lastUpdated": "2020-06-04T17:17:44.806", - "id": "lggWjTVxKXg", - "displayInReports": false, - "skipSynchronization": false, - "renderOptionsAsRadio": false, - "compulsory": false, - "allowProvidedElsewhere": false, - "sortOrder": 2, - "allowFutureDate": false, - "programStage": { - "id": "EGA9fqLFtxM" - }, - "dataElement": { - "id": "KfhTiPYwKPm" - } - } - ] + created: "2019-09-10T17:17:44.152", + lastUpdated: "2020-06-04T17:17:44.806", + id: "lggWjTVxKXg", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 2, + allowFutureDate: false, + programStage: { + id: "EGA9fqLFtxM", + }, + dataElement: { + id: "KfhTiPYwKPm", + }, + }, + ], }, { - "date": "2021-09-21T08:57:05.105", - "categoryCombos": [ + date: "2021-09-21T08:57:05.105", + categoryCombos: [ { - "code": "default", - "created": "2017-05-10T17:53:55.156", - "lastUpdated": "2019-02-20T16:22:55.336", - "name": "default", - "id": "JzvGfLYkX17", - "dataDimensionType": "DISAGGREGATION", - "publicAccess": "rw------", - "skipTotal": false, - "lastUpdatedBy": { - "id": "eK26I7dRbC4" - }, - "user": { - "id": "eK26I7dRbC4" - }, - "userGroupAccesses": [], - "translations": [], - "userAccesses": [], - "categories": [ - { - "id": "DMyxTSpvKOp" - } - ] - } + code: "default", + created: "2017-05-10T17:53:55.156", + lastUpdated: "2019-02-20T16:22:55.336", + name: "default", + id: "JzvGfLYkX17", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + skipTotal: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "eK26I7dRbC4", + }, + userGroupAccesses: [], + translations: [], + userAccesses: [], + categories: [ + { + id: "DMyxTSpvKOp", + }, + ], + }, ], - "programs": [ + programs: [ { - "lastUpdated": "2020-06-04T17:17:12.801", - "id": "rjsnrRKjtwU", - "created": "2019-08-21T11:24:20.251", - "name": "ADMIN_Analytics_Check(Tracker)", - "shortName": "ADMIN_Analytics_Check(Tracker)", - "publicAccess": "--------", - "completeEventsExpiryDays": 0, - "ignoreOverdueEvents": false, - "skipOffline": false, - "featureType": "NONE", - "minAttributesRequiredToSearch": 1, - "displayFrontPageList": false, - "onlyEnrollOnce": false, - "programType": "WITH_REGISTRATION", - "accessLevel": "OPEN", - "version": 2, - "maxTeiCountToReturn": 0, - "selectIncidentDatesInFuture": false, - "displayIncidentDate": true, - "selectEnrollmentDatesInFuture": false, - "expiryDays": 0, - "useFirstStageDuringRegistration": false, - "categoryCombo": { - "id": "JzvGfLYkX17" - }, - "lastUpdatedBy": { - "id": "H4atNsEuKxP" - }, - "trackedEntityType": { - "id": "MCPQUTHX1Ze" - }, - "user": { - "id": "kD52FGwJgDF" - }, - "programTrackedEntityAttributes": [ - { - "lastUpdated": "2020-06-04T17:17:12.802", - "id": "OT1TfVwhsBO", - "created": "2019-09-11T12:37:56.247", - "name": "ADMIN_Analytics_Check(Tracker) First name", - "displayName": "ADMIN_Analytics_Check(Tracker) First name", - "mandatory": false, - "displayShortName": "ADMIN_Analytics_Check(Tracker) First Name", - "externalAccess": false, - "renderOptionsAsRadio": false, - "valueType": "TEXT", - "allowFutureDate": false, - "searchable": true, - "displayInList": true, - "sortOrder": 1, - "favorite": false, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "program": { - "id": "rjsnrRKjtwU" - }, - "trackedEntityAttribute": { - "id": "DwZNiXy5Daz" - }, - "favorites": [], - "programTrackedEntityAttributeGroups": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "userAccesses": [] - } + lastUpdated: "2020-06-04T17:17:12.801", + id: "rjsnrRKjtwU", + created: "2019-08-21T11:24:20.251", + name: "ADMIN_Analytics_Check(Tracker)", + shortName: "ADMIN_Analytics_Check(Tracker)", + publicAccess: "--------", + completeEventsExpiryDays: 0, + ignoreOverdueEvents: false, + skipOffline: false, + featureType: "NONE", + minAttributesRequiredToSearch: 1, + displayFrontPageList: false, + onlyEnrollOnce: false, + programType: "WITH_REGISTRATION", + accessLevel: "OPEN", + version: 2, + maxTeiCountToReturn: 0, + selectIncidentDatesInFuture: false, + displayIncidentDate: true, + selectEnrollmentDatesInFuture: false, + expiryDays: 0, + useFirstStageDuringRegistration: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "H4atNsEuKxP", + }, + trackedEntityType: { + id: "MCPQUTHX1Ze", + }, + user: { + id: "kD52FGwJgDF", + }, + programTrackedEntityAttributes: [ + { + lastUpdated: "2020-06-04T17:17:12.802", + id: "OT1TfVwhsBO", + created: "2019-09-11T12:37:56.247", + name: "ADMIN_Analytics_Check(Tracker) First name", + displayName: "ADMIN_Analytics_Check(Tracker) First name", + mandatory: false, + displayShortName: "ADMIN_Analytics_Check(Tracker) First Name", + externalAccess: false, + renderOptionsAsRadio: false, + valueType: "TEXT", + allowFutureDate: false, + searchable: true, + displayInList: true, + sortOrder: 1, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + program: { + id: "rjsnrRKjtwU", + }, + trackedEntityAttribute: { + id: "DwZNiXy5Daz", + }, + favorites: [], + programTrackedEntityAttributeGroups: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, ], - "notificationTemplates": [], - "translations": [], - "organisationUnits": [ + notificationTemplates: [], + translations: [], + organisationUnits: [ { - "id": "H8RixfF8ugH" - } + id: "H8RixfF8ugH", + }, ], - "userGroupAccesses": [ + userGroupAccesses: [ { - "access": "r-r-----", - "userGroupUid": "sCjEPgiOhP1", - "displayName": "WIDP admins", - "id": "sCjEPgiOhP1" + access: "r-r-----", + userGroupUid: "sCjEPgiOhP1", + displayName: "WIDP admins", + id: "sCjEPgiOhP1", }, { - "access": "rwrw----", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" - } + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, ], - "programSections": [], - "attributeValues": [], - "programStages": [ + programSections: [], + attributeValues: [], + programStages: [ { - "id": "DQitAUlaicG" - } + id: "DQitAUlaicG", + }, ], - "userAccesses": [] - } + userAccesses: [], + }, ], - "categoryOptionCombos": [ + categoryOptionCombos: [ { - "lastUpdated": "2017-05-10T17:53:55.158", - "code": "default", - "created": "2017-05-10T17:53:55.157", - "name": "default", - "id": "Xr12mI7VPn3", - "ignoreApproval": false, - "categoryCombo": { - "id": "JzvGfLYkX17" - }, - "translations": [], - "attributeValues": [], - "categoryOptions": [ - { - "id": "Y7fcspgsU43" - } - ] - } + lastUpdated: "2017-05-10T17:53:55.158", + code: "default", + created: "2017-05-10T17:53:55.157", + name: "default", + id: "Xr12mI7VPn3", + ignoreApproval: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "Y7fcspgsU43", + }, + ], + }, ], - "programStages": [ + programStages: [ { - "lastUpdated": "2020-06-04T17:17:12.733", - "id": "DQitAUlaicG", - "created": "2019-08-21T11:24:20.216", - "name": "check", - "allowGenerateNextVisit": false, - "preGenerateUID": false, - "publicAccess": "--------", - "openAfterEnrollment": false, - "repeatable": true, - "featureType": "NONE", - "remindCompleted": false, - "displayGenerateEventBox": true, - "generatedByEnrollmentDate": false, - "validationStrategy": "ON_COMPLETE", - "autoGenerateEvent": true, - "sortOrder": 1, - "hideDueDate": false, - "blockEntryForm": false, - "enableUserAssignment": false, - "minDaysFromStart": 0, - "program": { - "id": "rjsnrRKjtwU" - }, - "lastUpdatedBy": { - "id": "H4atNsEuKxP" - }, - "user": { - "id": "kD52FGwJgDF" - }, - "notificationTemplates": [], - "programStageDataElements": [ - { - "lastUpdated": "2020-06-04T17:17:12.734", - "id": "tzA1MiQtotT", - "created": "2019-08-21T11:24:20.216", - "displayInReports": false, - "skipSynchronization": false, - "externalAccess": false, - "renderOptionsAsRadio": false, - "allowFutureDate": false, - "compulsory": false, - "allowProvidedElsewhere": false, - "sortOrder": 1, - "favorite": false, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "programStage": { - "id": "DQitAUlaicG" - }, - "dataElement": { - "id": "euPtt2LWNis" - }, - "favorites": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "userAccesses": [] - }, - { - "lastUpdated": "2020-06-04T17:17:12.734", - "id": "RVMZjwFEH1y", - "created": "2019-08-21T11:24:20.216", - "displayInReports": false, - "skipSynchronization": false, - "externalAccess": false, - "renderOptionsAsRadio": false, - "allowFutureDate": false, - "compulsory": false, - "allowProvidedElsewhere": false, - "sortOrder": 2, - "favorite": false, - "access": { - "read": true, - "update": true, - "externalize": true, - "delete": true, - "write": true, - "manage": true - }, - "programStage": { - "id": "DQitAUlaicG" - }, - "dataElement": { - "id": "X8XLOWOJsbR" - }, - "favorites": [], - "translations": [], - "userGroupAccesses": [], - "attributeValues": [], - "userAccesses": [] - } + lastUpdated: "2020-06-04T17:17:12.733", + id: "DQitAUlaicG", + created: "2019-08-21T11:24:20.216", + name: "check", + allowGenerateNextVisit: false, + preGenerateUID: false, + publicAccess: "--------", + openAfterEnrollment: false, + repeatable: true, + featureType: "NONE", + remindCompleted: false, + displayGenerateEventBox: true, + generatedByEnrollmentDate: false, + validationStrategy: "ON_COMPLETE", + autoGenerateEvent: true, + sortOrder: 1, + hideDueDate: false, + blockEntryForm: false, + enableUserAssignment: false, + minDaysFromStart: 0, + program: { + id: "rjsnrRKjtwU", + }, + lastUpdatedBy: { + id: "H4atNsEuKxP", + }, + user: { + id: "kD52FGwJgDF", + }, + notificationTemplates: [], + programStageDataElements: [ + { + lastUpdated: "2020-06-04T17:17:12.734", + id: "tzA1MiQtotT", + created: "2019-08-21T11:24:20.216", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 1, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "DQitAUlaicG", + }, + dataElement: { + id: "euPtt2LWNis", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2020-06-04T17:17:12.734", + id: "RVMZjwFEH1y", + created: "2019-08-21T11:24:20.216", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 2, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "DQitAUlaicG", + }, + dataElement: { + id: "X8XLOWOJsbR", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, ], - "translations": [], - "userGroupAccesses": [ + translations: [], + userGroupAccesses: [ { - "access": "r-r-----", - "userGroupUid": "sCjEPgiOhP1", - "displayName": "WIDP admins", - "id": "sCjEPgiOhP1" + access: "r-r-----", + userGroupUid: "sCjEPgiOhP1", + displayName: "WIDP admins", + id: "sCjEPgiOhP1", }, { - "access": "rwrw----", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" - } + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, ], - "attributeValues": [], - "userAccesses": [], - "programStageSections": [] - } + attributeValues: [], + userAccesses: [], + programStageSections: [], + }, ], - "trackedEntityTypes": [ + trackedEntityTypes: [ { - "code": "Person", - "created": "2018-11-29T00:00:00.000", - "lastUpdated": "2021-06-18T12:10:43.381", - "name": "Person", - "id": "MCPQUTHX1Ze", - "publicAccess": "--------", - "description": "Person", - "maxTeiCountToReturn": 0, - "allowAuditLog": false, - "featureType": "NONE", - "minAttributesRequiredToSearch": 1, - "lastUpdatedBy": { - "id": "Qu9goywu6cV" + code: "Person", + created: "2018-11-29T00:00:00.000", + lastUpdated: "2021-06-18T12:10:43.381", + name: "Person", + id: "MCPQUTHX1Ze", + publicAccess: "--------", + description: "Person", + maxTeiCountToReturn: 0, + allowAuditLog: false, + featureType: "NONE", + minAttributesRequiredToSearch: 1, + lastUpdatedBy: { + id: "Qu9goywu6cV", }, - "user": { - "id": "ilJDyuqlwDC" + user: { + id: "ilJDyuqlwDC", }, - "userGroupAccesses": [ + userGroupAccesses: [ { - "access": "rwrw----", - "userGroupUid": "k1KjQJqaHpz", - "displayName": "NTD_SKIN_Admin", - "id": "k1KjQJqaHpz" + access: "rwrw----", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", }, { - "access": "r-------", - "userGroupUid": "Wx8ovUuTEEU", - "displayName": "SS_NTD_LSH_VL_LeishManTracker_Entry", - "id": "Wx8ovUuTEEU" + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU", }, { - "access": "r-r-----", - "userGroupUid": "ZyQlPOL3aSD", - "displayName": "NTD_SKIN_BU_HQ", - "id": "ZyQlPOL3aSD" + access: "r-r-----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", }, { - "access": "r-------", - "userGroupUid": "adE2VMPwCI5", - "displayName": "SS_NTD_LSH_VL_LeishManTracker_View", - "id": "adE2VMPwCI5" + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5", }, { - "access": "r-rw----", - "userGroupUid": "HJRKloCWNeh", - "displayName": "SS_NTD_SKIN_ACD_Event_Entry", - "id": "HJRKloCWNeh" + access: "r-rw----", + userGroupUid: "HJRKloCWNeh", + displayName: "SS_NTD_SKIN_ACD_Event_Entry", + id: "HJRKloCWNeh", }, { - "access": "r-rw----", - "userGroupUid": "bzuIPO5zQPV", - "displayName": "SS_NTD_SKIN_BU_Event_Entry", - "id": "bzuIPO5zQPV" + access: "r-rw----", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", }, { - "access": "r-rw----", - "userGroupUid": "BIIJN4E57xU", - "displayName": "SS_NTD_SKIN_YAWS_Event_Entry", - "id": "BIIJN4E57xU" + access: "r-rw----", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU", }, { - "access": "r-r-----", - "userGroupUid": "cy0qXsDxzxe", - "displayName": "SS_NTD_LSH_VL_LabLog_View", - "id": "cy0qXsDxzxe" + access: "r-r-----", + userGroupUid: "cy0qXsDxzxe", + displayName: "SS_NTD_LSH_VL_LabLog_View", + id: "cy0qXsDxzxe", }, { - "access": "r-------", - "userGroupUid": "GHGv3VsHn1a", - "displayName": "SS_NTD_LSH_CL_LeishManTracker_View", - "id": "GHGv3VsHn1a" + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a", }, { - "access": "r-r-----", - "userGroupUid": "SttGU3eGd4O", - "displayName": "SS_NTD_LSH_CL_Tracker_View", - "id": "SttGU3eGd4O" + access: "r-r-----", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O", }, { - "access": "r-r-----", - "userGroupUid": "yBUSIP5IhrF", - "displayName": "NTD_LSH_HQ", - "id": "yBUSIP5IhrF" + access: "r-r-----", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", }, { - "access": "r-rw----", - "userGroupUid": "JcHpRoc6nyA", - "displayName": "SS_NTD_LSH_CL_Event_Entry", - "id": "JcHpRoc6nyA" + access: "r-rw----", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", }, { - "access": "r-rw----", - "userGroupUid": "urN5y60pAuu", - "displayName": "NTD_CH_HQ", - "id": "urN5y60pAuu" + access: "r-rw----", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", }, { - "access": "r-rw----", - "userGroupUid": "AKCiUSICdUT", - "displayName": "SS_NTD_LSH_VL_Event_Entry", - "id": "AKCiUSICdUT" + access: "r-rw----", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT", }, { - "access": "r-r-----", - "userGroupUid": "Ot2xz1vXELL", - "displayName": "SS_NTD_CH_Healthcare_Event_View", - "id": "Ot2xz1vXELL" + access: "r-r-----", + userGroupUid: "Ot2xz1vXELL", + displayName: "SS_NTD_CH_Healthcare_Event_View", + id: "Ot2xz1vXELL", }, { - "access": "r-r-----", - "userGroupUid": "DzvWl4E1DhF", - "displayName": "SS_NTD_CH_HealthSystem_Event_View", - "id": "DzvWl4E1DhF" + access: "r-r-----", + userGroupUid: "DzvWl4E1DhF", + displayName: "SS_NTD_CH_HealthSystem_Event_View", + id: "DzvWl4E1DhF", }, { - "access": "r-rw----", - "userGroupUid": "UxF4jhfIylS", - "displayName": "SS_NTD_LSH_CL_Tracker_Entry", - "id": "UxF4jhfIylS" + access: "r-rw----", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS", }, { - "access": "r-r-----", - "userGroupUid": "XqznB7ROzB3", - "displayName": "NTD_SKIN_HQ", - "id": "XqznB7ROzB3" + access: "r-r-----", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", }, { - "access": "r-r-----", - "userGroupUid": "cDb6nhH0rXS", - "displayName": "SS_NTD_LSH_VL_Tracker_View", - "id": "cDb6nhH0rXS" + access: "r-r-----", + userGroupUid: "cDb6nhH0rXS", + displayName: "SS_NTD_LSH_VL_Tracker_View", + id: "cDb6nhH0rXS", }, { - "access": "r-r-----", - "userGroupUid": "YJ4SW7rs30P", - "displayName": "SS_NTD_LSH_CPG", - "id": "YJ4SW7rs30P" + access: "r-r-----", + userGroupUid: "YJ4SW7rs30P", + displayName: "SS_NTD_LSH_CPG", + id: "YJ4SW7rs30P", }, { - "access": "r-r-----", - "userGroupUid": "ODVk6IF6Dso", - "displayName": "SS_NTD_SKIN_ACD_Event_View", - "id": "ODVk6IF6Dso" + access: "r-r-----", + userGroupUid: "ODVk6IF6Dso", + displayName: "SS_NTD_SKIN_ACD_Event_View", + id: "ODVk6IF6Dso", }, { - "access": "r-r-----", - "userGroupUid": "YWgdwKzbsnN", - "displayName": "SS_NTD_LSH_VL_Event_View", - "id": "YWgdwKzbsnN" + access: "r-r-----", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN", }, { - "access": "r-r-----", - "userGroupUid": "fC90V0CPRFC", - "displayName": "SS_NTD_SKIN_YAWS_Event_View", - "id": "fC90V0CPRFC" + access: "r-r-----", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC", }, { - "access": "r-rw----", - "userGroupUid": "ln8nJQmOSpJ", - "displayName": "SS_NTD_CH_Healthcare_Event_Entry", - "id": "ln8nJQmOSpJ" + access: "r-rw----", + userGroupUid: "ln8nJQmOSpJ", + displayName: "SS_NTD_CH_Healthcare_Event_Entry", + id: "ln8nJQmOSpJ", }, { - "access": "rwr-----", - "userGroupUid": "irooBniCRle", - "displayName": "NTD admin team", - "id": "irooBniCRle" + access: "rwr-----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", }, { - "access": "r-------", - "userGroupUid": "fDujq7N2i6v", - "displayName": "SS_NTD_LSH_CL_LeishManTracker_Entry", - "id": "fDujq7N2i6v" + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v", }, { - "access": "r-rw----", - "userGroupUid": "UnTaQrY57qi", - "displayName": "NTD_LSH_Monthly_Importer", - "id": "UnTaQrY57qi" + access: "r-rw----", + userGroupUid: "UnTaQrY57qi", + displayName: "NTD_LSH_Monthly_Importer", + id: "UnTaQrY57qi", }, { - "access": "rwrw----", - "userGroupUid": "r4gcKCyB5fF", - "displayName": "NTD_LSH_VL_PHC", - "id": "r4gcKCyB5fF" + access: "rwrw----", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF", }, { - "access": "r-------", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", }, { - "access": "r-rw----", - "userGroupUid": "TbGA9fMJpCR", - "displayName": "SS_NTD_LSH_VL_LabLog_Entry", - "id": "TbGA9fMJpCR" + access: "r-rw----", + userGroupUid: "TbGA9fMJpCR", + displayName: "SS_NTD_LSH_VL_LabLog_Entry", + id: "TbGA9fMJpCR", }, { - "access": "rwr-----", - "userGroupUid": "Un2GLxeuVZ2", - "displayName": "NTD_LSH_Admin", - "id": "Un2GLxeuVZ2" + access: "rwr-----", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", }, { - "access": "r-r-----", - "userGroupUid": "ZvxncLTan3w", - "displayName": "NTD_SKIN_Yaws_WHO", - "id": "ZvxncLTan3w" + access: "r-r-----", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", }, { - "access": "r-rw----", - "userGroupUid": "Qi5B1pnVvEH", - "displayName": "SS_NTD_CH_HealthSystem_Event_Entry", - "id": "Qi5B1pnVvEH" + access: "r-rw----", + userGroupUid: "Qi5B1pnVvEH", + displayName: "SS_NTD_CH_HealthSystem_Event_Entry", + id: "Qi5B1pnVvEH", }, { - "access": "r-rw----", - "userGroupUid": "mYtjuODefO4", - "displayName": "SS_NTD_LSH_VL_Tracker_Entry", - "id": "mYtjuODefO4" + access: "r-rw----", + userGroupUid: "mYtjuODefO4", + displayName: "SS_NTD_LSH_VL_Tracker_Entry", + id: "mYtjuODefO4", }, { - "access": "r-r-----", - "userGroupUid": "UQe9YTumaCV", - "displayName": "SS_NTD_SKIN_BU_Event_View", - "id": "UQe9YTumaCV" - } + access: "r-r-----", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, ], - "attributeValues": [], - "trackedEntityTypeAttributes": [], - "translations": [], - "userAccesses": [ - { - "access": "r-------", - "displayName": "NTD CHECK", - "id": "xgKMFzwPLs6", - "userUid": "xgKMFzwPLs6" - }, - { - "access": "r-rw----", - "displayName": "Duplicator Event", - "id": "UlXOWwGGx7W", - "userUid": "UlXOWwGGx7W" - } - ] - } + attributeValues: [], + trackedEntityTypeAttributes: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + { + access: "r-rw----", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + ], + }, ], - "categoryOptions": [ + categoryOptions: [ { - "code": "default", - "created": "2017-05-10T17:53:55.138", - "lastUpdated": "2018-07-27T16:09:07.425", - "name": "default", - "id": "Y7fcspgsU43", - "shortName": "default", - "publicAccess": "rwrw----", - "user": { - "id": "eK26I7dRbC4" - }, - "userGroupAccesses": [], - "attributeValues": [], - "translations": [], - "userAccesses": [], - "organisationUnits": [] - } + code: "default", + created: "2017-05-10T17:53:55.138", + lastUpdated: "2018-07-27T16:09:07.425", + name: "default", + id: "Y7fcspgsU43", + shortName: "default", + publicAccess: "rwrw----", + user: { + id: "eK26I7dRbC4", + }, + userGroupAccesses: [], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [], + }, ], - "dataElements": [ + dataElements: [ { - "lastUpdated": "2020-06-09T18:01:24.388", - "id": "euPtt2LWNis", - "created": "2019-08-21T11:20:31.515", - "name": "ADMIN_Analytics_Execution_1_Tracker", - "shortName": "ADMIN_Analytics_Execution_1_Tracker", - "aggregationType": "SUM", - "domainType": "TRACKER", - "publicAccess": "--------", - "valueType": "TRUE_ONLY", - "formName": "Analytics run at 0h", - "zeroIsSignificant": true, - "categoryCombo": { - "id": "JzvGfLYkX17" - }, - "lastUpdatedBy": { - "id": "kD52FGwJgDF" - }, - "user": { - "id": "H4atNsEuKxP" - }, - "translations": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "sCjEPgiOhP1", - "displayName": "WIDP admins", - "id": "sCjEPgiOhP1" - }, - { - "access": "rw------", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" - } + lastUpdated: "2020-06-09T18:01:24.388", + id: "euPtt2LWNis", + created: "2019-08-21T11:20:31.515", + name: "ADMIN_Analytics_Execution_1_Tracker", + shortName: "ADMIN_Analytics_Execution_1_Tracker", + aggregationType: "SUM", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Analytics run at 0h", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "H4atNsEuKxP", + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "sCjEPgiOhP1", + displayName: "WIDP admins", + id: "sCjEPgiOhP1", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, ], - "attributeValues": [], - "userAccesses": [], - "legendSets": [], - "aggregationLevels": [] + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], }, { - "lastUpdated": "2020-06-09T18:01:32.053", - "id": "X8XLOWOJsbR", - "created": "2019-08-21T11:22:01.691", - "name": "ADMIN_Analytics_Execution_2_Tracker", - "shortName": "ADMIN_Analytics_Execution_2_Tracker", - "aggregationType": "SUM", - "domainType": "TRACKER", - "publicAccess": "--------", - "valueType": "TRUE_ONLY", - "formName": "Analytics run at 12h", - "zeroIsSignificant": true, - "categoryCombo": { - "id": "JzvGfLYkX17" - }, - "lastUpdatedBy": { - "id": "kD52FGwJgDF" - }, - "user": { - "id": "H4atNsEuKxP" - }, - "translations": [], - "userGroupAccesses": [ - { - "access": "r-------", - "userGroupUid": "sCjEPgiOhP1", - "displayName": "WIDP admins", - "id": "sCjEPgiOhP1" - }, - { - "access": "rw------", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" - } + lastUpdated: "2020-06-09T18:01:32.053", + id: "X8XLOWOJsbR", + created: "2019-08-21T11:22:01.691", + name: "ADMIN_Analytics_Execution_2_Tracker", + shortName: "ADMIN_Analytics_Execution_2_Tracker", + aggregationType: "SUM", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Analytics run at 12h", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "H4atNsEuKxP", + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "sCjEPgiOhP1", + displayName: "WIDP admins", + id: "sCjEPgiOhP1", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, ], - "attributeValues": [], - "userAccesses": [], - "legendSets": [], - "aggregationLevels": [] - } + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, ], - "categories": [ + categories: [ { - "code": "default", - "created": "2017-05-10T17:53:55.152", - "lastUpdated": "2021-08-07T06:18:19.628", - "name": "default", - "id": "DMyxTSpvKOp", - "dataDimensionType": "DISAGGREGATION", - "publicAccess": "rw------", - "dataDimension": false, - "user": { - "id": "eK26I7dRbC4" - }, - "userGroupAccesses": [], - "attributeValues": [], - "translations": [], - "userAccesses": [], - "categoryOptions": [ - { - "id": "Y7fcspgsU43" - } - ] - } + code: "default", + created: "2017-05-10T17:53:55.152", + lastUpdated: "2021-08-07T06:18:19.628", + name: "default", + id: "DMyxTSpvKOp", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + dataDimension: false, + user: { + id: "eK26I7dRbC4", + }, + userGroupAccesses: [], + attributeValues: [], + translations: [], + userAccesses: [], + categoryOptions: [ + { + id: "Y7fcspgsU43", + }, + ], + }, ], - "programStageDataElements": [ + programStageDataElements: [ { - "created": "2019-08-21T11:24:20.216", - "lastUpdated": "2020-06-04T17:17:12.734", - "id": "tzA1MiQtotT", - "displayInReports": false, - "skipSynchronization": false, - "renderOptionsAsRadio": false, - "compulsory": false, - "allowProvidedElsewhere": false, - "sortOrder": 1, - "allowFutureDate": false, - "programStage": { - "id": "DQitAUlaicG" - }, - "dataElement": { - "id": "euPtt2LWNis" - } + created: "2019-08-21T11:24:20.216", + lastUpdated: "2020-06-04T17:17:12.734", + id: "tzA1MiQtotT", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 1, + allowFutureDate: false, + programStage: { + id: "DQitAUlaicG", + }, + dataElement: { + id: "euPtt2LWNis", + }, }, { - "created": "2019-08-21T11:24:20.216", - "lastUpdated": "2020-06-04T17:17:12.734", - "id": "RVMZjwFEH1y", - "displayInReports": false, - "skipSynchronization": false, - "renderOptionsAsRadio": false, - "compulsory": false, - "allowProvidedElsewhere": false, - "sortOrder": 2, - "allowFutureDate": false, - "programStage": { - "id": "DQitAUlaicG" - }, - "dataElement": { - "id": "X8XLOWOJsbR" - } - } + created: "2019-08-21T11:24:20.216", + lastUpdated: "2020-06-04T17:17:12.734", + id: "RVMZjwFEH1y", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 2, + allowFutureDate: false, + programStage: { + id: "DQitAUlaicG", + }, + dataElement: { + id: "X8XLOWOJsbR", + }, + }, ], - "programTrackedEntityAttributes": [ + programTrackedEntityAttributes: [ { - "created": "2019-09-11T12:37:56.247", - "lastUpdated": "2020-06-04T17:17:12.802", - "id": "OT1TfVwhsBO", - "mandatory": false, - "searchable": true, - "renderOptionsAsRadio": false, - "displayInList": true, - "sortOrder": 1, - "allowFutureDate": false, - "program": { - "id": "rjsnrRKjtwU" - }, - "trackedEntityAttribute": { - "id": "DwZNiXy5Daz" - }, - "programTrackedEntityAttributeGroups": [] - } + created: "2019-09-11T12:37:56.247", + lastUpdated: "2020-06-04T17:17:12.802", + id: "OT1TfVwhsBO", + mandatory: false, + searchable: true, + renderOptionsAsRadio: false, + displayInList: true, + sortOrder: 1, + allowFutureDate: false, + program: { + id: "rjsnrRKjtwU", + }, + trackedEntityAttribute: { + id: "DwZNiXy5Daz", + }, + programTrackedEntityAttributeGroups: [], + }, ], - "trackedEntityAttributes": [ + trackedEntityAttributes: [ { - "code": "ALL_At_FirstName", - "lastUpdated": "2021-05-26T19:30:52.289", - "id": "DwZNiXy5Daz", - "created": "2016-06-08T12:49:53.384", - "name": "First name", - "shortName": "First Name", - "aggregationType": "NONE", - "displayInListNoProgram": true, - "publicAccess": "r-------", - "pattern": "", - "description": "First name of patient", - "skipSynchronization": false, - "sortOrderInListNoProgram": 2, - "generated": false, - "displayOnVisitSchedule": false, - "valueType": "TEXT", - "orgunitScope": false, - "confidential": false, - "unique": false, - "inherit": false, - "lastUpdatedBy": { - "id": "kD52FGwJgDF" - }, - "user": { - "id": "ilJDyuqlwDC" - }, - "translations": [ - { - "property": "DESCRIPTION", - "locale": "pt", - "value": "Primeiro nome do Paciente" - } + code: "ALL_At_FirstName", + lastUpdated: "2021-05-26T19:30:52.289", + id: "DwZNiXy5Daz", + created: "2016-06-08T12:49:53.384", + name: "First name", + shortName: "First Name", + aggregationType: "NONE", + displayInListNoProgram: true, + publicAccess: "r-------", + pattern: "", + description: "First name of patient", + skipSynchronization: false, + sortOrderInListNoProgram: 2, + generated: false, + displayOnVisitSchedule: false, + valueType: "TEXT", + orgunitScope: false, + confidential: false, + unique: false, + inherit: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "DESCRIPTION", + locale: "pt", + value: "Primeiro nome do Paciente", + }, ], - "userGroupAccesses": [ + userGroupAccesses: [ { - "access": "rw------", - "userGroupUid": "UfhhwZK73Lg", - "displayName": "WIDP IT team", - "id": "UfhhwZK73Lg" - } + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, ], - "attributeValues": [], - "userAccesses": [], - "legendSets": [] - } - ] - } -] \ No newline at end of file + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + ], + }, +]; diff --git a/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx b/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx index a17b4b5..063b04e 100644 --- a/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/SummaryApplyStep.tsx @@ -11,6 +11,7 @@ export const SummaryApplyStep: React.FC = ({ bui const snackbar = useSnackbar(); const [importResult, setImportResult] = useState(); + const applySharingSync = useCallback(() => { compositionRoot.metadata .applySharingSettings(builder) From 13554f6423ecb704b49ec406b21383e44c713785 Mon Sep 17 00:00:00 2001 From: Jocelyn Dunkley Date: Thu, 23 Sep 2021 12:20:27 +0200 Subject: [PATCH 39/50] Created 10 tests for the dashboards and programs --- .../ApplySharingSettingsUseCase.spec.ts | 135 +++++++++++++++--- .../pages/bulk-apply/steps/AccessStep.tsx | 1 - 2 files changed, 119 insertions(+), 17 deletions(-) diff --git a/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts index b1e850d..72f4ca7 100644 --- a/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts +++ b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts @@ -1,3 +1,4 @@ +/* eslint-disable no-loop-func */ import { Future, FutureData } from "../../../entities/Future"; import { ImportResult } from "../../../entities/ImportResult"; import { MetadataPayload } from "../../../entities/MetadataItem"; @@ -5,37 +6,127 @@ import { ListMetadataResponse, ListOptions, MetadataRepository } from "../../../ import { mergePayloads } from "../../../../data/repositories/MetadataD2ApiRepository"; import { dashboardProgram1 } from "./dashboardProgram1"; import { ApplySharingSettingsUseCase } from "../ApplySharingSettingsUseCase"; +import { SharingSetting } from "../../../entities/SharedObject"; + import _ from "lodash"; +interface TestCase { + ids: string[]; + excludedIds: string[]; + strategy: string; + users: SharingSetting[]; + userGroups: SharingSetting[]; + publicAccess: string; +} describe("Apply sharing settings use case", () => { let metadataRepository: MetadataRepository; let usecase: ApplySharingSettingsUseCase; - const tests = [ + + const tests: TestCase[] = [ + { + ids: ["dashboard1", "dashboard2", "program1", "program2"], + excludedIds: ["dTenEaC7Qeu", "oMz2k4EvzR8"], + strategy: "merge", + users: [], + userGroups: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], + publicAccess: "rw------", + }, + { + ids: ["dashboard1", "dashboard2", "program1", "program2"], + excludedIds: ["dTenEaC7Qeu", "oMz2k4EvzR8"], + strategy: "merge", + users: [], + userGroups: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], + publicAccess: "--------", + }, + { + ids: ["dashboard1", "dashboard2", "program1", "program2"], + excludedIds: ["dTenEaC7Qeu", "oMz2k4EvzR8"], + strategy: "merge", + users: [{ id: "s5EVHUwoFKu", access: "rw------", name: "Alexis Rico" }], + userGroups: [], + publicAccess: "--------", + }, + { + ids: ["dashboard1", "dashboard2", "program1", "program2"], + excludedIds: [], + strategy: "merge", + users: [], + userGroups: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], + publicAccess: "rw------", + }, { ids: ["dashboard1", "dashboard2", "program1", "program2"], + excludedIds: [], strategy: "merge", users: [{ id: "s5EVHUwoFKu", access: "rw------", name: "Alexis Rico" }], userGroups: [], publicAccess: "--------", }, + { + ids: ["dashboard1", "dashboard2", "program1", "program2"], + excludedIds: ["dTenEaC7Qeu", "oMz2k4EvzR8"], + strategy: "replace", + users: [], + userGroups: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], + publicAccess: "rw------", + }, + { + ids: ["dashboard1", "dashboard2", "program1", "program2"], + excludedIds: ["dTenEaC7Qeu", "oMz2k4EvzR8"], + strategy: "replace", + users: [], + userGroups: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], + publicAccess: "--------", + }, + { + ids: ["dashboard1", "dashboard2", "program1", "program2"], + excludedIds: ["dTenEaC7Qeu", "oMz2k4EvzR8"], + strategy: "replace", + users: [{ id: "s5EVHUwoFKu", access: "rw------", name: "Alexis Rico" }], + userGroups: [], + publicAccess: "--------", + }, + { + ids: ["dashboard1", "dashboard2", "program1", "program2"], + excludedIds: [], + strategy: "replace", + users: [], + userGroups: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], + publicAccess: "rw------", + }, + { + ids: ["dashboard1", "dashboard2", "program1", "program2"], + excludedIds: [], + strategy: "replace", + users: [{ id: "s5EVHUwoFKu", access: "rw------", name: "Alexis Rico" }], + userGroups: [], + publicAccess: "--------", + }, ]; beforeEach(() => { metadataRepository = new MockMetadataRepository(); usecase = new ApplySharingSettingsUseCase(metadataRepository); }); - for (const test in tests) { - // TODO: Add more tests until we have a complete set of use cases - it("dashboards and programs with users and no public access", async () => { + for (const test of tests) { + // TODO: Add more tests until we have a complete set of use casestest.users.length !== 0 && "users," + it(`should apply sharing setting with ${ + test.excludedIds.length !== 0 ? "excluding elements" : "no excluding elements" + }, ${test.publicAccess === "--------" ? "no public access" : "public access"}, ${ + test.users.length === 0 ? "no users" : "users" + }, ${test.userGroups.length === 0 ? "no userGroups" : "userGroups"}, and ${ + test.strategy + } strategy to dashboards and programs`, async () => { usecase .execute({ - baseElements: ["dashboard1", "dashboard2", "program1", "program2"], - excludedDependencies: [], + baseElements: test.ids, + excludedDependencies: test.excludedIds, sharings: { - publicAccess: "--------", //test.publicAccess - userAccesses: [{ id: "s5EVHUwoFKu", access: "rw------", name: "Alexis Rico" }], - userGroupAccesses: [], + publicAccess: test.publicAccess, + userAccesses: test.users, + userGroupAccesses: test.userGroups, }, - replaceExistingSharings: false, + replaceExistingSharings: test.strategy === "merge" ? false : true, }) .run( results => { @@ -43,12 +134,24 @@ describe("Apply sharing settings use case", () => { const resultsValue = _.values(results); const allMdTypesTogether = [..._.flatten(resultsValue)]; allMdTypesTogether.forEach(arr => { - expect(arr.publicAccess).toBe("--------"); - expect(arr.userAccesses).toContainEqual({ - id: "s5EVHUwoFKu", - access: "rw------", - name: "Alexis Rico", - }); + if (!test.excludedIds.includes(arr.id)) { + expect(arr.publicAccess).toBe(test.publicAccess); + if (test.strategy === "replace") { + expect(arr.userAccesses).toHaveLength(test.users.length); + test.users.forEach(user => expect(arr.userAccesses).toContainEqual(user)); + expect(arr.userGroupAccesses).toHaveLength(test.userGroups.length); + test.userGroups.forEach(userGroup => + expect(arr.userGroupAccesses).toContainEqual(userGroup) + ); + } else { + test.users.length !== 0 && + test.users.forEach(user => expect(arr.userAccesses).toContainEqual(user)); + test.userGroups.length !== 0 && + test.userGroups.forEach(userGroup => + expect(arr.userGroupAccesses).toContainEqual(userGroup) + ); + } + } }); }, error => console.log(error) diff --git a/src/webapp/pages/bulk-apply/steps/AccessStep.tsx b/src/webapp/pages/bulk-apply/steps/AccessStep.tsx index 406e8c8..62c92f1 100644 --- a/src/webapp/pages/bulk-apply/steps/AccessStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/AccessStep.tsx @@ -8,7 +8,6 @@ import { MetadataSharingWizardStepProps } from "../SharingWizardSteps"; export const AccessStep: React.FC = ({ builder, updateBuilder }) => { const { compositionRoot } = useAppContext(); - const strategyName = builder.replaceExistingSharings ? i18n.t("Replace") : i18n.t("Merge"); const label = `${i18n.t("Update strategy")}: ${strategyName}`; From f618a83432cd5db979344bd16391b323c7537b1d Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Thu, 23 Sep 2021 13:46:10 +0200 Subject: [PATCH 40/50] Update test case --- .eslintrc.js | 1 + ...> ApplySharingSettingsUseCase.metadata.ts} | 119 +++++++++- .../ApplySharingSettingsUseCase.spec.ts | 221 ++++++------------ 3 files changed, 176 insertions(+), 165 deletions(-) rename src/domain/usecases/metadata/__tests__/{dashboardProgram1.ts => ApplySharingSettingsUseCase.metadata.ts} (99%) diff --git a/.eslintrc.js b/.eslintrc.js index 40478c0..3fc3ef7 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -22,6 +22,7 @@ module.exports = { "no-useless-concat": "off", "no-useless-constructor": "off", "no-unexpected-multiline": "off", + "no-loop-func": "off", "default-case": "off", "@typescript-eslint/no-use-before-define": "off", "@typescript-eslint/no-explicit-any": "off", diff --git a/src/domain/usecases/metadata/__tests__/dashboardProgram1.ts b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.metadata.ts similarity index 99% rename from src/domain/usecases/metadata/__tests__/dashboardProgram1.ts rename to src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.metadata.ts index 5908db3..e2bca32 100644 --- a/src/domain/usecases/metadata/__tests__/dashboardProgram1.ts +++ b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.metadata.ts @@ -1,6 +1,7 @@ -export const dashboardProgram1 = [ - { - date: "2021-09-21T08:57:04.104", +import { SharingUpdate } from "../../../entities/SharingUpdate"; + +export const metadata: Record> = { + dashboard1: { dashboards: [ { created: "2019-08-07T10:21:04.280", @@ -2880,8 +2881,7 @@ export const dashboardProgram1 = [ }, ], }, - { - date: "2021-09-21T08:57:04.096", + dashboard2: { dashboards: [ { created: "2018-01-22T19:17:39.908", @@ -4806,8 +4806,7 @@ export const dashboardProgram1 = [ }, ], }, - { - date: "2021-09-21T08:57:04.095", + program1: { categoryCombos: [ { code: "default", @@ -5205,8 +5204,7 @@ export const dashboardProgram1 = [ }, ], }, - { - date: "2021-09-21T08:57:05.105", + program2: { categoryCombos: [ { code: "default", @@ -5963,4 +5961,107 @@ export const dashboardProgram1 = [ }, ], }, +}; + +export const tests: SharingUpdate[] = [ + { + baseElements: ["dashboard1", "dashboard2", "program1", "program2"], + excludedDependencies: ["dTenEaC7Qeu", "oMz2k4EvzR8"], + replaceExistingSharings: false, + sharings: { + userAccesses: [], + userGroupAccesses: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], + publicAccess: "rw------", + }, + }, + { + baseElements: ["dashboard1", "dashboard2", "program1", "program2"], + excludedDependencies: ["dTenEaC7Qeu", "oMz2k4EvzR8"], + replaceExistingSharings: false, + sharings: { + userAccesses: [], + userGroupAccesses: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], + publicAccess: "--------", + }, + }, + { + baseElements: ["dashboard1", "dashboard2", "program1", "program2"], + excludedDependencies: ["dTenEaC7Qeu", "oMz2k4EvzR8"], + replaceExistingSharings: false, + sharings: { + userAccesses: [{ id: "s5EVHUwoFKu", access: "rw------", name: "Alexis Rico" }], + userGroupAccesses: [], + publicAccess: "--------", + }, + }, + { + baseElements: ["dashboard1", "dashboard2", "program1", "program2"], + excludedDependencies: [], + replaceExistingSharings: false, + sharings: { + userAccesses: [], + userGroupAccesses: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], + publicAccess: "rw------", + }, + }, + { + baseElements: ["dashboard1", "dashboard2", "program1", "program2"], + excludedDependencies: [], + replaceExistingSharings: false, + sharings: { + userAccesses: [{ id: "s5EVHUwoFKu", access: "rw------", name: "Alexis Rico" }], + userGroupAccesses: [], + publicAccess: "--------", + }, + }, + { + baseElements: ["dashboard1", "dashboard2", "program1", "program2"], + excludedDependencies: ["dTenEaC7Qeu", "oMz2k4EvzR8"], + replaceExistingSharings: true, + sharings: { + userAccesses: [], + userGroupAccesses: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], + publicAccess: "rw------", + }, + }, + { + baseElements: ["dashboard1", "dashboard2", "program1", "program2"], + excludedDependencies: ["dTenEaC7Qeu", "oMz2k4EvzR8"], + replaceExistingSharings: true, + sharings: { + userAccesses: [], + userGroupAccesses: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], + publicAccess: "--------", + }, + }, + { + baseElements: ["dashboard1", "dashboard2", "program1", "program2"], + excludedDependencies: ["dTenEaC7Qeu", "oMz2k4EvzR8"], + replaceExistingSharings: true, + sharings: { + userAccesses: [{ id: "s5EVHUwoFKu", access: "rw------", name: "Alexis Rico" }], + userGroupAccesses: [], + publicAccess: "--------", + }, + }, + { + baseElements: ["dashboard1", "dashboard2", "program1", "program2"], + excludedDependencies: [], + replaceExistingSharings: true, + sharings: { + userAccesses: [], + userGroupAccesses: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], + publicAccess: "rw------", + }, + }, + { + baseElements: ["dashboard1", "dashboard2", "program1", "program2"], + excludedDependencies: [], + replaceExistingSharings: true, + sharings: { + userAccesses: [{ id: "s5EVHUwoFKu", access: "rw------", name: "Alexis Rico" }], + userGroupAccesses: [], + publicAccess: "--------", + }, + }, ]; diff --git a/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts index 72f4ca7..d61b852 100644 --- a/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts +++ b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts @@ -1,177 +1,85 @@ -/* eslint-disable no-loop-func */ +import _ from "lodash"; +import { mergePayloads } from "../../../../data/repositories/MetadataD2ApiRepository"; import { Future, FutureData } from "../../../entities/Future"; import { ImportResult } from "../../../entities/ImportResult"; import { MetadataPayload } from "../../../entities/MetadataItem"; +import { SharingUpdate } from "../../../entities/SharingUpdate"; import { ListMetadataResponse, ListOptions, MetadataRepository } from "../../../repositories/MetadataRepository"; -import { mergePayloads } from "../../../../data/repositories/MetadataD2ApiRepository"; -import { dashboardProgram1 } from "./dashboardProgram1"; import { ApplySharingSettingsUseCase } from "../ApplySharingSettingsUseCase"; -import { SharingSetting } from "../../../entities/SharedObject"; - -import _ from "lodash"; +import { metadata, tests } from "./ApplySharingSettingsUseCase.metadata"; -interface TestCase { - ids: string[]; - excludedIds: string[]; - strategy: string; - users: SharingSetting[]; - userGroups: SharingSetting[]; - publicAccess: string; -} describe("Apply sharing settings use case", () => { let metadataRepository: MetadataRepository; let usecase: ApplySharingSettingsUseCase; - const tests: TestCase[] = [ - { - ids: ["dashboard1", "dashboard2", "program1", "program2"], - excludedIds: ["dTenEaC7Qeu", "oMz2k4EvzR8"], - strategy: "merge", - users: [], - userGroups: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], - publicAccess: "rw------", - }, - { - ids: ["dashboard1", "dashboard2", "program1", "program2"], - excludedIds: ["dTenEaC7Qeu", "oMz2k4EvzR8"], - strategy: "merge", - users: [], - userGroups: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], - publicAccess: "--------", - }, - { - ids: ["dashboard1", "dashboard2", "program1", "program2"], - excludedIds: ["dTenEaC7Qeu", "oMz2k4EvzR8"], - strategy: "merge", - users: [{ id: "s5EVHUwoFKu", access: "rw------", name: "Alexis Rico" }], - userGroups: [], - publicAccess: "--------", - }, - { - ids: ["dashboard1", "dashboard2", "program1", "program2"], - excludedIds: [], - strategy: "merge", - users: [], - userGroups: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], - publicAccess: "rw------", - }, - { - ids: ["dashboard1", "dashboard2", "program1", "program2"], - excludedIds: [], - strategy: "merge", - users: [{ id: "s5EVHUwoFKu", access: "rw------", name: "Alexis Rico" }], - userGroups: [], - publicAccess: "--------", - }, - { - ids: ["dashboard1", "dashboard2", "program1", "program2"], - excludedIds: ["dTenEaC7Qeu", "oMz2k4EvzR8"], - strategy: "replace", - users: [], - userGroups: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], - publicAccess: "rw------", - }, - { - ids: ["dashboard1", "dashboard2", "program1", "program2"], - excludedIds: ["dTenEaC7Qeu", "oMz2k4EvzR8"], - strategy: "replace", - users: [], - userGroups: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], - publicAccess: "--------", - }, - { - ids: ["dashboard1", "dashboard2", "program1", "program2"], - excludedIds: ["dTenEaC7Qeu", "oMz2k4EvzR8"], - strategy: "replace", - users: [{ id: "s5EVHUwoFKu", access: "rw------", name: "Alexis Rico" }], - userGroups: [], - publicAccess: "--------", - }, - { - ids: ["dashboard1", "dashboard2", "program1", "program2"], - excludedIds: [], - strategy: "replace", - users: [], - userGroups: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], - publicAccess: "rw------", - }, - { - ids: ["dashboard1", "dashboard2", "program1", "program2"], - excludedIds: [], - strategy: "replace", - users: [{ id: "s5EVHUwoFKu", access: "rw------", name: "Alexis Rico" }], - userGroups: [], - publicAccess: "--------", - }, - ]; - beforeEach(() => { + beforeAll(() => { metadataRepository = new MockMetadataRepository(); usecase = new ApplySharingSettingsUseCase(metadataRepository); }); - for (const test of tests) { - // TODO: Add more tests until we have a complete set of use casestest.users.length !== 0 && "users," - it(`should apply sharing setting with ${ - test.excludedIds.length !== 0 ? "excluding elements" : "no excluding elements" - }, ${test.publicAccess === "--------" ? "no public access" : "public access"}, ${ - test.users.length === 0 ? "no users" : "users" - }, ${test.userGroups.length === 0 ? "no userGroups" : "userGroups"}, and ${ - test.strategy - } strategy to dashboards and programs`, async () => { - usecase - .execute({ - baseElements: test.ids, - excludedDependencies: test.excludedIds, - sharings: { - publicAccess: test.publicAccess, - userAccesses: test.users, - userGroupAccesses: test.userGroups, - }, - replaceExistingSharings: test.strategy === "merge" ? false : true, - }) - .run( - results => { - // TODO: Validate results, check that sharing settings have been applied - const resultsValue = _.values(results); - const allMdTypesTogether = [..._.flatten(resultsValue)]; - allMdTypesTogether.forEach(arr => { - if (!test.excludedIds.includes(arr.id)) { - expect(arr.publicAccess).toBe(test.publicAccess); - if (test.strategy === "replace") { - expect(arr.userAccesses).toHaveLength(test.users.length); - test.users.forEach(user => expect(arr.userAccesses).toContainEqual(user)); - expect(arr.userGroupAccesses).toHaveLength(test.userGroups.length); - test.userGroups.forEach(userGroup => - expect(arr.userGroupAccesses).toContainEqual(userGroup) - ); - } else { - test.users.length !== 0 && - test.users.forEach(user => expect(arr.userAccesses).toContainEqual(user)); - test.userGroups.length !== 0 && - test.userGroups.forEach(userGroup => - expect(arr.userGroupAccesses).toContainEqual(userGroup) - ); - } - } - }); - }, - error => console.log(error) - ); + + for (const update of tests) { + it(buildTitle(update), async () => { + const { baseElements, excludedDependencies, sharings, replaceExistingSharings } = update; + + const { data: result, error } = await usecase.execute(update).runAsync(); + expect(error).toBeUndefined(); + + const items = _(result).values().flatten().value(); + const itemIds = items.map(item => item.id); + + const metadata = await metadataRepository.getDependencies(baseElements).toPromise(); + const metadataItems = _(metadata).values().flatten().value(); + + // Check excluded dependencies are not in the payload + expect(_.intersection(itemIds, excludedDependencies)).toEqual([]); + + // Check public access has been updated + expect(_.every(items, ({ publicAccess }) => publicAccess === sharings.publicAccess)).toBe(true); + + if (replaceExistingSharings) { + // If strategy is replace, check that the sharings are replaced + for (const item of items) { + expect(item.userAccesses).toEqual(sharings.userAccesses); + expect(item.userGroupAccesses).toEqual(sharings.userGroupAccesses); + } + } else { + // If strategy is merge, check that the sharings are merged + for (const item of items) { + const { userAccesses = [], userGroupAccesses = [] } = + metadataItems.find(({ id }) => id === item.id) ?? {}; + + expect(item.userAccesses).toEqual( + _.uniqBy([...sharings.userAccesses, ...userAccesses], ({ id }) => id) + ); + + expect(item.userGroupAccesses).toEqual( + _.uniqBy([...sharings.userGroupAccesses, ...userGroupAccesses], ({ id }) => id) + ); + } + } }); } }); +function buildTitle(update: SharingUpdate): string { + const { excludedDependencies, sharings, replaceExistingSharings } = update; + const { publicAccess, userAccesses, userGroupAccesses } = sharings; + + const message = [ + excludedDependencies.length !== 0 ? "excluding elements" : "no excluding elements", + publicAccess === "--------" ? "no public access" : "public access", + userAccesses.length === 0 ? "no users" : "users", + userGroupAccesses.length === 0 ? "no userGroups" : "userGroups", + `${replaceExistingSharings ? "replace" : "merge"} strategy`, + ].join(", "); + + return `Should apply sharing setting with ${message}`; +} + class MockMetadataRepository implements MetadataRepository { getDependencies(_ids: string[]): FutureData { - // TODO: Include a medium-sized complex payload - const dictionary: Record = { - dashboard1: dashboardProgram1[0], - dashboard2: dashboardProgram1[1], - program1: dashboardProgram1[2], - program2: dashboardProgram1[3], - }; - - const ff = mergePayloads(_ids.map(id => dictionary[id])); - return Future.success(ff); + const payloads = mergePayloads(_ids.map(id => metadata[id] ?? {})); + return Future.success(payloads); } list(_options: ListOptions): FutureData { @@ -197,4 +105,5 @@ class MockMetadataRepository implements MetadataRepository { } } -export {}; +export { }; + From bfb53fcdfaf18c57e0297a290d412e92f07aae21 Mon Sep 17 00:00:00 2001 From: Jocelyn Dunkley Date: Mon, 27 Sep 2021 10:01:32 +0200 Subject: [PATCH 41/50] add permutations to test for all possibilities --- package.json | 1 + .../ApplySharingSettingsUseCase.metadata.ts | 126 ++++-------------- .../ApplySharingSettingsUseCase.spec.ts | 5 +- .../bulk-apply/steps/ListDependenciesStep.tsx | 1 - yarn.lock | 5 + 5 files changed, 32 insertions(+), 106 deletions(-) diff --git a/package.json b/package.json index 5bc631f..8b4f879 100644 --- a/package.json +++ b/package.json @@ -28,6 +28,7 @@ "fluture": "14.0.0", "font-awesome": "4.7.0", "lodash": "4.17.21", + "lodash.product": "^18.9.19", "postcss-rtl": "1.7.3", "purify-ts": "1.0.0", "purify-ts-extra-codec": "0.6.0", diff --git a/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.metadata.ts b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.metadata.ts index e2bca32..b076a28 100644 --- a/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.metadata.ts +++ b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.metadata.ts @@ -1,3 +1,5 @@ +import "lodash.product"; +import _ from "lodash"; import { SharingUpdate } from "../../../entities/SharingUpdate"; export const metadata: Record> = { @@ -5963,105 +5965,27 @@ export const metadata: Record> = { }, }; -export const tests: SharingUpdate[] = [ - { - baseElements: ["dashboard1", "dashboard2", "program1", "program2"], - excludedDependencies: ["dTenEaC7Qeu", "oMz2k4EvzR8"], - replaceExistingSharings: false, - sharings: { - userAccesses: [], - userGroupAccesses: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], - publicAccess: "rw------", - }, - }, - { - baseElements: ["dashboard1", "dashboard2", "program1", "program2"], - excludedDependencies: ["dTenEaC7Qeu", "oMz2k4EvzR8"], - replaceExistingSharings: false, - sharings: { - userAccesses: [], - userGroupAccesses: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], - publicAccess: "--------", - }, - }, - { - baseElements: ["dashboard1", "dashboard2", "program1", "program2"], - excludedDependencies: ["dTenEaC7Qeu", "oMz2k4EvzR8"], - replaceExistingSharings: false, - sharings: { - userAccesses: [{ id: "s5EVHUwoFKu", access: "rw------", name: "Alexis Rico" }], - userGroupAccesses: [], - publicAccess: "--------", - }, - }, - { - baseElements: ["dashboard1", "dashboard2", "program1", "program2"], - excludedDependencies: [], - replaceExistingSharings: false, - sharings: { - userAccesses: [], - userGroupAccesses: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], - publicAccess: "rw------", - }, - }, - { - baseElements: ["dashboard1", "dashboard2", "program1", "program2"], - excludedDependencies: [], - replaceExistingSharings: false, - sharings: { - userAccesses: [{ id: "s5EVHUwoFKu", access: "rw------", name: "Alexis Rico" }], - userGroupAccesses: [], - publicAccess: "--------", - }, - }, - { - baseElements: ["dashboard1", "dashboard2", "program1", "program2"], - excludedDependencies: ["dTenEaC7Qeu", "oMz2k4EvzR8"], - replaceExistingSharings: true, - sharings: { - userAccesses: [], - userGroupAccesses: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], - publicAccess: "rw------", - }, - }, - { - baseElements: ["dashboard1", "dashboard2", "program1", "program2"], - excludedDependencies: ["dTenEaC7Qeu", "oMz2k4EvzR8"], - replaceExistingSharings: true, - sharings: { - userAccesses: [], - userGroupAccesses: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], - publicAccess: "--------", - }, - }, - { - baseElements: ["dashboard1", "dashboard2", "program1", "program2"], - excludedDependencies: ["dTenEaC7Qeu", "oMz2k4EvzR8"], - replaceExistingSharings: true, - sharings: { - userAccesses: [{ id: "s5EVHUwoFKu", access: "rw------", name: "Alexis Rico" }], - userGroupAccesses: [], - publicAccess: "--------", - }, - }, - { - baseElements: ["dashboard1", "dashboard2", "program1", "program2"], - excludedDependencies: [], - replaceExistingSharings: true, - sharings: { - userAccesses: [], - userGroupAccesses: [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }], - publicAccess: "rw------", - }, - }, - { - baseElements: ["dashboard1", "dashboard2", "program1", "program2"], - excludedDependencies: [], - replaceExistingSharings: true, - sharings: { - userAccesses: [{ id: "s5EVHUwoFKu", access: "rw------", name: "Alexis Rico" }], - userGroupAccesses: [], - publicAccess: "--------", - }, +//legend: MDtype, exclude/noexclude, replace/merge, user/nouser, usergroup/nousergroup, public/nopublic +const product = _.product( + _.product(["program1", "dashboard1"], ["program2", "dashboard2"]), + ["exclude", "noexclude"], + [true, false], + ["user", "nouser"], + ["usergroup", "nousergroup"], + ["public", "nopublic"] +); + +const user = [{ id: "s5EVHUwoFKu", access: "rw------", name: "Alexis Rico" }]; +const userGroup = [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }]; +const excluded = ["dTenEaC7Qeu", "oMz2k4EvzR8"]; + +export const tests: SharingUpdate[] = product.map((item: string[]) => ({ + baseElements: item[0], + excludedDependencies: item[1] === "exclude" ? excluded : [], + replaceExistingSharings: item[2], + sharings: { + userAccesses: item[3] === "user" ? user : [], + userGroupAccesses: item[4] === "usergroup" ? userGroup : [], + publicAccess: item[5] === "public" ? "rw------" : "--------", }, -]; +})); diff --git a/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts index d61b852..110f0c9 100644 --- a/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts +++ b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts @@ -20,10 +20,8 @@ describe("Apply sharing settings use case", () => { for (const update of tests) { it(buildTitle(update), async () => { const { baseElements, excludedDependencies, sharings, replaceExistingSharings } = update; - const { data: result, error } = await usecase.execute(update).runAsync(); expect(error).toBeUndefined(); - const items = _(result).values().flatten().value(); const itemIds = items.map(item => item.id); @@ -105,5 +103,4 @@ class MockMetadataRepository implements MetadataRepository { } } -export { }; - +export {}; diff --git a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx index 9dd79bb..5790fa0 100644 --- a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx @@ -95,7 +95,6 @@ export const ListDependenciesStep: React.FC = ({ .values() .flatten() .value(); - setRows(rows); setIsLoading(false); }, diff --git a/yarn.lock b/yarn.lock index 933add8..694c806 100644 --- a/yarn.lock +++ b/yarn.lock @@ -12568,6 +12568,11 @@ lodash.once@^4.1.1: resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" integrity sha1-DdOXEhPHxW34gJd9UEyI+0cal6w= +lodash.product@^18.9.19: + version "18.9.19" + resolved "https://registry.yarnpkg.com/lodash.product/-/lodash.product-18.9.19.tgz#c1f49a4b447869290a8799c29295703fda294835" + integrity sha512-yPX6KO0jveBR/DjSngqvUEynWTb4oJwB8g5WseShPzX0CO8pjX1gxlR5Fo7V3E81uPDc9mEuNVw3Ah6df9uy0g== + lodash.sortby@^4.7.0: version "4.7.0" resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" From 05958d0757e5046c80bf0b2c553444b9d58c44cf Mon Sep 17 00:00:00 2001 From: Jocelyn Dunkley Date: Wed, 29 Sep 2021 08:13:04 +0200 Subject: [PATCH 42/50] added more examples so that there are 3 of each type --- .../ApplySharingSettingsUseCase.metadata.ts | 52121 +++++++++++++++- .../pages/bulk-apply/steps/AccessStep.tsx | 1 + .../bulk-apply/steps/ListDependenciesStep.tsx | 3 +- 3 files changed, 52123 insertions(+), 2 deletions(-) diff --git a/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.metadata.ts b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.metadata.ts index b076a28..d26b9ef 100644 --- a/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.metadata.ts +++ b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.metadata.ts @@ -4808,6 +4808,3690 @@ export const metadata: Record> = { }, ], }, + dashboard3: { + dashboards: [ + { + created: "2017-05-31T21:15:05.427", + lastUpdated: "2021-06-09T15:16:44.954", + name: "01-Malaria Burden Reduction", + id: "sLldHZZgnFx", + publicAccess: "--------", + externalAccess: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "YdBcEIZpRHo" + }, + favorites: [ + "YdBcEIZpRHo", + "HUh7ns5NBfm", + "t6Xqbz61KaN", + "s9MM39gyJ7A", + "j7tkmEYS6mr" + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR" + }, + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea" + } + ], + dashboardItems: [ + { + lastUpdated: "2020-04-14T18:23:01.630", + id: "bndKqtV1ZGl", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 80, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "bIwPfcT9JVN" + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [] + }, + { + lastUpdated: "2020-04-14T18:23:01.630", + id: "LLJURREsNnj", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 29, + y: 40, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "SKJkOTlS8vN" + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [] + }, + { + lastUpdated: "2020-04-14T18:23:01.630", + id: "imp9cY9m5EA", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 29, + y: 0, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "QqZNdTABzsZ" + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [] + }, + { + lastUpdated: "2020-04-14T18:23:01.631", + id: "COP5m9xs6iY", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 40, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "tq6l6xuECZo" + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [] + }, + { + lastUpdated: "2020-04-14T18:23:01.631", + id: "GBuwmMa1iGE", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 29, + y: 20, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "mmdI4h7KdLL" + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [] + }, + { + lastUpdated: "2020-04-14T18:23:01.631", + id: "Jx1yxCt3wvY", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 20, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "pnEMZYfUAZt" + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [] + }, + { + lastUpdated: "2020-04-14T18:23:01.631", + id: "NGkPe7Z2xco", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 60, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "XG7LBCz7nQn" + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [] + }, + { + lastUpdated: "2020-04-14T18:23:01.631", + id: "eEluY5AA8eb", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 29, + y: 60, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "eqbjzgCFSFs" + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [] + }, + { + lastUpdated: "2020-04-14T18:23:01.631", + id: "iFoBSxTa8n3", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 0, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "wSudey0Yc2R" + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [] + }, + { + lastUpdated: "2020-04-14T18:23:01.631", + id: "VMJj8auur7X", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 29, + y: 80, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "qo7xD7OTGcF" + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [] + }, + { + lastUpdated: "2020-04-14T18:23:01.631", + id: "pVa6oAu2DFk", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 100, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "Cyy6FR0wEGe" + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [] + }, + { + lastUpdated: "2020-04-14T18:23:01.632", + id: "ukizcelacKo", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 29, + y: 100, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "GmqjzU8Crmi" + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [] + }, + { + lastUpdated: "2020-04-14T18:23:01.632", + id: "g3Iv72l0jO5", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 120, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "uZ03Z5GgJJ0" + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [] + }, + { + lastUpdated: "2020-04-14T18:23:01.632", + id: "CnpABmw7iMA", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 29, + y: 120, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "wleqcZVkF9U" + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [] + }, + { + lastUpdated: "2020-04-14T18:23:01.632", + id: "jpEIVXB1NNd", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 140, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "T4eg1e5rjXE" + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [] + } + ], + translations: [], + userAccesses: [] + } + ], + visualizations: [ + { + lastUpdated: "2020-06-02T08:10:05.739", + id: "XG7LBCz7nQn", + created: "2019-04-06T11:39:51.176", + name: "MAL - Conf cases & ABER", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: false, + type: "LINE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "ALL", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + title: "% Suspected Tested, Confirmed cases and ABER", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false + }, + user: { + id: "kD52FGwJgDF" + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: [ + "ou" + ], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea" + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H" + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR" + } + ], + subscribers: [], + columnDimensions: [ + "dx" + ], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "rPYLomUceL4" + } + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "SqFthnK8FJY" + } + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "VxAkjvBMvfp" + } + } + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "2000" + }, + { + id: "2001" + }, + { + id: "2002" + }, + { + id: "2003" + }, + { + id: "2004" + }, + { + id: "2005" + }, + { + id: "2006" + }, + { + id: "2007" + }, + { + id: "2008" + }, + { + id: "2009" + }, + { + id: "2010" + }, + { + id: "2011" + }, + { + id: "2012" + }, + { + id: "2013" + }, + { + id: "2014" + }, + { + id: "2015" + }, + { + id: "2016" + }, + { + id: "2017" + }, + { + id: "2018" + } + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: [ + "pe" + ] + }, + { + lastUpdated: "2020-06-02T08:10:05.746", + id: "mmdI4h7KdLL", + created: "2019-04-06T11:46:36.293", + name: "MAL - IPD", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: false, + type: "LINE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "ALL", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + title: "Malaria and non-malaria IPD", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false + }, + user: { + id: "kD52FGwJgDF" + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: [ + "ou" + ], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea" + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H" + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR" + } + ], + subscribers: [], + columnDimensions: [ + "dx" + ], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "BhoZ0XenErj" + } + } + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "1997" + }, + { + id: "1998" + }, + { + id: "1999" + }, + { + id: "2000" + }, + { + id: "2001" + }, + { + id: "2002" + }, + { + id: "2003" + }, + { + id: "2004" + }, + { + id: "2005" + }, + { + id: "2006" + }, + { + id: "2007" + }, + { + id: "2008" + }, + { + id: "2009" + }, + { + id: "2010" + }, + { + id: "2011" + }, + { + id: "2012" + }, + { + id: "2013" + }, + { + id: "2014" + }, + { + id: "2015" + }, + { + id: "2016" + }, + { + id: "2017" + }, + { + id: "2018" + } + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: [ + "pe" + ] + }, + { + lastUpdated: "2020-06-02T08:10:06.960", + id: "wleqcZVkF9U", + created: "2019-05-31T21:43:28.273", + name: "MAL - Positivity", + showData: false, + numberType: "VALUE", + publicAccess: "--------", + userOrganisationUnitChildren: false, + legendDisplayStyle: "FILL", + type: "PIVOT_TABLE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: true, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + legendDisplayStrategy: "FIXED", + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false + }, + user: { + id: "kD52FGwJgDF" + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: [ + "ou" + ], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea" + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H" + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR" + } + ], + subscribers: [], + columnDimensions: [ + "dx" + ], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "oAJpTsMsRxv" + } + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "QHcjn7FHI2w" + } + } + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "2000" + }, + { + id: "2001" + }, + { + id: "2002" + }, + { + id: "2003" + }, + { + id: "2004" + }, + { + id: "2005" + }, + { + id: "2006" + }, + { + id: "2007" + }, + { + id: "2008" + }, + { + id: "2009" + }, + { + id: "2010" + }, + { + id: "2011" + }, + { + id: "2012" + }, + { + id: "2013" + }, + { + id: "2014" + }, + { + id: "2015" + }, + { + id: "2016" + }, + { + id: "2017" + }, + { + id: "2018" + } + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: [ + "pe" + ] + }, + { + lastUpdated: "2020-06-02T08:10:06.948", + id: "T4eg1e5rjXE", + created: "2019-05-31T21:43:50.053", + name: "MAL - Conf cases & ABER", + showData: false, + numberType: "VALUE", + publicAccess: "--------", + userOrganisationUnitChildren: false, + legendDisplayStyle: "FILL", + type: "PIVOT_TABLE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: true, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + legendDisplayStrategy: "FIXED", + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false + }, + user: { + id: "kD52FGwJgDF" + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: [ + "ou" + ], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea" + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H" + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR" + } + ], + subscribers: [], + columnDimensions: [ + "dx" + ], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "rPYLomUceL4" + } + }, + { + dataDimensionItemType: "DATA_ELEMENT", + dataElement: { + id: "jme79pGjTuu" + } + } + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "2000" + }, + { + id: "2001" + }, + { + id: "2002" + }, + { + id: "2003" + }, + { + id: "2004" + }, + { + id: "2005" + }, + { + id: "2006" + }, + { + id: "2007" + }, + { + id: "2008" + }, + { + id: "2009" + }, + { + id: "2010" + }, + { + id: "2011" + }, + { + id: "2012" + }, + { + id: "2013" + }, + { + id: "2014" + }, + { + id: "2015" + }, + { + id: "2016" + }, + { + id: "2017" + }, + { + id: "2018" + } + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: [ + "pe" + ] + }, + { + lastUpdated: "2020-06-02T08:10:05.762", + id: "eqbjzgCFSFs", + created: "2019-06-19T09:57:39.082", + name: "MAL - Reporting Comp", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: false, + type: "LINE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "ALL", + aggregationType: "COUNT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + title: "Reporting completeness", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false + }, + user: { + id: "kD52FGwJgDF" + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: [ + "ou" + ], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea" + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H" + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR" + } + ], + subscribers: [], + columnDimensions: [ + "dx" + ], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "DATA_ELEMENT", + dataElement: { + id: "kRasaq1REFp" + } + }, + { + dataDimensionItemType: "DATA_ELEMENT", + dataElement: { + id: "v0WZQQ6gKAX" + } + }, + { + dataDimensionItemType: "DATA_ELEMENT", + dataElement: { + id: "GxlrIgMyEf4" + } + } + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "2000" + }, + { + id: "2001" + }, + { + id: "2002" + }, + { + id: "2003" + }, + { + id: "2004" + }, + { + id: "2005" + }, + { + id: "2006" + }, + { + id: "2007" + }, + { + id: "2008" + }, + { + id: "2009" + }, + { + id: "2010" + }, + { + id: "2011" + }, + { + id: "2012" + }, + { + id: "2013" + }, + { + id: "2014" + }, + { + id: "2015" + }, + { + id: "2016" + }, + { + id: "2017" + }, + { + id: "2018" + } + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: [ + "pe" + ] + }, + { + lastUpdated: "2020-06-02T08:10:05.765", + id: "QqZNdTABzsZ", + created: "2019-04-06T11:56:54.936", + name: "MAL - Testing", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: false, + type: "LINE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "ALL", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + title: "Microscopy and RDT Testing", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false + }, + user: { + id: "kD52FGwJgDF" + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: [ + "ou" + ], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea" + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H" + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR" + } + ], + subscribers: [], + columnDimensions: [ + "dx" + ], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "KnoBf1YCOe2" + } + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "l0TE4LdzE8j" + } + } + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "1997" + }, + { + id: "1998" + }, + { + id: "1999" + }, + { + id: "2000" + }, + { + id: "2001" + }, + { + id: "2002" + }, + { + id: "2003" + }, + { + id: "2004" + }, + { + id: "2005" + }, + { + id: "2006" + }, + { + id: "2007" + }, + { + id: "2009" + }, + { + id: "2010" + }, + { + id: "2011" + }, + { + id: "2012" + }, + { + id: "2013" + }, + { + id: "2014" + }, + { + id: "2015" + }, + { + id: "2016" + }, + { + id: "2017" + }, + { + id: "2018" + }, + { + id: "2019" + } + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: [ + "pe" + ] + }, + { + lastUpdated: "2020-06-02T08:10:06.956", + id: "GmqjzU8Crmi", + created: "2019-05-31T21:42:26.625", + name: "MAL - IPD", + showData: false, + numberType: "VALUE", + publicAccess: "--------", + userOrganisationUnitChildren: false, + legendDisplayStyle: "FILL", + type: "PIVOT_TABLE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: true, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + description: "", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + legendDisplayStrategy: "FIXED", + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false + }, + user: { + id: "kD52FGwJgDF" + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: [ + "ou" + ], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea" + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H" + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR" + } + ], + subscribers: [], + columnDimensions: [ + "dx" + ], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "BhoZ0XenErj" + } + } + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "2000" + }, + { + id: "2001" + }, + { + id: "2002" + }, + { + id: "2003" + }, + { + id: "2004" + }, + { + id: "2005" + }, + { + id: "2006" + }, + { + id: "2007" + }, + { + id: "2008" + }, + { + id: "2009" + }, + { + id: "2010" + }, + { + id: "2011" + }, + { + id: "2012" + }, + { + id: "2013" + }, + { + id: "2014" + }, + { + id: "2015" + }, + { + id: "2016" + }, + { + id: "2017" + }, + { + id: "2018" + } + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: [ + "pe" + ] + }, + { + lastUpdated: "2020-06-02T08:10:06.962", + id: "uZ03Z5GgJJ0", + created: "2019-05-31T21:42:54.097", + name: "MAL - Proportion", + showData: false, + numberType: "VALUE", + publicAccess: "--------", + userOrganisationUnitChildren: false, + legendDisplayStyle: "FILL", + type: "PIVOT_TABLE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: true, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + legendDisplayStrategy: "FIXED", + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false + }, + user: { + id: "kD52FGwJgDF" + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: [ + "ou" + ], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea" + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H" + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR" + } + ], + subscribers: [], + columnDimensions: [ + "dx" + ], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "EiWBxnS9wmk" + } + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "AF99VXqV5Fe" + } + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "JzWUCTqpITC" + } + } + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "2000" + }, + { + id: "2001" + }, + { + id: "2002" + }, + { + id: "2003" + }, + { + id: "2004" + }, + { + id: "2005" + }, + { + id: "2006" + }, + { + id: "2007" + }, + { + id: "2008" + }, + { + id: "2009" + }, + { + id: "2010" + }, + { + id: "2011" + }, + { + id: "2012" + }, + { + id: "2013" + }, + { + id: "2014" + }, + { + id: "2015" + }, + { + id: "2016" + }, + { + id: "2017" + }, + { + id: "2018" + } + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: [ + "pe" + ] + }, + { + lastUpdated: "2020-06-02T08:10:05.748", + id: "wSudey0Yc2R", + created: "2019-04-06T11:47:33.624", + name: "MAL - OPD", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: false, + type: "LINE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "NONE", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + title: "OPD malaria vs Non-malaria OPD", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false + }, + user: { + id: "kD52FGwJgDF" + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: [ + "ou" + ], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea" + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H" + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR" + } + ], + subscribers: [], + columnDimensions: [ + "dx" + ], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "rOt4BctnRqS" + } + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "J06o672aumY" + } + } + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "1997" + }, + { + id: "1998" + }, + { + id: "1999" + }, + { + id: "2000" + }, + { + id: "2001" + }, + { + id: "2002" + }, + { + id: "2003" + }, + { + id: "2004" + }, + { + id: "2005" + }, + { + id: "2006" + }, + { + id: "2007" + }, + { + id: "2008" + }, + { + id: "2009" + }, + { + id: "2010" + }, + { + id: "2011" + }, + { + id: "2012" + }, + { + id: "2013" + }, + { + id: "2014" + }, + { + id: "2015" + }, + { + id: "2016" + }, + { + id: "2017" + }, + { + id: "2018" + } + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: [ + "pe" + ] + }, + { + lastUpdated: "2020-06-02T08:10:06.958", + id: "qo7xD7OTGcF", + created: "2019-05-31T21:41:45.698", + name: "MAL - Microscopy", + showData: false, + numberType: "VALUE", + publicAccess: "--------", + userOrganisationUnitChildren: false, + legendDisplayStyle: "FILL", + type: "PIVOT_TABLE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: true, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + legendDisplayStrategy: "FIXED", + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false + }, + user: { + id: "kD52FGwJgDF" + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: [ + "ou" + ], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea" + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H" + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR" + } + ], + subscribers: [], + columnDimensions: [ + "dx" + ], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "KnoBf1YCOe2" + } + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "w44M511O2yp" + } + } + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "2009" + }, + { + id: "2010" + }, + { + id: "2011" + }, + { + id: "2012" + }, + { + id: "2013" + }, + { + id: "2014" + }, + { + id: "2015" + }, + { + id: "2016" + }, + { + id: "2017" + }, + { + id: "2018" + }, + { + id: "2002" + }, + { + id: "2003" + }, + { + id: "2004" + }, + { + id: "2005" + }, + { + id: "2006" + }, + { + id: "2007" + }, + { + id: "2008" + }, + { + id: "2000" + }, + { + id: "2001" + } + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: [ + "pe" + ] + }, + { + lastUpdated: "2020-06-02T08:10:05.744", + id: "tq6l6xuECZo", + created: "2019-04-06T11:45:42.916", + name: "MAL - Deaths", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: false, + type: "LINE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "ALL", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + title: "Malaria and Non-malaria deaths", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false + }, + user: { + id: "kD52FGwJgDF" + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: [ + "ou" + ], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea" + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H" + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR" + } + ], + subscribers: [], + columnDimensions: [ + "dx" + ], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "FdfpxYmcsC3" + } + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "FHm610XVh02" + } + } + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "1997" + }, + { + id: "1998" + }, + { + id: "1999" + }, + { + id: "2000" + }, + { + id: "2001" + }, + { + id: "2002" + }, + { + id: "2003" + }, + { + id: "2004" + }, + { + id: "2005" + }, + { + id: "2006" + }, + { + id: "2007" + }, + { + id: "2008" + }, + { + id: "2009" + }, + { + id: "2010" + }, + { + id: "2011" + }, + { + id: "2012" + }, + { + id: "2013" + }, + { + id: "2014" + }, + { + id: "2015" + }, + { + id: "2016" + }, + { + id: "2017" + }, + { + id: "2018" + } + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: [ + "pe" + ] + }, + { + lastUpdated: "2020-06-02T08:10:06.954", + id: "Cyy6FR0wEGe", + created: "2019-05-31T21:42:05.989", + name: "MAL - Deaths", + showData: false, + numberType: "VALUE", + publicAccess: "--------", + userOrganisationUnitChildren: false, + legendDisplayStyle: "FILL", + type: "PIVOT_TABLE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + legendDisplayStrategy: "FIXED", + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false + }, + user: { + id: "kD52FGwJgDF" + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: [ + "ou" + ], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea" + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H" + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR" + } + ], + subscribers: [], + columnDimensions: [ + "dx" + ], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "FdfpxYmcsC3" + } + } + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "2000" + }, + { + id: "2001" + }, + { + id: "2002" + }, + { + id: "2003" + }, + { + id: "2004" + }, + { + id: "2005" + }, + { + id: "2006" + }, + { + id: "2007" + }, + { + id: "2008" + }, + { + id: "2009" + }, + { + id: "2010" + }, + { + id: "2011" + }, + { + id: "2012" + }, + { + id: "2013" + }, + { + id: "2014" + }, + { + id: "2015" + }, + { + id: "2016" + }, + { + id: "2017" + }, + { + id: "2018" + } + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: [ + "pe" + ] + }, + { + lastUpdated: "2020-06-02T08:10:05.764", + id: "bIwPfcT9JVN", + created: "2018-01-16T10:31:41.996", + name: "MAL - Surveillance (cases and threshold) - last 12 months", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: false, + type: "LINE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "NONE", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + title: "Malaria surveillance", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: true, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false + }, + user: { + id: "kD52FGwJgDF" + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: [ + "ou" + ], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea" + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H" + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR" + } + ], + subscribers: [], + columnDimensions: [ + "dx" + ], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "rPYLomUceL4" + } + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "tIWGvDkU6lb" + } + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "bA6kgEyRkg0" + } + } + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: [ + "pe" + ] + }, + { + lastUpdated: "2020-06-02T08:10:05.752", + id: "SKJkOTlS8vN", + created: "2019-04-06T11:50:13.171", + name: "MAL - Positivity", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: false, + type: "LINE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "ALL", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + title: "Test Positivity", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false + }, + user: { + id: "kD52FGwJgDF" + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: [ + "ou" + ], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea" + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H" + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR" + } + ], + subscribers: [], + columnDimensions: [ + "dx" + ], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "oAJpTsMsRxv" + } + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "QHcjn7FHI2w" + } + } + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "1997" + }, + { + id: "1998" + }, + { + id: "1999" + }, + { + id: "2000" + }, + { + id: "2001" + }, + { + id: "2002" + }, + { + id: "2003" + }, + { + id: "2004" + }, + { + id: "2005" + }, + { + id: "2006" + }, + { + id: "2007" + }, + { + id: "2008" + }, + { + id: "2009" + }, + { + id: "2010" + }, + { + id: "2011" + }, + { + id: "2012" + }, + { + id: "2013" + }, + { + id: "2014" + }, + { + id: "2015" + }, + { + id: "2016" + }, + { + id: "2017" + }, + { + id: "2018" + } + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: [ + "pe" + ] + }, + { + lastUpdated: "2020-06-02T08:10:05.755", + id: "pnEMZYfUAZt", + created: "2019-04-06T11:50:40.531", + name: "MAL - Proportion", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: false, + type: "LINE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "ALL", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + title: "Proportions (OPD,IPD, Deaths)", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false + }, + user: { + id: "kD52FGwJgDF" + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: [ + "ou" + ], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea" + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H" + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR" + } + ], + subscribers: [], + columnDimensions: [ + "dx" + ], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "EiWBxnS9wmk" + } + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "AF99VXqV5Fe" + } + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "JzWUCTqpITC" + } + } + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "1997" + }, + { + id: "1998" + }, + { + id: "1999" + }, + { + id: "2000" + }, + { + id: "2001" + }, + { + id: "2002" + }, + { + id: "2003" + }, + { + id: "2004" + }, + { + id: "2005" + }, + { + id: "2006" + }, + { + id: "2007" + }, + { + id: "2008" + }, + { + id: "2009" + }, + { + id: "2010" + }, + { + id: "2011" + }, + { + id: "2012" + }, + { + id: "2013" + }, + { + id: "2014" + }, + { + id: "2015" + }, + { + id: "2016" + }, + { + id: "2017" + }, + { + id: "2018" + } + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: [ + "pe" + ] + } + ] + }, program1: { categoryCombos: [ { @@ -5963,11 +9647,48446 @@ export const metadata: Record> = { }, ], }, + program3: { + optionSets: [ + { + code: "OpS_YNU_Numeric_129", + created: "2017-07-18T08:27:58.474", + lastUpdated: "2021-04-29T19:44:45.263", + name: "YNU_Numeric_129", + id: "mJKvd2WXQtp", + publicAccess: "--------", + version: 18, + valueType: "INTEGER", + lastUpdatedBy: { + id: "Qu9goywu6cV" + }, + user: { + id: "ilJDyuqlwDC" + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "r-------", + userGroupUid: "Ot2xz1vXELL", + displayName: "SS_NTD_CH_Healthcare_Event_View", + id: "Ot2xz1vXELL" + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5" + }, + { + access: "r-------", + userGroupUid: "Qi5B1pnVvEH", + displayName: "SS_NTD_CH_HealthSystem_Event_Entry", + id: "Qi5B1pnVvEH" + }, + { + access: "r-------", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL" + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "peFZC729hMn", + displayName: "SS_NTD_Skin_Yaws_Surv_Global_View", + id: "peFZC729hMn" + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "DRlUpjkyeT9", + displayName: "SS_NTD_SKIN_MYC_GlSurv_View", + id: "DRlUpjkyeT9" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "fth3On7vInl", + displayName: "NTD", + id: "fth3On7vInl" + }, + { + access: "r-------", + userGroupUid: "cT8WhjLqmH9", + displayName: "SS_NTD_Skin_Yaws_Surv_Global_Entry", + id: "cT8WhjLqmH9" + }, + { + access: "r-------", + userGroupUid: "ln8nJQmOSpJ", + displayName: "SS_NTD_CH_Healthcare_Event_Entry", + id: "ln8nJQmOSpJ" + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O" + }, + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "wG402TIgmDq", + displayName: "SS_NTD_Skin_Yaws_Surv_GHA_Entry", + id: "wG402TIgmDq" + }, + { + access: "r-------", + userGroupUid: "IsbhpWFqxOx", + displayName: "SS_NTD_Skin_MYC_GlSurv_Entry", + id: "IsbhpWFqxOx" + }, + { + access: "r-------", + userGroupUid: "HVjJiw4WEW5", + displayName: "SS_NTD_Skin_Yaws_Surv_GHA_View", + id: "HVjJiw4WEW5" + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-------", + userGroupUid: "DzvWl4E1DhF", + displayName: "SS_NTD_CH_HealthSystem_Event_View", + id: "DzvWl4E1DhF" + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR" + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v" + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj" + }, + { + access: "r-------", + userGroupUid: "IPzz6wlkIp0", + displayName: "NTD_SKIN_MYC_HQ", + id: "IPzz6wlkIp0" + }, + { + access: "r-------", + userGroupUid: "orn5lTGFMve", + displayName: "NTD_LSH_Public", + id: "orn5lTGFMve" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "Fr3SskvRRFO", + displayName: "NTD Chagas disease", + id: "Fr3SskvRRFO" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + }, + { + access: "r-------", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo" + } + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "Petar Jovanovic", + id: "q9wZgtaDxWn", + userUid: "q9wZgtaDxWn" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + options: [ + { + id: "CDIYMO9r2pv" + }, + { + id: "Vu05B3MCtV2" + }, + { + id: "WBd1cXQvxhx" + } + ] + }, + { + code: "OpS_Tx_complete", + created: "2017-01-12T02:06:48.997", + lastUpdated: "2021-04-29T19:44:45.271", + name: "Treatment completion", + id: "TqJC6mhsOv6", + publicAccess: "--------", + version: 24, + valueType: "TEXT", + lastUpdatedBy: { + id: "Qu9goywu6cV" + }, + user: { + id: "q9wZgtaDxWn" + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5" + }, + { + access: "r-------", + userGroupUid: "FhhAcewq9it", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", + id: "FhhAcewq9it" + }, + { + access: "r-------", + userGroupUid: "mYtjuODefO4", + displayName: "SS_NTD_LSH_VL_Tracker_Entry", + id: "mYtjuODefO4" + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT" + }, + { + access: "r-------", + userGroupUid: "ZuT9b32Dhv5", + displayName: "SS_NTD_LSH_VL_KEN_Event_View", + id: "ZuT9b32Dhv5" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O" + }, + { + access: "r-------", + userGroupUid: "owXIJqhlxHy", + displayName: "SS_NTD_LSH_VL_ARM_Tracker_Entry", + id: "owXIJqhlxHy" + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN" + }, + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "cDb6nhH0rXS", + displayName: "SS_NTD_LSH_VL_Tracker_View", + id: "cDb6nhH0rXS" + }, + { + access: "r-------", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4" + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR" + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v" + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "QCd81cBHcad", + displayName: "SS_NTD_LSH_VL_ARM_Tracker_View", + id: "QCd81cBHcad" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "wwAK2yjjWQc", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", + id: "wwAK2yjjWQc" + } + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + options: [ + { + id: "yeYDY2bogxs" + }, + { + id: "YDDAfmgEMih" + }, + { + id: "AsAN6YZCEGh" + }, + { + id: "TaiTS6k5ivC" + } + ] + }, + { + code: "OpS_BU_AB_Type", + created: "2016-06-08T10:13:38.517", + lastUpdated: "2021-03-01T11:52:58.492", + name: "BU_AB_Type", + id: "cYVMBWrU2Pi", + publicAccess: "--------", + version: 10, + valueType: "TEXT", + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + } + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + options: [ + { + id: "AzJhPoyTFg8" + }, + { + id: "MuopyHevUQ8" + }, + { + id: "s914v1OKfcW" + } + ] + }, + { + code: "OpS_BU_ITxO", + created: "2019-06-05T07:42:16.335", + lastUpdated: "2021-03-19T17:24:32.051", + name: "BU_ITxO", + id: "tGr5pbgz67Z", + publicAccess: "--------", + version: 7, + valueType: "TEXT", + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + options: [ + { + id: "p4hdUBmGKQE" + }, + { + id: "Bp5pucqpTey" + }, + { + id: "y9unlLhGO4k" + }, + { + id: "wMfa0vuPDQz" + }, + { + id: "Nz4Cw1ckLD2" + } + ] + }, + { + code: "OpS_Country", + created: "2016-02-28T00:35:34.236", + lastUpdated: "2021-04-29T19:44:45.232", + name: "Country", + id: "gUyghXvtx1M", + publicAccess: "--------", + version: 276, + valueType: "TEXT", + lastUpdatedBy: { + id: "Qu9goywu6cV" + }, + user: { + id: "q9wZgtaDxWn" + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "r-------", + userGroupUid: "Ot2xz1vXELL", + displayName: "SS_NTD_CH_Healthcare_Event_View", + id: "Ot2xz1vXELL" + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5" + }, + { + access: "r-------", + userGroupUid: "FhhAcewq9it", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", + id: "FhhAcewq9it" + }, + { + access: "r-------", + userGroupUid: "mYtjuODefO4", + displayName: "SS_NTD_LSH_VL_Tracker_Entry", + id: "mYtjuODefO4" + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "ZuT9b32Dhv5", + displayName: "SS_NTD_LSH_VL_KEN_Event_View", + id: "ZuT9b32Dhv5" + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU" + }, + { + access: "r-------", + userGroupUid: "DgpZijnf5Sf", + displayName: "SS_NTD_CH_VectorControl_Event_Entry", + id: "DgpZijnf5Sf" + }, + { + access: "r-------", + userGroupUid: "ln8nJQmOSpJ", + displayName: "SS_NTD_CH_Healthcare_Event_Entry", + id: "ln8nJQmOSpJ" + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O" + }, + { + access: "r-------", + userGroupUid: "owXIJqhlxHy", + displayName: "SS_NTD_LSH_VL_ARM_Tracker_Entry", + id: "owXIJqhlxHy" + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN" + }, + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "cDb6nhH0rXS", + displayName: "SS_NTD_LSH_VL_Tracker_View", + id: "cDb6nhH0rXS" + }, + { + access: "r-------", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4" + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "kvu9Bts7nJb", + displayName: "SS_NTD_CH_VectorControl_Event_View", + id: "kvu9Bts7nJb" + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR" + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v" + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "rw------", + userGroupUid: "PRgi0GEW3gw", + displayName: "NTD Chagas disease - WCD2020", + id: "PRgi0GEW3gw" + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "Fr3SskvRRFO", + displayName: "NTD Chagas disease", + id: "Fr3SskvRRFO" + }, + { + access: "r-------", + userGroupUid: "QCd81cBHcad", + displayName: "SS_NTD_LSH_VL_ARM_Tracker_View", + id: "QCd81cBHcad" + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "wwAK2yjjWQc", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", + id: "wwAK2yjjWQc" + } + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "rw------", + displayName: "Chagas World Day 2020", + id: "iUNlUiEkyQx", + userUid: "iUNlUiEkyQx" + }, + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "rw------", + displayName: "Petar Jovanovic", + id: "q9wZgtaDxWn", + userUid: "q9wZgtaDxWn" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + options: [ + { + id: "rpYKUF2SUbF" + }, + { + id: "ROD72U5e1KY" + }, + { + id: "GNF8jdbZ8Dw" + }, + { + id: "vRVl3O76lyn" + }, + { + id: "OPp0jE41c71" + }, + { + id: "RgllCEY0K6B" + }, + { + id: "aaXQWSasFYh" + }, + { + id: "E1e60DQj7ER" + }, + { + id: "sdGbRbHMjfM" + }, + { + id: "cQkGLAeVhei" + }, + { + id: "st3MnmCFpzF" + }, + { + id: "idhYV7lcUgH" + }, + { + id: "YINMRPJJN5V" + }, + { + id: "KAJ7p4zcnJt" + }, + { + id: "R9eRZscHOto" + }, + { + id: "kTOG6zPV8n8" + }, + { + id: "Rbwa1KlOCgs" + }, + { + id: "yNiomNqisdT" + }, + { + id: "bDDw1zZn6H4" + }, + { + id: "Kfq910gLIPA" + }, + { + id: "eTIA3EPkyY4" + }, + { + id: "EaE88cArPz5" + }, + { + id: "sFfFUiIkgDi" + }, + { + id: "yIswGPbNEZk" + }, + { + id: "qwwz0vNXMD3" + }, + { + id: "mdKnXxpQ0LQ" + }, + { + id: "oPg7wRipLh4" + }, + { + id: "O8O4CpJVYOD" + }, + { + id: "J38ZkiquJmy" + }, + { + id: "eoBbae6v8Is" + }, + { + id: "XysXrwrAdcb" + }, + { + id: "LaqvuIL8pST" + }, + { + id: "g4TjSILnkWf" + }, + { + id: "UkW0Ae3paRK" + }, + { + id: "ftPDQflDhP4" + }, + { + id: "N6LwQ834t7C" + }, + { + id: "eWVs9rhuRhl" + }, + { + id: "ekwPeN3y8hn" + }, + { + id: "fVGpda6m2J1" + }, + { + id: "sZjbQs6bl0o" + }, + { + id: "nF2ZeKjSsf6" + }, + { + id: "QkKjW5DH4u9" + }, + { + id: "PTQq9HoYV7h" + }, + { + id: "jxyr8IWOLiN" + }, + { + id: "WJW9ptUoJ3A" + }, + { + id: "Ksv0YWONey8" + }, + { + id: "tiH4Rvkr1AU" + }, + { + id: "oN6N4VVymmD" + }, + { + id: "mQGGbSz6cee" + }, + { + id: "ZtNH7EW51t0" + }, + { + id: "fSwZ2dQsngS" + }, + { + id: "iIyvPvW311F" + }, + { + id: "DIMY2GI3N0D" + }, + { + id: "FjJGgqd4e0t" + }, + { + id: "Q3JNcuoJx0i" + }, + { + id: "X7tLQ18rhaG" + }, + { + id: "vk3eaLsdOlS" + }, + { + id: "FaU1a7FxQGn" + }, + { + id: "Rb24lhnATCV" + }, + { + id: "X6K4a7H6wDk" + }, + { + id: "LhTmzpsK3Be" + }, + { + id: "C4WPfBbbyLg" + }, + { + id: "dZcbeWdMWsZ" + }, + { + id: "dA1bzDuyJpa" + }, + { + id: "KkPkhg9dyZS" + }, + { + id: "Snabf2xuq8j" + }, + { + id: "s54dxecMtMv" + }, + { + id: "OJ0DFyJMUOR" + }, + { + id: "mOkzdx2h0SG" + }, + { + id: "oXpUVu6DhB2" + }, + { + id: "jh3zGJQi06D" + }, + { + id: "cqfa35jkUEd" + }, + { + id: "bdZkKddbme4" + }, + { + id: "rmlWP6qawBg" + }, + { + id: "cI94C2PcXsS" + }, + { + id: "TIVtt9En4eU" + }, + { + id: "l4T2wiKbQUL" + }, + { + id: "kGIuN6tjNZI" + }, + { + id: "LBzfnDqxl0M" + }, + { + id: "LXpaR05sYo1" + }, + { + id: "o3fBa5sIh8Q" + }, + { + id: "afoGJejzdk9" + }, + { + id: "wumaFN6DN2W" + }, + { + id: "A4mupXkA7Tk" + }, + { + id: "htZ89VAlt02" + }, + { + id: "gHRFa39BQfS" + }, + { + id: "Cq9V6QqCNme" + }, + { + id: "oTNU8h07Q7x" + }, + { + id: "HUm42tSwG8f" + }, + { + id: "YkDHxJoSdxP" + }, + { + id: "jGbV0Ne53W5" + }, + { + id: "sZJBFcxVY8g" + }, + { + id: "y8urVZCHd1T" + }, + { + id: "bzazWy2jvpr" + }, + { + id: "iQ3o79B3Rte" + }, + { + id: "X9j8yAE8jR1" + }, + { + id: "pGnTV1cqwc0" + }, + { + id: "ielTPI84eJZ" + }, + { + id: "eT6EbUJF8xK" + }, + { + id: "uRNwaxhc5Tx" + }, + { + id: "RU3idIirhku" + }, + { + id: "yDeHDMclb90" + }, + { + id: "TA7D8hfDnL6" + }, + { + id: "cSqaO8XLuNi" + }, + { + id: "h3NVEPvY7io" + }, + { + id: "oKQ4Km493KI" + }, + { + id: "GAyjbdM621v" + }, + { + id: "aKXIbWkLKMT" + }, + { + id: "JY1pHQtniXy" + }, + { + id: "C5Ly52gvu3w" + }, + { + id: "cBKW7YJr4rO" + }, + { + id: "y6bDnL6k4A9" + }, + { + id: "G4eMnJNlEhT" + }, + { + id: "SAmZtKTfG80" + }, + { + id: "RTgnQw3zAy6" + }, + { + id: "x0psf8EdDge" + }, + { + id: "MHhH9Uf7Rj5" + }, + { + id: "toz6mYv2HYF" + }, + { + id: "ULrEOBUJNtC" + }, + { + id: "whL5no7kcff" + }, + { + id: "WFTrDt1MKFN" + }, + { + id: "QFaAj7RqyAm" + }, + { + id: "Pm4Jv8Hp8kE" + }, + { + id: "PP1n12Xmd4T" + }, + { + id: "bukRn9nzytv" + }, + { + id: "erOhrWyHhDY" + }, + { + id: "EvekRRBnMx4" + }, + { + id: "hK6W9ljkGqw" + }, + { + id: "zjI336whk3I" + }, + { + id: "taFo3wtW5Eg" + }, + { + id: "xyem51RudNi" + }, + { + id: "i7A3r980S0D" + }, + { + id: "BbVCIp24olr" + }, + { + id: "KeMEEipyNOm" + }, + { + id: "FbfNBXab6GY" + }, + { + id: "nh1m0TLoIh8" + }, + { + id: "cL4OmqIczsH" + }, + { + id: "sYu5WdUFxxx" + }, + { + id: "hfkGnSUY6US" + }, + { + id: "EkjCgj5oboN" + }, + { + id: "rtFuIPE4rvK" + }, + { + id: "OcaAwln2R11" + }, + { + id: "HIoE2KG4A61" + }, + { + id: "DjVJE4YFp6g" + }, + { + id: "cDIdNAHmPrE" + }, + { + id: "DwOOv26iA48" + }, + { + id: "MpAktPYMf90" + }, + { + id: "otegwIeNezj" + }, + { + id: "X9nQoyVwrsn" + }, + { + id: "ATcSjkUG9QV" + }, + { + id: "FiPEiArokkj" + }, + { + id: "rM46cgyO8rb" + }, + { + id: "kxbQFgx63UI" + }, + { + id: "PDWVapGBjI8" + }, + { + id: "tzhv86drYJH" + }, + { + id: "Gyn24NJMikB" + }, + { + id: "NBcbgJQuPq8" + }, + { + id: "g3iNcMjOKf2" + }, + { + id: "P0fL0rvUSn7" + }, + { + id: "vKiKgfvmaOs" + }, + { + id: "owGF3JqsoAA" + }, + { + id: "Ps7iJKJcqb8" + }, + { + id: "hr3HqQmzN7f" + }, + { + id: "FjYmkLvW8hG" + }, + { + id: "mxwaApcX2QJ" + }, + { + id: "QBJvSnKk1uW" + }, + { + id: "REll9OOAWVM" + }, + { + id: "UyeM42XQdUL" + }, + { + id: "XXEL9RuJPCO" + }, + { + id: "pBZQqnOre43" + }, + { + id: "j12hkmb7DHr" + }, + { + id: "kRFzU19Xd1Y" + }, + { + id: "mKpPeqR2hX2" + }, + { + id: "J88eOGKY9Na" + }, + { + id: "aOpMFzlaTp0" + }, + { + id: "ByOnLinEgi8" + }, + { + id: "H8AEpkxvjRU" + }, + { + id: "PHh2qZ7KS7X" + }, + { + id: "y0ZlulciMOf" + }, + { + id: "D82B1UTMfPL" + }, + { + id: "RN3bZeeFEbl" + }, + { + id: "UxsQKwqAuGh" + }, + { + id: "eh5c1MmXn8n" + }, + { + id: "yxRTRFzIdMC" + }, + { + id: "rdwbewfVXxn" + }, + { + id: "sEucrpuANOo" + }, + { + id: "R3xI52BxTKZ" + }, + { + id: "X1rvZAaWg66" + }, + { + id: "LsGOICl7YIw" + }, + { + id: "OaWk0B8LtgK" + }, + { + id: "vyw2jtfU39q" + }, + { + id: "WmpDHvUrndV" + }, + { + id: "aF9IHLadpWc" + }, + { + id: "IWYV2nhwswl" + }, + { + id: "H0I6K4ARBWm" + }, + { + id: "qWdvoHjEe3v" + }, + { + id: "VUldg1jCLBU" + }, + { + id: "xPe8txtq1S7" + }, + { + id: "aLAfEob7jZh" + }, + { + id: "AIx354YR3oy" + }, + { + id: "ejSCE1PrzIR" + }, + { + id: "h6dADh5Zx6g" + }, + { + id: "tFp489Mt4rO" + }, + { + id: "z6RCpgOD0ve" + }, + { + id: "boiuNkaV65n" + }, + { + id: "DcGZ6Rn7qle" + }, + { + id: "RfNF6JV3ecp" + }, + { + id: "NkdCgJPQtjw" + }, + { + id: "HN0RT0Kv1mD" + }, + { + id: "iDEdgaPkpce" + }, + { + id: "qkBlV5zXEbg" + }, + { + id: "Mm43urCbMp9" + }, + { + id: "VyBTcplZkJQ" + }, + { + id: "DOHMCSDIbCb" + }, + { + id: "odQjRlU11Fy" + }, + { + id: "MXH9qJlmiHj" + }, + { + id: "HepCKGVZOF9" + }, + { + id: "E4Ihgx3j6z1" + }, + { + id: "hOBEs8WJceb" + }, + { + id: "Rke3037hiuV" + }, + { + id: "qoefJ5oz2kr" + }, + { + id: "UPJI4u2Zpao" + }, + { + id: "aewMRLmf9a9" + }, + { + id: "NEuSYMjN31a" + }, + { + id: "evtYWLkx81g" + }, + { + id: "T6sKm7b1Iev" + }, + { + id: "aKJBQ499p7T" + }, + { + id: "So5Bmn1i2r2" + }, + { + id: "UftyLoueGB8" + }, + { + id: "eHHU7uow2mi" + }, + { + id: "oPuTQ7Y5qMi" + }, + { + id: "ywkstElBpo1" + }, + { + id: "GkfStXJBJqs" + }, + { + id: "Vz0KVAbfhRy" + }, + { + id: "WPZOE5WQJB9" + }, + { + id: "Iop94Prp34o" + }, + { + id: "q5u0ehHpFgt" + }, + { + id: "QkFFXvco1QM" + }, + { + id: "XnUtsN4s1HS" + }, + { + id: "JEYcfbIKDqM" + }, + { + id: "cMsUdHzYjEm" + }, + { + id: "Ba3mM6jHWLo" + }, + { + id: "E3kChU0S6Ty" + }, + { + id: "u6kafve6PQR" + }, + { + id: "jVvKs0pcKlP" + }, + { + id: "fTISV70dLXk" + }, + { + id: "InEQETgtfSJ" + }, + { + id: "XObEvb5qGAA" + } + ] + }, + { + code: "OpS_Skin_Classification", + created: "2016-06-08T09:04:14.700", + lastUpdated: "2021-03-19T17:24:31.617", + name: "Skin_Classification", + id: "Al6DsS3DTve", + publicAccess: "--------", + version: 23, + valueType: "TEXT", + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + } + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + options: [ + { + id: "qVOty3cF2WA" + }, + { + id: "w9Ve9MgDnPI" + }, + { + id: "fHwmBRPO12f" + }, + { + id: "kj4jM9bi8MB" + } + ] + }, + { + code: "ALL_OpS_YNU", + created: "2016-05-22T22:20:55.425", + lastUpdated: "2021-06-18T17:47:14.239", + name: "YNU", + id: "vDeP0h2cO2n", + publicAccess: "r-------", + version: 32, + valueType: "TEXT", + lastUpdatedBy: { + id: "Qu9goywu6cV" + }, + user: { + id: "q9wZgtaDxWn" + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v" + }, + { + access: "r-------", + userGroupUid: "cDb6nhH0rXS", + displayName: "SS_NTD_LSH_VL_Tracker_View", + id: "cDb6nhH0rXS" + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5" + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS" + }, + { + access: "r-------", + userGroupUid: "mYtjuODefO4", + displayName: "SS_NTD_LSH_VL_Tracker_Entry", + id: "mYtjuODefO4" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a" + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + translations: [], + userAccesses: [], + options: [ + { + id: "PHv5RMoDR3I" + }, + { + id: "oq0sE3HHt7O" + }, + { + id: "do7Z43P6VB8" + } + ] + }, + { + code: "Result_PNPNDU", + created: "2019-05-20T09:57:45.595", + lastUpdated: "2021-04-29T19:44:45.260", + name: "Result_PNPNDU", + id: "vQBOhNnE09a", + publicAccess: "--------", + version: 12, + valueType: "TEXT", + lastUpdatedBy: { + id: "Qu9goywu6cV" + }, + user: { + id: "ilJDyuqlwDC" + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5" + }, + { + access: "r-------", + userGroupUid: "mYtjuODefO4", + displayName: "SS_NTD_LSH_VL_Tracker_Entry", + id: "mYtjuODefO4" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU" + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O" + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN" + }, + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "cDb6nhH0rXS", + displayName: "SS_NTD_LSH_VL_Tracker_View", + id: "cDb6nhH0rXS" + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v" + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + } + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + options: [ + { + id: "PThinVriWjI" + }, + { + id: "ADcYKbV8BWA" + }, + { + id: "XfXIcYn2wZB" + }, + { + id: "ktd2pbc0DJl" + }, + { + id: "RG6QTAyr0lY" + } + ] + }, + { + code: "ALL_OpS_Gender", + created: "2016-05-22T22:20:55.318", + lastUpdated: "2021-04-29T19:44:45.237", + name: "Gender", + id: "apzFCMWeffA", + publicAccess: "r-------", + version: 33, + valueType: "TEXT", + lastUpdatedBy: { + id: "Qu9goywu6cV" + }, + user: { + id: "H4atNsEuKxP" + }, + userGroupAccesses: [], + attributeValues: [], + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Genre" + }, + { + property: "NAME", + locale: "fr", + value: "Genre" + } + ], + userAccesses: [], + options: [ + { + id: "M0BoqSns1KA" + }, + { + id: "FFuAh3CgxqV" + }, + { + id: "DL8exJ3mxUX" + } + ] + }, + { + code: "OpS_BU_cat", + created: "2016-06-08T09:04:14.518", + lastUpdated: "2021-03-19T17:24:31.727", + name: "BU_cat", + id: "nF2JkM7IXth", + publicAccess: "--------", + version: 15, + valueType: "TEXT", + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + } + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + options: [ + { + id: "B1dtYYHplC2" + }, + { + id: "TQIAxf467mJ" + }, + { + id: "Q9P2sPWVRfP" + }, + { + id: "JbKYZp1CAIa" + } + ] + }, + { + code: "OpS_BU_FTxO", + created: "2016-06-24T08:02:04.461", + lastUpdated: "2021-03-19T17:24:32.028", + name: "BU_FTxO", + id: "ESSQcpsmBse", + publicAccess: "--------", + version: 15, + valueType: "TEXT", + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + } + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + options: [ + { + id: "Vir718Xtmot" + }, + { + id: "jtEMRBZkuHe" + }, + { + id: "FeBILAXpi53" + }, + { + id: "i2FNFG2CgtO" + } + ] + } + ], + trackedEntityTypes: [ + { + code: "Person", + created: "2018-11-29T00:00:00.000", + lastUpdated: "2021-09-21T09:19:35.653", + name: "Person", + id: "MCPQUTHX1Ze", + publicAccess: "--------", + description: "Person", + maxTeiCountToReturn: 0, + allowAuditLog: false, + featureType: "NONE", + minAttributesRequiredToSearch: 1, + lastUpdatedBy: { + id: "H4atNsEuKxP" + }, + user: { + id: "ilJDyuqlwDC" + }, + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU" + }, + { + access: "r-r-----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5" + }, + { + access: "r-rw----", + userGroupUid: "HJRKloCWNeh", + displayName: "SS_NTD_SKIN_ACD_Event_Entry", + id: "HJRKloCWNeh" + }, + { + access: "r-rw----", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-rw----", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU" + }, + { + access: "r-r-----", + userGroupUid: "cy0qXsDxzxe", + displayName: "SS_NTD_LSH_VL_LabLog_View", + id: "cy0qXsDxzxe" + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a" + }, + { + access: "r-r-----", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O" + }, + { + access: "r-r-----", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-rw----", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-rw----", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "r-rw----", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT" + }, + { + access: "r-r-----", + userGroupUid: "Ot2xz1vXELL", + displayName: "SS_NTD_CH_Healthcare_Event_View", + id: "Ot2xz1vXELL" + }, + { + access: "r-r-----", + userGroupUid: "DzvWl4E1DhF", + displayName: "SS_NTD_CH_HealthSystem_Event_View", + id: "DzvWl4E1DhF" + }, + { + access: "r-rw----", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS" + }, + { + access: "r-r-----", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-r-----", + userGroupUid: "cDb6nhH0rXS", + displayName: "SS_NTD_LSH_VL_Tracker_View", + id: "cDb6nhH0rXS" + }, + { + access: "r-r-----", + userGroupUid: "YJ4SW7rs30P", + displayName: "SS_NTD_LSH_CPG", + id: "YJ4SW7rs30P" + }, + { + access: "r-r-----", + userGroupUid: "ODVk6IF6Dso", + displayName: "SS_NTD_SKIN_ACD_Event_View", + id: "ODVk6IF6Dso" + }, + { + access: "r-r-----", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN" + }, + { + access: "r-r-----", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC" + }, + { + access: "r-rw----", + userGroupUid: "ln8nJQmOSpJ", + displayName: "SS_NTD_CH_Healthcare_Event_Entry", + id: "ln8nJQmOSpJ" + }, + { + access: "rwr-----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v" + }, + { + access: "r-rw----", + userGroupUid: "UnTaQrY57qi", + displayName: "NTD_LSH_Monthly_Importer", + id: "UnTaQrY57qi" + }, + { + access: "rwrw----", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-rw----", + userGroupUid: "TbGA9fMJpCR", + displayName: "SS_NTD_LSH_VL_LabLog_Entry", + id: "TbGA9fMJpCR" + }, + { + access: "rwr-----", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-r-----", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "r-rw----", + userGroupUid: "Qi5B1pnVvEH", + displayName: "SS_NTD_CH_HealthSystem_Event_Entry", + id: "Qi5B1pnVvEH" + }, + { + access: "r-rw----", + userGroupUid: "mYtjuODefO4", + displayName: "SS_NTD_LSH_VL_Tracker_Entry", + id: "mYtjuODefO4" + }, + { + access: "r-r-----", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + } + ], + attributeValues: [], + trackedEntityTypeAttributes: [], + translations: [], + userAccesses: [ + { + access: "r-rw----", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + }, + { + access: "rw------", + displayName: "Loretta Hardjopawiro", + id: "Ps2PMw1E7mI", + userUid: "Ps2PMw1E7mI" + }, + { + access: "rw------", + displayName: "Alexei MIKHAILOV", + id: "jrB1juLJyjJ", + userUid: "jrB1juLJyjJ" + }, + { + access: "rw------", + displayName: "Alexis Rico", + id: "s5EVHUwoFKu", + userUid: "s5EVHUwoFKu" + } + ] + } + ], + programStageSections: [ + { + created: "2016-09-06T14:39:38.414", + lastUpdated: "2021-04-22T14:59:35.599", + name: "Laboratory / Laboratoire", + id: "kmERl23mQ8R", + sortOrder: 6, + renderType: { + MOBILE: { + type: "LISTING" + }, + DESKTOP: { + type: "LISTING" + } + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + programIndicators: [], + translations: [], + dataElements: [ + { + id: "VYGsfmL36PY" + }, + { + id: "JAyZaIKj2zv" + }, + { + id: "ggwHn45jtgh" + } + ] + }, + { + created: "2016-09-13T16:50:42.097", + lastUpdated: "2021-04-22T14:59:35.599", + name: "Place of residence / Lieu de résidence", + id: "WKQvNhjIme6", + sortOrder: 1, + renderType: { + MOBILE: { + type: "LISTING" + }, + DESKTOP: { + type: "LISTING" + } + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + programIndicators: [], + translations: [], + dataElements: [ + { + id: "J19avh4dgzs" + }, + { + id: "mwIgH1XXf6p" + }, + { + id: "BYPbyk5W7SL" + }, + { + id: "bTwp4cKNjgZ" + }, + { + id: "silWE44JpaQ" + } + ] + }, + { + created: "2016-09-13T16:50:14.634", + lastUpdated: "2021-04-22T14:59:35.599", + name: "General information / Informations générales", + id: "JuoTOHBrYjD", + sortOrder: 0, + renderType: { + MOBILE: { + type: "LISTING" + }, + DESKTOP: { + type: "LISTING" + } + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + programIndicators: [], + translations: [], + dataElements: [ + { + id: "ZGCDiz5fZhb" + }, + { + id: "LJHNsKzZ8Mg" + }, + { + id: "Q7dOlqe54eh" + }, + { + id: "DAPNB0WxKMH" + }, + { + id: "Z8W89lDV4IL" + } + ] + }, + { + created: "2016-09-06T14:38:12.996", + lastUpdated: "2021-04-22T14:59:35.599", + name: "Case classification / Classification du cas", + id: "UaLdvwjiwJ4", + sortOrder: 2, + renderType: { + MOBILE: { + type: "LISTING" + }, + DESKTOP: { + type: "LISTING" + } + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + programIndicators: [], + translations: [], + dataElements: [ + { + id: "HAt5fbygnrg" + } + ] + }, + { + created: "2016-09-06T14:38:34.661", + lastUpdated: "2021-04-22T14:59:35.599", + name: "Clinical form(s) / Forme(s) clinique(s)", + id: "lA5R8jpglUg", + description: "Please tick here the type of lesion(s) identified on the patient. You can tick several boxes. //\nCochez le type de lésion(s) identidiées sur le patient. Vous pouvez cochez plusieurs cases.", + sortOrder: 3, + renderType: { + MOBILE: { + type: "LISTING" + }, + DESKTOP: { + type: "LISTING" + } + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + programIndicators: [], + translations: [], + dataElements: [ + { + id: "xkt9nkHj5CA" + }, + { + id: "RETdv2kznbH" + }, + { + id: "QzAHATV8EWv" + }, + { + id: "nidn593FWAF" + }, + { + id: "mTyzapAF9iT" + }, + { + id: "qJOXKn3wSLS" + } + ] + }, + { + created: "2016-09-06T14:38:58.156", + lastUpdated: "2021-04-22T14:59:35.599", + name: "Location(s) of lesion(s) / Localisation(s) de(s) lésion(s)", + id: "XoBIzGaZOLn", + description: "Please tick here the location(s) of the lesion(s) identified on the patient. You can tick several boxes.", + sortOrder: 4, + renderType: { + MOBILE: { + type: "LISTING" + }, + DESKTOP: { + type: "LISTING" + } + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + programIndicators: [], + translations: [], + dataElements: [ + { + id: "Sieb79556d6" + }, + { + id: "PRaonbusSOU" + }, + { + id: "UY4A4oRdvqT" + }, + { + id: "j9OfhXT92Ej" + }, + { + id: "TqqxE4hmd6Q" + }, + { + id: "UCXRQtdD8K5" + }, + { + id: "adfHPJQRI3C" + } + ] + }, + { + created: "2016-09-06T14:39:28.572", + lastUpdated: "2021-04-22T14:59:35.599", + name: "Other information about the lesion(s) / Autres informations sur la(les) lésion(s)", + id: "bfQc4NoPHD9", + sortOrder: 5, + renderType: { + MOBILE: { + type: "LISTING" + }, + DESKTOP: { + type: "LISTING" + } + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + programIndicators: [], + translations: [], + dataElements: [ + { + id: "UwC7RVH9Bwv" + }, + { + id: "DHmAP1MjEoK" + }, + { + id: "xIo6fsgpmdN" + } + ] + }, + { + created: "2016-09-06T14:39:48.484", + lastUpdated: "2021-04-22T14:59:35.599", + name: "Antibiotic treatment / Traitement antibiotique", + id: "AJDiEfldKyX", + sortOrder: 7, + renderType: { + MOBILE: { + type: "LISTING" + }, + DESKTOP: { + type: "LISTING" + } + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + programIndicators: [], + translations: [], + dataElements: [ + { + id: "gc8rKk6Hax6" + }, + { + id: "wiZbIU6sFG5" + }, + { + id: "XyGxsyiIy4p" + } + ] + } + ], + dataElements: [ + { + code: "GEN_Mobile Phone_T", + lastUpdated: "2021-03-19T17:24:32.796", + id: "silWE44JpaQ", + created: "2016-05-22T22:45:17.222", + name: "GEN_Mobile Phone_T", + shortName: "MobilePhone", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "PHONE_NUMBER", + formName: "Mobile Phone", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "ilJDyuqlwDC" + }, + user: { + id: "q9wZgtaDxWn" + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Numero de telephone" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Numero de telephone" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "ZuT9b32Dhv5", + displayName: "SS_NTD_LSH_VL_KEN_Event_View", + id: "ZuT9b32Dhv5" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "GEN_PLACE_VillageOfResidence_Text_T", + lastUpdated: "2021-03-19T17:24:33.303", + id: "bTwp4cKNjgZ", + created: "2016-02-28T01:06:28.092", + name: "GEN_PLACE_VillageOfResidence_Text_T", + shortName: "Village of residence (Free text)", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "In case you could not find the village neither in the organisation tree, nor in the when trying to capture the coordinates, please indicate the name of the village of residence as free text in this box.", + valueType: "TEXT", + formName: "Village of residence (Free text)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "q9wZgtaDxWn" + }, + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: "Au cas où vous ne pourriez pas trouver le lieu de résidence ni dans l'arbre d'unités d'organisation, ni lorsque vous essayez de trouver les coordonnées géographiques sur la carte, merci d'indiquer le nom du lieu de résidence comme texte libre dans cette case." + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Lieu de résidence (Texte libre)" + }, + { + property: "NAME", + locale: "fr", + value: "GEN_PLACE_VillageOfResidence_Text_T" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Lieu de résidence (Texte libre)" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT" + }, + { + access: "r-------", + userGroupUid: "ZuT9b32Dhv5", + displayName: "SS_NTD_LSH_VL_KEN_Event_View", + id: "ZuT9b32Dhv5" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU" + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN" + }, + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "sVRPz2NvK37", + displayName: "NTD_AFRO", + id: "sVRPz2NvK37" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR" + }, + { + access: "r-------", + userGroupUid: "TbGA9fMJpCR", + displayName: "SS_NTD_LSH_VL_LabLog_Entry", + id: "TbGA9fMJpCR" + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj" + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "cy0qXsDxzxe", + displayName: "SS_NTD_LSH_VL_LabLog_View", + id: "cy0qXsDxzxe" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_TxO_AB_missed", + lastUpdated: "2021-03-19T17:24:33.527", + id: "dRoQ0J5dKuO", + created: "2016-09-04T17:41:06.131", + name: "BU_TxO_AB_missed", + shortName: "Number of days the treatment has been missed", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "Please count here the number of days when the AB has not been taken.", + valueType: "INTEGER_ZERO_OR_POSITIVE", + formName: "Number of days the treatment has been missed over the total period", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "BU_TxO_AB_rate_T" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Nombre de jour où le traitement a été raté (sur la période totale de traitement)" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Nombre de jour où le traitement a été raté" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Veuillez compter ici le nombre de jours où le patient a raté son traitement antibiotique, sur l'ensemble de la période de traitement." + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "DET_NTD_SKIN_PIX_PreTx_PIX", + lastUpdated: "2021-03-19T17:24:33.281", + id: "xIo6fsgpmdN", + created: "2016-06-18T01:01:20.031", + name: "Skin_Pix_PreTx_Pix_T", + shortName: "Take pre-treatment picture", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "If you are using the Android App, please take a photo of the lesion prior to treatment.", + valueType: "IMAGE", + formName: "Take pre-treatment picture", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Photo pre-traitement" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Charger la photo pre-traitement" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Charger la photo pr\ufffd-traitement" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "Skin_Cl_jointLimitation_T", + lastUpdated: "2021-03-01T11:52:49.286", + id: "DHmAP1MjEoK", + created: "2016-06-08T09:14:38.961", + name: "Skin_Cl_joint limitation_T", + shortName: "Jont limitation", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "Please indicate if the patient presents with limitation of movement, at any joint", + valueType: "TEXT", + formName: "Limitation of movement (at any joint)", + zeroIsSignificant: false, + optionSet: { + id: "vDeP0h2cO2n" + }, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Limitation articulaire" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Indiquez si le patient présente une limitation du mouvement à n'importe quelle articulation, au moment de l'examen clinique initial." + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Limitation du mouvement (articulaire)" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "Skin_Cl_Lesion_Loc_Thorax_T", + lastUpdated: "2021-04-29T19:43:57.701", + id: "TqqxE4hmd6Q", + created: "2017-06-20T09:15:06.933", + name: "Skin_Cl_Lesion_Loc_Thorax_T", + shortName: "Thorax", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "Tick if lesions are present on thorax", + valueType: "TRUE_ONLY", + formName: "Thorax", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "Qu9goywu6cV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Thorax" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Thorax (TH)" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: " Cochez cette case si le patient présente une lésion au thorax." + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5" + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v" + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "UIDreference", + lastUpdated: "2021-03-01T11:52:49.722", + id: "kzgD7nD4qLI", + created: "2018-08-24T11:47:23.237", + name: "UIDreference", + shortName: "UIDreference", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "a DHIS2 UID reference", + valueType: "TEXT", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "eK26I7dRbC4" + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "phezIKUxlC2", + displayName: "NTD_LSH_EMRO_SOM", + id: "phezIKUxlC2" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "K40P7b1JFdc", + displayName: "NTD_EMRO", + id: "K40P7b1JFdc" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_Tx_AB_YNU_T", + lastUpdated: "2021-03-19T17:24:33.570", + id: "gc8rKk6Hax6", + created: "2019-04-01T00:19:59.400", + name: "BU_Tx_AB_YNU_T", + shortName: "AB treatment started", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "INTEGER", + formName: "Antibiotic treatment started", + zeroIsSignificant: true, + optionSet: { + id: "mJKvd2WXQtp" + }, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Traitement AB commence" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Traitement AB commence" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "DE_PR_GEN_UID", + lastUpdated: "2021-03-19T17:24:33.873", + id: "ZGCDiz5fZhb", + created: "2018-01-29T09:34:35.473", + name: "GEN_UID", + shortName: "UID", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "Please indicate the unique identifier of the case.", + valueType: "TEXT", + formName: "Unique identifier", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: "Merci d'indiquer l'identifiant unique du cas. L'identifiant unique vous permettra de revenir consulter la fiche du cas et de faire le lien avec les outils papiers utilisés au CDTUB." + }, + { + property: "NAME", + locale: "fr", + value: "GEN_UID" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Identifiant unique" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "UID" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR" + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj" + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF" + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "DET_NTD_SKIN_PIX_PreTx_FILE", + lastUpdated: "2021-03-01T11:52:49.751", + id: "uNdVSTX6lSE", + created: "2020-01-08T16:27:37.687", + name: "Skin_Pix_PreTx_File_T", + shortName: "Upload pre-treatment picture", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "If you are using the web-based platform, please upload a photo of the lesion prior to treatment.", + valueType: "FILE_RESOURCE", + formName: "Upload pre-treatment picture", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "GEN_PLACE_CountryOfResidence_T", + lastUpdated: "2021-03-19T17:24:34.096", + id: "J19avh4dgzs", + created: "2016-05-25T07:42:21.895", + name: "GEN_PLACE_CountryOfResidence_T", + shortName: "Country of residence", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "Please select in the drop-down menu the current country of residence of the patient.", + valueType: "TEXT", + formName: "Country of residence", + zeroIsSignificant: false, + optionSet: { + id: "gUyghXvtx1M" + }, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "q9wZgtaDxWn" + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "GEN_PLACE_PaysResidence_T" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Pays de résidence" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Sélectionnez le pays de résidence du patient dans la liste déroulante." + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Pays de résidence" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR" + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj" + }, + { + access: "r-------", + userGroupUid: "ZuT9b32Dhv5", + displayName: "SS_NTD_LSH_VL_KEN_Event_View", + id: "ZuT9b32Dhv5" + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF" + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "Skin_Cl_Lesion_Ulcer_T", + lastUpdated: "2021-03-19T17:24:34.017", + id: "mTyzapAF9iT", + created: "2016-06-08T09:14:43.396", + name: "Skin_Cl_Lesion_Ulcer_T", + shortName: "Ulcer", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "An ulcer is a painless skin lesion characterized by a necrotic center, undermined edges and oedematous skin. An early ulcerative lesion has a diameter of less than 2 cm and a late ulcerative lesion has a diameter of more than 2 cm. \nTick this box if the patient presents ulcer(s). ", + valueType: "TRUE_ONLY", + formName: "Ulcer (U)", + zeroIsSignificant: false, + url: "http://apps.who.int/iris/bitstream/10665/75360/1/9789241504096_eng.pdf?ua=1", + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Ulcere" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: " Un ulcère est une lésion cutanée indolore caractérisée par un centre nécrotique, des bords minces et une peau œdémateuse. Une lésion ulcéreuse précoce a un diamètre inférieur à 2 cm et une lésion ulcéreuse tardive a un diamètre supérieur à 2 cm. Cochez cette case si le patient présente un ou des ulcères" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Ulcere (U)" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Ulc\ufffdre" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4" + }, + { + access: "r-------", + userGroupUid: "FhhAcewq9it", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", + id: "FhhAcewq9it" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "wwAK2yjjWQc", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", + id: "wwAK2yjjWQc" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "GEN_Age_atDiagnosis_T", + lastUpdated: "2021-03-19T17:24:34.207", + id: "DAPNB0WxKMH", + created: "2016-03-18T12:34:24.376", + name: "GEN_Age_atDiagnosis_T", + shortName: "Age at diagnosis", + aggregationType: "AVERAGE", + domainType: "TRACKER", + publicAccess: "--------", + description: "Age in years at the time of diagnosis", + valueType: "NUMBER", + formName: "Age (in years), at the time of diagnosis", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Age au diagnostic" + }, + { + property: "NAME", + locale: "fr", + value: "GEN_Age_atDiagnosis_T" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Age (en années) au moment du diagnostic" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Age en années au moment du diagnostic. Si l'enfant à moins d'un an, vous pouvez entrer 0 ou le nombre de mois en décimal (6 mois = 0.5 an)" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU" + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN" + }, + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "sVRPz2NvK37", + displayName: "NTD_AFRO", + id: "sVRPz2NvK37" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR" + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [ + { + id: "cYxiNeJY4hJ" + } + ], + aggregationLevels: [] + }, + { + code: "Skin_Cl_Lesion_Osteomyelitis_T", + lastUpdated: "2021-03-19T17:24:34.232", + id: "QzAHATV8EWv", + created: "2016-06-08T09:14:43.030", + name: "Skin_Cl_Lesion_Osteomyelitis_T", + shortName: "Osteomyelitis", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "Tick this box if the patient presents osteomyelitis.", + valueType: "TRUE_ONLY", + formName: "Osteomyelitis (O)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Ostéomyélite" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Osteomyelite" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Cochez cette case si le patient présente une ostéomyélite." + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Osteomyelite (O)" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Ost\ufffdomy\ufffdlite" + }, + { + property: "NAME", + locale: "fr", + value: "Ostéomyélite" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4" + }, + { + access: "r-------", + userGroupUid: "FhhAcewq9it", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", + id: "FhhAcewq9it" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "wwAK2yjjWQc", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", + id: "wwAK2yjjWQc" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_TxO_T", + lastUpdated: "2021-03-01T11:52:50.771", + id: "pUzlgt7peZT", + created: "2016-06-24T12:48:29.972", + name: "BU_TxO_T", + shortName: "Treatment outcome", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "TEXT", + formName: "Treatment outcome", + zeroIsSignificant: false, + optionSet: { + id: "ESSQcpsmBse" + }, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "GEN_FirstName_T", + lastUpdated: "2021-03-19T17:24:34.692", + id: "LJHNsKzZ8Mg", + created: "2016-09-13T16:46:09.752", + name: "GEN_FirstName_T", + shortName: "First name", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "TEXT", + formName: "First name", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "q9wZgtaDxWn" + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Prénom" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Prénom" + }, + { + property: "NAME", + locale: "fr", + value: "GEN_Prenom_T" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT" + }, + { + access: "r-------", + userGroupUid: "ZuT9b32Dhv5", + displayName: "SS_NTD_LSH_VL_KEN_Event_View", + id: "ZuT9b32Dhv5" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU" + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN" + }, + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "sVRPz2NvK37", + displayName: "NTD_AFRO", + id: "sVRPz2NvK37" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR" + }, + { + access: "r-------", + userGroupUid: "TbGA9fMJpCR", + displayName: "SS_NTD_LSH_VL_LabLog_Entry", + id: "TbGA9fMJpCR" + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "cy0qXsDxzxe", + displayName: "SS_NTD_LSH_VL_LabLog_View", + id: "cy0qXsDxzxe" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_Tx0_dateHealing_T", + lastUpdated: "2021-03-19T17:24:34.390", + id: "e8XmDDvKCT1", + created: "2016-06-08T09:14:40.036", + name: "BU_Tx0_date complete healing_T", + shortName: "Healing Date", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "Definition of complete healing", + valueType: "DATE", + formName: "Date of complete healing", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Date de guérison complete" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Date de guérison complete" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "Skin_Cl_Lesion_Loc_Abdomen_T", + lastUpdated: "2021-04-29T19:43:57.680", + id: "Sieb79556d6", + created: "2017-06-20T09:15:06.933", + name: "Skin_Cl_Lesion_Loc_Abdomen_T", + shortName: "Abdomen", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "Tick if lesions are present on abdomen", + valueType: "TRUE_ONLY", + formName: "Abdomen", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "Qu9goywu6cV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Abdomen" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5" + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v" + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "GEN_PLACE_Residence_Coords_T", + lastUpdated: "2021-04-08T15:11:39.489", + id: "NzJkoIvwyCh", + created: "2020-09-30T14:15:18.845", + name: "GEN_PLACE_Residence_Coords_T", + shortName: "Place of residence (as Coord)", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "COORDINATE", + formName: "Place of Residence Coords (DON'T FILL IT, it will be calculated from chosen Place of Residence)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "eK26I7dRbC4" + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Coordonnées Lieu de résidence (NE PAS REMPLIR, le système calcule automatiquement ce champ à partir de Lieu de résidence)" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Lieu de résidence" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "sCjEPgiOhP1", + displayName: "WIDP admins", + id: "sCjEPgiOhP1" + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "ZuT9b32Dhv5", + displayName: "SS_NTD_LSH_VL_KEN_Event_View", + id: "ZuT9b32Dhv5" + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU" + }, + { + access: "r-------", + userGroupUid: "Nn17qA7SD5K", + displayName: "NTD_LSH_LEISHMAN", + id: "Nn17qA7SD5K" + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN" + }, + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK" + }, + { + access: "r-------", + userGroupUid: "Fr3SskvRRFO", + displayName: "NTD Chagas disease", + id: "Fr3SskvRRFO" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR" + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-------", + userGroupUid: "TbGA9fMJpCR", + displayName: "SS_NTD_LSH_VL_LabLog_Entry", + id: "TbGA9fMJpCR" + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj" + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "cy0qXsDxzxe", + displayName: "SS_NTD_LSH_VL_LabLog_View", + id: "cy0qXsDxzxe" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "Skin_Cl_Lesion_Loc_Genitalia_T", + lastUpdated: "2021-04-29T19:43:57.695", + id: "QEFiXRZu7jY", + created: "2017-06-20T09:15:06.933", + name: "Skin_Cl_Lesion_Loc_Genitalia_T", + shortName: "Genitalia", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "Tick if lesions are present on genital area", + valueType: "TRUE_ONLY", + formName: "Genital area", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "Qu9goywu6cV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Organes génitaux" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Zone g\ufffdnitale" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Cochez cette case si le patient présente une lésion aux organes génitaux. N'oubliez pas: les yeux, les seins et les organes génitaux sont des sites critiques pour l'ulcère de Burul" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Organes génitaux" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5" + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v" + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "Lab_Spe_YNU_T", + lastUpdated: "2021-03-19T17:24:35.058", + id: "VYGsfmL36PY", + created: "2020-01-15T00:21:47.732", + name: "Lab_Spe_YNU_T", + shortName: "Specimen(s) collected (YNU)", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "INTEGER", + formName: "Specimen(s) collected", + zeroIsSignificant: false, + optionSet: { + id: "mJKvd2WXQtp" + }, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Echantillon(s) prélevé(s) " + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Echantillon(s) prélevé(s) " + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "FhhAcewq9it", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", + id: "FhhAcewq9it" + }, + { + access: "r-------", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "QCd81cBHcad", + displayName: "SS_NTD_LSH_VL_ARM_Tracker_View", + id: "QCd81cBHcad" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "wwAK2yjjWQc", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", + id: "wwAK2yjjWQc" + }, + { + access: "r-------", + userGroupUid: "owXIJqhlxHy", + displayName: "SS_NTD_LSH_VL_ARM_Tracker_Entry", + id: "owXIJqhlxHy" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "Skin_Cl_Lesion_Nodule_T", + lastUpdated: "2021-03-19T17:24:34.980", + id: "xkt9nkHj5CA", + created: "2016-06-08T09:14:42.658", + name: "Skin_Cl_Lesion_Nodule_T", + shortName: "Nodule", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "A nodule is a lesion that extends from the skin into the subcutaneous tissue. It is 1–2 cm in diameter. It is usually painless but may be itchy and the surrounding skin may be discoloured compared to adjacent areas.\nTick this box if the patient presents a nodule.", + valueType: "TRUE_ONLY", + formName: "Nodule (N)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "Skin_Cl_Lesion_Nodule_T" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Un nodule est une lésion qui s'étend depuis la peau qu'au tissu sous-cutané. Il mesure 1-2 cm de diamètre, est généralement sans douleur, mais peut gratter et la peau atour peau perdre de la couleur comparé aux zones voisines. Merci de cocher cette case si le patient présente un nodule. " + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Nodule" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Nodule (N)" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4" + }, + { + access: "r-------", + userGroupUid: "FhhAcewq9it", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", + id: "FhhAcewq9it" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "wwAK2yjjWQc", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", + id: "wwAK2yjjWQc" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "GEN_PLACE_Residence_Coordinates_T", + lastUpdated: "2021-03-01T11:52:51.132", + id: "o3F666LPvuM", + created: "2016-11-08T08:32:27.031", + name: "GEN_PLACE_Residence_Coordinates_T", + shortName: "Coordinates (Residence)", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "NUMBER", + formName: "Place of residence (Coordinates)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "GEN_PLACE_Residence_Coordonnees_T" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Coordonnées (Résidence)" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Lieu de résidence (Coordonnées)" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj" + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_Lab_Mycolactone_InitialResults_T", + lastUpdated: "2021-03-19T17:24:35.301", + id: "ggwHn45jtgh", + created: "2017-06-20T11:55:11.428", + name: "BU_Lab_Mycolactone_InitialResults_T", + shortName: "Mycolactone - Result", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "TEXT", + formName: "Mycolactone - Result", + zeroIsSignificant: false, + optionSet: { + id: "vQBOhNnE09a" + }, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Micolactone - Résultats" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Micolactone - Résultats" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "GEN_Family name_T", + lastUpdated: "2021-03-19T17:24:35.634", + id: "Q7dOlqe54eh", + created: "2016-09-13T16:46:09.752", + name: "GEN_Family name_T", + shortName: "Family name", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "TEXT", + formName: "Family name", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "q9wZgtaDxWn" + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Nom de famille" + }, + { + property: "NAME", + locale: "fr", + value: "GEN_NomFamille_T" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Nom de famille" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT" + }, + { + access: "r-------", + userGroupUid: "ZuT9b32Dhv5", + displayName: "SS_NTD_LSH_VL_KEN_Event_View", + id: "ZuT9b32Dhv5" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU" + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN" + }, + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "sVRPz2NvK37", + displayName: "NTD_AFRO", + id: "sVRPz2NvK37" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR" + }, + { + access: "r-------", + userGroupUid: "TbGA9fMJpCR", + displayName: "SS_NTD_LSH_VL_LabLog_Entry", + id: "TbGA9fMJpCR" + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "cy0qXsDxzxe", + displayName: "SS_NTD_LSH_VL_LabLog_View", + id: "cy0qXsDxzxe" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "Skin_Cl_Papule_Lesion_T", + lastUpdated: "2021-03-19T17:24:35.625", + id: "nidn593FWAF", + created: "2016-06-08T09:14:43.588", + name: "Skin_Cl_Lesion_Papule_T", + shortName: "Papule", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "A papule is defined as a painless, raised skin lesion, less than 1 cm in diameter. The surrounding skin is reddened.\nTick this box if the patient presents papule(s).", + valueType: "TRUE_ONLY", + formName: "Papule (P)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: "Une papule est définie comme une lésion cutanée surélevée et indolore, de moins de 1 cm de diamètre. La peau environnante est rougie. Cochez cette case si le patient présente des papules." + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Papule" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Papule (P)" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "FhhAcewq9it", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", + id: "FhhAcewq9it" + }, + { + access: "r-------", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "wwAK2yjjWQc", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", + id: "wwAK2yjjWQc" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "DET_NTD_BU_ITxO", + lastUpdated: "2021-03-19T17:24:35.586", + id: "KcYECFOPVpR", + created: "2019-06-05T07:38:23.929", + name: "BU_FTxO_T", + shortName: "BU - Final treatment outcome", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "The final treatment outcome is the final assessment when the patient is completely healed. ", + valueType: "TEXT", + formName: "Final treatment outcome", + zeroIsSignificant: false, + optionSet: { + id: "ESSQcpsmBse" + }, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "UB - Résultat final du traitement" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Le résultat final du traitement est l'évaluation finale lors que le patient est complétement guéri." + }, + { + property: "FORM_NAME", + locale: "fr", + value: "UB - Résultat final du traitement" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "GEN_Registry Number_T", + lastUpdated: "2021-03-01T11:52:51.344", + id: "IcCc2qu4DnR", + created: "2016-05-22T22:45:15.692", + name: "GEN_Registry Number_T", + shortName: "RegistryNumber", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "Please indicate the Patient number of the registry", + valueType: "TEXT", + formName: "Case No.", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "DET_NTD_SKIN_PIX_POSTx_FILE", + lastUpdated: "2021-03-01T11:52:51.559", + id: "YrSJMlEJWEC", + created: "2020-01-08T16:30:44.941", + name: "Skin_Pix_PostTx_FILE_T", + shortName: "Upload post-treatment photo", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "If you are using the web-based platform, please upload a photo of the lesion(s) when assessing the treatment outcome.", + valueType: "FILE_RESOURCE", + formName: "Upload post-treatment photo of the lesion", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "GEN_PLACE_VillageOfResidence_GPS_T", + lastUpdated: "2021-03-19T17:24:35.730", + id: "BYPbyk5W7SL", + created: "2016-02-28T01:06:28.092", + name: "GEN_PLACE_VillageOfResidence_GPS_T", + shortName: "Village of residence (coordinates)", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "In case you could not find the village in the organisation tree, please indicate the village of residence of the patient by 1/ indicating the latitude and longitude in the following format (X.XX.XX) or 2/ by clicking on the picture on the right and capturing the coordinates on the map directly (click right and \"set coordinates\"). If you choose the second option, you will be able to search for the village name on the search tab (up and left). ", + valueType: "COORDINATE", + formName: "Probable village of residence (coordinates)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Lieu de résidence (coordonées)" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Dans le cas où vous ne pourriez pas trouver le village dans l'arborescence, veuillez indiquer le village de résidence du patient 1/ en indiquant la latitude et la longitude dans le format suivant (X.XX.XX) ou 2/ en cliquant sur l'icone à droite et capturer les coordonnées sur la carte directement (cliquez à droite et \"définir les coordonnées\"). Si vous choisissez la deuxième option, vous pourrez rechercher le nom du village dans l'onglet de recherche (haut et gauche). vous n'avez pas pu trouver le village dans l'arborescence, veuillez indiquer le village de résidence du patient 1/ en indiquant la latitude et la longitude dans le format suivant (X.XX.XX) ou 2 / en cliquant sur l'icone à droite et capturer directement les coordonnées sur la carte (cliquer à droite et \"définir les coordonnées\"). Si vous choisissez la deuxième option, vous pourrez rechercher le nom du village dans l'onglet de recherche (haut et gauche)." + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Lieu de résidence (coordonées)" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "sVRPz2NvK37", + displayName: "NTD_AFRO", + id: "sVRPz2NvK37" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR" + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj" + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF" + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "DET_NTD_SKIN_PIX_POSTx_PIX", + lastUpdated: "2021-03-19T17:24:35.831", + id: "XyGxsyiIy4p", + created: "2019-06-06T03:34:05.151", + name: "Skin_Pix_PostTx_PIX_T", + shortName: "Take post-treatment photo", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "If you are using the Android App, please take a photo of lesion when assessing the treatment outcome.", + valueType: "IMAGE", + formName: "Take post-treatment photo of the lesion", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Chargez l'image post-traitement" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Image post-traitement" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "Skin_Cl_Lesion_Plaque_T", + lastUpdated: "2021-03-19T17:24:36.218", + id: "qJOXKn3wSLS", + created: "2016-06-08T09:14:43.215", + name: "Skin_Cl_Lesion_Plaque_T", + shortName: "Plaque", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "A plaque is a firm, painless, elevated, well-demarcated lesion more than 2 cm in diameter with irregular edges. The skin over the lesion is often reddened or otherwise discolored. \nTick this box if the patient presents plaque(s).", + valueType: "TRUE_ONLY", + formName: "Plaque (Q)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: " Une plaque est une lésion ferme, indolore, surélevée et bien délimitée, de plus de 2 cm de diamètre et présentant des bords irréguliers. La peau recouvrant la lésion est souvent rougie ou décolorée. Cochez cette case si le patient présente des plaques." + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Plaque" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Plaque (Q)" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4" + }, + { + access: "r-------", + userGroupUid: "FhhAcewq9it", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", + id: "FhhAcewq9it" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "wwAK2yjjWQc", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", + id: "wwAK2yjjWQc" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_Tx_ABType_T", + lastUpdated: "2021-03-01T11:53:03.841", + id: "rWFQhbrnfMD", + created: "2016-06-08T09:26:37.955", + name: "BU_Tx_ABType_T", + shortName: "Antibiotics", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "If streptomycin is contraindicated (pregnancy, previous treatment with streptomycin), please contact the national programme manager or a designated referral treatment centre.", + valueType: "TEXT", + formName: "Antibiotics type", + zeroIsSignificant: false, + optionSet: { + id: "cYVMBWrU2Pi" + }, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Antiobiotiques" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Type d'antibiotiques" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: " Si la streptomycine est contre-indiquée (grossesse, traitement antérieur à la streptomycine), veuillez contacter le responsable du programme national ou un centre de traitement de référence désigné." + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "Skin_Cl_Lesion_Loc_Buttocks perineum_T", + lastUpdated: "2021-04-29T19:43:57.686", + id: "UY4A4oRdvqT", + created: "2017-06-20T09:15:06.933", + name: "Skin_Cl_Lesion_Loc_Buttocks perineum_T", + shortName: "Buttocks or Perineum", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "Tick if lesions are present on buttocks or perineum", + valueType: "TRUE_ONLY", + formName: "Buttocks or Perineum", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "Qu9goywu6cV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Fesses et périnée" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Fesses et périnée (FE)" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: " Cochez cette case si le patient présente une lésion aux fesses ou au périnée." + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5" + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v" + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "GEN_Sexe_T", + lastUpdated: "2021-03-19T17:24:36.558", + id: "Z8W89lDV4IL", + created: "2017-08-18T16:15:07.454", + name: "GEN_Sexe_T", + shortName: "Gender", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "Gender", + valueType: "TEXT", + formName: "Gender", + zeroIsSignificant: false, + optionSet: { + id: "apzFCMWeffA" + }, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "q9wZgtaDxWn" + }, + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: "Genre" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Genre" + }, + { + property: "NAME", + locale: "fr", + value: "GEN_Genre_T" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Genre" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "r-------", + userGroupUid: "Ot2xz1vXELL", + displayName: "SS_NTD_CH_Healthcare_Event_View", + id: "Ot2xz1vXELL" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT" + }, + { + access: "r-------", + userGroupUid: "ZuT9b32Dhv5", + displayName: "SS_NTD_LSH_VL_KEN_Event_View", + id: "ZuT9b32Dhv5" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU" + }, + { + access: "r-------", + userGroupUid: "fth3On7vInl", + displayName: "NTD", + id: "fth3On7vInl" + }, + { + access: "r-------", + userGroupUid: "ln8nJQmOSpJ", + displayName: "SS_NTD_CH_Healthcare_Event_Entry", + id: "ln8nJQmOSpJ" + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN" + }, + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK" + }, + { + access: "r-------", + userGroupUid: "sVRPz2NvK37", + displayName: "NTD_AFRO", + id: "sVRPz2NvK37" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR" + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj" + }, + { + access: "r-------", + userGroupUid: "TbGA9fMJpCR", + displayName: "SS_NTD_LSH_VL_LabLog_Entry", + id: "TbGA9fMJpCR" + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF" + }, + { + access: "rw------", + userGroupUid: "Fr3SskvRRFO", + displayName: "NTD Chagas disease", + id: "Fr3SskvRRFO" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "cy0qXsDxzxe", + displayName: "SS_NTD_LSH_VL_LabLog_View", + id: "cy0qXsDxzxe" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "Petar Jovanovic", + id: "q9wZgtaDxWn", + userUid: "q9wZgtaDxWn" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "Skin_Cl_Classif_T", + lastUpdated: "2021-03-19T17:24:36.345", + id: "HAt5fbygnrg", + created: "2016-06-08T09:14:38.421", + name: "Skin_Cl_Classification_T", + shortName: "Classification", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "New case: a patient who is presenting the current symptoms for the first time.\nRecurrent/Relapse: a patient who has presented a previous episode for the same disease in the past. \nRe-treatment case: a patient who has already received treatment for the current episode (transfer in, defaulter, lost to follow up...) ", + valueType: "TEXT", + formName: "Classification of patient", + zeroIsSignificant: false, + optionSet: { + id: "Al6DsS3DTve" + }, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Classification du patient" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Nouveau cas: un patient qui présente les symptômes actuels pour la premières fois. Recurrent/Rechute: un patient qui a déjà présenté un épisode de la même maladie dans le passé. Re-traitement: un patient qui a déjà reçu un traitement pour l'épisode actuel de la maladie (transfert, abandon du traitement précédent, perdu de vue...) " + }, + { + property: "NAME", + locale: "fr", + value: "Skin_Cl_Classification_T" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Classification" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Classification" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "Skin_Cl_Lesion_Loc_Back_T", + lastUpdated: "2021-04-29T19:43:57.682", + id: "PRaonbusSOU", + created: "2017-06-20T09:15:06.933", + name: "Skin_Cl_Lesion_Loc_Back_T", + shortName: "Back", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "Tick if lesions are present on back", + valueType: "TRUE_ONLY", + formName: "Back", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "Qu9goywu6cV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Dos" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Dos (DO)" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5" + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v" + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "DET_NTD_BU_TxO", + lastUpdated: "2021-03-19T17:24:36.613", + id: "PMlpZH7wYON", + created: "2019-06-05T07:49:17.800", + name: "BU_ITxO_T", + shortName: "BU - Initial treatment outcome (D56)", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "The initial treatment outcome is due at the initial assessment at the end of the 56 days of antibiotic treatment.", + valueType: "TEXT", + formName: "Initial treatment outcome on Day 56 (end of antibiotic treatment)", + zeroIsSignificant: false, + optionSet: { + id: "tGr5pbgz67Z" + }, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "UB - Résultat initial du traitement (J56)" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: " Le résultat du traitement initial est dû lors de l'évaluation initiale à la fin des 56 jours de traitement antibiotique." + }, + { + property: "FORM_NAME", + locale: "fr", + value: "UB - Résultat initial du traitement à J56 (fin du traitement antibiotique)" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "Skin_Cl_Lesion_Loc_Head Neck_T", + lastUpdated: "2021-04-29T19:43:57.697", + id: "j9OfhXT92Ej", + created: "2017-06-20T09:15:06.933", + name: "Skin_Cl_Lesion_Loc_Head Neck_T", + shortName: "HeadNeck", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "Tick if lesions are present on head or neck; do not tick if only on face, ears or eyes (separate categories)", + valueType: "TRUE_ONLY", + formName: "Head or Neck", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "Qu9goywu6cV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Tete / Cou (TC)" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: " Cochez cette case si le patient présente une lésion à la tête ou au cou." + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "T\ufffdte / Cou" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Tete / Cou" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5" + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v" + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "Skin_Cl_Lesion_Loc_Lower Limb_T", + lastUpdated: "2021-04-29T19:43:57.699", + id: "adfHPJQRI3C", + created: "2017-06-20T09:15:06.933", + name: "Skin_Cl_Lesion_Loc_Lower Limb_T", + shortName: "LowerLimb", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "Tick if lesions are present on lower limb(s), do not tick if only on toe(s)", + valueType: "TRUE_ONLY", + formName: "Lower Limb(s)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "Qu9goywu6cV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: " Cochez cette case si le patient présente une lésion aux membres inférieurs." + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Membre inferieur (MI)" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Membre inferieur" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Membre inf\ufffdrieur" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5" + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v" + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "Skin_Cl_Lesion_Loc_Breast_T", + lastUpdated: "2021-04-29T19:43:57.684", + id: "GqDsjatLQXl", + created: "2017-06-20T09:15:06.933", + name: "Skin_Cl_Lesion_Loc_Breast_T", + shortName: "Breast", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "Tick if lesions are present on chest", + valueType: "TRUE_ONLY", + formName: "Chest", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "Qu9goywu6cV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: "Cochez cette case si la patiente présente une lésion au sein. N'oubliez pas: les yeux, les seins et les organes génitaux sont des sites critiques pour l'ulcère de Buruli." + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Poitrine" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Poitrine (BR)" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5" + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v" + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_Cl_category_T", + lastUpdated: "2021-03-19T17:24:37.242", + id: "UwC7RVH9Bwv", + created: "2016-06-08T09:14:38.784", + name: "BU_Cl_category_T", + shortName: "Category", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "Category I: A single lesion 5cm or less / Category II: A single lesion 5-15cm / Category III: A single lesion more than 15 cm or multiple lesions or lesions at critical sites or osteomyelitis", + valueType: "TEXT", + formName: "BU case category", + zeroIsSignificant: false, + optionSet: { + id: "nF2JkM7IXth" + }, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Catégorie" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Catégorie du cas d'UB" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Catégorie I: Une seule lésion de 5 cm ou moins / Catégorie II: Une seule lésion de 5-15cm / Catégorie III: Une seule lésion de plus de 15 cm ou de multiples lésions ou lésion au niveau de sites critiques ou ostéomyélite" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_Tx_AB_Completed_T", + lastUpdated: "2021-03-19T17:24:37.240", + id: "wiZbIU6sFG5", + created: "2016-06-24T12:41:09.641", + name: "BU_Tx_AB_Completed_T", + shortName: "BU - AB completed", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "The treatment with antibiotics is considered as completed if the patient has taken 49 to 56 days of antibiotics.", + valueType: "TEXT", + formName: "Antibiotic treatment completed", + zeroIsSignificant: false, + optionSet: { + id: "TqJC6mhsOv6" + }, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Antibiotique terminé" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Le traitement antibiotique est considéré comme terminé si le patient a pris des antibiotiques pendant 49 à 56 jours." + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "L'antibiotique est considéré comme terminé si le patient a pris des antibiotiques 56 jours." + }, + { + property: "NAME", + locale: "fr", + value: "BU_TxO_AbTerm2_T" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "AB terminé" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "Skin_Cl_Lesion_Loc_Upper limb_T", + lastUpdated: "2021-04-29T19:43:57.703", + id: "UCXRQtdD8K5", + created: "2017-06-20T09:15:06.933", + name: "Skin_Cl_Lesion_Loc_Upper limb_T", + shortName: "UpperLimb", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "Tick if lesions are present on upper limb(s); do not tick if only on finger(s) or thumb(s)", + valueType: "TRUE_ONLY", + formName: "Upper Limb(s)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "Qu9goywu6cV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: " Cochez cette case si le patient présente une lésion aux membres supérieurs." + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Membre superieur (MS)" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Membre superieur" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Membre sup\ufffdrieur" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5" + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v" + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "Skin_Cl_Lesion_Oedema_T", + lastUpdated: "2021-03-19T17:24:37.334", + id: "RETdv2kznbH", + created: "2016-06-08T09:14:42.842", + name: "Skin_Cl_Lesion_Oedema_T", + shortName: "Oedema", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "An oedema is a diffuse, extensive, non-pitting, ill defined margin, firm, and may be painful with or without color change over the affected skin. \nTick this box if the patient presents oedema. ", + valueType: "TRUE_ONLY", + formName: "Oedema (E)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: "Un oedème est une lésion diffuse, étendue, avec des marges mal définie, ferme et qui peut être douloureux, avec ou sans changement de couleur de la peau affectée. Merci de cocher cette case si le patient présente un oedeme." + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Oedeme" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Œdème" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Oedeme (E)" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "\ufffdd\ufffdme" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "FhhAcewq9it", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", + id: "FhhAcewq9it" + }, + { + access: "r-------", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "wwAK2yjjWQc", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", + id: "wwAK2yjjWQc" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "GEN_PLACE_Residence_OU_T", + lastUpdated: "2021-03-19T17:24:37.665", + id: "mwIgH1XXf6p", + created: "2016-05-22T22:45:16.647", + name: "GEN_PLACE_Residence_OU_T", + shortName: "Place of residence (as OU)", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "Please indicate the place of residence of the patient as finest as possible by selecting it in the organisation units tree.", + valueType: "ORGANISATION_UNIT", + formName: "Place of residence (as organization unit)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "q9wZgtaDxWn" + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Lieu de résidence (comme unité d'organisation)" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Lieu de résidence" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Veuillez indiquer le lieu de résidence de la manière la plus fine possible (idéalement le village de résidence), en le sélectionant dans l'arbre des unités d'organisation." + }, + { + property: "NAME", + locale: "fr", + value: "GEN_PlaceOU_T" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT" + }, + { + access: "r-------", + userGroupUid: "ZuT9b32Dhv5", + displayName: "SS_NTD_LSH_VL_KEN_Event_View", + id: "ZuT9b32Dhv5" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU" + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN" + }, + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "sVRPz2NvK37", + displayName: "NTD_AFRO", + id: "sVRPz2NvK37" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR" + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj" + }, + { + access: "r-------", + userGroupUid: "TbGA9fMJpCR", + displayName: "SS_NTD_LSH_VL_LabLog_Entry", + id: "TbGA9fMJpCR" + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "cy0qXsDxzxe", + displayName: "SS_NTD_LSH_VL_LabLog_View", + id: "cy0qXsDxzxe" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "Skin_Cl_Lesion_Loc_Eye_T", + lastUpdated: "2021-04-29T19:43:57.692", + id: "qafL6BdLAkH", + created: "2017-06-20T09:15:06.933", + name: "Skin_Cl_Lesion_Loc_Eye_T", + shortName: "Eye", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "Tick if lesions are present on eye(s)", + valueType: "TRUE_ONLY", + formName: "Eye", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "Qu9goywu6cV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: "Cochez cette case si la patiente présente une lésion aux yeux. N'oubliez pas: les yeux, les seins et les yeux sont des sites critiques pour l'ulcère de Burul" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Oeil" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Oeil" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "\ufffdil" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5" + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA" + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v" + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "GEN_Locality_T", + lastUpdated: "2021-03-01T11:54:46.660", + id: "ffvtB32AWOF", + created: "2016-02-28T01:07:52.593", + name: "GEN_Locality_T", + shortName: " Village/Town (text)", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "If you were not able to find the place of residence of the patient by using the org unit tree, please type here the name of the village of residence.", + valueType: "TEXT", + formName: "Village/town of residence (as text)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Village/ville (texte)" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Si vous n'avez pas pu trouver le village de résidence du patient en utilisant l'arbre d'unités d'organisation, veuillez écrire ici le nom du village de résidence." + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Village/ville de résidence (texte)" + }, + { + property: "NAME", + locale: "fr", + value: "GEN_Localité_T" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_Lab_PCR_Initial Results_T", + lastUpdated: "2021-03-19T17:24:37.498", + id: "JAyZaIKj2zv", + created: "2017-06-20T11:55:11.428", + name: "BU_Lab_PCR_Initial Results_T", + shortName: "BU PCR - Result", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "TEXT", + formName: "BU PCR - Result", + zeroIsSignificant: false, + optionSet: { + id: "vQBOhNnE09a" + }, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "PCR - Résultats " + }, + { + property: "FORM_NAME", + locale: "fr", + value: "PCR - Résultats " + }, + { + property: "FORM_NAME", + locale: "fr", + value: "PCR pour UB - Résultats " + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "UB - PCR - Résultats " + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY" + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + } + ], + categories: [ + { + code: "default", + created: "2017-05-10T17:53:55.152", + lastUpdated: "2021-08-07T06:18:19.628", + name: "default", + id: "DMyxTSpvKOp", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + dataDimension: false, + user: { + id: "eK26I7dRbC4" + }, + userGroupAccesses: [], + attributeValues: [], + translations: [], + userAccesses: [], + categoryOptions: [ + { + id: "Y7fcspgsU43" + } + ] + } + ], + programIndicators: [ + { + code: "PI_BU02_EPI_ageLT5years", + lastUpdated: "2021-03-01T11:52:47.237", + id: "B6EhPLOJf2y", + created: "2016-11-03T14:46:09.309", + name: "PI BU02 number of cases < 5 years", + shortName: "PI_BU02_EPI_ageLT5years", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.Xii6gy92ebp} < 5", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.512", + id: "Llq2khCZz98", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.512", + id: "G5v3Jk2pDej", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_Clin_Breast", + lastUpdated: "2021-03-01T11:52:46.981", + id: "rqqYID1h4P2", + created: "2016-11-03T15:42:43.693", + name: "PI BU02 number case with breast lesion", + shortName: "PI_BU02_Clin_Breast", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.GqDsjatLQXl} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.515", + id: "d5gyZU5X07q", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.515", + id: "e0NzQNDuo6z", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_Clin_Osteomyelitis", + lastUpdated: "2021-03-01T11:52:47.245", + id: "sWOHf2pOSSF", + created: "2016-11-03T15:30:29.969", + name: "PI BU02 number of cases with osteomyelitis", + shortName: "PI_BU02_Clin_Osteomyelitis", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.QzAHATV8EWv} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.518", + id: "BoHw1lljgdo", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.518", + id: "N1hfQcHgr0C", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_Tx_AB", + lastUpdated: "2021-03-01T11:52:47.426", + id: "OX3WVVRP6dJ", + created: "2016-11-03T16:39:37.922", + name: "PI BU02 number of cases treated with AB", + shortName: "PI_BU02_Tx_AB", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + description: "Number of cases treated with Antibiotics", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.COtqliXo7tU} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.521", + id: "BcucCztRg7F", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.521", + id: "amNH3oA62CA", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_Lab_Confirmed", + lastUpdated: "2021-03-01T11:52:47.456", + id: "hb7FMIXMtFs", + created: "2020-01-16T00:02:03.756", + name: "PI BU02 total number of lab-confirmed cases", + shortName: "PI_BU02_Lab_Confirmed", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.JAyZaIKj2zv} == 'Positive'|| #{hgpXE2JX97x.ggwHn45jtgh} == 'Positive'", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "ilJDyuqlwDC" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2020-01-16T00:25:56.927", + id: "bEYxf0xy70h", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2020-01-16T00:25:56.926", + id: "tdgzmAO02R8", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_Tx_AB_Completed", + lastUpdated: "2021-03-01T11:52:47.456", + id: "iOdLpGU9muR", + created: "2020-01-16T00:08:54.420", + name: "PI BU02 number of cases who completed AB", + shortName: "PI_BU02_Tx_AB_Completed", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + description: "Number of cases who completed full course of antibiotics", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.wiZbIU6sFG5} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "ilJDyuqlwDC" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2020-01-16T00:08:54.421", + id: "R6OuVRBuDQ7", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2020-01-16T00:08:54.422", + id: "qjqLIIhGgYN", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_Clin_Buttocks_perineum", + lastUpdated: "2021-03-01T11:52:47.690", + id: "yyKJZUWWFXH", + created: "2016-11-03T16:12:34.037", + name: "PI BU02 number of cases with lesion(s) in buttocks perineum", + shortName: "PI_BU02_Clin_Buttocks_perineum", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.UY4A4oRdvqT} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.523", + id: "RpHl28bZQg6", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.523", + id: "CNyJuTsjIbD", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_EPI_Cat_III", + lastUpdated: "2021-03-01T11:52:47.755", + id: "IqA3lx2QCb9", + created: "2016-11-03T15:12:37.853", + name: "PI BU02 number of cases from category III", + shortName: "BU02_EPI_Cat_III", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.UwC7RVH9Bwv} == 'Op_BU_Cat_III'", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.526", + id: "ykRlULCPBoP", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.526", + id: "Sj7oel80HH3", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_Clin_Papule", + lastUpdated: "2021-03-01T11:52:47.734", + id: "V2At1FLXyON", + created: "2016-11-03T15:32:11.451", + name: "PI BU02 number of cases with papule", + shortName: "PI_BU02_Clin_Papule", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.nidn593FWAF} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.528", + id: "wvNgyJoe7kG", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.529", + id: "TybnOO7M5AM", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_EPI_Cat_II", + lastUpdated: "2021-03-01T11:52:47.765", + id: "MDE3pQdkE2A", + created: "2016-11-03T15:11:27.386", + name: "PI BU02 number of cases from category II", + shortName: "PI_BU02_EPI_Cat_II", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.UwC7RVH9Bwv} == 'Op_BU_Cat_II'", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.531", + id: "oF8dvQTN4Hn", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.531", + id: "N1styYEKSg3", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_Clin_Classif_Recurrent", + lastUpdated: "2021-03-01T11:52:47.764", + id: "vjci8djDsDh", + created: "2016-11-03T16:52:40.568", + name: "PI BU02 total number of recurrent cases", + shortName: "PI_BU02_Clin_Classif_Recurrent", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.HAt5fbygnrg} == 'Recurrent'", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.534", + id: "eRP7FNiiwj7", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.534", + id: "pqM5JUfuwLG", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_EPI_Cat_I", + lastUpdated: "2021-03-01T11:52:47.989", + id: "QaZLTzTEnmG", + created: "2016-11-03T15:10:33.930", + name: "PI BU02 number of cases from category I", + shortName: "PI_BU02_EPI_Cat_I", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.UwC7RVH9Bwv} == 'Op_BU_Cat_I'", + decimals: 0, + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.536", + id: "ipWh2dEv4w6", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.537", + id: "cb0LTq7NZYN", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_EPI_malecases", + lastUpdated: "2021-03-01T11:52:48.016", + id: "YdBwBWfTZtz", + created: "2016-11-03T14:15:38.110", + name: "PI BU02 number of male cases", + shortName: "PI_BU02_EPI_malecases", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.Z8W89lDV4IL} == 'Male'", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.542", + id: "jPgZWG69tzZ", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.542", + id: "cXkTTJPogkh", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + lastUpdated: "2021-03-01T11:52:48.053", + id: "dogB9m0Pu26", + created: "2016-11-03T14:30:48.357", + name: "PI BU02 total number of cases", + shortName: "PI_BU02_EPI_total_number_of_cases", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.539", + id: "VUEH4IN4PX1", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.539", + id: "ptE0g1sZMV4", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_Clin_Back", + lastUpdated: "2021-03-01T11:52:48.053", + id: "rJj24z4yg9k", + created: "2016-11-03T16:10:57.629", + name: "PI BU02 number case with back lesion", + shortName: "PI_BU02_Clin_Back", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.PRaonbusSOU} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.544", + id: "ZzcCXsOHsyY", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.544", + id: "AvK62Jhokom", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_Clin_Oedema", + lastUpdated: "2021-03-01T11:52:48.475", + id: "OvnjxVRoHYr", + created: "2016-11-03T15:26:25.361", + name: "PI BU02 number of cases with oedema", + shortName: "PI_BU02_Clin_Oedema", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.RETdv2kznbH} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.551", + id: "SQt8RKDUPeF", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.551", + id: "SjhFvBJojgx", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_EPI_ageGTE15years", + lastUpdated: "2021-03-01T11:52:48.034", + id: "XlvkovvifMC", + created: "2016-11-03T14:56:38.114", + name: "PI BU02 number of cases ≥ 15 years", + shortName: "PI_BU02_EPI_ageGTE15years", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.Xii6gy92ebp} >= 15", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.547", + id: "FJnlDV0f7Nq", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.547", + id: "kkMZxJSzw3J", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_Clin_Abdomen", + lastUpdated: "2021-03-01T11:52:48.255", + id: "dBXh4OQdRA8", + created: "2016-11-03T15:46:10.948", + name: "PI BU02 number case with abdomen lesion", + shortName: "PI_BU02_Clin_Abdomen", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.Sieb79556d6} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.549", + id: "AtTn2VJgivc", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.549", + id: "ulqoKm4LZ1e", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_Clin_Lower_Limb", + lastUpdated: "2021-03-01T11:52:48.295", + id: "PXVrhxCqLw0", + created: "2016-11-03T16:18:23.434", + name: "PI BU02 number case with lower limb lesion", + shortName: "PI_BU02_Clin_Lower_Limb", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.adfHPJQRI3C} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.553", + id: "ytwkCibnutF", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.554", + id: "EgdqYIYhDUh", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_Clin_joint_limitation", + lastUpdated: "2021-03-01T11:52:48.287", + id: "zSvSCVa4xa2", + created: "2016-11-03T16:27:09.888", + name: "PI_BU02 number of cases with joint limitation", + shortName: "BU02_Clin_joint_limitation", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + description: "Number of cases with (+) limitation of movement at any joint", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.DHmAP1MjEoK} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.556", + id: "xcPwLythycq", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.556", + id: "gTvgDWnfD64", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_Clin_Ulcer", + lastUpdated: "2021-03-01T11:52:48.426", + id: "OZXTMVGQX60", + created: "2016-11-03T15:33:23.782", + name: "PI BU02 number of cases with ulcer", + shortName: "PI_BU02_Clin_Ulcer", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.mTyzapAF9iT} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.558", + id: "dcH2IMDZTdM", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.558", + id: "Ym0O3mpAniO", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_EPI_unknowngender", + lastUpdated: "2021-03-01T11:52:48.523", + id: "cAvE0gxXLTn", + created: "2016-11-03T14:19:09.065", + name: "PI BU02 number of cases of unknown gender", + shortName: "PI_BU02_EPI_unknowngender", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.Z8W89lDV4IL} == 'Gender unknown'", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.560", + id: "oeZrObBXY2J", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.560", + id: "z7r9xBGz8rL", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_EPI_age5-14years", + lastUpdated: "2021-03-01T11:52:48.532", + id: "CW2jgrNARub", + created: "2016-11-03T14:51:23.451", + name: "PI BU02 number of cases 5-14 years", + shortName: "PI_BU02_EPI_age5-14years", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.Xii6gy92ebp} >= 5 and #{hgpXE2JX97x.Xii6gy92ebp} < 15", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.563", + id: "HnJrvRNEPbZ", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.563", + id: "f3dCEJjvVLA", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_Clin_Upper_limb", + lastUpdated: "2021-03-01T11:52:48.540", + id: "D0qX6WlovHF", + created: "2016-11-03T16:17:08.019", + name: "PI BU02 number case with Upper Limb lesion", + shortName: "PI_BU02_Clin_Upper_limb", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.UCXRQtdD8K5} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.568", + id: "OlJYZmbwFwV", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.568", + id: "uvGOaJJ8Lzk", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_Clin_Thorax", + lastUpdated: "2021-03-01T11:52:48.735", + id: "if7Bfu8OVQ7", + created: "2016-11-03T16:15:43.807", + name: "PI BU02 number case with Thorax lesion", + shortName: "PI_BU02_Clin_Thorax", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.TqqxE4hmd6Q} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "ilJDyuqlwDC" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2020-01-15T23:55:50.529", + id: "DBNYsS9TAvK", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2020-01-15T23:55:50.529", + id: "jEETcjwekz3", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_Clin_Eye", + lastUpdated: "2021-03-01T11:52:48.772", + id: "YjRz8Gdlbb7", + created: "2016-11-03T15:41:52.422", + name: "PI BU02 number case with eye lesion", + shortName: "PI_BU02_Clin_Eye", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.qafL6BdLAkH} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.572", + id: "XHxInTAUzqi", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.572", + id: "Dn0JO6RPPhP", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_Clin_Genitalia", + lastUpdated: "2021-03-01T11:52:48.707", + id: "Yq1EGyBFPFd", + created: "2016-11-03T15:45:09.002", + name: "PI BU02 number case with genitalia lesion", + shortName: "PI_BU02_Clin_Genitalia", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.QEFiXRZu7jY} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.574", + id: "UWV0fRNiJoc", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.574", + id: "Q0siQ56KAy3", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_Clin_Classif_Newcases", + lastUpdated: "2021-03-01T11:52:48.807", + id: "ASUNQNX0g7g", + created: "2016-11-03T16:49:17.984", + name: "PI BU02 total number of new cases", + shortName: "PI_BU02_Clin_Classif_Newcases", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.HAt5fbygnrg} == 'New'", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.577", + id: "m2C4eE9ryNv", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.577", + id: "ByFvuwLSeFC", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_Clin_Nodule", + lastUpdated: "2021-03-01T11:52:48.790", + id: "l9MNtlVNYkd", + created: "2016-11-03T15:24:04.048", + name: "PI BU02 number of cases with nodule", + shortName: "PI_BU02_Clin_Nodule", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.xkt9nkHj5CA} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.579", + id: "I1S8R0bahPH", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.579", + id: "l2M0bq4CLBM", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_Clin_Head_Neck", + lastUpdated: "2021-03-01T11:52:48.848", + id: "CbuU9UDY9Ll", + created: "2016-11-03T16:14:39.938", + name: "PI BU02 number case with head and neck lesion", + shortName: "PI_BU02_Clin_Head_Neck", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.j9OfhXT92Ej} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.581", + id: "eGGmJcOMmGt", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.582", + id: "YDOhsqOc48c", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_EPI_Cat_unkown", + lastUpdated: "2021-03-01T11:52:48.930", + id: "ewyVtLavgu8", + created: "2016-11-03T15:13:44.838", + name: "PI BU02 number of cases from category unkown", + shortName: "PI_BU02_EPI_Cat_unkown", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.UwC7RVH9Bwv} == \" Op_BU_Cat_unknown \"", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.584", + id: "DBUO6rxHCW5", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.584", + id: "wzcyZZJZsrw", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "PI_BU02_EPI_femalecases", + lastUpdated: "2021-03-01T11:52:48.959", + id: "yi3JBIhx081", + created: "2016-11-03T13:18:37.422", + name: "PI BU02 number of female cases", + shortName: "PI_BU02_EPI_femalecases", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.Z8W89lDV4IL} == 'Female'", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.587", + id: "PRUWZ0O6MBs", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.587", + id: "FtJxPsl5btM", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + lastUpdated: "2021-03-01T11:52:48.928", + id: "QzEuFzKGzm4", + created: "2016-11-03T15:34:05.522", + name: "PI BU02 number of cases with plaque", + shortName: "PI_BU02_Clin_Plaque", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.qJOXKn3wSLS} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.589", + id: "b6JmLeeQuUV", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2019-05-25T18:45:24.590", + id: "XoxuJSDOoBt", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + } + ], + programStageDataElements: [ + { + created: "2016-06-08T13:43:40.080", + lastUpdated: "2021-03-01T11:32:51.933", + id: "SS8ELfQ7k8Q", + displayInReports: true, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 3, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "HAt5fbygnrg" + } + }, + { + created: "2016-06-08T13:43:40.221", + lastUpdated: "2021-03-01T11:32:51.934", + id: "CRNrasJPwQn", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 14, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "PRaonbusSOU" + } + }, + { + created: "2016-06-08T13:43:40.105", + lastUpdated: "2021-03-01T11:32:51.936", + id: "ikP103Fn9Sm", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 5, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "RETdv2kznbH" + } + }, + { + created: "2016-11-10T21:03:54.212", + lastUpdated: "2021-03-01T11:32:51.935", + id: "SrbZNYPXNB7", + displayInReports: true, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 31, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "rWFQhbrnfMD" + } + }, + { + created: "2016-06-08T13:43:40.179", + lastUpdated: "2021-03-01T11:32:51.938", + id: "wyoMSLO3Yth", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 11, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "GqDsjatLQXl" + } + }, + { + created: "2020-01-14T21:28:13.551", + lastUpdated: "2021-03-01T11:32:51.933", + id: "S8raF2aCPal", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 36, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "LJHNsKzZ8Mg" + } + }, + { + created: "2020-01-14T21:28:13.551", + lastUpdated: "2021-03-01T11:32:51.937", + id: "E66yBUG6gTG", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 38, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "gc8rKk6Hax6" + } + }, + { + created: "2016-06-08T13:43:40.234", + lastUpdated: "2021-03-01T11:32:51.934", + id: "bab7K5xD28E", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 15, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "UY4A4oRdvqT" + } + }, + { + created: "2016-06-08T13:43:40.011", + lastUpdated: "2021-03-01T11:32:51.937", + id: "X0M4oNWjsTH", + displayInReports: true, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 0, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "mwIgH1XXf6p" + } + }, + { + created: "2016-06-08T13:43:40.263", + lastUpdated: "2021-03-01T11:32:51.936", + id: "sHKURVMWYuK", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 17, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "TqqxE4hmd6Q" + } + }, + { + created: "2016-06-08T13:43:40.247", + lastUpdated: "2021-03-01T11:32:51.937", + id: "oWiZUXFOL0K", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 16, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "j9OfhXT92Ej" + } + }, + { + created: "2016-06-08T13:43:40.167", + lastUpdated: "2021-03-01T11:32:51.934", + id: "aOPTA1pWe9Q", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 10, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "qafL6BdLAkH" + } + }, + { + created: "2016-06-08T13:43:40.152", + lastUpdated: "2021-03-01T11:32:51.937", + id: "KWGF449seo2", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 9, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "qJOXKn3wSLS" + } + }, + { + created: "2016-06-08T13:43:40.290", + lastUpdated: "2021-03-01T11:32:51.935", + id: "jEkBHzTLrbh", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 19, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "UwC7RVH9Bwv" + } + }, + { + created: "2016-11-10T21:00:24.060", + lastUpdated: "2021-03-01T11:32:51.934", + id: "rPHoXZ87SHA", + displayInReports: true, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 30, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "JAyZaIKj2zv" + } + }, + { + created: "2016-11-10T21:00:24.035", + lastUpdated: "2021-03-01T11:32:51.934", + id: "DUy9Sosd4t0", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 28, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "dRoQ0J5dKuO" + } + }, + { + created: "2020-01-14T21:28:13.553", + lastUpdated: "2021-03-01T11:32:51.937", + id: "AFGlVbgoLHS", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 45, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "xIo6fsgpmdN" + } + }, + { + created: "2020-01-14T21:28:13.552", + lastUpdated: "2021-03-01T11:32:51.935", + id: "N3nkAIkavnF", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 43, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "XyGxsyiIy4p" + } + }, + { + created: "2016-09-13T16:48:18.132", + lastUpdated: "2021-03-01T11:32:51.937", + id: "HF4KB6yBSBu", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 25, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "ffvtB32AWOF" + } + }, + { + created: "2016-06-08T13:43:40.305", + lastUpdated: "2021-03-01T11:32:51.937", + id: "secyJOzy4J4", + displayInReports: true, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 20, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "DHmAP1MjEoK" + } + }, + { + created: "2016-06-08T13:43:40.207", + lastUpdated: "2021-03-01T11:32:51.935", + id: "fFRvBwrKPbL", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 13, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "Sieb79556d6" + } + }, + { + created: "2016-11-10T21:00:23.945", + lastUpdated: "2021-03-01T11:32:51.937", + id: "I7uqIgj34yA", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 27, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "wiZbIU6sFG5" + } + }, + { + created: "2016-06-08T13:43:40.128", + lastUpdated: "2021-03-01T11:32:51.938", + id: "SoMCsw5q49F", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 7, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "nidn593FWAF" + } + }, + { + created: "2016-06-08T13:43:40.276", + lastUpdated: "2021-03-01T11:32:51.934", + id: "MHgGCjWZytP", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 18, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "UCXRQtdD8K5" + } + }, + { + created: "2018-05-14T21:47:54.944", + lastUpdated: "2021-03-01T11:32:51.935", + id: "f1OrYy2hEuL", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 33, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "DAPNB0WxKMH" + } + }, + { + created: "2020-01-15T01:14:08.815", + lastUpdated: "2021-03-01T11:32:51.935", + id: "zI45THkcblV", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 47, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "silWE44JpaQ" + } + }, + { + created: "2018-10-01T16:30:29.283", + lastUpdated: "2021-03-01T11:32:51.934", + id: "IOnR5EK74dX", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 34, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "kzgD7nD4qLI" + } + }, + { + created: "2020-01-14T21:28:13.553", + lastUpdated: "2021-03-01T11:32:51.934", + id: "A1ouDbnrJ2K", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 38, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "bTwp4cKNjgZ" + } + }, + { + created: "2016-11-02T23:17:46.433", + lastUpdated: "2021-03-01T11:32:51.936", + id: "ZbGhzG2pAxz", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 26, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "adfHPJQRI3C" + } + }, + { + created: "2018-05-14T12:40:54.197", + lastUpdated: "2021-03-01T11:32:51.936", + id: "BlmMBSUevF0", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 32, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "ZGCDiz5fZhb" + } + }, + { + created: "2020-01-14T21:28:13.553", + lastUpdated: "2021-03-01T11:32:51.937", + id: "NtXysyvaAJZ", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 44, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "uNdVSTX6lSE" + } + }, + { + created: "2016-06-08T13:43:40.141", + lastUpdated: "2021-03-01T11:32:51.935", + id: "uiXy4u4OWjX", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 8, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "mTyzapAF9iT" + } + }, + { + created: "2016-06-08T13:43:40.046", + lastUpdated: "2021-03-01T11:32:51.938", + id: "Oic1IVxpgq9", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 1, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "J19avh4dgzs" + } + }, + { + created: "2020-01-16T00:22:51.423", + lastUpdated: "2021-03-01T11:32:51.936", + id: "rq4keDCBetL", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 48, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "ggwHn45jtgh" + } + }, + { + created: "2016-09-13T16:48:18.116", + lastUpdated: "2021-03-01T11:32:51.937", + id: "VhzvUNRlsZR", + displayInReports: true, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 24, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "IcCc2qu4DnR" + } + }, + { + created: "2016-06-08T13:43:40.069", + lastUpdated: "2021-03-01T11:32:51.935", + id: "ik9ISTmQ2Gf", + displayInReports: true, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 2, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "Z8W89lDV4IL" + } + }, + { + created: "2016-11-30T01:47:34.226", + lastUpdated: "2021-03-01T11:32:51.937", + id: "K4wQtB3HmdB", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 23, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "o3F666LPvuM" + } + }, + { + created: "2020-01-14T21:28:13.552", + lastUpdated: "2021-03-01T11:32:51.936", + id: "wljGO43myNe", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 39, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "PMlpZH7wYON" + } + }, + { + created: "2020-01-14T21:28:13.554", + lastUpdated: "2021-03-01T11:32:51.935", + id: "haxC12SZsvs", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 40, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "KcYECFOPVpR" + } + }, + { + created: "2021-03-01T11:32:51.938", + lastUpdated: "2021-03-01T11:32:51.938", + id: "uY2T46apQBY", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 49, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "NzJkoIvwyCh" + } + }, + { + created: "2016-06-08T13:43:40.117", + lastUpdated: "2021-03-01T11:32:51.933", + id: "xiLmnCvUPdf", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 6, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "QzAHATV8EWv" + } + }, + { + created: "2016-11-10T21:00:24.048", + lastUpdated: "2021-03-01T11:32:51.936", + id: "SIZDdeAClue", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 29, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "pUzlgt7peZT" + } + }, + { + created: "2020-01-15T00:22:45.728", + lastUpdated: "2021-03-01T11:32:51.936", + id: "p8M6Bz8SPDH", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 46, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "VYGsfmL36PY" + } + }, + { + created: "2016-06-08T13:43:40.090", + lastUpdated: "2021-03-01T11:32:51.934", + id: "tI9OLIqrPrq", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 4, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "xkt9nkHj5CA" + } + }, + { + created: "2016-06-08T13:43:40.194", + lastUpdated: "2021-03-01T11:32:51.936", + id: "VlNK0nFtRoW", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 12, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "QEFiXRZu7jY" + } + }, + { + created: "2020-01-14T21:28:13.553", + lastUpdated: "2021-03-01T11:32:51.936", + id: "D6GevHoIeUZ", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 41, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "e8XmDDvKCT1" + } + }, + { + created: "2020-01-14T21:28:13.550", + lastUpdated: "2021-03-01T11:32:51.934", + id: "AHdDAWvCDhC", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 42, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "YrSJMlEJWEC" + } + }, + { + created: "2020-01-14T23:53:14.411", + lastUpdated: "2021-03-01T11:32:51.935", + id: "GT8JlUaUein", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 46, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "BYPbyk5W7SL" + } + }, + { + created: "2020-01-14T21:28:13.553", + lastUpdated: "2021-03-01T11:32:51.938", + id: "XfbM7NmxzRh", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 37, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "Q7dOlqe54eh" + } + } + ], + categoryCombos: [ + { + code: "default", + created: "2017-05-10T17:53:55.156", + lastUpdated: "2019-02-20T16:22:55.336", + name: "default", + id: "JzvGfLYkX17", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + skipTotal: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "eK26I7dRbC4" + }, + userGroupAccesses: [], + translations: [], + userAccesses: [], + categories: [ + { + id: "DMyxTSpvKOp" + } + ] + } + ], + programs: [ + { + code: "PRE_NTD_BU02", + lastUpdated: "2021-03-01T11:52:46.467", + id: "lAu94BiaY5s", + created: "2016-06-08T13:38:09.769", + name: "BU02 - Register", + shortName: "BU02", + publicAccess: "--------", + completeEventsExpiryDays: 0, + description: "This program enables to capture individual data for all suspected Buruli ulcer (BU) cases. ", + ignoreOverdueEvents: false, + skipOffline: false, + featureType: "NONE", + minAttributesRequiredToSearch: 1, + displayFrontPageList: false, + enrollmentDateLabel: "Enrollment Date", + onlyEnrollOnce: false, + programType: "WITHOUT_REGISTRATION", + accessLevel: "OPEN", + version: 18, + maxTeiCountToReturn: 0, + selectIncidentDatesInFuture: false, + incidentDateLabel: "Incident Date", + displayIncidentDate: false, + selectEnrollmentDatesInFuture: false, + expiryDays: 0, + useFirstStageDuringRegistration: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + trackedEntityType: { + id: "MCPQUTHX1Ze" + }, + user: { + id: "eK26I7dRbC4" + }, + programTrackedEntityAttributes: [], + notificationTemplates: [], + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: "Ce programme permet de capturer des données individuelles pour tous les cas suspects d'ulcère de Buruli (UB)." + }, + { + property: "NAME", + locale: "fr", + value: "UB02 - Registre" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "UN02" + } + ], + organisationUnits: [ + { + id: "Gyv4pyey2Ai" + }, + { + id: "UowpDiy4cqO" + }, + { + id: "pOxc8gmDhtS" + }, + { + id: "kbPmt60yi0L" + }, + { + id: "GV9B39jEWVn" + }, + { + id: "r2IqzLpdj5t" + }, + { + id: "sWQ2zpzI5gt" + }, + { + id: "Rw5SNBBSQxJ" + }, + { + id: "rub0EoVhPIM" + }, + { + id: "dqwksMwpW4w" + }, + { + id: "YhivUg6odUM" + }, + { + id: "aU3YGAY4qb7" + }, + { + id: "InQWjSe6k2f" + }, + { + id: "WUoRxmYqtfU" + }, + { + id: "LNai4fzhvGN" + }, + { + id: "VZOzoYaVRlL" + }, + { + id: "g7BLyiBb0ET" + }, + { + id: "Tc3zugEWdTm" + }, + { + id: "x5ZxMDvEQUb" + }, + { + id: "GvFqTavdpGE" + }, + { + id: "lr9J6r6tv6h" + }, + { + id: "NTrXihaptMH" + }, + { + id: "t4xNpQTV1sg" + }, + { + id: "j4AU8yO4ErF" + }, + { + id: "YldSFPxB6WH" + }, + { + id: "pMH8t5RymJl" + }, + { + id: "tyJBtAXHLoo" + }, + { + id: "AhnK8hb3JWm" + }, + { + id: "pzjcGGGjRgt" + }, + { + id: "yEgGKG5iLLL" + }, + { + id: "OIgQ06HZUBB" + }, + { + id: "EvMZz5gSPy5" + }, + { + id: "oMLtZFTZ8po" + }, + { + id: "LWlh25dfvEA" + }, + { + id: "P4upLKrpkHP" + }, + { + id: "zrAoRNoLXxo" + }, + { + id: "tgtdjZmwqo2" + }, + { + id: "ZhEUDUqyOWy" + }, + { + id: "QzaNItkFO7s" + }, + { + id: "s4c425prOLU" + }, + { + id: "uQdUFufJm74" + }, + { + id: "dbkGcznIkUu" + }, + { + id: "uczMdDZXdtl" + }, + { + id: "lFTTvjwF0Vv" + }, + { + id: "BXxhy9rHsKk" + }, + { + id: "b09gf2vvZDb" + }, + { + id: "xvexU43nCYd" + }, + { + id: "qmBcWhcZPSz" + }, + { + id: "rvCCyZdpdML" + }, + { + id: "K6NEOQsE6lB" + }, + { + id: "ueuQlqb8ccl" + }, + { + id: "OI0BQUurVFS" + }, + { + id: "TiwP8S8SNZQ" + }, + { + id: "bsraL8Psnsm" + }, + { + id: "S9sXNagA6v3" + }, + { + id: "U02o1QAm6cC" + }, + { + id: "qczavgAw4FY" + }, + { + id: "ULsug66wkkS" + }, + { + id: "DwSlvPKzyeB" + }, + { + id: "OISw3MLShrO" + }, + { + id: "aSYnMm9sNmA" + }, + { + id: "sYJCxNdKHxR" + }, + { + id: "q5kAX5MyPB6" + }, + { + id: "yMbOiVGIpdq" + }, + { + id: "mfBtyDcG3Sl" + }, + { + id: "cgqkFdShPzg" + }, + { + id: "bHOCOudYF7n" + }, + { + id: "VP92GYbmXk1" + }, + { + id: "Hf75zeSkQXb" + }, + { + id: "ggainP3wKRX" + }, + { + id: "IaLymjcVyIe" + }, + { + id: "QHFNpH0NjcE" + }, + { + id: "KQFAul3T9xz" + }, + { + id: "ZX0qwn83NmC" + }, + { + id: "kgan6qV2qu5" + }, + { + id: "xe5ZKv3Df1Q" + }, + { + id: "TWH05Rjz6oT" + }, + { + id: "M4JuAlTLJnD" + }, + { + id: "XwLGW11h9Z4" + }, + { + id: "qhj5M5kjGEB" + }, + { + id: "k92yudERPlv" + }, + { + id: "u335jxe0ao2" + }, + { + id: "qhizkAySKwC" + }, + { + id: "MnfykVk3zin" + }, + { + id: "fQchTMt926s" + }, + { + id: "bL4ooGhyHRQ" + }, + { + id: "mW8yNi34XW3" + }, + { + id: "y5hLlID8ihI" + }, + { + id: "DkMgspqqI6G" + }, + { + id: "oRncQGhLYNE" + }, + { + id: "u1eQDDtKqm7" + }, + { + id: "nlxWdsB82Wv" + }, + { + id: "uT8s6B3DZKX" + }, + { + id: "EywuypYUmLP" + }, + { + id: "GWTIxJO9pRo" + }, + { + id: "TYq1YW7qs7k" + }, + { + id: "SCYNkV42cBs" + }, + { + id: "K61Q6gOCVXG" + }, + { + id: "prNiMdHuaaU" + }, + { + id: "er7MPiN3tdH" + }, + { + id: "PosOJo9dFA8" + }, + { + id: "GLfgZFkBeYm" + }, + { + id: "at0T4OYLtIe" + }, + { + id: "VelvbJZb0zU" + }, + { + id: "wWIUOHiRTCc" + }, + { + id: "yeHprSCMWsf" + }, + { + id: "U514Dz4v9pv" + }, + { + id: "e2UKsuSL1Pc" + }, + { + id: "jGcjLhlSzi2" + }, + { + id: "wzYWAIsRBLm" + }, + { + id: "ZXtZesiPjWJ" + }, + { + id: "i1ZVIMcpNw2" + }, + { + id: "fSODnfnThKt" + }, + { + id: "ChC54GwyfRn" + }, + { + id: "YmLZ4NiNIR2" + }, + { + id: "xjEmxqQPX9l" + }, + { + id: "vz6JTv2M04f" + }, + { + id: "ACFbys3Kper" + }, + { + id: "MM1ztjfUBvZ" + }, + { + id: "tWQFMVoGfmu" + }, + { + id: "kdH0vAzJEI0" + }, + { + id: "kO9xe2HCovK" + }, + { + id: "zuXW98AEbE7" + }, + { + id: "rhyKLZCNtYC" + }, + { + id: "vsbP959ijI2" + }, + { + id: "LcrCmRvc2dY" + }, + { + id: "XEWcNAr2QZN" + }, + { + id: "CKJ9YS2AbWy" + }, + { + id: "ZA6OckFMH8y" + }, + { + id: "GA1TM835gJW" + }, + { + id: "RfF7aXcrDwI" + }, + { + id: "gyHR69ayCpd" + }, + { + id: "MRsOEFFCxgk" + }, + { + id: "geldAQlGhIy" + }, + { + id: "ghc21GH29F0" + }, + { + id: "G1JxzBEMux1" + }, + { + id: "TZEWnCuG4nJ" + }, + { + id: "qMsCsPGzBI2" + }, + { + id: "acNdHzSn9oI" + }, + { + id: "oZR2s7eM3Fk" + }, + { + id: "hIRkjkhZgIg" + }, + { + id: "t0zZ6S8DeZB" + }, + { + id: "UoLtRvXxNaB" + }, + { + id: "dQuw2YGs3rQ" + }, + { + id: "MiYhwDprCCA" + }, + { + id: "zmE99HmGYpv" + }, + { + id: "mSJSkkmA4Wl" + }, + { + id: "iqd7BiRHor0" + }, + { + id: "NMcx2jmra3c" + }, + { + id: "gROaNI9lqxf" + }, + { + id: "qRwecomj6jo" + }, + { + id: "E497Rk80ivZ" + }, + { + id: "cd3U2Tp0qR2" + }, + { + id: "tUq8wo2Om4V" + }, + { + id: "ACHk6MdWWpp" + }, + { + id: "MmRKAIfG1xy" + }, + { + id: "qusWt6sESRU" + }, + { + id: "f8GtuEKYs8q" + }, + { + id: "scc4QyxenJd" + }, + { + id: "GAOOSDQWVx3" + }, + { + id: "hvp3geX4FVn" + }, + { + id: "Rx8bpoJfLuC" + }, + { + id: "dOVJYohE0Vn" + }, + { + id: "uROAmk9ymNE" + }, + { + id: "rGrWkuJQrqp" + }, + { + id: "Bsn4QIPFdib" + }, + { + id: "kHvk1gj2dfR" + }, + { + id: "UGVLYrO63mR" + }, + { + id: "FU4DdzThwiC" + }, + { + id: "l3TJVDTaogL" + }, + { + id: "VwQmJUCHGhp" + }, + { + id: "FJoPuR9oVHR" + }, + { + id: "M9q1wOOsrXp" + }, + { + id: "wZkPF2bK90m" + }, + { + id: "ZgqwIR8aZNk" + }, + { + id: "FLjwMPWLrL2" + }, + { + id: "Poe3qeiGn8z" + }, + { + id: "V7SItxKNIgx" + }, + { + id: "M8QmuXwtccx" + }, + { + id: "U8tyWV7WmIB" + }, + { + id: "FCpwW3KOxtf" + }, + { + id: "DbH64RnSJVN" + }, + { + id: "kBP1UvZpsNj" + }, + { + id: "M2qEv692lS6" + }, + { + id: "xtyqCSvxQJ8" + }, + { + id: "HsB3ex0EMbb" + }, + { + id: "Fj3FwFtVPtU" + }, + { + id: "wlIdIU2y5Gk" + }, + { + id: "uzgT5Eu82WO" + }, + { + id: "kfmSovze9UV" + }, + { + id: "BtvPB9xE1Jr" + }, + { + id: "KKG8s3Z5EPH" + }, + { + id: "debyJkjed8G" + }, + { + id: "rspjJHg4WY1" + }, + { + id: "gttsaXD4n1u" + }, + { + id: "v9daBMxUxHH" + }, + { + id: "flJbtXOQ4ha" + }, + { + id: "g7Ii3FVB1bY" + }, + { + id: "BYbsMc3zE9G" + }, + { + id: "nWm6OHAdTcy" + }, + { + id: "TSyzvBiovKh" + }, + { + id: "kGkYLF1FvpB" + }, + { + id: "tblsKaWX5Sm" + }, + { + id: "GXVaMFxqDME" + }, + { + id: "iOA3z6Y3cq5" + }, + { + id: "AfP9MlA55Qi" + }, + { + id: "h8V5zVkBgic" + }, + { + id: "Zav7juzGmEo" + }, + { + id: "XwtpHXCx8sX" + }, + { + id: "jjc8SBrvpDO" + }, + { + id: "U0KpeSx4UIB" + }, + { + id: "wG1a3Ns5V1N" + }, + { + id: "NpI6EFhEAhM" + }, + { + id: "VgOvDtece3p" + }, + { + id: "H0OkaM4ReRK" + }, + { + id: "gloKYzVT67e" + }, + { + id: "lX812rGiMPZ" + }, + { + id: "Ioxjc2KBjWd" + }, + { + id: "gBKZtuOfCaj" + }, + { + id: "Ic6DsSpn2Wj" + }, + { + id: "bJ0VSATHwO2" + }, + { + id: "frORonslTLE" + }, + { + id: "Efmr3Xo36DR" + }, + { + id: "IzX2rV8a8Ho" + }, + { + id: "vrSr04hB7ED" + }, + { + id: "jaWCWLbhdv7" + }, + { + id: "Qel3jU50F6K" + }, + { + id: "UgZ7AP6L1mh" + }, + { + id: "UeOctqIWUkP" + }, + { + id: "fcTsRLFtufh" + }, + { + id: "coFxhWxOark" + }, + { + id: "ulyoJV0q6cJ" + }, + { + id: "YUUg4jQpZAy" + }, + { + id: "RII2uiUJqKD" + }, + { + id: "QMnoFLTLpkY" + }, + { + id: "VCUjA71GZ2d" + }, + { + id: "jj1MhWhHqta" + }, + { + id: "fRLX08WHWpL" + }, + { + id: "zM4czlmCz24" + }, + { + id: "G27Vr01Gifm" + }, + { + id: "NWhroKYPn1A" + }, + { + id: "G5NCnFJ3bbV" + }, + { + id: "W2w1rZI5kZz" + }, + { + id: "N4j31jvwW0Y" + }, + { + id: "mRNfATVxa3m" + }, + { + id: "JUa5Fs0Qvao" + }, + { + id: "zpEPGogIr6q" + }, + { + id: "Xzxy8NuVsLp" + }, + { + id: "oOH7qqNuiD1" + }, + { + id: "rbCicUS2uMY" + }, + { + id: "PPC5QtOsmEC" + }, + { + id: "YpL6dr19hH6" + }, + { + id: "wc3V4xFj2MO" + }, + { + id: "V6QWyB0KqvP" + }, + { + id: "mXec4ntz7OW" + }, + { + id: "wWkO5e8tkrs" + }, + { + id: "Pb1L8dflx2j" + }, + { + id: "E9oBVjyEaCe" + }, + { + id: "dyH3ppkE2sh" + }, + { + id: "DA2BEQMhv9B" + }, + { + id: "OyoED7OBJGk" + }, + { + id: "QGBXfiWmO2v" + }, + { + id: "aD10lUENwys" + }, + { + id: "PvDzSeyMO4W" + }, + { + id: "r1RUyfVBkLp" + }, + { + id: "sWjrdaLOoak" + }, + { + id: "FO1Tq8vUa62" + }, + { + id: "QRuCpHn1ZVZ" + }, + { + id: "vgOQ7fWmMyZ" + }, + { + id: "QWO08Ebwtl3" + }, + { + id: "Ys009lKpDVz" + }, + { + id: "bMkXh7mq57A" + }, + { + id: "HPg74Rr7UWp" + }, + { + id: "IHHUhdtZZRb" + }, + { + id: "CTOMXJg41hz" + }, + { + id: "WxMmxNU6Gla" + }, + { + id: "GKrklllwmbU" + }, + { + id: "pXDcgDRz8Od" + }, + { + id: "kiNoY2KN2sT" + }, + { + id: "Er6yp9aXl9a" + }, + { + id: "yR699TwEKDs" + }, + { + id: "hy9w3qQrUfu" + }, + { + id: "duNANknQO4l" + }, + { + id: "YGz2xhQkUru" + }, + { + id: "CDX81h7sQvQ" + }, + { + id: "KeCI1gfDHzn" + }, + { + id: "t1MFxLm43vC" + }, + { + id: "RxmgoSlw9YF" + }, + { + id: "eXuHiCpHQJP" + }, + { + id: "ICRqMuuHNxp" + }, + { + id: "EjnIQNVAXGp" + }, + { + id: "DBRcWnYrjj7" + }, + { + id: "jUb8gELQApl" + }, + { + id: "o5eA4rxjaEA" + }, + { + id: "obour8gYJL1" + }, + { + id: "ui12Hyvn6jR" + }, + { + id: "MPUiud3BYRq" + }, + { + id: "zOQ8bMRRM0R" + }, + { + id: "KR0jLuFOB3d" + }, + { + id: "VU1Tjizg9Eq" + }, + { + id: "cXOR7vSMBKO" + }, + { + id: "kGtrBXfoOxW" + }, + { + id: "PfZXxl6Wp3F" + }, + { + id: "GBrBjaxhBNU" + }, + { + id: "becp7lZeV95" + }, + { + id: "tlvNeDXXrS7" + }, + { + id: "wxQnl60vRWE" + }, + { + id: "yklBRnDdCBU" + }, + { + id: "EuoA3Crpqts" + }, + { + id: "cag6vQQ9SQk" + }, + { + id: "BfvEUlDh5WZ" + }, + { + id: "HchLHu47dIl" + }, + { + id: "KuHtoElOeWo" + }, + { + id: "Bf9R1R91mw4" + }, + { + id: "XVERVdHqg31" + }, + { + id: "fCaInQelsZ5" + }, + { + id: "EIBeOE4ZZDQ" + }, + { + id: "m0PiiU5BteW" + }, + { + id: "r6jCtKrDg4L" + }, + { + id: "t52CJEyLhch" + }, + { + id: "QQxEwS2zA1P" + }, + { + id: "F7oVR22kQ5J" + }, + { + id: "nKjg50Y5aFs" + }, + { + id: "agM0BKQlTh3" + }, + { + id: "q6FsDtTCP3r" + }, + { + id: "UROUHAfDSMJ" + }, + { + id: "qJhsAz9XxKf" + }, + { + id: "AfTYmAMYSEY" + }, + { + id: "aBfyTU5Wgds" + }, + { + id: "KJPWIdXAkVS" + }, + { + id: "WozxVvaR0rR" + }, + { + id: "Cc9kMNFpGmC" + }, + { + id: "xG4ElM2rILq" + }, + { + id: "sGWwGDi933f" + }, + { + id: "dkLFjVtoVud" + }, + { + id: "Tx1JYLIv3Fj" + }, + { + id: "ulI6WS7SMcf" + }, + { + id: "eYYyZUvr6ep" + }, + { + id: "qXHYtmiJRVs" + }, + { + id: "erDyqQMhRQN" + }, + { + id: "X5xh5uS3bIB" + }, + { + id: "R9v9Mb2Z3KB" + }, + { + id: "f7yRhIeFn1k" + }, + { + id: "xN1n1dpwj8N" + }, + { + id: "QQKZBppQ1Yg" + }, + { + id: "Dto395fHIvK" + }, + { + id: "K0d08d3sUOv" + }, + { + id: "WRSQSgwTvme" + }, + { + id: "lBMmM0HBp4s" + }, + { + id: "lvxIJAb2QJo" + }, + { + id: "obxZFOcDYGS" + }, + { + id: "xaEdKlRK7l4" + }, + { + id: "SpD4gm27lKj" + }, + { + id: "pjHCs8KvtSx" + }, + { + id: "V7nzgao1pCE" + }, + { + id: "aLrkBHnMhxF" + }, + { + id: "vYkCMt5WbX0" + }, + { + id: "WBo7nt0kp1g" + }, + { + id: "MHAWZr2Caxw" + }, + { + id: "QvHBTmOd2qO" + }, + { + id: "LgiBWb1OeyW" + }, + { + id: "TunPTFo0keR" + }, + { + id: "bG7AXd1o35Y" + }, + { + id: "aIxHjKERuzQ" + }, + { + id: "OQuRu1ytLMF" + }, + { + id: "wQ71REGAMet" + }, + { + id: "u0SlCNJnK3K" + }, + { + id: "pmxZm7klXBy" + }, + { + id: "mqMPMFvpTue" + }, + { + id: "dY2F6bpC4hO" + }, + { + id: "p9ZtyC3LQ9f" + }, + { + id: "FsunWIQLXoF" + }, + { + id: "caif2tNAS0n" + }, + { + id: "yUakh5JVYAK" + }, + { + id: "g031LbUPMmh" + }, + { + id: "LZS1Y7MyGPN" + }, + { + id: "U4FzUXMvbI8" + }, + { + id: "cdmkMyYv04T" + }, + { + id: "tABzAmJe44u" + }, + { + id: "hLioF4sBlne" + }, + { + id: "IWb1hstfROc" + }, + { + id: "CEoD9uQVIZB" + }, + { + id: "Zp8mxkuN2C8" + }, + { + id: "IcVHzEm0b6Z" + }, + { + id: "Cc8tVexrtgp" + }, + { + id: "GxSIHJvaffT" + }, + { + id: "oql97puM3kA" + }, + { + id: "lpxM2SDN1Zi" + }, + { + id: "okUPxUNA394" + }, + { + id: "vmRJoTiw23W" + }, + { + id: "tcJvK3MDFpA" + }, + { + id: "Xcm7moozDAL" + }, + { + id: "A5gTawRhFE2" + }, + { + id: "CF243RPvNY7" + }, + { + id: "rhD0OvRUIdg" + }, + { + id: "xwFiVFCqZrX" + }, + { + id: "bPigB5HPVIs" + }, + { + id: "pf6hbxz673J" + }, + { + id: "uUK3LeeI2JI" + }, + { + id: "HY4OVlUx7bq" + }, + { + id: "CzNGYnubEbl" + }, + { + id: "yKvqXttwwzr" + }, + { + id: "hI3aOAKqCtW" + }, + { + id: "rWuCEfxJbjo" + }, + { + id: "lrNXVeRKb9K" + }, + { + id: "yTMrs5kClCv" + }, + { + id: "xPO1tJtoAjF" + }, + { + id: "bk4Y99gJJ4o" + }, + { + id: "LvOFvYNDLBT" + }, + { + id: "xeQgqgxZMF0" + }, + { + id: "MXdbul7bBqV" + }, + { + id: "DtG84cHnM7X" + }, + { + id: "LZjIqL6eWP9" + }, + { + id: "PIcVTr8OrZv" + }, + { + id: "X8RKmI5bBgv" + }, + { + id: "QmgjREs8ugj" + }, + { + id: "NYPqLUFwzW7" + }, + { + id: "RmYxH0uwXiB" + }, + { + id: "UYcpSrv6mYJ" + }, + { + id: "PAGzK2IHcNH" + }, + { + id: "mt47bcb0Rcj" + }, + { + id: "oviXGMoL0mp" + }, + { + id: "IIeNrOrnhH0" + }, + { + id: "NGdZX8qX6BK" + }, + { + id: "CfpGKfDlCZU" + }, + { + id: "smoyi1iYNK6" + }, + { + id: "NHhA3BioKkX" + }, + { + id: "aGKLVxj8Wl2" + }, + { + id: "fOQjN1X4mAQ" + }, + { + id: "mOynHvhg6n9" + }, + { + id: "imjr9QsUqc0" + }, + { + id: "zMljBpDbSPw" + }, + { + id: "CL2RI9EJrqd" + }, + { + id: "UCwtaCrNUls" + }, + { + id: "eiJQajBCtvS" + }, + { + id: "q56l8XAU0Qq" + }, + { + id: "nImgPWDVQIa" + }, + { + id: "KtEDJZX6RrJ" + }, + { + id: "magDgRpsonr" + }, + { + id: "sznCEDMABa2" + }, + { + id: "Sp11Dlm8EC7" + }, + { + id: "kh2XrvZ07R9" + }, + { + id: "aihxTHAvuEx" + }, + { + id: "CTR6caNEKMV" + }, + { + id: "REtQE1gstTf" + }, + { + id: "tt9XZYR5avl" + }, + { + id: "RMpA2SCMyGo" + }, + { + id: "ZRxBNGxdKBv" + }, + { + id: "M3dL6ZAIZ3I" + }, + { + id: "Zpo04q79JlW" + }, + { + id: "MXDfZwbBmxs" + }, + { + id: "sAijOguUgyU" + }, + { + id: "CsD5XPjUkjO" + }, + { + id: "s2eG8iQfoo2" + }, + { + id: "CVFtTLoGf0v" + }, + { + id: "hZyvi6hEuTc" + }, + { + id: "fC5IZTforou" + }, + { + id: "QnCRGLHHe6N" + }, + { + id: "OwHjzJEVEUN" + }, + { + id: "oWNF4d3PK8C" + }, + { + id: "g5oijWNlrTp" + }, + { + id: "jjCwHWEyPua" + }, + { + id: "hTGeTrwzrPi" + }, + { + id: "q3naTQd3vk4" + }, + { + id: "Uv15pOAstzX" + }, + { + id: "D7UVRRE9iUC" + }, + { + id: "DALypRddlXt" + }, + { + id: "eC7OZaHy9Er" + }, + { + id: "qaFmuVdsiOq" + }, + { + id: "PZjAPpF9mmx" + }, + { + id: "k7afkzmXJVn" + }, + { + id: "BGHCa9pShBq" + }, + { + id: "YGZxwG1vxCi" + }, + { + id: "uPshwz3B3Uu" + }, + { + id: "uBl0VyuwO4p" + }, + { + id: "Hu31NCRjZlj" + }, + { + id: "DQ25ZfyqLiX" + }, + { + id: "JCsD1tr2Mda" + }, + { + id: "pNN0BsLqQYg" + }, + { + id: "X5PsCWO83bV" + }, + { + id: "zO5hgxxfU4T" + }, + { + id: "PaNv9VyD06n" + }, + { + id: "UYdZqFEhbDg" + }, + { + id: "KCPRVsLEVaU" + }, + { + id: "lwEjClqwUML" + }, + { + id: "BLA8608lxND" + }, + { + id: "rTrOVvZqITY" + }, + { + id: "Gm7YUjhVi9Q" + }, + { + id: "BJuvp2RES62" + }, + { + id: "OePlArRCE8r" + }, + { + id: "F256pn456tL" + }, + { + id: "haH40EF3fbM" + }, + { + id: "BhFnxVBcm4E" + }, + { + id: "hTGfkdOpNbh" + }, + { + id: "a5pYBBYuBV2" + }, + { + id: "IRi3oH3og8c" + }, + { + id: "t0DLywkw6O1" + }, + { + id: "gSe2VsLMeAK" + }, + { + id: "QJX6K9FlNbG" + }, + { + id: "jjtzkzrmG7s" + }, + { + id: "BXQS8lmTXX6" + }, + { + id: "RyH5SDDXeEU" + }, + { + id: "kdnEImiak51" + }, + { + id: "z9KGMrElTYS" + }, + { + id: "eN0GNgGYDLY" + }, + { + id: "bRjZlOSpfCi" + }, + { + id: "e4P2zTzM7gQ" + }, + { + id: "H0vusW98jk7" + }, + { + id: "GHHvGp7tgtZ" + }, + { + id: "ZpE2POxvl9P" + }, + { + id: "Pae8DR7VmcL" + }, + { + id: "bPqLhzvOIJb" + }, + { + id: "oxWlJAvF8XY" + }, + { + id: "VFF7f43dJv4" + }, + { + id: "zJOO4X9NRby" + }, + { + id: "XJ6DqDkMlPv" + }, + { + id: "ctMepV9p92I" + }, + { + id: "jl5cOwjP5PO" + }, + { + id: "g2EeoUScEzu" + }, + { + id: "jzQqP2juEy6" + }, + { + id: "zGSjJCRzww1" + }, + { + id: "Hix39LJIRc8" + }, + { + id: "qK81IFiClRk" + }, + { + id: "nv41sOz8IVM" + }, + { + id: "yHIV3DzYjPL" + }, + { + id: "JIigpdhC4tR" + }, + { + id: "I7uFKlcFAya" + }, + { + id: "G6q8HBJathN" + }, + { + id: "DINXUs8QZWg" + }, + { + id: "mAl0KfsyXVM" + }, + { + id: "Qmxmomz94es" + }, + { + id: "yLiODvcJC0x" + }, + { + id: "vAdMjyOspGL" + }, + { + id: "xuGd4VFZev5" + }, + { + id: "xt08cuqf1ys" + }, + { + id: "mkhlowm5D7O" + }, + { + id: "kUzpbgPCwVA" + }, + { + id: "YxtipXA59uX" + }, + { + id: "bLkn2FnUmR3" + }, + { + id: "gptsRw8TEao" + }, + { + id: "XvqLmn4kZXy" + }, + { + id: "I2UW55qvn82" + }, + { + id: "Pcpc2wQ6NxU" + }, + { + id: "DUPj1wDFL76" + }, + { + id: "HNRYDxjvAQQ" + }, + { + id: "MwfWgjMRgId" + }, + { + id: "PIPiBUGXRS6" + }, + { + id: "H3YmgmVA9zr" + }, + { + id: "SkkFlVzmvUq" + }, + { + id: "ZJ1fINtWZaV" + }, + { + id: "HIQCz6wJx4k" + }, + { + id: "ALnjmvcRSxU" + }, + { + id: "nbMpoRiVRWd" + }, + { + id: "MIwZRBfOxUx" + }, + { + id: "sSgOnY1Xqd9" + }, + { + id: "kuqKh33SPgg" + }, + { + id: "OwhZQEPw1u6" + }, + { + id: "GU90uRWJ5au" + }, + { + id: "hRnFyAxbVSu" + }, + { + id: "wHZsdEzyGqi" + }, + { + id: "TWMVxJANJeU" + }, + { + id: "GftPJlsXYya" + }, + { + id: "eKp8fW6cOCZ" + }, + { + id: "BzSVeXl2ipw" + }, + { + id: "hpXXBtRXXSd" + }, + { + id: "o4HjmsKgUBy" + }, + { + id: "ZvX8lXd1tYs" + }, + { + id: "RgeDYKt0AhZ" + }, + { + id: "xv2x3ViwyFX" + }, + { + id: "pqXsrHKRpRS" + }, + { + id: "ZrmM51S7ySE" + }, + { + id: "zEsMdeJOty4" + }, + { + id: "k8Sov0ujnvB" + }, + { + id: "XRXBoBfK14N" + }, + { + id: "qzP5oF7seEt" + }, + { + id: "DwpbWkiqjMy" + }, + { + id: "JNJIPX9DfaW" + }, + { + id: "P2y3TysVYtO" + }, + { + id: "lQIe6vtSe1P" + }, + { + id: "eH9a0MLYJCP" + }, + { + id: "fw4OoFDD8ik" + }, + { + id: "nX05QLraDhO" + }, + { + id: "VPesUmegQpP" + }, + { + id: "T9kp3DLvP4W" + }, + { + id: "ZlvXUWvIMks" + }, + { + id: "iJ1VH3XU5ic" + }, + { + id: "CgunjDKbM45" + }, + { + id: "KkYL8M005ju" + }, + { + id: "pWEIn4w0Esh" + }, + { + id: "Z6wIsiN1L79" + }, + { + id: "ciFzSZosO1k" + }, + { + id: "OyBpWd2oAiS" + }, + { + id: "yTNDFFhsxi6" + }, + { + id: "ZPD1n8jJoJ0" + }, + { + id: "oTnsv8nF2xg" + }, + { + id: "VysM8vs5q7z" + }, + { + id: "W7ekX3gi0ut" + }, + { + id: "AOwa6JKBQAo" + }, + { + id: "bUEvuix2Cn6" + }, + { + id: "mW20aiZHqwE" + }, + { + id: "LstymRRzibj" + }, + { + id: "OZ1olxsTyNa" + }, + { + id: "sGAxzRAVyhF" + }, + { + id: "WAM62JleVQx" + }, + { + id: "SlNw6FxElY9" + }, + { + id: "zCB6jqb11v5" + }, + { + id: "tj6zlzsd5kd" + }, + { + id: "mClZSQwnmQq" + }, + { + id: "YFlZA0y0Vi6" + }, + { + id: "V377T5btopb" + }, + { + id: "AQQCxQqDxLe" + }, + { + id: "wzvDhS0TkAF" + }, + { + id: "gcsKpK1l9eZ" + }, + { + id: "wtdBuXDwZYQ" + }, + { + id: "MADPPE6B27k" + }, + { + id: "o9J1ar4hM1L" + }, + { + id: "OM0adkTeys8" + }, + { + id: "oEMXXHA5aGx" + }, + { + id: "VWCTysWfbpy" + }, + { + id: "K8W0P4ZLchk" + }, + { + id: "jPidqyo7cpF" + }, + { + id: "vcPtDIrU9d7" + }, + { + id: "z0jGRBxKc0e" + }, + { + id: "KrYEOKqlhe4" + }, + { + id: "rZxk3S0qN63" + }, + { + id: "bQiBfA2j5cw" + }, + { + id: "OXHE08rPXm1" + }, + { + id: "Dgta1RAuskb" + }, + { + id: "kOvoflxqkGw" + }, + { + id: "cBi3y4lGhDd" + }, + { + id: "K1r3uF6eZ8n" + }, + { + id: "nAr2xbOf5iT" + }, + { + id: "RWvG1aFrr0r" + }, + { + id: "WerHl8SDtRU" + }, + { + id: "cTU2WmWcJKx" + }, + { + id: "M7qT4kiEcXU" + }, + { + id: "NJBVmZBrVhQ" + }, + { + id: "HenrD4pNEqN" + }, + { + id: "iAcSJjvEa2I" + }, + { + id: "E1Uc8UcMExN" + }, + { + id: "bKiJzk8ZZbS" + }, + { + id: "jFlcEy3FKjh" + }, + { + id: "vkXlj7ZPkGi" + }, + { + id: "H2fn9ca2z8d" + }, + { + id: "qer4ip8bZ4P" + }, + { + id: "DUAYSNquClV" + }, + { + id: "mdnaPN9m7ZT" + }, + { + id: "U9klfqqGlRa" + }, + { + id: "rEIzKmGpSMM" + }, + { + id: "MeeOir63Hyy" + }, + { + id: "h3u3nQFe4sS" + }, + { + id: "Tk0DwBsjaOu" + }, + { + id: "YWXXO0XMkQe" + }, + { + id: "b2CDIRmO95E" + }, + { + id: "ZiOVcrSjSYe" + }, + { + id: "YU7eItZxn2Z" + }, + { + id: "gg0fYvR9D86" + }, + { + id: "BY5exykvTzc" + }, + { + id: "IW3guWF3uvF" + }, + { + id: "nFW78RdRUdf" + }, + { + id: "KXATggvXUzZ" + }, + { + id: "gmen7SXL9CU" + }, + { + id: "rVVzK9G44L9" + }, + { + id: "S36Gm1R5ghI" + }, + { + id: "z7qXX5LXkE9" + }, + { + id: "dQggcljEImF" + }, + { + id: "jHcrJYEa3NN" + }, + { + id: "yh1PrRTboyg" + }, + { + id: "aLQZuhm870a" + }, + { + id: "fbVs9uAce8L" + }, + { + id: "isVEay1dGbq" + }, + { + id: "D1YdCIodO3V" + }, + { + id: "cRyZDRZ6j36" + }, + { + id: "hXyqdN20E7o" + }, + { + id: "ulYrdhGl6VQ" + }, + { + id: "I6HZcwgJqUL" + }, + { + id: "fnn7xBTE0sO" + }, + { + id: "hN8TzNcsqEa" + }, + { + id: "WL7lM3Rz6dy" + }, + { + id: "V3q3EMiUhGB" + }, + { + id: "gg0biK4FD2k" + }, + { + id: "uRQj8WRK0Py" + }, + { + id: "cITgoKuibLC" + }, + { + id: "kzhPa9dd2R8" + }, + { + id: "iLUfUFx4mEF" + }, + { + id: "k8jnz66xV0f" + }, + { + id: "y4FCAVfR0tC" + }, + { + id: "sZtV68WjwpG" + }, + { + id: "ZxuSbAmsLCn" + }, + { + id: "cJVM4ckY8ZD" + }, + { + id: "ytHbYMerm2b" + }, + { + id: "aQJQ5mijJmH" + }, + { + id: "ynLghP3PuKg" + }, + { + id: "DHAq6pR0Ely" + }, + { + id: "SSm0v9lZnh8" + }, + { + id: "IXJg79fclDm" + }, + { + id: "JsxnA2IywRo" + }, + { + id: "H7sKcZvP9T6" + }, + { + id: "eyfrdOUUkXO" + }, + { + id: "UUZoBCSn245" + }, + { + id: "qbee4sKpkXO" + }, + { + id: "OFIrbJOCa8t" + }, + { + id: "rTSsEeazs6w" + }, + { + id: "uyQdDdGn2g9" + }, + { + id: "jr5hIZcJBXB" + }, + { + id: "UMq2wfDGS6l" + }, + { + id: "rYCSMnjWKv0" + }, + { + id: "iec44xK5xUI" + }, + { + id: "VYoxnjg9wiW" + }, + { + id: "cgF4WfEpzSl" + }, + { + id: "PtHKgFNIita" + }, + { + id: "VfMiAKpB8kr" + }, + { + id: "M1bWQKGXnBQ" + }, + { + id: "rozv5QUSE7a" + }, + { + id: "BCNlNkJ01k2" + }, + { + id: "v9olqjLu9Al" + }, + { + id: "utDRE0huZNl" + }, + { + id: "mEUUK7MHLSF" + }, + { + id: "QTt3cJKjwRl" + }, + { + id: "pL1FAfipkQj" + }, + { + id: "EqL0DLB2o4W" + }, + { + id: "CkZ1c0c2MR4" + }, + { + id: "u9oUaeuEJvg" + }, + { + id: "f8MTDp21nuX" + }, + { + id: "ep88w1ZbCNE" + }, + { + id: "Wm1IrYlngRU" + }, + { + id: "A9jizoxe857" + }, + { + id: "WhCQNekdIwM" + }, + { + id: "RPSMI3gQe8M" + }, + { + id: "a1dP5m3Clw4" + }, + { + id: "SOk5LKU75uW" + }, + { + id: "LbWpsX1FJcC" + }, + { + id: "mhpV1p8k0uC" + }, + { + id: "Sglj9VCoQmc" + }, + { + id: "KvE0PYQzXMM" + }, + { + id: "vLkRhIzRRak" + }, + { + id: "Clj75gZgt6I" + }, + { + id: "E0sWxp1enqW" + }, + { + id: "DhYZLciYDi4" + }, + { + id: "hwOAP8MEMW1" + }, + { + id: "aXhRnbAPtzB" + }, + { + id: "mYIJtiORZSw" + }, + { + id: "uCgPXAve9O8" + }, + { + id: "pRC8FuysKff" + }, + { + id: "FRX63UWciyO" + }, + { + id: "WDH4AkfaZQA" + }, + { + id: "VS74omZuDxN" + }, + { + id: "ejW14chBpNX" + }, + { + id: "Q23tMsKOoO6" + }, + { + id: "dc5oUFoQRCQ" + }, + { + id: "x8jclPd0nnx" + }, + { + id: "yEAmMv0CG6n" + }, + { + id: "TsglzO6wCoE" + }, + { + id: "bqSIIRuZ1qj" + }, + { + id: "ulDaqfxOLxS" + }, + { + id: "N2BMifTXTJW" + }, + { + id: "ZuQGBuEbAqe" + }, + { + id: "qSkkzO25Oed" + }, + { + id: "kjwlT8flhle" + }, + { + id: "noK22y2hRdJ" + }, + { + id: "ZCBhvGpapJT" + }, + { + id: "ADeZNq1pKsu" + }, + { + id: "FY2qVVrSdRW" + }, + { + id: "EGLpIMSAWhx" + }, + { + id: "n061bwGWIsK" + }, + { + id: "dx4NOnoGtE7" + }, + { + id: "funzKZ2xYgf" + }, + { + id: "PccFqCgeqxM" + }, + { + id: "AbkK1MwJsQm" + }, + { + id: "fHqBRE3LTiQ" + }, + { + id: "Y0OxS2QV1qT" + }, + { + id: "SjCRGrCugU9" + }, + { + id: "hRsy4L78Rht" + }, + { + id: "qHBTf9A89xW" + }, + { + id: "brocZmp2YYU" + }, + { + id: "OV4Y0FsVdgp" + }, + { + id: "BUjEJkpYDTG" + }, + { + id: "BpiGzPxG6FQ" + }, + { + id: "GQcGWobVYc4" + }, + { + id: "KRfE2ZKe9j8" + }, + { + id: "WC5rU5fLMzY" + }, + { + id: "pvTYrkG1d6f" + }, + { + id: "wvj0ietfz87" + }, + { + id: "ROIfJgdJuQC" + }, + { + id: "X79FDd4EAgo" + }, + { + id: "TSMmkUDHWhG" + }, + { + id: "f5QU0kJCwCo" + }, + { + id: "TVULMaEbowK" + }, + { + id: "jjvCGBwKlSI" + }, + { + id: "sesv0eXljBq" + }, + { + id: "xeXGnIyiKcR" + }, + { + id: "mkFoaAdosuY" + }, + { + id: "ajMlj9noqdq" + }, + { + id: "nV3OkyzF4US" + }, + { + id: "gaVjKyJCbMl" + }, + { + id: "u7WP90CqSw0" + }, + { + id: "bENQwMR9RPU" + }, + { + id: "KY7PY6Oek9l" + }, + { + id: "ozq3zNYAieB" + }, + { + id: "lUYT12uBl46" + }, + { + id: "MQHszd6K6V5" + }, + { + id: "tmxPSZifesq" + }, + { + id: "ovGHR2PP2xt" + }, + { + id: "t1aAdpBbDB3" + }, + { + id: "NKDZzjtND1V" + }, + { + id: "vLHMYIzKb98" + }, + { + id: "HWXk4EBHUyk" + }, + { + id: "QaeQJJCmnTS" + }, + { + id: "fP2jksq3TLU" + }, + { + id: "SmhR2aaKLjw" + }, + { + id: "a0XCAVyWAVi" + }, + { + id: "g9DMxXZouBw" + }, + { + id: "Rdp08RsSQnc" + }, + { + id: "OsKMbQMp54Z" + }, + { + id: "fAzFH9HX5Ml" + }, + { + id: "gDnYtoObXau" + }, + { + id: "nVThjMrvuIt" + }, + { + id: "OzjRQLn3G24" + }, + { + id: "sNCD46nc2m5" + }, + { + id: "RrYUzgL9K0x" + }, + { + id: "GimGENrZ4yG" + }, + { + id: "z9lFsLb6Tnu" + }, + { + id: "GRc9WXp9gSy" + }, + { + id: "QTUW4sUrBWE" + }, + { + id: "S1ThhGKWsvb" + }, + { + id: "oua9bZ7xkfS" + }, + { + id: "sDTodaygv5u" + }, + { + id: "E991s19hH6l" + }, + { + id: "TIMdGB8AbUm" + }, + { + id: "au8x2aRUVjb" + }, + { + id: "FyCdn8kgKTc" + }, + { + id: "q56204kKXgZ" + }, + { + id: "Aouf3UUWxo3" + }, + { + id: "akbfKGJAYt1" + }, + { + id: "I3Q4c9e1bFg" + }, + { + id: "YqhXLZvknUO" + }, + { + id: "FsiZ3vyKiAU" + }, + { + id: "PriwTqVreMn" + }, + { + id: "ubUisS0sH7Y" + }, + { + id: "iSQTZRaYval" + }, + { + id: "Xxf0q3cFaiX" + }, + { + id: "MErVkzdbsP5" + }, + { + id: "qxbsDd9QYv6" + }, + { + id: "ovruC9wzRBW" + }, + { + id: "PvUAAGiEqKH" + }, + { + id: "k5K7JG1bOYa" + }, + { + id: "hCm2Nh7C8BW" + }, + { + id: "cHqboEGRUiY" + }, + { + id: "ABM75Q1UfoP" + }, + { + id: "vqzLMEA9PHM" + }, + { + id: "KnU2XHRvyiX" + }, + { + id: "OCi4115nFsX" + }, + { + id: "L3OQoPOwSFy" + }, + { + id: "KuGO75X47Gk" + }, + { + id: "HB2pdBL12sG" + }, + { + id: "hA63ZnXDOcZ" + }, + { + id: "C1zlHePEQe6" + }, + { + id: "fFuBunxNene" + }, + { + id: "bO2AHSkUIcS" + }, + { + id: "YlzcywV2ekX" + }, + { + id: "FWFtgkFuk92" + }, + { + id: "NoNEdV7IyKU" + }, + { + id: "YMkMpzQEaE1" + }, + { + id: "YyxzpZpB2s7" + }, + { + id: "y4F4FPooV3W" + }, + { + id: "COtzHwwf7GF" + }, + { + id: "FC0dyKxD2mL" + }, + { + id: "h9Dt8E8VyMq" + }, + { + id: "MYr9oYNh5eH" + }, + { + id: "PqlNXedmh7u" + }, + { + id: "Bv3ZzMtRSrU" + }, + { + id: "meHOjeLJ4jz" + }, + { + id: "mTNOoGXuC39" + }, + { + id: "T96WRiSvhaU" + }, + { + id: "F3fnO1wHREz" + }, + { + id: "IGtLoNYu3m3" + }, + { + id: "kLbIhl5e2Ol" + }, + { + id: "JCXEtUDYyp9" + }, + { + id: "MQWubt4niuo" + }, + { + id: "qZEdl8gjHk4" + }, + { + id: "n7wN9gMFfZ5" + }, + { + id: "W6il9wTkvwu" + }, + { + id: "kf6JG4xPtQu" + }, + { + id: "ZOyEYFBKVTa" + }, + { + id: "DPSUCbGtwEH" + }, + { + id: "vbyQ4eEyjbA" + }, + { + id: "IseiqOIac7j" + }, + { + id: "WjO2puYKysP" + }, + { + id: "u9ZsXt4oCpE" + }, + { + id: "PMsF64R6OJX" + }, + { + id: "Nu969mIacpF" + }, + { + id: "c4kQIsUMRVs" + }, + { + id: "I57wpcgmcQS" + }, + { + id: "oLuhRyYPxRO" + }, + { + id: "VINXmSq6WlM" + }, + { + id: "U0QkZ5HLcBh" + }, + { + id: "kedYKTsv95j" + }, + { + id: "pASsPn2WpS1" + }, + { + id: "vnzwDjsYYNe" + }, + { + id: "XfVYz6l2rzg" + }, + { + id: "GHPuYdLcVN5" + }, + { + id: "ZSBnWFBpPPJ" + }, + { + id: "EDDCLGSo9hx" + }, + { + id: "brZKu3A7dSz" + }, + { + id: "SIxGTeya5lN" + }, + { + id: "TiAxSIV1WsW" + }, + { + id: "pVkDnI2J6Wi" + }, + { + id: "dIRsACrjJvU" + }, + { + id: "SCc0TNTDJED" + }, + { + id: "ckZUwoiRNQS" + }, + { + id: "Rp268JB6Ne4" + }, + { + id: "EchnBdJ4aHp" + }, + { + id: "WbVAZdvcYJa" + }, + { + id: "XyDPJxjjbfD" + }, + { + id: "k2iv6kfHUeW" + }, + { + id: "lELJZCBxz7H" + }, + { + id: "A6GTmXMdS8x" + }, + { + id: "M5XBSLvivg7" + }, + { + id: "mNCrqGaPhc2" + }, + { + id: "L8cz2leP7zh" + }, + { + id: "AvGz949akv4" + }, + { + id: "lXMPIg74RGG" + }, + { + id: "IBy5Yw1ZCVi" + }, + { + id: "qWdVYZP8NGe" + }, + { + id: "lvWcISmT3Pd" + }, + { + id: "aEUfFsvT1eI" + }, + { + id: "onldO7gfdSw" + }, + { + id: "DxAPPqXvwLy" + }, + { + id: "jU9c5lpUpa6" + }, + { + id: "ITyHkdtNsld" + }, + { + id: "U0uqzA98Ubq" + }, + { + id: "IaDoA7xVKzG" + }, + { + id: "D2rB1GRuh8C" + }, + { + id: "sqNoCTQg7w7" + }, + { + id: "Jn4CNjcrPZJ" + }, + { + id: "VjVYaKZ9t4K" + }, + { + id: "q3wEzr3bE4s" + }, + { + id: "KC2kfmP6Ym5" + }, + { + id: "Fu6V7CVnikU" + }, + { + id: "n277YIC9U2q" + }, + { + id: "SttgPxp0UuS" + }, + { + id: "NDqR2cWlVy3" + }, + { + id: "pYr0Kcy93M2" + }, + { + id: "kVjJlyikPxp" + }, + { + id: "Fa4U0rDYIlJ" + }, + { + id: "TdoNdBa6i4A" + }, + { + id: "OcRCVRy2M7X" + }, + { + id: "k7IkH9U9lZP" + }, + { + id: "mj5lBkGeqVd" + }, + { + id: "X9zzzyPZViR" + }, + { + id: "Ni2W87QqMWA" + }, + { + id: "gyNCiFp8sWX" + }, + { + id: "keZ1b2AHgsI" + }, + { + id: "shRXArPWh8H" + }, + { + id: "cUltUneFSan" + }, + { + id: "TluyVYBlmEI" + }, + { + id: "KLEIeni3XAw" + }, + { + id: "cDRQOxX1wHO" + }, + { + id: "tZxqVn3xNrA" + }, + { + id: "XYyMoILYXQC" + }, + { + id: "Qwgy9ucLlL5" + }, + { + id: "oc7tqtQov95" + }, + { + id: "AF8jvAOAWox" + }, + { + id: "zsqxu7ZZRpO" + }, + { + id: "wjFsUXI1MlO" + }, + { + id: "v2vi8UaIYlo" + }, + { + id: "QuIDecovcIX" + }, + { + id: "eVkjSAXyz3T" + }, + { + id: "d9mih4hlTLF" + }, + { + id: "Xoruy9OQVDn" + }, + { + id: "gjRqy9UoeQM" + }, + { + id: "vn9KJsLyP5f" + }, + { + id: "J13NOXEYIjY" + }, + { + id: "Xcq3e4TeBc9" + }, + { + id: "DwlFKzDSuQU" + }, + { + id: "doQq5EAf7vq" + }, + { + id: "wmW6SjWfH5B" + }, + { + id: "imvGVxzf1N9" + }, + { + id: "W7HR0cCgVt6" + }, + { + id: "CbIWQQoWcLc" + }, + { + id: "zrO4npQ018X" + }, + { + id: "NPhhXuDhbMX" + }, + { + id: "hBPtNXkQ3mP" + }, + { + id: "qzm5ww3U0vz" + }, + { + id: "IpA5FViU8tk" + }, + { + id: "O6uvpzGd5pu" + }, + { + id: "PnMPARoMhWW" + }, + { + id: "yjxkvIB90uc" + }, + { + id: "lOEIIgnccF2" + }, + { + id: "Yt1ctIEdE6P" + }, + { + id: "MkXOec5tfT1" + }, + { + id: "C9uduqDZr9d" + }, + { + id: "PEZNsGbZaVJ" + }, + { + id: "IgtXqhgIJVI" + }, + { + id: "Wbk6cHV6L2n" + }, + { + id: "uDzWmUDHKeR" + }, + { + id: "FoAz5tmFdt0" + }, + { + id: "PbXfxMxsMpw" + }, + { + id: "fFXEYa60KJs" + }, + { + id: "GYpd8O6nqQi" + }, + { + id: "J42QfNe0GJZ" + }, + { + id: "Zyi7lDEFXEV" + }, + { + id: "WGX1v9umWCm" + }, + { + id: "t2YFCWNaAtx" + }, + { + id: "Ozw43SfVIqw" + }, + { + id: "zQ2pFkzGtIg" + }, + { + id: "DfUfwjM9am5" + }, + { + id: "hmZE3mVAZFf" + }, + { + id: "z72Le3wcqyG" + }, + { + id: "gupMEWNKQkY" + }, + { + id: "VkEBjujtKen" + }, + { + id: "WSn6ylmgPcZ" + }, + { + id: "MI0iP5jfVeg" + }, + { + id: "u8PjuAqplGy" + }, + { + id: "u8lMFspZ968" + }, + { + id: "gqEGIDiISfS" + }, + { + id: "k1o0PL2BOP5" + }, + { + id: "qoZyfoQVyTD" + }, + { + id: "tAjzJmzmwK3" + }, + { + id: "KcCbIDzRcui" + }, + { + id: "K6JzYLJqF8x" + }, + { + id: "QqkbVLsixrY" + }, + { + id: "mYMJHVqdBKt" + }, + { + id: "pJj2r2HElLE" + }, + { + id: "s5w5VgDpqxj" + }, + { + id: "Jd7G0NYBTx1" + }, + { + id: "M9MBisTQQSe" + }, + { + id: "w3gDMjMLr32" + }, + { + id: "wZZORQPgn75" + }, + { + id: "BYXDipVSVn2" + }, + { + id: "OS3sXR5nkqM" + }, + { + id: "IJ2XzGcz1rh" + }, + { + id: "AiGBODidxPw" + }, + { + id: "SKJoPDgjELa" + }, + { + id: "LT5Erj2vDC6" + }, + { + id: "eCfxBe1lnxb" + }, + { + id: "HDOnfLXKkYs" + }, + { + id: "F0uVXCVvOPO" + }, + { + id: "cXMQtUId06K" + }, + { + id: "D9fzIxg5Nzz" + }, + { + id: "xAEfZFmflnp" + }, + { + id: "mG8adrrysc3" + }, + { + id: "Fbq6Vxa4MIx" + }, + { + id: "fYozk8EEYoJ" + }, + { + id: "eQJpYIDxGnN" + }, + { + id: "aVycEyoSBJx" + }, + { + id: "PYaPgbz8NlV" + }, + { + id: "Ck4TOMhszUb" + }, + { + id: "tlMeFk8C4CG" + }, + { + id: "H2LR1frzCo4" + }, + { + id: "BkXKLmM4SSe" + }, + { + id: "TxvZGvbZt2c" + }, + { + id: "PQZJPIpTepd" + }, + { + id: "r3xkvyHGZlY" + }, + { + id: "Ykx8Ovui7g0" + }, + { + id: "UZKttAHwQ3O" + }, + { + id: "YIjjlejd5fh" + }, + { + id: "wsHnzH0FiHu" + }, + { + id: "NAJaX88KJVs" + }, + { + id: "AFi1GjbeejL" + }, + { + id: "jaQTP2Jg3nj" + }, + { + id: "MUnd4KWox8m" + }, + { + id: "T1lTKu6zkHN" + }, + { + id: "w8ojPvnfjFU" + }, + { + id: "XmfqaErvQ2T" + }, + { + id: "oph70zH8JB2" + }, + { + id: "e89DjHAQkI7" + }, + { + id: "FVflWKHD6Ma" + }, + { + id: "zAyK28LLaez" + }, + { + id: "pRVReNCGtQX" + }, + { + id: "Zrq4LESheJZ" + }, + { + id: "rHNuReOeE6w" + }, + { + id: "TQkG0sX9nca" + }, + { + id: "xou1koq6X5Z" + }, + { + id: "oXOpq3xFqoa" + }, + { + id: "jCl2uN4KmkU" + }, + { + id: "daNrEWZCt7v" + }, + { + id: "LA2eqVd2UWw" + }, + { + id: "Z6bKbQFioAO" + }, + { + id: "yiIDLBWoovd" + }, + { + id: "DZaJmtlaBMl" + }, + { + id: "gZhwUZWynkd" + }, + { + id: "w5eAbH241Dp" + }, + { + id: "MjVr7jCutMQ" + }, + { + id: "AbNXiErdYYU" + }, + { + id: "DplgrYeRIZ1" + }, + { + id: "iWrCCRCqMTg" + }, + { + id: "GE25DpSrqpB" + }, + { + id: "My9TXwq4e3a" + }, + { + id: "sbbhhFgmNYo" + }, + { + id: "pNPmNeqyrim" + }, + { + id: "CaEVOrjbGZ8" + }, + { + id: "HAqUY00X9N5" + }, + { + id: "wg24GOkUqnM" + }, + { + id: "zmSzEw8GF2l" + }, + { + id: "HfM0x6fWUKW" + }, + { + id: "ZTK1Y2ZftV2" + }, + { + id: "B85qBFn0wBr" + }, + { + id: "ZJ6u61HhRVX" + }, + { + id: "Urk55T8KgpT" + }, + { + id: "EA4HtsQhkuQ" + }, + { + id: "HfXPzR1TukO" + }, + { + id: "eKcJJYxM5bZ" + }, + { + id: "v9lv6CYT69K" + }, + { + id: "MH1O2stu3Xk" + }, + { + id: "vNiekb7USFA" + }, + { + id: "BpWJ3cRsO6g" + }, + { + id: "GQr1SE7MPQp" + }, + { + id: "Vnc2qIRLbyw" + }, + { + id: "EE7ns6c8dR2" + }, + { + id: "iylpDxy3WMX" + }, + { + id: "tEgxbwwrwUd" + }, + { + id: "ei21lW7hFPX" + }, + { + id: "omf6FfS4ysx" + }, + { + id: "SZrG4yHGV4x" + }, + { + id: "DF76ZjQtFSg" + }, + { + id: "yAjUZ8itV2O" + }, + { + id: "Zo8SxVm8zzF" + }, + { + id: "froW8QOIDrm" + }, + { + id: "aEkkJNOW4NE" + }, + { + id: "fsJoSyVUFrL" + }, + { + id: "zyRTQBUnmHN" + }, + { + id: "c242hOcj0je" + }, + { + id: "Q7yTPmEVjGX" + }, + { + id: "DKZnUSfwjKx" + }, + { + id: "sNI8ZYGhosn" + }, + { + id: "YQYgz8exK9S" + }, + { + id: "lJ2cyJubvva" + }, + { + id: "GjJjES51GvK" + }, + { + id: "jNb63DIHuwU" + }, + { + id: "zgYDcAtX11n" + }, + { + id: "wZtcSVBwPk3" + }, + { + id: "jMfZnbGavPR" + }, + { + id: "DVjewuIdgMN" + }, + { + id: "OYu4rNy6BoX" + }, + { + id: "sX5KLZH61Bm" + }, + { + id: "mFyhkjQGryn" + }, + { + id: "H4YKbNXLTWR" + }, + { + id: "ipT3QbzIeyX" + }, + { + id: "Bpvug2zxHEZ" + }, + { + id: "BBBVY5bEPaV" + }, + { + id: "pVuRAzSstbn" + }, + { + id: "zw5ppT2dwZy" + }, + { + id: "spMBota7EJV" + }, + { + id: "Esi4BTsQPkI" + }, + { + id: "WBPidqcBN9I" + }, + { + id: "MPXjAuCEZbc" + }, + { + id: "U8gw2VESkMh" + }, + { + id: "bYvOB1fPNfS" + }, + { + id: "nbi5dTY4uJi" + }, + { + id: "PMa2VCrupOd" + }, + { + id: "QtKtTpKw7up" + }, + { + id: "m3VnSQbE8CD" + }, + { + id: "Xb8cGAjh70K" + }, + { + id: "UaLmb77kIEs" + }, + { + id: "aWsqwiwekso" + }, + { + id: "XIPfXr7M5hD" + }, + { + id: "RzgSFJ9E46G" + }, + { + id: "dGZbEZroAWr" + }, + { + id: "vt0Qgs3TSwf" + }, + { + id: "m04piiZQr7k" + }, + { + id: "dpCPH6CtfGM" + }, + { + id: "Ub2wH3CNEd7" + }, + { + id: "A1VVFDJWmMr" + }, + { + id: "RAPB2F35Ekj" + }, + { + id: "mLrrvPLjGiu" + }, + { + id: "mlwFz6XY7RD" + }, + { + id: "Dwg8bjQ95v5" + }, + { + id: "GIRLSZ1tB00" + }, + { + id: "zqiGf0gpDg1" + }, + { + id: "aWCGMEdIzi4" + }, + { + id: "k7Jz0QWEzJ8" + }, + { + id: "iWtgKW5yizV" + }, + { + id: "gufu2RqUmuS" + }, + { + id: "ThFWblIv3Xs" + }, + { + id: "fdloYAmU6Yj" + }, + { + id: "hSKG7zZ4ULB" + }, + { + id: "FkAEqvG9vKo" + }, + { + id: "TvPS2BxFsSC" + }, + { + id: "cQZ9So8eFID" + }, + { + id: "fiWcdY4wnjJ" + }, + { + id: "mfFOBmX4xEc" + }, + { + id: "dt7ptFUh3go" + }, + { + id: "dkmpOuVhBba" + }, + { + id: "FnLNrHP86sm" + }, + { + id: "wTHNIU9ea61" + }, + { + id: "zeKQE1sXgtP" + }, + { + id: "mFAF53qZpec" + }, + { + id: "LGR5WethiEH" + }, + { + id: "wpUXsfc50gu" + }, + { + id: "roQ2l7TX0eZ" + }, + { + id: "guWeClpAZ5t" + }, + { + id: "rZkUcho9Z65" + }, + { + id: "x3ti3t9eOuX" + }, + { + id: "JdrmEWlkpdM" + }, + { + id: "rdk2EQRUsrc" + }, + { + id: "M1WhdeTf5Pm" + }, + { + id: "CYWLqcwm9GX" + }, + { + id: "PNfvBIHIZI3" + }, + { + id: "afjyi5oHmrU" + }, + { + id: "SptGAcmbgPz" + }, + { + id: "zw7QKjueLpj" + }, + { + id: "olur2SZdQqC" + }, + { + id: "fKsdOUVTFup" + }, + { + id: "SdW7AIxQjzw" + }, + { + id: "rkJneAaZLlW" + }, + { + id: "KkHPtkgzKgt" + }, + { + id: "K7EUxhmIXoJ" + }, + { + id: "tJsgNjCb8b2" + }, + { + id: "wrQtiRVpMsV" + }, + { + id: "F0Up1u0BFFh" + }, + { + id: "IsEkYRf1MR1" + }, + { + id: "YIUBOkoQ3O4" + }, + { + id: "qaJ9GkmDG5S" + }, + { + id: "kBLwaiZSrRe" + }, + { + id: "RHJram03Rlm" + }, + { + id: "Ar4tSGSNxgk" + }, + { + id: "pnwgTcQLlIY" + }, + { + id: "ceA5XIhBuVq" + }, + { + id: "uRkeVypjduI" + }, + { + id: "pTVZ1Zz3DT6" + }, + { + id: "jhj2snTXQsO" + }, + { + id: "HRY7W2xFn7C" + }, + { + id: "c1bVC7ZKpXk" + }, + { + id: "qGhphtoDuF9" + }, + { + id: "gunXNgz60Vv" + }, + { + id: "gzSlLQ5bfFt" + }, + { + id: "ztlhMo0ZNhV" + }, + { + id: "P3MOVHqxd31" + }, + { + id: "VpT2s67diaS" + }, + { + id: "INA8czfW02J" + }, + { + id: "ZxQ4QMmwXNU" + }, + { + id: "VdXuxcNkiad" + }, + { + id: "DI5b3fbKeSZ" + }, + { + id: "UCgjym9Y5PL" + }, + { + id: "yvLPBoBydjF" + }, + { + id: "ko1lSrBATHX" + }, + { + id: "uNEhNuBUr0i" + }, + { + id: "VaoXm4lICCc" + }, + { + id: "Jiymtq0A01x" + }, + { + id: "oEgAw6YDyaZ" + }, + { + id: "dkcxja9eLmk" + }, + { + id: "g4l0cfvxBGR" + }, + { + id: "qj340arkHO6" + }, + { + id: "Umh4HKqqFp6" + }, + { + id: "AmVDB1jxL0V" + }, + { + id: "UYwlYm8PmUz" + }, + { + id: "RUj7Pm5nov7" + }, + { + id: "UqXSUMp19FB" + }, + { + id: "rxc497GUdDt" + }, + { + id: "quQpOfBIDFC" + }, + { + id: "D0iakqyTknH" + }, + { + id: "qOD07vxwbqz" + }, + { + id: "An8DTG2vyvR" + }, + { + id: "krNhKiOv76z" + }, + { + id: "SnYHrnchKjL" + }, + { + id: "rWaylf9zbJv" + }, + { + id: "bDK6cIausGI" + }, + { + id: "biAtcKrijjh" + }, + { + id: "TDJg50OCqnU" + }, + { + id: "k4NWA5Eecy7" + }, + { + id: "yZPsWcZC9WA" + }, + { + id: "mI6TumlhMsY" + }, + { + id: "YkjabQMwWSY" + }, + { + id: "Pr2stbkaSX3" + }, + { + id: "PzHggKApNEp" + }, + { + id: "c8hrVadlHaA" + }, + { + id: "vELaJEPLOPF" + }, + { + id: "tSBcgrTDdB8" + }, + { + id: "TrIXhUR4sDQ" + }, + { + id: "khWi4K8GC45" + }, + { + id: "INYdf2ZGJt4" + }, + { + id: "AzhfEjaa0iK" + }, + { + id: "LaxJ6CD2DHq" + }, + { + id: "inpc5QsFRTm" + }, + { + id: "jYPY8mT8gn6" + }, + { + id: "uzf88cNoiV6" + }, + { + id: "dU3vTbLRLHy" + }, + { + id: "c2EuZe9y4aM" + }, + { + id: "Wg8iDulhfOB" + }, + { + id: "dQbMXhfqs80" + }, + { + id: "ErEzlkXJb1r" + }, + { + id: "as1dnmlXLzG" + }, + { + id: "kFur7xPhpH9" + }, + { + id: "LiFStmSg6tU" + }, + { + id: "QFLpt9GLt7O" + }, + { + id: "Oo7N8aa4rqP" + }, + { + id: "whi8VZxQsLV" + }, + { + id: "t5OYn8b8EOk" + }, + { + id: "MMrdfNDfBIi" + }, + { + id: "QobI6tJAfj0" + }, + { + id: "m3oymufTfBh" + }, + { + id: "qxyUoF6NXkJ" + }, + { + id: "EzGbJniGiWl" + }, + { + id: "AIkmEEPvveh" + }, + { + id: "wRBibz76XHJ" + }, + { + id: "BTX4C42ybhE" + }, + { + id: "hv3AKXi9b2R" + }, + { + id: "BX8Rg0c8odq" + }, + { + id: "ChCeM6tH0rs" + }, + { + id: "xrzcm1FWvBF" + }, + { + id: "aUGI0fWqfym" + }, + { + id: "PKVE5CI8J31" + }, + { + id: "QZ5rmKrVleg" + }, + { + id: "zI7AWPJuHvs" + }, + { + id: "rmAS9Xy0KHQ" + }, + { + id: "eAFPQ6h5OVP" + }, + { + id: "BGyqawjqzGI" + }, + { + id: "qWBNBtlvo5n" + }, + { + id: "EmTN0L4EAVi" + }, + { + id: "lBeVyNgAorJ" + }, + { + id: "JttXgTlQAGE" + }, + { + id: "vIhGAp5N5vW" + }, + { + id: "WYLKzigewr9" + }, + { + id: "xvE8BZtT54o" + }, + { + id: "BXJnMD2eJAx" + }, + { + id: "oSXTrK6WYEO" + }, + { + id: "iBMgR8OJeDe" + }, + { + id: "UdnjL5aIJvP" + }, + { + id: "DlLBIHdpaTy" + }, + { + id: "VH7hLUaypel" + }, + { + id: "F8jA2OYicnT" + }, + { + id: "pMnWaF5RXg0" + }, + { + id: "YoPOL3tx0bb" + }, + { + id: "Y51kIJqEM02" + }, + { + id: "U7yKrx2QVet" + }, + { + id: "P3YSk7IN2eq" + }, + { + id: "R9PlP6Kps5z" + }, + { + id: "VSDIc0g3p33" + }, + { + id: "QII5GqfDfO3" + }, + { + id: "oZcCjwrbIKz" + }, + { + id: "O6y6WbAghnl" + }, + { + id: "PnNOuZdHIqG" + }, + { + id: "zgtSMt1VSVZ" + }, + { + id: "f6OiPBaI2eo" + }, + { + id: "W2KnxOMvmgE" + }, + { + id: "wuSwlbsk0im" + }, + { + id: "xynHvIgIgFw" + }, + { + id: "Y2uuyvKsbuR" + }, + { + id: "wuUqf1wueRZ" + }, + { + id: "RCzjHTTKtel" + }, + { + id: "zDuzwnbQOFT" + }, + { + id: "Ea3j0kUvyWg" + }, + { + id: "TWfHeGfGcWP" + }, + { + id: "GbWwMrFFYRt" + }, + { + id: "QsAwd531Cpd" + }, + { + id: "S7KwVLbFlss" + }, + { + id: "FBwh9zPFfou" + }, + { + id: "jVLn4RkYjo9" + }, + { + id: "C1tAqIpKB9k" + }, + { + id: "RANPcUxINhm" + }, + { + id: "hyLU8ivDJDi" + }, + { + id: "g7fSaXpPVc5" + }, + { + id: "B9RxRfRUi2R" + }, + { + id: "Si95KVfq81a" + }, + { + id: "hFanN2VKvCH" + }, + { + id: "AqvFmYsBVST" + }, + { + id: "uQQsAenwHZG" + }, + { + id: "LsCxV7cfiM1" + }, + { + id: "QLRuHeOqMsm" + }, + { + id: "Xcn3E6zk8Lu" + }, + { + id: "TeclkKWZ29A" + }, + { + id: "Xytauldn2QJ" + }, + { + id: "K4ypDWd8E2q" + }, + { + id: "hiqIAG8oG1b" + }, + { + id: "nq7F0t1Pz6t" + }, + { + id: "sHbLRZLmS4w" + }, + { + id: "XctPvvWIIcF" + }, + { + id: "bTKlyo7Gjx2" + }, + { + id: "YuFTTihVtOq" + }, + { + id: "wDrSPKn78dA" + }, + { + id: "WKLDzbD3xJ4" + }, + { + id: "vBXALSmjbvy" + }, + { + id: "n1ZtfmV5iXo" + }, + { + id: "cEGuHON3j3L" + }, + { + id: "OkEP0F800rb" + }, + { + id: "feGolnd9TUy" + }, + { + id: "RG6MGu5nUlI" + }, + { + id: "JEHwU064LAj" + }, + { + id: "RBkn3orPjiz" + }, + { + id: "KhVaRQpkxlO" + }, + { + id: "DEi9ozjiEPt" + }, + { + id: "oUM54gQRb63" + }, + { + id: "ju0MjL9fEGJ" + }, + { + id: "wB4R3E1X6pC" + }, + { + id: "DErmFP7bri7" + }, + { + id: "ZCFOvxRtTNa" + }, + { + id: "xMAhumLWbUj" + }, + { + id: "IDqnDXlk0i5" + }, + { + id: "ozb3tZ57TMc" + }, + { + id: "M2YKyPjsAYm" + }, + { + id: "DMk6LpMtUDz" + }, + { + id: "LqghfxcOSTN" + }, + { + id: "mP8GlE1ElQD" + }, + { + id: "NYDEsmbOovd" + }, + { + id: "JqpJN6ahuvo" + }, + { + id: "teRtPCqDgE6" + }, + { + id: "OpfZq5fSKDi" + }, + { + id: "n8UsOkSp3IJ" + }, + { + id: "pUZIL5xBsve" + }, + { + id: "bLYNonGzr0Y" + }, + { + id: "rebbn0ooFSO" + }, + { + id: "bkcLEIcXpDz" + }, + { + id: "mS6gjCre79w" + }, + { + id: "zobViLy7lWs" + }, + { + id: "yWgDMAeUum4" + }, + { + id: "pWutAn5p2Jc" + }, + { + id: "iMAqmLCM7pW" + }, + { + id: "GrhQXT38WfX" + }, + { + id: "C0aisGO8lgW" + }, + { + id: "z3GifKe9KnP" + }, + { + id: "jyukkJUmdng" + }, + { + id: "HgHlx5HTSiC" + }, + { + id: "CF05qjwGLtu" + }, + { + id: "iYDPhF4aS3Q" + }, + { + id: "uuIl8JqlsaW" + }, + { + id: "at6UHUQatSo" + }, + { + id: "HKopou9pAB6" + }, + { + id: "LMHQ2bwqVZb" + }, + { + id: "EjGlx5pUdAx" + }, + { + id: "ZWNfo2odfQB" + }, + { + id: "oheJlv56lNV" + }, + { + id: "qEQFWnKh4gs" + }, + { + id: "aXVvHwJXuzR" + }, + { + id: "GZwSA9KjcIL" + }, + { + id: "jrNABUMwWYU" + }, + { + id: "hih7BfD0mPe" + }, + { + id: "mMvt6zhCclb" + }, + { + id: "XGUOQaRUPjO" + }, + { + id: "ua3kNk4uraZ" + }, + { + id: "sZevo7lN0IZ" + }, + { + id: "hg3ypAkahoO" + }, + { + id: "F7u30K5OIpi" + }, + { + id: "ZW3XCXXiLcO" + }, + { + id: "iHQdnkj8ysv" + }, + { + id: "KtlCnh9ADLM" + }, + { + id: "YVVUHC0nsIT" + }, + { + id: "RwO0bsY4Qdy" + }, + { + id: "Ah2yYLjfXw5" + }, + { + id: "nhCwBn41HbZ" + }, + { + id: "ukJgi8P5Ozz" + }, + { + id: "tcEjL7gmFJL" + }, + { + id: "jZ99yOEvnFx" + }, + { + id: "QZtMuEEV9Vv" + }, + { + id: "N7mHLD3ljYc" + }, + { + id: "AAwPuBgINt5" + }, + { + id: "RXeDDKU26rB" + }, + { + id: "TMyRgQFgKi4" + }, + { + id: "KGN2jvZ0GJy" + }, + { + id: "axFuKtrQrz9" + }, + { + id: "udM6JqUcsiM" + }, + { + id: "LeE0YLhfYX4" + }, + { + id: "UtD5MsMyTrK" + }, + { + id: "zNBwz36UuyW" + }, + { + id: "VEfEyWiXDRm" + }, + { + id: "hgLfYL5bHiG" + }, + { + id: "xhmtefAZlNo" + }, + { + id: "WoqN1oUBX2R" + }, + { + id: "aw9nzUavZ2C" + }, + { + id: "cshDrVzDvA2" + }, + { + id: "ZcrjvJaYQb7" + }, + { + id: "QiDR0FAe3RM" + }, + { + id: "pITu8PZZwAX" + }, + { + id: "yai7m3X6xXL" + }, + { + id: "p1egLEARcZy" + }, + { + id: "rFYvWx4oMKa" + }, + { + id: "Mita3yG7aXx" + }, + { + id: "A6BVmKnCG9z" + }, + { + id: "KSRCzL2dHHo" + }, + { + id: "PkXxoEKbMYH" + }, + { + id: "Z7UAnjpK74g" + }, + { + id: "ZAGlASWwLnR" + }, + { + id: "kgrgx9lUOLL" + }, + { + id: "ZZmMpGIE7pD" + }, + { + id: "nFasRhFdGJr" + }, + { + id: "K8fyOKeq1my" + }, + { + id: "EuRxm058jNp" + }, + { + id: "SLus3WmxuP6" + }, + { + id: "X8DYqJWe7N2" + }, + { + id: "jhtj3eQa1pM" + }, + { + id: "qgQ49DH9a0v" + }, + { + id: "tUhIo8WWEp6" + }, + { + id: "s5aXfzOL456" + }, + { + id: "F4uBQ4jyAcX" + }, + { + id: "o9OLbcHWOS6" + }, + { + id: "g5lonXJ9ndA" + }, + { + id: "GvstqlRRnpV" + }, + { + id: "CTnuuI55SOj" + }, + { + id: "kbGqmM6ZWWV" + }, + { + id: "cKXicCOquXe" + }, + { + id: "wO4z5Aqo0hf" + }, + { + id: "C1kyEVrvVsR" + }, + { + id: "KjYGHFJP1EF" + }, + { + id: "X2C7qiFrnPc" + }, + { + id: "hqjyNM9rNFN" + }, + { + id: "m8qnxndRDR6" + }, + { + id: "XQeimQfReBQ" + }, + { + id: "O9Y65fwz0EZ" + }, + { + id: "PEZBhrM3olb" + }, + { + id: "hEjuxgJhaZD" + }, + { + id: "GyH8bjdOTsD" + }, + { + id: "FGfBgfSgtU1" + }, + { + id: "HCoggZyFGoF" + }, + { + id: "RUFLNSV96B9" + }, + { + id: "oxAoPoePpqy" + }, + { + id: "YpVol7asWvd" + }, + { + id: "VAL6bt6qZLW" + }, + { + id: "v20GQtLPipd" + }, + { + id: "tNNRPq9amd8" + }, + { + id: "XrF5AvaGcuw" + }, + { + id: "NU1xhBcfulk" + }, + { + id: "FJ67YZFK0BF" + }, + { + id: "FJFaJS52uJ4" + }, + { + id: "P18APgInH6h" + }, + { + id: "uD2UxwkzUZe" + }, + { + id: "w3vRmEz3J7t" + }, + { + id: "r0TCGeLkQKI" + }, + { + id: "kLTirjixtfx" + }, + { + id: "ZoHdXy2ueVn" + }, + { + id: "zn2a0SJnkFB" + }, + { + id: "s6IV3hOSft6" + }, + { + id: "jZQT732PZv7" + }, + { + id: "A4nMoLOGfBM" + }, + { + id: "ALZ2qr5u0X0" + }, + { + id: "YYf9h9gIwpW" + }, + { + id: "Jabrtlrhfg2" + }, + { + id: "fVXspSayPsp" + }, + { + id: "OlCQ3YdtfK9" + }, + { + id: "xiLDCJuhg0q" + }, + { + id: "IyCZTOLXUUy" + }, + { + id: "buVaSl3Fvs8" + }, + { + id: "neXhiINUSiH" + }, + { + id: "rYIkxCJFtTX" + }, + { + id: "gthKGm1k54k" + }, + { + id: "GkHpMSo5K60" + }, + { + id: "SebN7UV2WNg" + }, + { + id: "tWSCB8p6o3r" + }, + { + id: "hHbkFHHnGLL" + }, + { + id: "B2MYGHjDy4H" + }, + { + id: "NWgpyqNloqS" + }, + { + id: "ZEDKoJgFXPz" + }, + { + id: "EiARCmBCUyS" + }, + { + id: "zx3sP6ASgop" + }, + { + id: "NfE9gvFwLIF" + }, + { + id: "TbbjHIxGtTb" + }, + { + id: "Q59JcLOfIxn" + }, + { + id: "OwhDCucf4Ue" + }, + { + id: "vyOSHNNlu3t" + }, + { + id: "wcKAgJ6QvbI" + }, + { + id: "NGKCNTwKPQJ" + }, + { + id: "tF9sVDQ3v7n" + }, + { + id: "wUmVUKhnPuy" + }, + { + id: "exfs4Ituxk3" + }, + { + id: "aBIWEQRBLq6" + }, + { + id: "fjUeqXHcZM1" + }, + { + id: "At4rxDgjJRZ" + }, + { + id: "p3d71rTkD2z" + }, + { + id: "S98SPWCofg0" + }, + { + id: "qyMGuZ2UvEl" + }, + { + id: "KNMhaaSOKoJ" + }, + { + id: "yfk8mxlj5DF" + }, + { + id: "FbD5Z8z22Yb" + }, + { + id: "jIkxZKctVhB" + }, + { + id: "SkeA4IL72Ld" + }, + { + id: "Qpznxy9AOyt" + }, + { + id: "suFG8zx4bU3" + }, + { + id: "YTQRSW91PxO" + }, + { + id: "RAsstekPRco" + }, + { + id: "VnuFt8agQiq" + }, + { + id: "LPgtwcQsI3l" + }, + { + id: "b2n80jcLAAA" + }, + { + id: "QbodNMbKvx2" + }, + { + id: "ZCQTLSxANIq" + }, + { + id: "QmWe2rNcVo7" + }, + { + id: "IM9BKg9HTeC" + }, + { + id: "Kmu7ox2MiiU" + }, + { + id: "pR5hw6zSvkq" + }, + { + id: "ZquS8tb9amg" + }, + { + id: "YplgNARP2v9" + }, + { + id: "n2qFnUIhbq3" + }, + { + id: "fMyczldheOH" + }, + { + id: "xGY839b4oss" + }, + { + id: "MuZJ8lprGqK" + }, + { + id: "RwkdG4Pku2x" + }, + { + id: "otkxeFxVkzj" + }, + { + id: "c5b2mDxuc0l" + }, + { + id: "aLEI0weyyz3" + }, + { + id: "us7yjPh5iGX" + }, + { + id: "oUR5HPmim7E" + }, + { + id: "pcB6FLnqkJF" + }, + { + id: "VZ6Cocesljy" + }, + { + id: "AzecJfMwgEV" + }, + { + id: "IHa6fsNWsOZ" + }, + { + id: "GX6LzCzznCy" + }, + { + id: "Aly9adBnVU1" + }, + { + id: "jbfISeV6Wdu" + }, + { + id: "cUNdCErxl9g" + }, + { + id: "UqHuR4IYvTY" + }, + { + id: "BH2qZesoAeO" + }, + { + id: "xXhKbgwL39t" + }, + { + id: "yK4oZOB7EiG" + }, + { + id: "WsH059ZpmAs" + }, + { + id: "W43B6GUM2Tl" + }, + { + id: "r6QphTbnehw" + }, + { + id: "ogyO28fADpX" + }, + { + id: "YgZ4Z3kBRNl" + }, + { + id: "sNIfmLpAU19" + }, + { + id: "m0waywPx7OL" + }, + { + id: "ABEKZr3QWov" + }, + { + id: "DG5aYrAHXwK" + }, + { + id: "jIFemD5Wzt2" + }, + { + id: "Y76dJfBzES2" + }, + { + id: "MyCjnty1IsQ" + }, + { + id: "qKSq8mDlNy8" + }, + { + id: "Ur0muigzMHo" + }, + { + id: "QRnF3HksUMu" + }, + { + id: "bHcw141PTsE" + }, + { + id: "ylYQyiLa1nT" + }, + { + id: "jNDnGEHcwZP" + }, + { + id: "sKxtxvhr8KW" + }, + { + id: "McPuk9dcK0B" + }, + { + id: "xa4F6gesVJm" + }, + { + id: "D9rRHP0lKr8" + }, + { + id: "zajjkmuN1Ok" + }, + { + id: "roGdTjEqLZQ" + }, + { + id: "Ra2UWBS4gjX" + }, + { + id: "LBNgzOuABXB" + }, + { + id: "qa9Y0ezvop7" + }, + { + id: "g6y7PS0UQR4" + }, + { + id: "CWOTtvCDJYa" + }, + { + id: "U4lvyiEwooh" + }, + { + id: "XJGrj2dUvzx" + }, + { + id: "dQhvafG6jux" + }, + { + id: "PsNeguUSaVD" + }, + { + id: "NW2JvC6z5JS" + }, + { + id: "KKoPh1lDd9j" + }, + { + id: "dQ2QtHODZaO" + }, + { + id: "w9grWvUGdHu" + }, + { + id: "B4NHNb1Bm7A" + }, + { + id: "mr7OwDuAP4z" + }, + { + id: "QnX2a3zZOZ2" + }, + { + id: "PwgoRuWEDvJ" + }, + { + id: "tGf942oWszb" + }, + { + id: "jrfHAAMETHf" + }, + { + id: "cAEx4dZD2T2" + }, + { + id: "bIIZYa9z58q" + }, + { + id: "xMn4Wki9doK" + }, + { + id: "ulHTuGou4LR" + }, + { + id: "OzVuFaZgm5U" + }, + { + id: "AovmOHadayb" + }, + { + id: "xO7pyQJM2FV" + }, + { + id: "E4jn4059Y1x" + }, + { + id: "WMj6mBDw76A" + }, + { + id: "uH6gR3CtE3R" + }, + { + id: "Ls2ESQONh9S" + }, + { + id: "KaevAHPgkA8" + }, + { + id: "d9zRBAoM8OC" + }, + { + id: "y0tqazrZIlh" + }, + { + id: "ED3mZ9GQIKP" + }, + { + id: "HnttTTAMIt0" + }, + { + id: "V7r7FZmkoNj" + }, + { + id: "cerLzXA6f8o" + }, + { + id: "uoPC2z9r7Cc" + }, + { + id: "o3ZSHOjwZCT" + }, + { + id: "NjyJYiIuKIG" + }, + { + id: "OGOHhA2JITt" + }, + { + id: "NiBSqfOJTK9" + }, + { + id: "DuhEJ25cEfO" + }, + { + id: "GDpPwohmZR5" + }, + { + id: "EO6ghLtWv4W" + }, + { + id: "yCu3XEgT2YA" + }, + { + id: "N233eZJZ1bh" + }, + { + id: "tJ9NWrFQYIn" + }, + { + id: "RhvU7OcROij" + }, + { + id: "iohLy51Wucq" + }, + { + id: "DaX2xXnwnqR" + }, + { + id: "LXCVfc8Hq16" + }, + { + id: "Sg9hxZ10WLH" + }, + { + id: "rwTsaX9vYzs" + }, + { + id: "grqb8xgLgHX" + }, + { + id: "y8NVrM0dCbB" + }, + { + id: "MSjsRmnDHDU" + }, + { + id: "qmHCJU9rGxZ" + }, + { + id: "CibN8DH2dfX" + }, + { + id: "rQpKw6phGnI" + }, + { + id: "e45Eq2Bc9DN" + }, + { + id: "uMmRh1eO5Oi" + }, + { + id: "BDBXHeASwHl" + }, + { + id: "gv6r4BroPVG" + }, + { + id: "Lt8U7GVWvSR" + }, + { + id: "PXt5ELPbAgk" + }, + { + id: "lwHs72tP6Kh" + }, + { + id: "gO8VFUEuL8I" + }, + { + id: "Dp6XolEi9ka" + }, + { + id: "egjrZ1PHNtT" + }, + { + id: "OsiWXsujNmv" + }, + { + id: "tGw5maoBEKa" + }, + { + id: "JV9GsxSCUTD" + }, + { + id: "ZUPlEAO5sFR" + }, + { + id: "l8MAIijr4wE" + }, + { + id: "a9kwuVFl3qX" + }, + { + id: "IJAqv78eBQU" + }, + { + id: "SO8snoI3Klj" + }, + { + id: "JuqK6gPFZCa" + }, + { + id: "MJyiVDpQhtG" + }, + { + id: "XmHZS0AVSgH" + }, + { + id: "L2ZAOf3Ky6C" + }, + { + id: "xCozoBLImmX" + }, + { + id: "WKjhvY9SHet" + }, + { + id: "YryMezGzLlZ" + }, + { + id: "FV03hgATQ2H" + }, + { + id: "PQEpIeuSTCN" + }, + { + id: "LsSc30wIhtV" + }, + { + id: "Lvw2QTPcsJD" + }, + { + id: "E95jvXVcqLx" + }, + { + id: "vg68gZDgmsi" + }, + { + id: "vntT8vdy3Ww" + }, + { + id: "HVQ6gJE8R24" + }, + { + id: "q3vst3dBga3" + }, + { + id: "twKXygtEm9J" + }, + { + id: "o27TbVFUwdC" + }, + { + id: "DCsHuHs7KfX" + }, + { + id: "UE59KfabGJR" + }, + { + id: "Tby6SvmBySY" + }, + { + id: "AB6uIPosqgo" + }, + { + id: "ji9q5dX0h4v" + }, + { + id: "J0V9vIHbrdd" + }, + { + id: "mRtFgk14qta" + }, + { + id: "rvSZ34dc495" + }, + { + id: "VCtF1DbspR5" + }, + { + id: "y5EcobmRqlf" + }, + { + id: "gei3Sqw8do7" + }, + { + id: "KHLhO97w6II" + }, + { + id: "SQ44Hah4iK9" + }, + { + id: "QedXVQoxvRd" + }, + { + id: "a1JeE2czB2f" + }, + { + id: "w8JeMzShT3n" + }, + { + id: "ci68N9dQOfR" + }, + { + id: "kMTHqMgenme" + }, + { + id: "D6B4jrCpCwu" + }, + { + id: "KMYrKBgTklI" + }, + { + id: "jfs8iMB7kSh" + }, + { + id: "FPIeTw3A4Oh" + }, + { + id: "jaLbq15YhsN" + }, + { + id: "RpjUEvgWSNO" + }, + { + id: "zRoVj3nwHaf" + }, + { + id: "MrME31scKA1" + }, + { + id: "Kp4Q9nxrsH5" + }, + { + id: "mgEzZMPoVsM" + }, + { + id: "RjEISbzOwGa" + }, + { + id: "Eg9rjaJj9Zw" + }, + { + id: "eLLMnNjuluX" + }, + { + id: "rJ25bHbIujw" + }, + { + id: "hwntxYzze39" + }, + { + id: "TY1yPBvyMhT" + }, + { + id: "ee7ESKPY0SK" + }, + { + id: "LsYpCyYxSLY" + }, + { + id: "JOS7BDReyj7" + }, + { + id: "YXdC9hjYPqQ" + }, + { + id: "BedE3DKQDFf" + }, + { + id: "C7Ds3G2S2SI" + }, + { + id: "VTtyiYcc6TE" + }, + { + id: "w6naSlwGh2J" + }, + { + id: "nCh5dBoJVNw" + }, + { + id: "syXNwTNhT7P" + }, + { + id: "MmlCujRndkp" + }, + { + id: "DIQl5jJ17IE" + }, + { + id: "cMFi8lYbXHY" + }, + { + id: "nUuqLgn8Qc3" + }, + { + id: "SAxkZwvavKT" + }, + { + id: "Gp5aAebaSNK" + }, + { + id: "simyC07XwnS" + }, + { + id: "rTgtQxrvEPQ" + }, + { + id: "XbyObqerCya" + }, + { + id: "zXPBoSc4KyM" + }, + { + id: "xPtDHrAuPoA" + }, + { + id: "zBKIqG1R5g9" + }, + { + id: "NqWaKXcg01b" + }, + { + id: "iAj7Ewxdwa3" + }, + { + id: "krq8BqQbbmI" + }, + { + id: "ApLCxUmnT6q" + }, + { + id: "NqwvaQC1ni4" + }, + { + id: "QZzRkqdGjlm" + }, + { + id: "KBzvfYH2IA1" + }, + { + id: "uZsR1LdSFJB" + }, + { + id: "K3GDDEXSMQB" + }, + { + id: "kyATsd6uKiq" + }, + { + id: "NKiBpnUwO9p" + }, + { + id: "gPAjoiB5SX9" + }, + { + id: "tCKAurGbpq0" + }, + { + id: "TJGlQpCVTBe" + }, + { + id: "wsgR0GAzkyz" + }, + { + id: "cidLBZ9xWgf" + }, + { + id: "jyK8oiPuNMz" + }, + { + id: "SoTBFNQ4G14" + }, + { + id: "Vmsnp5hQl90" + }, + { + id: "ZKJnsGv2sWe" + }, + { + id: "FgHoAGcmrkX" + }, + { + id: "gJqN4yvssis" + }, + { + id: "eCXOR0L7v0X" + }, + { + id: "O2TL7mWlZ2b" + }, + { + id: "AHocmOz2L53" + }, + { + id: "wQBORtz3T9t" + }, + { + id: "fC4jfBrd5CT" + }, + { + id: "w7zPyExdAWn" + }, + { + id: "QFpqLHH7rCF" + }, + { + id: "v0HMlSxlH7l" + }, + { + id: "OTlKtnhvEm1" + }, + { + id: "OjXNuYyLaCJ" + }, + { + id: "Tp1KANrrTOJ" + }, + { + id: "Mi0QgAZ7jEG" + }, + { + id: "oztnomFGksy" + }, + { + id: "aq39jUFDoHX" + }, + { + id: "QN4te5Z5svQ" + }, + { + id: "TljiT6C5D0J" + }, + { + id: "o3PDrJRu66e" + }, + { + id: "gAOWmDrXMFh" + }, + { + id: "sWJnnEz3q2x" + }, + { + id: "AXZq6q7Dr6E" + }, + { + id: "PiXUQ8HA4d4" + }, + { + id: "dj6vtuKX6vj" + }, + { + id: "upteAwMwusK" + }, + { + id: "DxPNV7VHauJ" + }, + { + id: "RD5DzigDjiz" + }, + { + id: "PN5hDOhIIF1" + }, + { + id: "IGGWbCC8eF3" + }, + { + id: "I9JczYK377Z" + }, + { + id: "zKBGP6TDea4" + }, + { + id: "GWgBkEZXC02" + }, + { + id: "lyUQCDYniai" + }, + { + id: "CyAC5WEzrYz" + }, + { + id: "CENwKO2lr4x" + }, + { + id: "dwsSyf9njUn" + }, + { + id: "GUAyHWU9cCu" + }, + { + id: "Fhko00f3hXT" + }, + { + id: "bP3VpniJUYY" + }, + { + id: "a1E6QWBTEwX" + }, + { + id: "FdsFbCaN7Ja" + }, + { + id: "uGOpFqowOkm" + }, + { + id: "VassSilAL7I" + }, + { + id: "siaq8Je7jX1" + }, + { + id: "gfnaoSt0egS" + }, + { + id: "Tr6UmlJiq41" + }, + { + id: "Iq76Ca75nnj" + }, + { + id: "Jzh4P7p8Hbr" + }, + { + id: "zKC8EatPme1" + }, + { + id: "goGBnsehByC" + }, + { + id: "CKkE4GBJekz" + }, + { + id: "OXebNorOqcu" + }, + { + id: "DIHScLaWhLJ" + }, + { + id: "i0U0m9xZ57l" + }, + { + id: "zSNUViKdkk3" + }, + { + id: "RhDiD8ImCB0" + }, + { + id: "jOAIXvpGADD" + }, + { + id: "EwtpoSnkpxW" + }, + { + id: "BPxrc4Fl8nz" + }, + { + id: "O0Q3UNvaQEW" + }, + { + id: "Tm648BJovO9" + }, + { + id: "UrzvinLKbfv" + }, + { + id: "aRuJKmomHMG" + }, + { + id: "j57JudVQJtn" + }, + { + id: "mGMDZwsc7Le" + }, + { + id: "XRUD3Ij0OmQ" + }, + { + id: "jmIPBj66vD6" + }, + { + id: "YDDOlgRBEAA" + }, + { + id: "TGcwut79OuV" + }, + { + id: "GhDwjKv07iC" + }, + { + id: "S3eReuYVOb0" + }, + { + id: "ERmBhYkhV6Y" + }, + { + id: "jk1TtiBM5hz" + }, + { + id: "PMfipWHYbGl" + }, + { + id: "Zbp8TbiMKVc" + }, + { + id: "XLiqwElsFHO" + }, + { + id: "PrJQHI6q7w2" + }, + { + id: "HBhABfmZYjs" + }, + { + id: "GqgJjc3pRIM" + }, + { + id: "BNNSMEtV3Ip" + }, + { + id: "zKvDNHKAmFD" + }, + { + id: "T00ogLw26zJ" + }, + { + id: "Ep5iWL1UKvF" + }, + { + id: "rjABuELB5qH" + }, + { + id: "rm60vuHyQXj" + }, + { + id: "mZgIWuhdl7S" + }, + { + id: "tYM3Q7fGt2t" + }, + { + id: "WLcmiv8HoZg" + }, + { + id: "FTqS0LRJt5Q" + }, + { + id: "L05Bfpu7AcZ" + }, + { + id: "KIkeI99O52y" + }, + { + id: "XL745P4ETSL" + }, + { + id: "YuQRtpLP10I" + }, + { + id: "c7qin6VKPwa" + }, + { + id: "Jiyc4ekaMMh" + }, + { + id: "fnomliaZ2e6" + }, + { + id: "l0WRLZlEgB1" + }, + { + id: "svCLFkT99Yx" + }, + { + id: "vpNGJvZ0ljF" + }, + { + id: "jA0YloRLb1y" + }, + { + id: "LViiiQsryn1" + }, + { + id: "XQerhSrmhfi" + }, + { + id: "HT5fvEbXC77" + }, + { + id: "Gn7XMx9P7E8" + }, + { + id: "dC9cewXMORF" + }, + { + id: "MA15a0RFnXL" + }, + { + id: "SxrME3D8E0L" + }, + { + id: "j8QuHSoarWG" + }, + { + id: "RubFlO3k9HS" + }, + { + id: "I3NxIqG7bD4" + }, + { + id: "w43AtSki36B" + }, + { + id: "nDoybVJLD74" + }, + { + id: "VAvUYzmqjpN" + }, + { + id: "wXFl8kl4kIP" + }, + { + id: "DLVjfSI99Zy" + }, + { + id: "qgNo8tg3Di7" + }, + { + id: "ew7dnqz26G8" + }, + { + id: "QO9PT4p9cY8" + }, + { + id: "RaQGHRti7JM" + }, + { + id: "XHtkQoLWndu" + }, + { + id: "BG2fC2mRFOL" + }, + { + id: "hjqgB6hEdl3" + }, + { + id: "L1LgIDIrH2u" + }, + { + id: "gUrxduvyA88" + }, + { + id: "XXlzHWzhf5d" + }, + { + id: "vRMRu0aQ9jT" + }, + { + id: "BeyXziaxVq9" + }, + { + id: "ktYn8eqdPH0" + }, + { + id: "ovxTi8n3w10" + }, + { + id: "hPL3DXfnJQs" + }, + { + id: "IEX2ujGUPko" + }, + { + id: "FIS26MNECtG" + }, + { + id: "L4k4a0dpH2S" + }, + { + id: "tXL6C7P0ObJ" + }, + { + id: "vxExu6yOYLg" + }, + { + id: "mi4TEVsuCdU" + }, + { + id: "wN4d1O1bl70" + }, + { + id: "M6hljPzblFr" + }, + { + id: "OrWDfEktbpc" + }, + { + id: "LhScwLDVbWc" + }, + { + id: "wbd2RfvEdPO" + }, + { + id: "NylLchFHmmd" + }, + { + id: "vj0HUVazItT" + }, + { + id: "ItmNFu3zpe2" + }, + { + id: "YUjh5T11T8J" + }, + { + id: "s15Y0I2u3n9" + }, + { + id: "HZS30werfQI" + }, + { + id: "QkczRcSeNck" + }, + { + id: "tWjUy6MCx8q" + }, + { + id: "ynCknLU4yp0" + }, + { + id: "ev8vNoUt06h" + }, + { + id: "xmZNDeO0qCR" + }, + { + id: "jJLJVTp94ik" + }, + { + id: "SdfJMQNOHWR" + }, + { + id: "LqH7ZGU9KAx" + }, + { + id: "rIgJX4N0DGZ" + }, + { + id: "A0HKWFS2bXq" + }, + { + id: "BYQmclDY0kG" + }, + { + id: "ZE830mSvJIj" + }, + { + id: "STv4PP4Hiyl" + }, + { + id: "E7IDb3nNiW7" + }, + { + id: "u8JTnS25d14" + }, + { + id: "ikmWWl1lYQe" + }, + { + id: "GcwGqLqyi1M" + }, + { + id: "MpzW5fnjKm0" + }, + { + id: "WgpmqsXjMky" + }, + { + id: "nYiOoF2nXIr" + }, + { + id: "ZDq48uzhwgp" + }, + { + id: "ozJtldnzVci" + }, + { + id: "FFU3PJ3pY7s" + }, + { + id: "ou8aaIZ5JQG" + }, + { + id: "aWQTfvgPA5v" + }, + { + id: "aBFWK4fkCSp" + }, + { + id: "rQABSQJOmEl" + }, + { + id: "u6ZGNI8yUmt" + }, + { + id: "OuwX8H2CcRO" + }, + { + id: "QNKhE87p99N" + }, + { + id: "zXOXq5Z5k9Y" + }, + { + id: "AZ5X2CeTNsk" + }, + { + id: "xKQ2Len7DZW" + }, + { + id: "EBH26h8xEHS" + }, + { + id: "caJG6iqRw8v" + }, + { + id: "jXkJuHLkCUx" + }, + { + id: "Ti2u39leAyB" + }, + { + id: "RUCp6OaTSAD" + }, + { + id: "a6qzvruj6Yo" + }, + { + id: "wqbyzbQ78oI" + }, + { + id: "HtBpfusot9i" + }, + { + id: "DVBOvb8FN28" + }, + { + id: "KeRTMfobqNd" + }, + { + id: "DdbASCOt7vn" + }, + { + id: "cZtKKa9eJZ3" + }, + { + id: "aXnGiQGhOAj" + }, + { + id: "dEJMwPIUL9F" + }, + { + id: "EoCCYm3pwM5" + }, + { + id: "WVsJxenqmLu" + }, + { + id: "eNyv1VGkor6" + }, + { + id: "AJ2V28fscgu" + }, + { + id: "BkHC3TJjcHi" + }, + { + id: "Qu0QOykPdcD" + }, + { + id: "Q0HywoaWOcM" + }, + { + id: "kbwwO4MVVkF" + }, + { + id: "yN30LZEqji8" + }, + { + id: "vwvDblM3MNX" + }, + { + id: "Y0xDhcMWpZM" + }, + { + id: "o7qvXc3AcU0" + }, + { + id: "SFQMGHMYS1S" + }, + { + id: "NaVzm59XKGf" + }, + { + id: "XKFPtFUoQOw" + }, + { + id: "lf7FRlrchg3" + }, + { + id: "i7DUixndVFU" + }, + { + id: "u3rHGQGLLP7" + }, + { + id: "v7OOl5MQJ9P" + }, + { + id: "LkkRfdgIMHO" + }, + { + id: "bOqF2CguxWH" + }, + { + id: "yXBtSoD0IRS" + }, + { + id: "eNtRuQrrZeo" + }, + { + id: "pJv8NJlJNhU" + }, + { + id: "eWLJjzD9ICx" + }, + { + id: "So2b8zJfcMa" + }, + { + id: "oNrKKmm2dlf" + }, + { + id: "Q9DHKhuA5V9" + }, + { + id: "DUGVViJ74xV" + }, + { + id: "HMl96pTVhtF" + }, + { + id: "sT6f9A7siDE" + }, + { + id: "Zoy23SSHCPs" + }, + { + id: "lmNWdmeOYmV" + }, + { + id: "m21WB5iqHAb" + }, + { + id: "KLaXSsAgfZq" + }, + { + id: "iXSmKsku3Ne" + }, + { + id: "jtELMZtnJ8u" + }, + { + id: "Nc2ZV8p3kMc" + }, + { + id: "b2ejUUjMpSH" + }, + { + id: "EoxAZrVuKdk" + }, + { + id: "AqABf7CnBml" + }, + { + id: "sLKHXoBIqSs" + }, + { + id: "mUuCjQWMaOc" + }, + { + id: "PRpG2JzN6Bw" + }, + { + id: "QzPf0qKBU4n" + }, + { + id: "U8uqyDAu5bH" + }, + { + id: "JIXvu2GKUD0" + }, + { + id: "wONYHO8OqW0" + }, + { + id: "VVh6daodwip" + }, + { + id: "ADTKPTQYHYW" + }, + { + id: "PybxeRWVSrI" + }, + { + id: "G037PAPU5dO" + }, + { + id: "hzf90qz08AW" + }, + { + id: "ErnMNYzf4pG" + }, + { + id: "KLQ6EjYJtSs" + }, + { + id: "BhJwyLVNfcA" + }, + { + id: "TpqDscbLmkO" + }, + { + id: "z1hFWNXaAgG" + }, + { + id: "GTm8GEXKOsw" + }, + { + id: "oNqqmKD0zXj" + }, + { + id: "xcYd2l3lTt7" + }, + { + id: "vWXhyPAuad6" + }, + { + id: "vTx4EOyrchY" + }, + { + id: "bG0PlyD0iP3" + }, + { + id: "ekFsAHd8Vvc" + }, + { + id: "HQZrTUPppNA" + }, + { + id: "h5SRqGqzQFf" + }, + { + id: "vbc9y77gd3D" + }, + { + id: "C9c7ljhs5jQ" + }, + { + id: "uIiuIBInEE4" + }, + { + id: "b9tzz3V6E8C" + }, + { + id: "pafASdCcD3F" + }, + { + id: "C4IEy6sOsFF" + }, + { + id: "nyXKHCD6RyM" + }, + { + id: "fpoiR6W8HJD" + }, + { + id: "OTxN3Xr6RQr" + }, + { + id: "eigafNrAUJ2" + }, + { + id: "sEnmPtYa6Y1" + }, + { + id: "y77LiPqLMoq" + }, + { + id: "WBKkXqtW4jM" + }, + { + id: "FMTLXYK8vto" + }, + { + id: "qcjMMl3kRJi" + }, + { + id: "h0yeqL8UG60" + }, + { + id: "zarirFTbETw" + }, + { + id: "ujcXJx1wyma" + }, + { + id: "PLoeN9CaL7z" + }, + { + id: "TG80sobijni" + }, + { + id: "L4sGrTCjq5v" + }, + { + id: "c41XRVOYNJm" + }, + { + id: "m5BX6CvJ6Ex" + }, + { + id: "EknS8OEyuHh" + }, + { + id: "zo4GCx08IiQ" + }, + { + id: "tO01bqIipeD" + }, + { + id: "kDxbU1uSBFh" + }, + { + id: "d5TCI3X2KNe" + }, + { + id: "OtlPAL0mwS4" + }, + { + id: "c9wCIfbcyVo" + }, + { + id: "refSvcczxVN" + }, + { + id: "fXT1scbEObM" + }, + { + id: "kf6epm5PjDR" + }, + { + id: "flQBQV8eyHc" + }, + { + id: "xNc3QnURji6" + }, + { + id: "QFWdVc2gsOR" + }, + { + id: "ENhKQxBgy4x" + }, + { + id: "TyE10DGhTZt" + }, + { + id: "ajILkI0cfxn" + }, + { + id: "irs6pqxITRk" + }, + { + id: "RQgXBKxgvHf" + }, + { + id: "GbEIMKrTTuA" + }, + { + id: "iacIJtmOmZr" + }, + { + id: "IPpdr6vYRpp" + }, + { + id: "NnQpISrLYWZ" + }, + { + id: "xvJvLvwuYJf" + }, + { + id: "XkA2vbJAWHG" + }, + { + id: "ApJm3DbaVgj" + }, + { + id: "xpask7jp6zD" + }, + { + id: "gopPki3Td91" + }, + { + id: "XEY4IGqp1iZ" + }, + { + id: "KRAZiaejzfy" + }, + { + id: "SMNAb0b3wg4" + }, + { + id: "IOQJteT7lV3" + }, + { + id: "jgk0Lu2dHR4" + }, + { + id: "t3ZBEjKR5Fe" + }, + { + id: "p8I1jCARIlk" + }, + { + id: "QUPnbGNDxUf" + }, + { + id: "aZqXw77QmKa" + }, + { + id: "Vw6CNyFUeh9" + }, + { + id: "eJ9HKHJru29" + }, + { + id: "tNQw4owjQGF" + }, + { + id: "M6BCVT7IxBs" + }, + { + id: "KwjPvt4rggS" + }, + { + id: "J2KlzUHregx" + }, + { + id: "iGHlidSFdpu" + }, + { + id: "h2qqrkjSXo9" + }, + { + id: "qVvitxEF2ck" + }, + { + id: "Yrr7m6PaoOe" + }, + { + id: "taY1S1zmTQw" + }, + { + id: "JvG2cMIlEOo" + }, + { + id: "iglTBRgztSf" + }, + { + id: "LIOrpC8YMct" + }, + { + id: "wXwH5qm2qZa" + }, + { + id: "sF0bS2qEFSy" + }, + { + id: "KuKq7mafedt" + }, + { + id: "E72VbXF1fE1" + }, + { + id: "YtcaGQr8yyX" + }, + { + id: "qGMnda3wdGC" + }, + { + id: "S0IXhwQq5cE" + }, + { + id: "uedNhvYPMNu" + }, + { + id: "FxqBJWy8Pce" + }, + { + id: "Vth0fbpFcsO" + }, + { + id: "D1Iehj3CfaK" + }, + { + id: "cC03EwJLBiO" + }, + { + id: "PqTBRQeXkyH" + }, + { + id: "qKQWsqXzkfE" + }, + { + id: "zYUGiHTVY9I" + }, + { + id: "m0OUXDF73W4" + }, + { + id: "oCSkhmS12o7" + }, + { + id: "PYGrWaQUBDW" + }, + { + id: "iRPjJh7TaRw" + }, + { + id: "tyQJarXmdLc" + }, + { + id: "taKiTcaf05H" + }, + { + id: "Gyb5SWn4tsH" + }, + { + id: "qbqrFLCJewu" + }, + { + id: "KYXbIQBQgP1" + }, + { + id: "je00dYb0Fjt" + }, + { + id: "B3ysOUhhP50" + }, + { + id: "LnToY3ExKxL" + }, + { + id: "UdgnuDRXHKa" + }, + { + id: "kkM3AHiTZRy" + }, + { + id: "RarwVaP1miS" + }, + { + id: "Gtnbmf4LkOz" + }, + { + id: "AIM09vwxjoN" + }, + { + id: "xRd0xHrcIZZ" + }, + { + id: "KAUSOoBq5Ft" + }, + { + id: "cbzlO79fN3p" + }, + { + id: "ctN0WgIvfke" + }, + { + id: "FcQzzW6U8Y8" + }, + { + id: "MPqsNozhesT" + }, + { + id: "GelVgpRfBP0" + }, + { + id: "GM9ddjXIO5b" + }, + { + id: "tHm1GsDYnuz" + }, + { + id: "yZgW4ocTGgY" + }, + { + id: "kFScvrF3wPo" + }, + { + id: "nnCPMNv5lyk" + }, + { + id: "Q69n0EBG8qQ" + }, + { + id: "Qr41Mw2MSjo" + }, + { + id: "YQlYe58mcvr" + }, + { + id: "jkPHBqdn9SA" + }, + { + id: "ovqx1s4UvwX" + }, + { + id: "UBgShK573vu" + }, + { + id: "LUGqPutql0P" + }, + { + id: "TsS7lrq8T4E" + }, + { + id: "S04Pzo6A3PB" + }, + { + id: "ZNrY0pWI2OA" + }, + { + id: "H627AlofZ7M" + }, + { + id: "hSQTa9g0tAX" + }, + { + id: "PsaScwbmuZB" + }, + { + id: "DScDxDlwPah" + }, + { + id: "zUpyRGmtWRt" + }, + { + id: "B3BUoiHBUlm" + }, + { + id: "nodhR6M8qae" + }, + { + id: "E392epw5IwM" + }, + { + id: "ZKL5hlVG6F6" + }, + { + id: "tHn4CznxJ68" + }, + { + id: "XtSEz4PutDi" + }, + { + id: "G5FuODAbH6X" + }, + { + id: "hx5eqrPvIfz" + }, + { + id: "KPCzoj1FCus" + }, + { + id: "irVdYBmHBxs" + }, + { + id: "OfWmQyZmCxO" + }, + { + id: "GtJoxCaM2zg" + }, + { + id: "PyLBGdbzdEo" + }, + { + id: "jIrb5XckcU6" + }, + { + id: "culzJxfj21F" + }, + { + id: "olMCPYWjb7g" + }, + { + id: "g10jm7jPdzf" + }, + { + id: "GrwBI6ePkhI" + }, + { + id: "WdgS1JcBL2g" + }, + { + id: "P9mWsLb1iuy" + }, + { + id: "aR6wsq6SonE" + }, + { + id: "V1v67tAA0K3" + }, + { + id: "yPJ4Te5qM1h" + }, + { + id: "h0MSld1fn2I" + }, + { + id: "GGBRXgVQRdo" + }, + { + id: "jFAUfrT5Pfv" + }, + { + id: "RDhmsV3lHAN" + }, + { + id: "nurO6U9bOLi" + }, + { + id: "cZZG5BMDLps" + }, + { + id: "Lo5u78zjVmI" + }, + { + id: "HfVjCurKxh2" + }, + { + id: "mrBndhiKqjA" + }, + { + id: "ledzgtUphJj" + }, + { + id: "XB3Qj0kYF0f" + }, + { + id: "xKQXnxlPxU8" + }, + { + id: "bqAXudPlvhj" + }, + { + id: "yiHWwU1GwoZ" + }, + { + id: "tBZtbB7hx47" + }, + { + id: "YVub7QjM6T0" + }, + { + id: "VuKoJ8XY4rO" + }, + { + id: "XsVnQFeFyox" + }, + { + id: "wy6tbexg2nu" + }, + { + id: "uFp0ztDOFbI" + }, + { + id: "kqsWemfdGOQ" + }, + { + id: "vRC0stJ5y9Q" + }, + { + id: "FmdWGryL7z1" + }, + { + id: "KRY1k9epXli" + }, + { + id: "aF6iPGbrcRk" + }, + { + id: "mKOOL4LhZvt" + }, + { + id: "vlNXjc2lk9y" + }, + { + id: "oJTyrmGWHZh" + }, + { + id: "dyn5pihalrJ" + }, + { + id: "IxeN8shmAZ7" + }, + { + id: "b5EAvdBwDHG" + }, + { + id: "zv7j9KieSrq" + }, + { + id: "gZaCpLQkpeW" + }, + { + id: "uswM5xorTS7" + }, + { + id: "deJPfc9oLY5" + }, + { + id: "FllWYav6pG0" + }, + { + id: "gWSjWbnFlwI" + }, + { + id: "rx9ubw0UCqj" + }, + { + id: "hPFZ1G3jGm0" + }, + { + id: "aXsLBCzwYWW" + }, + { + id: "TOQP5dsGHqU" + }, + { + id: "xkeKLJUvGIc" + }, + { + id: "u5fdPkBPojq" + }, + { + id: "gAGXJVwvwme" + }, + { + id: "Ulwamw8vARR" + }, + { + id: "M9zdJTQx5tE" + }, + { + id: "Du1YtKyhrxi" + }, + { + id: "NR8ALkGErVJ" + }, + { + id: "G9InxHZh8GW" + }, + { + id: "XwJIW9a0fC8" + }, + { + id: "cKJCh06mzRd" + }, + { + id: "vjBQNAtngKg" + }, + { + id: "SxVc2y8PcxV" + }, + { + id: "Z4ta9ElJxxI" + }, + { + id: "OG3I3fdFo08" + }, + { + id: "FQ5CCuUKNLf" + }, + { + id: "iaiMSWX94Ml" + }, + { + id: "VfZnZ6UKyn8" + }, + { + id: "ZarzH6dbVZh" + }, + { + id: "wcHRDp21Lw1" + }, + { + id: "CSDGDOa7wHd" + }, + { + id: "KepKNYEgaCD" + }, + { + id: "jEy7oGUCFtW" + }, + { + id: "si34vmovtgR" + }, + { + id: "oiSllOTiHNx" + }, + { + id: "hh225P9zLrX" + }, + { + id: "Ieg2xum6dhc" + }, + { + id: "HXyVf1JN6NV" + }, + { + id: "tFSJeNF6qKT" + }, + { + id: "wkYbuEwNWyf" + }, + { + id: "bFx03Fvvd88" + }, + { + id: "JVe2ltng871" + }, + { + id: "Sc4OR4lxFfo" + }, + { + id: "GAbOhTpoEMC" + }, + { + id: "OKucwkQqPiR" + }, + { + id: "i0rpgbre6tW" + }, + { + id: "Eyj2kiEJ7M3" + }, + { + id: "lnbeMIB22aM" + }, + { + id: "zV1GjNSVQ0v" + }, + { + id: "YBZcWphXQ99" + }, + { + id: "WOk7efLlLSj" + }, + { + id: "zl33o8ENvDJ" + }, + { + id: "P8XdTqEDM6U" + }, + { + id: "GEbBu8ALs5H" + }, + { + id: "VSwnkMSAdp7" + }, + { + id: "qS9NEpGEhlr" + }, + { + id: "r06ohri9wA9" + }, + { + id: "GGDHb8xd8jc" + }, + { + id: "iQ99IjaXfIk" + }, + { + id: "UPTEK1slgAh" + }, + { + id: "vTbjX1lqHTW" + }, + { + id: "YvwYw7GilkP" + }, + { + id: "Zr7pgiajIo9" + }, + { + id: "IbYAr9jOADV" + }, + { + id: "I342IKVFy5C" + }, + { + id: "zEYrsiNUGIo" + }, + { + id: "T0CJY0T0doC" + }, + { + id: "UQFN0GRVfhY" + }, + { + id: "k1m6se9uYnI" + }, + { + id: "C7HvUkkFvye" + }, + { + id: "qcYG2Id7GS8" + }, + { + id: "vPKxHJ1og0r" + }, + { + id: "sfNljBgVKmV" + }, + { + id: "VbpwW3LqigE" + }, + { + id: "sm1kxCD7b6u" + }, + { + id: "eYWgLczvTCl" + }, + { + id: "kJq2mPyFEHo" + }, + { + id: "yGuL49Ynjd7" + }, + { + id: "ym42ZOlfZ1P" + }, + { + id: "wjP03y8OY5k" + }, + { + id: "CndfQLqrzwX" + }, + { + id: "cZxP4NE5O9z" + }, + { + id: "O6pfAFbVAAR" + }, + { + id: "JISSmwdk4NU" + }, + { + id: "ewh5SKxcCAl" + }, + { + id: "OXroFdR3EyB" + }, + { + id: "UXMQr8fupj6" + }, + { + id: "UgUcwzbEv2C" + }, + { + id: "ygDJ5pVQuUl" + }, + { + id: "EZPwuUTeIIG" + }, + { + id: "Fj2cWwnW67W" + }, + { + id: "Z2NT1Ymafhj" + }, + { + id: "z7ZpVK1KJqZ" + }, + { + id: "ohbMquuL4GQ" + }, + { + id: "ZVUYL1CCEru" + }, + { + id: "EVKYztE3n2q" + }, + { + id: "amgb83zVxp5" + }, + { + id: "wwn3ShjN7DW" + }, + { + id: "bSj2UnYhTFb" + }, + { + id: "Z7l1EF8BwqQ" + }, + { + id: "ky3niGS9snt" + }, + { + id: "kNv1M4eAZrW" + }, + { + id: "gicflGogPyB" + }, + { + id: "Aci4ywnNbGC" + }, + { + id: "va2lE4FiVVb" + }, + { + id: "q9dZvVjALQk" + }, + { + id: "sM4FFe8Ff9L" + }, + { + id: "kwvcZO19qQM" + }, + { + id: "duEzYSpwtQY" + }, + { + id: "S0q0jDkRS5v" + }, + { + id: "GpbNBF6zLVo" + }, + { + id: "I48Qu6R0sGm" + }, + { + id: "Tht0fnjagHi" + }, + { + id: "GUnP2Zi69UR" + }, + { + id: "BNFrspDBKel" + }, + { + id: "wfGRNqXqf92" + }, + { + id: "Jyv7sjpl9bA" + }, + { + id: "zLqJOW4aqN0" + }, + { + id: "GjWQK6UA4FO" + }, + { + id: "HTDuY3uxj6u" + }, + { + id: "Gba5bTc8NIg" + }, + { + id: "nKQkEAU9xQD" + }, + { + id: "fb3ZeWLrTRk" + }, + { + id: "Zwnfm4rnzbZ" + }, + { + id: "S1XGnpgsTkr" + }, + { + id: "jKZ0U8Og5aV" + }, + { + id: "wNiuQzpiKDE" + }, + { + id: "fkt6HkdVOIF" + }, + { + id: "N2HQSQCZlnp" + }, + { + id: "WycI6zp89Ao" + }, + { + id: "cfsA89Juy4o" + }, + { + id: "EC4YxFnP9zR" + }, + { + id: "wkYrcxc83vZ" + }, + { + id: "ffbwAzHSqa2" + }, + { + id: "HsvbqRnMox0" + }, + { + id: "qO108QL4ZRE" + }, + { + id: "sjujLORMIR6" + }, + { + id: "kr1iiFwbA2t" + }, + { + id: "TAB1ghnZRfd" + }, + { + id: "Jkp2ouJS4ud" + }, + { + id: "eRg3KZyWUSJ" + }, + { + id: "TA7NvKjsn4A" + }, + { + id: "Dod7Dy3zqTo" + }, + { + id: "fzBpuujglTY" + }, + { + id: "l4avWQJzaUD" + }, + { + id: "HRHahg3o1yJ" + }, + { + id: "JDvlTlYg9F5" + }, + { + id: "J7zgCvxwFJ1" + }, + { + id: "SsRIE10f1Ri" + }, + { + id: "cmsYbFLffFJ" + }, + { + id: "T05ZfxCpWml" + }, + { + id: "Nb7W7hkZMzF" + }, + { + id: "BET8jGOHdQk" + }, + { + id: "iFMlCv54LBA" + }, + { + id: "uAk40nFigUK" + }, + { + id: "L5gENbBNNup" + }, + { + id: "vkS4KwKghyc" + }, + { + id: "d9m5Z1gxxYf" + }, + { + id: "sx1q4RAWv3H" + }, + { + id: "ocLbXmLEv4X" + }, + { + id: "JJXqKSd1Q4F" + }, + { + id: "EK0LkzCzhFa" + }, + { + id: "iUFqF1BrehL" + }, + { + id: "t37BpImJzB4" + }, + { + id: "VkPhr6tHLbO" + }, + { + id: "AB92erHutCs" + }, + { + id: "qkN8w4WuGyL" + }, + { + id: "nRjIP2ZbFsE" + }, + { + id: "nhtrMy1GkC9" + }, + { + id: "FqGa96f9nrc" + }, + { + id: "XBvhfgIFhUH" + }, + { + id: "b4pMSkFyzNy" + }, + { + id: "SIjjJdXltXN" + }, + { + id: "ZW4Krr5ekhP" + }, + { + id: "JgAwun6NSKP" + }, + { + id: "zl0n5dVPAao" + }, + { + id: "Z8gNliJqFvQ" + }, + { + id: "WKCXKaymSfs" + }, + { + id: "DTA0hz0UVBT" + }, + { + id: "qx9Yd8Pzp6R" + }, + { + id: "jfV49JGnYKF" + }, + { + id: "tSGRiTiPmOb" + }, + { + id: "FNnj3jKGS7i" + }, + { + id: "kzzwX4uXz8u" + }, + { + id: "YR05MtmIsHc" + }, + { + id: "KxtLZtVmpur" + }, + { + id: "ZdPkczYqeIY" + }, + { + id: "eysrXX8Kz1H" + }, + { + id: "tZv3bARJ6Xx" + }, + { + id: "RJpiHpefEUw" + }, + { + id: "Ahh47q8AkId" + }, + { + id: "a8Vpk8kN25K" + }, + { + id: "MrWkmyh3Xa9" + }, + { + id: "zzbdqmpvTcI" + }, + { + id: "Pbl6opXm4qo" + }, + { + id: "p2SDZZGQnVn" + }, + { + id: "qhLg0XbN0kP" + }, + { + id: "ZU75pFfcxo0" + }, + { + id: "qBpVj3rOZ7N" + }, + { + id: "EshTcZgf2BM" + }, + { + id: "N4e23km7SaF" + }, + { + id: "G5R2dIcBCoi" + }, + { + id: "VUtTrc7utP1" + }, + { + id: "NHMs8vyPvz8" + }, + { + id: "G4zxaAFPFPy" + }, + { + id: "WtzbG2IRmsY" + }, + { + id: "tJf2E5dEvtX" + }, + { + id: "UaKn5BQ08fx" + }, + { + id: "dp5l9GiIJsi" + }, + { + id: "z2wbCSXk3cW" + }, + { + id: "kvkDWg42lHR" + }, + { + id: "zGNoSkzl7SA" + }, + { + id: "RDtWan9S5gP" + }, + { + id: "nmCNUOcr4mK" + }, + { + id: "l0Kf39kXCZ6" + }, + { + id: "R6fdoaVxlUn" + }, + { + id: "wsDfgp9cBd9" + }, + { + id: "uSZzbOgvLTj" + }, + { + id: "ZsjXrmZS59z" + }, + { + id: "AKhsislJnGf" + }, + { + id: "hwb4jbz5M6H" + }, + { + id: "RzeY1JckTlc" + }, + { + id: "Pc3JTyqnsmL" + }, + { + id: "ximj2aqLENv" + }, + { + id: "R9Uqa93ORxP" + }, + { + id: "Kb3255GCA3F" + }, + { + id: "kEkU53NrFmy" + }, + { + id: "gB4GSDPFSJJ" + }, + { + id: "yeGdf2Cdq4E" + }, + { + id: "WgOIxH2kYvX" + }, + { + id: "Bxd8IG5OQ4G" + }, + { + id: "cdWumlEJG5f" + }, + { + id: "zx8fvisx0SV" + }, + { + id: "UUgajyaViT7" + }, + { + id: "lG3ArWHewzy" + }, + { + id: "U2QkKSeyL5r" + }, + { + id: "bPHn9IgjKLC" + }, + { + id: "UWhv0MQOqoB" + }, + { + id: "kRWIof0qPJj" + }, + { + id: "en0j7qFnySQ" + }, + { + id: "XsB16iHtwLL" + }, + { + id: "OL2fM4ILLcX" + }, + { + id: "vc30HT4KC9H" + }, + { + id: "cg7ofS2cTgt" + }, + { + id: "VJ90d5AiL0j" + }, + { + id: "yg7uxUol97F" + }, + { + id: "D0rle7eePwK" + }, + { + id: "Fi5lLVwe1Th" + }, + { + id: "jukHQ4vGVon" + }, + { + id: "z4silfLpw2G" + }, + { + id: "Le6eLgfvOov" + }, + { + id: "g3AMPfZ7ZiD" + }, + { + id: "o0b4oNnXXNW" + }, + { + id: "bwJ8ZQRpz4c" + }, + { + id: "K6F3xMVCHZp" + }, + { + id: "KUZC2aERr27" + }, + { + id: "Wji6WkDisms" + }, + { + id: "bALwzGFMAQl" + }, + { + id: "u5KQNgeikiR" + }, + { + id: "weFldB8B2D7" + }, + { + id: "nDwbwJZQUYU" + }, + { + id: "z6v73gowbuM" + }, + { + id: "MX7QIZEGv1z" + }, + { + id: "GhXvo3BpCvo" + }, + { + id: "V0mxRyW7KdJ" + }, + { + id: "G6LbealddgU" + }, + { + id: "fDlx5LjHpYH" + }, + { + id: "uAmU0nbvA3o" + }, + { + id: "NLw9vq9pKvi" + }, + { + id: "afbJECZuqfP" + }, + { + id: "hDW65lFySeF" + }, + { + id: "ifw5aLygJEi" + }, + { + id: "g5A3hiJlwmI" + }, + { + id: "kntMUzl7Vt6" + }, + { + id: "cv4u66ALDFg" + }, + { + id: "XePkcmza9e8" + }, + { + id: "I2UpLHvMjgR" + }, + { + id: "szjf2SK42nL" + }, + { + id: "LJ8DtpJ4flg" + }, + { + id: "nKxeEfrnSdL" + }, + { + id: "yH1yrBlrr4R" + }, + { + id: "L4Tw4NlaMjn" + }, + { + id: "c3HzjfRfKiX" + }, + { + id: "OqBiNJjKQAu" + }, + { + id: "HlDMbDWUmTy" + }, + { + id: "AKvgfYx5WZq" + }, + { + id: "F483XRce1m9" + }, + { + id: "iJRE2BLh6sn" + }, + { + id: "FRaFNpjPG9b" + }, + { + id: "W9YGhDZ2FQ2" + }, + { + id: "EQUwHqZOb5L" + }, + { + id: "DxguTiXvIJu" + }, + { + id: "bHovE9LWbFd" + }, + { + id: "KuyxbV2Nqze" + }, + { + id: "HHz1kAG1LKn" + }, + { + id: "lEbejEUGi4U" + }, + { + id: "EZjyDAWzP5k" + }, + { + id: "L7hcovFqWhT" + }, + { + id: "zmYjMV1SwZs" + }, + { + id: "oOsDr78Hdlf" + }, + { + id: "hLGkoHmvBgI" + }, + { + id: "zfXBjurB08n" + }, + { + id: "yuycMF2PWDJ" + }, + { + id: "YpItyNr3TsM" + }, + { + id: "p5jIluxTBMQ" + }, + { + id: "o5QrJea3hop" + }, + { + id: "Xlibk6iuB0u" + }, + { + id: "PWc7FMcubFU" + }, + { + id: "RZ7wUXHfYj1" + }, + { + id: "AtZJOoQiGHd" + }, + { + id: "saaJmLlRp5l" + }, + { + id: "b5mAfoSIZjm" + }, + { + id: "R0CmUlFULXg" + }, + { + id: "i7Oh2tlkToJ" + }, + { + id: "jEew49Qso1Y" + }, + { + id: "nP6xqXEYoCI" + }, + { + id: "C9Hi4oLNbPT" + }, + { + id: "gNGMFC7HN1m" + }, + { + id: "w85lBgd8Ozk" + }, + { + id: "hKD6hpZUh9v" + }, + { + id: "YuXgvmUPQUM" + }, + { + id: "Ui2ZbWdaqQE" + }, + { + id: "yr4NhYRVa7I" + }, + { + id: "HTRE697c9L2" + }, + { + id: "FxuIRbiZ4hV" + }, + { + id: "yu4N82FFeLm" + }, + { + id: "RCGR1XLGfbP" + }, + { + id: "ltF8BmYAXpQ" + }, + { + id: "tiwFczgRiKS" + }, + { + id: "Zdv5VuPLcR6" + }, + { + id: "D0K3aQm4rCO" + }, + { + id: "tvL0wgcPNy2" + }, + { + id: "pmJPelI2gxt" + }, + { + id: "fYmE4ymzZSe" + }, + { + id: "rnjZOlisxNt" + }, + { + id: "ULAUNMsiNs6" + }, + { + id: "D54yChgQMHB" + }, + { + id: "cgOy0hRMGu9" + }, + { + id: "L3GgannGGKl" + }, + { + id: "uL6zylR3jlr" + }, + { + id: "g9xUM1x1f1i" + }, + { + id: "oBsvwwpprx9" + }, + { + id: "tzM2SYWNgqg" + }, + { + id: "koa3hwZZ2i7" + }, + { + id: "SC0nM3cbGHy" + }, + { + id: "Hoau0myphXO" + }, + { + id: "PdGktj8bAML" + }, + { + id: "vBe0u2ntm8E" + }, + { + id: "WPn76QAx02O" + }, + { + id: "HITLGuItseV" + }, + { + id: "Ep0VIcbxVYT" + }, + { + id: "zfaQmyZq12J" + }, + { + id: "dnolPQXGK0k" + }, + { + id: "YPSCWmJ3TyN" + }, + { + id: "vCNpM1fW28X" + }, + { + id: "ce3lpBZywaI" + }, + { + id: "w9XjBMJYL9R" + }, + { + id: "ipQBfevLRNY" + }, + { + id: "nI970DZUP2S" + }, + { + id: "m02LNOH0FnO" + }, + { + id: "jIFkAK9dkZc" + }, + { + id: "VZQiAPpGmc4" + }, + { + id: "yets9NmUcRS" + }, + { + id: "Y07XSHsIn0H" + }, + { + id: "PZmGrpH45To" + }, + { + id: "LlqR6cEoPLM" + }, + { + id: "e5sGsWLEn3k" + }, + { + id: "YR2phiIQG7W" + }, + { + id: "iQFooH7gLBu" + }, + { + id: "gjCk9nZSTFV" + }, + { + id: "GA7eQkgK5mX" + }, + { + id: "fmLRqcL9sWF" + }, + { + id: "sK498nBOLfQ" + }, + { + id: "zLiMZ1WrxdG" + }, + { + id: "etrIik4vsBQ" + }, + { + id: "OY7mYDATra3" + }, + { + id: "Enrtq0TAZbT" + }, + { + id: "eROJsBwxQHt" + }, + { + id: "eqPIdr5yD1Q" + }, + { + id: "ABflOZ825sR" + }, + { + id: "fRl8y3brzNs" + }, + { + id: "GacrQPaotcj" + }, + { + id: "jsCAWo4H2XY" + }, + { + id: "demQ6f1RIE7" + }, + { + id: "DbodMW8etVz" + }, + { + id: "O1KFJmM6HUx" + }, + { + id: "LX4dQpxRDQP" + }, + { + id: "rm6NgPbM6Ld" + }, + { + id: "DP7ul57BXfV" + }, + { + id: "V5PJCNBvOMI" + }, + { + id: "WDPpQ1veOTU" + }, + { + id: "SZA2xr3mtXX" + }, + { + id: "RB7Wk3Bkanr" + }, + { + id: "a29woOvBRyS" + }, + { + id: "RhJbg8UD75Q" + }, + { + id: "QabXL5zE6QT" + }, + { + id: "uclR4O1hgHm" + }, + { + id: "eKoXODABUJe" + }, + { + id: "J3wTSn87RP2" + }, + { + id: "BW4LeuJsVkK" + }, + { + id: "TNrbPsHN7SS" + }, + { + id: "MWqU4PC8cHf" + }, + { + id: "f5F2h5nQYpt" + }, + { + id: "GWj3b4sQLMX" + }, + { + id: "gP0YJiWbpx4" + }, + { + id: "JNvzwIsghFp" + }, + { + id: "xru21GTUWem" + }, + { + id: "egv5Es0QlQP" + }, + { + id: "UUWwmlKT7LF" + }, + { + id: "KgmZAfCkn0V" + }, + { + id: "L22BgG63Gdh" + }, + { + id: "Kjxd0EoIRDA" + }, + { + id: "GfF4Fs6WVHR" + }, + { + id: "eUYbyc0u76K" + }, + { + id: "kd2Aqw5S07V" + }, + { + id: "iaYwKUBe3tK" + }, + { + id: "SnCrOCRrxGX" + }, + { + id: "YmgS6GmnIow" + }, + { + id: "CFPrsD3dNeb" + }, + { + id: "JIGSt2z7z3B" + }, + { + id: "nbxNm1xJwCJ" + }, + { + id: "Nvdzxsib4Sw" + }, + { + id: "lBob31rp6l4" + }, + { + id: "Ax5rnzMMkvb" + }, + { + id: "ptc0SQi05E4" + }, + { + id: "ZLrE3dtwW1D" + }, + { + id: "R9gZAoI9aQM" + }, + { + id: "VjygCFzqcYu" + }, + { + id: "zMD9L7M0ud9" + }, + { + id: "bkMlhoccaVw" + }, + { + id: "IUpt00CkPmE" + }, + { + id: "KTr5koWXh9q" + }, + { + id: "ydKxDNkNAsU" + }, + { + id: "kS7pHZXopzA" + }, + { + id: "SharriCAkMQ" + }, + { + id: "VkqppzZLNLL" + }, + { + id: "RVAkLOVWSWc" + }, + { + id: "eBNqiLJ3sfJ" + }, + { + id: "YAuJ3fyoEuI" + }, + { + id: "v7e9KpbgmkI" + }, + { + id: "CobDmkiSe4h" + }, + { + id: "PhzcPiLjrrH" + }, + { + id: "HqhPgCS65Jh" + }, + { + id: "lkD3naG4ax6" + }, + { + id: "dWOAzMcK2Wt" + }, + { + id: "Wx0dXFfo1wR" + }, + { + id: "T62lSjsZe9n" + }, + { + id: "qh6q9I3acm3" + }, + { + id: "lAzsBmrrM1l" + }, + { + id: "HF2U1YQy3NS" + }, + { + id: "srBycbBSULq" + }, + { + id: "oiatYnkC0xR" + }, + { + id: "eSemCdQu2XS" + }, + { + id: "Yj2ni275yPJ" + }, + { + id: "UugO8xDeLQD" + }, + { + id: "hHehz7IW76W" + }, + { + id: "mQhJcEMG9y3" + }, + { + id: "Mkw9avwLBSZ" + }, + { + id: "Sr2fIwM4HAq" + }, + { + id: "HopqwnIwX8o" + }, + { + id: "MJD5N9louMg" + }, + { + id: "HqsTYTI4rwv" + }, + { + id: "UMgJ65eiOqd" + }, + { + id: "KHhOtoYiDOG" + }, + { + id: "aeLpS2dryoy" + }, + { + id: "RNuxv7YMzqB" + }, + { + id: "epvBZQq6CTi" + }, + { + id: "AHCKpHfBkoZ" + }, + { + id: "fNL2oehab2Q" + }, + { + id: "NE66StZ5Dt1" + }, + { + id: "TFvs004qHpM" + }, + { + id: "tr7lSKvLsL0" + }, + { + id: "hI1JTqpFoAw" + }, + { + id: "Wn6ZujgHttw" + }, + { + id: "w49gjOzrk5j" + }, + { + id: "qvHMAxtWWK6" + }, + { + id: "I8WZerBPhaQ" + }, + { + id: "MTcLzAqlOiw" + }, + { + id: "Rx6eKV1BSms" + }, + { + id: "F950Ll646Sk" + }, + { + id: "cJkZLwhL8RP" + }, + { + id: "CBqTcGLxusm" + }, + { + id: "CAJoIz40pbi" + }, + { + id: "W58U2NOn1UX" + }, + { + id: "Vo0l8SzUoOP" + }, + { + id: "aiuVvr2t649" + }, + { + id: "yGYdZBnuQY7" + }, + { + id: "Fvvv5R07GuP" + }, + { + id: "lurs9MeHo7D" + }, + { + id: "UqCHLYd6ZJW" + }, + { + id: "a6oBDolElj8" + }, + { + id: "vcY0lzBz6fU" + }, + { + id: "VwdFP03ucy2" + }, + { + id: "W2T8KfAgliR" + }, + { + id: "mGVQk2qGJ5h" + }, + { + id: "Q458LafO4aP" + }, + { + id: "bf6PXrSNMKK" + }, + { + id: "S9QckzKX6Lg" + }, + { + id: "i5YydYSv5bE" + }, + { + id: "mVvEwzoFutG" + }, + { + id: "HXxIkJo4UlH" + }, + { + id: "LEdm5rQP8ZG" + }, + { + id: "lKgrhFd77kC" + }, + { + id: "gcxxMvTpZGH" + }, + { + id: "tOSpBijyuSP" + }, + { + id: "PJyOAcjJqJY" + }, + { + id: "Rih8A7n4vMm" + }, + { + id: "zrFMzXTGW5t" + }, + { + id: "OjRCvy71kAL" + }, + { + id: "s7xmBrwbJ1H" + }, + { + id: "Bq5nb7UAEGd" + }, + { + id: "fdsRQbuuAuh" + }, + { + id: "RpKHc77sF9a" + }, + { + id: "yzg6w2Z0VP5" + }, + { + id: "EV7ppor0EwT" + }, + { + id: "yJ1xkKha5oE" + }, + { + id: "rtfBP41ZBm9" + }, + { + id: "qIpBLa1SCZt" + }, + { + id: "AAGsliLEzJX" + }, + { + id: "n3hEjfVRaS4" + }, + { + id: "HJEIIyE9GdO" + }, + { + id: "m9gDV2tgz0z" + }, + { + id: "G3TTx3HOIZu" + }, + { + id: "vyIl6s0lhKc" + }, + { + id: "OkxtrUIb1DQ" + }, + { + id: "fCgDm4aOcYI" + }, + { + id: "rBhEExYM6Vq" + }, + { + id: "qTlNI1m2sgI" + }, + { + id: "fqFVu2C1enW" + }, + { + id: "SoXpnYO84eZ" + }, + { + id: "iLMeoliS2AN" + }, + { + id: "McPfpt6KwJz" + }, + { + id: "ZzhFJdCxxSv" + }, + { + id: "DmaLM8WYmWv" + }, + { + id: "LyHInhcvcNy" + }, + { + id: "qqF8jshIs66" + }, + { + id: "IYGzwEzZ2fr" + }, + { + id: "aEZSG5x3mgb" + }, + { + id: "jqleTIQFNSd" + }, + { + id: "kKRNvJxeLch" + }, + { + id: "zOkSIyUWV3U" + }, + { + id: "QMQ1klif7av" + }, + { + id: "BTXwf2gl7av" + }, + { + id: "TpmPAwLDcLa" + }, + { + id: "CqARw68kXbB" + }, + { + id: "Pw9SihGDbZ5" + }, + { + id: "bD3kFBgrqMC" + }, + { + id: "XzmWizbR343" + }, + { + id: "NO7y7D7asHz" + }, + { + id: "wI9xZxHt1jj" + }, + { + id: "tMr3QrpNqyQ" + }, + { + id: "HNv1aLPdMYb" + }, + { + id: "IFXdzAk7hKi" + }, + { + id: "LAjmEPLQ9PC" + }, + { + id: "GM1OUpqchFe" + }, + { + id: "QDoO5r6Sae7" + }, + { + id: "UmJqV09CEWJ" + }, + { + id: "h6ZoU1gQKYP" + }, + { + id: "kBrq7i12aan" + }, + { + id: "YxDztbZTXq4" + }, + { + id: "xGMGhjA3y6J" + }, + { + id: "oxFD0KlrZtd" + }, + { + id: "KWfPakpFjLS" + }, + { + id: "WZ8PTx8qQlE" + }, + { + id: "FoalpnNhJW0" + }, + { + id: "tFvHbTHJgoB" + }, + { + id: "IQ19zVGMMwQ" + }, + { + id: "kVx7sKWnHRj" + }, + { + id: "EoIjKXqXxi2" + }, + { + id: "ZgiFBCF62hK" + }, + { + id: "PFZbQjwty2n" + }, + { + id: "WBHoS2ZAOIv" + }, + { + id: "KidcrTwhAKk" + }, + { + id: "YBs36SYidWh" + }, + { + id: "NwvNHaSq9wv" + }, + { + id: "ZanaTGoZue7" + }, + { + id: "QiClm2MWlj7" + }, + { + id: "PeHqCOu4cZP" + }, + { + id: "pKFHJ9TSt4P" + }, + { + id: "Luv2kmWWgoG" + }, + { + id: "d7hw1ababST" + }, + { + id: "ptsLFDDd6IX" + }, + { + id: "SPrA2zIBGja" + }, + { + id: "YVsbNJVobsS" + }, + { + id: "WbLB35N55WC" + }, + { + id: "Ugke7jbtPOy" + }, + { + id: "Prk2JLLN5i8" + }, + { + id: "HrzvYz8IOSC" + }, + { + id: "RPglyG8hqw5" + }, + { + id: "bmnv38d1IEK" + }, + { + id: "AoBGuzSTk0U" + }, + { + id: "cmPSxhmRYJW" + }, + { + id: "HeMdaG5s8nC" + }, + { + id: "yqS64vl7G1P" + }, + { + id: "Y8foq27WLti" + }, + { + id: "d9uZeZ5fMUo" + }, + { + id: "RJZZqHxP2ne" + }, + { + id: "Z4wpKievfTL" + }, + { + id: "mokUyyg3olJ" + }, + { + id: "qKcFZgrlhQt" + }, + { + id: "a5glgtnXJRG" + }, + { + id: "Wz4mt8VSO0m" + }, + { + id: "AekX8HBymng" + }, + { + id: "Q2p7krv0RMc" + }, + { + id: "piVtV8f412q" + }, + { + id: "aV9VVijeVB2" + }, + { + id: "BZhEn1RnSbD" + }, + { + id: "Y8k1IRo1Ln5" + }, + { + id: "ThyalKpbY0u" + }, + { + id: "Eg6BoufFtHv" + }, + { + id: "ObJjzhhBkfy" + }, + { + id: "TQ5DSmdliN7" + }, + { + id: "sYjp3h6amhA" + }, + { + id: "TEVtOFKcLAP" + }, + { + id: "LpBLQU5LUSc" + }, + { + id: "zHucVTWtUXj" + }, + { + id: "vPmz1XHxrdk" + }, + { + id: "pcRcnsa538F" + }, + { + id: "oqYCnVBaPJz" + }, + { + id: "djMCTPYvltl" + }, + { + id: "y5X4mP5XylL" + }, + { + id: "Em3Y3RuqPRL" + }, + { + id: "Q8oWscr9rlQ" + }, + { + id: "YtF7b5wZF9X" + }, + { + id: "LTH71qT4stu" + }, + { + id: "DqfiI6NVnB1" + }, + { + id: "QZCn0Ev62ts" + }, + { + id: "sz31bqLUP8N" + }, + { + id: "wO1L42u0DmW" + }, + { + id: "sTOXJA2KcY2" + }, + { + id: "MMoJe0cogFt" + }, + { + id: "p25EP2o81O5" + }, + { + id: "PD1fqyvJssC" + }, + { + id: "EK23juOVAl6" + }, + { + id: "AQzqUmyk77a" + }, + { + id: "us0xxLxntBg" + }, + { + id: "Brre03pQkKB" + }, + { + id: "ijOphJBiTaU" + }, + { + id: "tOApd6i1Bez" + }, + { + id: "keuLmDzEcvi" + }, + { + id: "IfR5RgZniUI" + }, + { + id: "avjYELHgGc1" + }, + { + id: "HSW6jjRtxPc" + }, + { + id: "QqXojKlexg4" + }, + { + id: "LzvoPaeLPsb" + }, + { + id: "MXTyJNDmm1c" + }, + { + id: "TiwqHog5Pm9" + }, + { + id: "EDxXfB4iVpY" + }, + { + id: "G8yK9Bepw42" + }, + { + id: "DaX05AyqXFn" + }, + { + id: "NVzgUowrSOa" + }, + { + id: "R97fheuFiA8" + }, + { + id: "d7aKeaLtl5H" + }, + { + id: "DcsBPtco15x" + }, + { + id: "tNs4E0JcMKe" + }, + { + id: "Pyj4rmNYykK" + }, + { + id: "sb7yo6CqPRc" + }, + { + id: "iIQENGb7za6" + }, + { + id: "ob0kaztYBdv" + }, + { + id: "QDBOBWKfXbA" + }, + { + id: "kV9Go9PIhNb" + }, + { + id: "is8feDhNqPX" + }, + { + id: "aicErb8rwn5" + }, + { + id: "awasdlCzJWN" + }, + { + id: "etAuK2ZAq1q" + }, + { + id: "b329FbO30R8" + }, + { + id: "nornKUJmQqn" + }, + { + id: "DR1ylsfwlou" + }, + { + id: "gPKC3fPPvf4" + }, + { + id: "VrDA0Hn4Xc6" + }, + { + id: "EH0dXLB4nZg" + }, + { + id: "tj62LBuY8T9" + }, + { + id: "Ikly4Z4FGzc" + }, + { + id: "QxBGpnmD55Y" + }, + { + id: "qYcajvL5vz5" + }, + { + id: "KBQJ21UsPon" + }, + { + id: "waNtxFbPjrI" + }, + { + id: "NNE0YMCDZkO" + }, + { + id: "sZJtRKtOgnJ" + }, + { + id: "LZclRdyVk1t" + }, + { + id: "Zr8devCnbIm" + }, + { + id: "s5Ci64rMR3d" + }, + { + id: "E2hb6s3lH64" + }, + { + id: "W49R7xMagRD" + }, + { + id: "SHLY5rkOFTQ" + }, + { + id: "FGbXmz7gTTl" + }, + { + id: "eEHJ4Dc5JWi" + }, + { + id: "NVm0zU0mvFp" + }, + { + id: "PB8FMGbn19r" + }, + { + id: "q23bFLr2E5D" + }, + { + id: "Exb5pgDiOAj" + }, + { + id: "m7ldr30TdVZ" + }, + { + id: "rhOji0GMfUj" + }, + { + id: "SekXdHQ6aKK" + }, + { + id: "Vcq8JVz8poZ" + }, + { + id: "wixrC3wAJA6" + }, + { + id: "vzvDeLsGsrw" + }, + { + id: "HtwlAiuRCzl" + }, + { + id: "z955P3cCmvA" + }, + { + id: "RuU0jXOLbe1" + }, + { + id: "g3O1pGAfgK1" + }, + { + id: "T2Cn45nBY0u" + }, + { + id: "Y1R97EeU06Y" + }, + { + id: "oF2TYKnfIWj" + }, + { + id: "XDo0i4HYDIK" + }, + { + id: "UjusePB4jmP" + }, + { + id: "VpYAl8dXs6m" + }, + { + id: "ANFOu7p0SGg" + }, + { + id: "aZeWNYkaVxL" + }, + { + id: "aM2d2D4BjzN" + }, + { + id: "ntQSuMb7J21" + }, + { + id: "d6MiRxVntQg" + }, + { + id: "jPLZRD86QwZ" + }, + { + id: "zsk7VH8ScI7" + }, + { + id: "rFelzKE3SEp" + }, + { + id: "G33Onfnan3c" + }, + { + id: "Bj6odIpPxqi" + }, + { + id: "I5UASyYTwW0" + }, + { + id: "nfOS8g8FtgQ" + }, + { + id: "PA1spYiNZfv" + }, + { + id: "fmJxz7vlEUw" + }, + { + id: "kNrVcNQ6qsI" + }, + { + id: "vSbt6cezomG" + }, + { + id: "DBhK2m4GMoM" + }, + { + id: "Crgx572DnXR" + }, + { + id: "BV4IomHvri4" + }, + { + id: "kSo9KSpHUPL" + }, + { + id: "kdCagzp8uMv" + }, + { + id: "FxosHxc7t87" + }, + { + id: "xEYNPdAGuwC" + }, + { + id: "jnDICAPS4q0" + }, + { + id: "bsnhEsnfD76" + }, + { + id: "lCEeiuv4NaB" + }, + { + id: "BhgdWzcplAh" + }, + { + id: "iMcanJLDED2" + }, + { + id: "ih77LC7LE1p" + }, + { + id: "fRV3Fhz1IP8" + }, + { + id: "jjUzdoQXtbE" + }, + { + id: "qO2JLjYrg91" + }, + { + id: "eWbOakzx0Q8" + }, + { + id: "wByqtWCCuDJ" + }, + { + id: "mC6RjftvQhz" + }, + { + id: "BURToloAWXS" + }, + { + id: "pICEZv79HeG" + }, + { + id: "XZnHggpP3SR" + }, + { + id: "gy8rmvYT4cj" + }, + { + id: "dCvUVvKnhMe" + }, + { + id: "J2R6QOcUAQR" + }, + { + id: "vpPDQ6CEGyu" + }, + { + id: "xT6gvoymbUO" + }, + { + id: "vpzCfUzeeP0" + }, + { + id: "LwiKtagwE8O" + }, + { + id: "DemWLYbM93Y" + }, + { + id: "Mavey9h4406" + }, + { + id: "vQ2TmL9rgCS" + }, + { + id: "EURoFVjowXs" + }, + { + id: "tMItDhNh4ro" + }, + { + id: "LhaAPLxdSFH" + }, + { + id: "dBARCog0xcp" + }, + { + id: "J8mn3SbuwWq" + }, + { + id: "yOHjReVbym3" + }, + { + id: "kqyeoWyfDmQ" + }, + { + id: "rb0VeLD7nl5" + }, + { + id: "ua5GXy2uhBR" + }, + { + id: "rR5trwf0mzT" + }, + { + id: "D6yiaX1K5sO" + }, + { + id: "BXd3TqaAxkK" + }, + { + id: "mGmu0GJ5neg" + }, + { + id: "kEgoAqyw74n" + }, + { + id: "pSWEnB9ljoU" + }, + { + id: "azRICFoILuh" + }, + { + id: "V09meXsQV80" + }, + { + id: "yTromKIC9FM" + }, + { + id: "xZiPfIy11Zu" + }, + { + id: "IakBJpJ6ZDk" + }, + { + id: "DYYAwRBoYG2" + }, + { + id: "AtJqbc0Zszr" + }, + { + id: "GJ5FftKqk3D" + }, + { + id: "iH79WhpsByj" + }, + { + id: "EYt6ThQDagn" + }, + { + id: "mhJQYk2Jwym" + }, + { + id: "LOpWauwwghf" + }, + { + id: "qlTTJxZeVif" + }, + { + id: "ZYujNWJGn5B" + }, + { + id: "hvzlCxhEjrm" + }, + { + id: "myQ4q1W6B4y" + }, + { + id: "hoJ0Do9loZl" + }, + { + id: "XMolxZe0muS" + }, + { + id: "CYQCkGDwRYo" + }, + { + id: "ScqmhWxlFKJ" + }, + { + id: "ARAZtL7Bdpy" + }, + { + id: "dnWRXzgCyMq" + }, + { + id: "M9JyYBZTqR7" + }, + { + id: "LfTkc0S4b5k" + }, + { + id: "nxxeV8NmQpg" + }, + { + id: "wNfup47fRLd" + }, + { + id: "koPeSBICmrp" + }, + { + id: "LxAgA2Bm0pT" + }, + { + id: "ZddwSsiUgZ8" + }, + { + id: "Yl8UKSTO67F" + }, + { + id: "MtfWCbwa642" + }, + { + id: "zsXEXZmu6Yw" + }, + { + id: "Zq9ATbrmKIa" + }, + { + id: "DJr17K6RWzO" + }, + { + id: "EVkm2xYcf6Z" + }, + { + id: "ztBrg9qunbt" + }, + { + id: "BguNKdpxjhm" + }, + { + id: "SVT9bPZYGIP" + }, + { + id: "JOwgBUshZbD" + }, + { + id: "qK93EXF2leZ" + }, + { + id: "YQoiLO0wW9c" + }, + { + id: "g7lwEV8YnDI" + }, + { + id: "x9Yha6Bh3RA" + }, + { + id: "ewEGG99XfMp" + }, + { + id: "CahLNSzbBpq" + }, + { + id: "jd6BGbckMLk" + }, + { + id: "m0XorV4WWg0" + }, + { + id: "EXbPGmEUdnc" + }, + { + id: "nsu5qQPSbmC" + }, + { + id: "VC76hlMJ8Sn" + }, + { + id: "E19k4iMWltN" + }, + { + id: "lYIM1MXbSYS" + }, + { + id: "dmdYffw2I0F" + }, + { + id: "f8iguhYJHxi" + }, + { + id: "HHc5HDPFlXy" + }, + { + id: "jRSMyGwWpgG" + }, + { + id: "HQoxFu4lYPS" + }, + { + id: "zCSWBz2pyMd" + }, + { + id: "JiEz2VDLwHY" + }, + { + id: "DaYbnmWAdej" + }, + { + id: "aLA5KT9vmcO" + }, + { + id: "Mqh89YdVBta" + }, + { + id: "jjVHfP0FWJM" + }, + { + id: "QYNZAoEMnXz" + }, + { + id: "nmuJUIvCOD7" + }, + { + id: "PuZOFApTSeo" + }, + { + id: "d9DswmF2WMr" + }, + { + id: "JZraNIfZ5JM" + }, + { + id: "KSdZwrU7Hh6" + }, + { + id: "R5Lb5QQGX7h" + }, + { + id: "aNcQexQPIkM" + }, + { + id: "CZuxmHjqpGK" + }, + { + id: "yG6fyAnQWCu" + }, + { + id: "GfSPTQGs3kE" + }, + { + id: "n0WeUOPcAwp" + }, + { + id: "NadEpHzevJj" + }, + { + id: "gtsQXHLGam2" + }, + { + id: "cwdAq1qSfEc" + }, + { + id: "p4JXdGK2NxW" + }, + { + id: "EMD1WemnCBW" + }, + { + id: "lpQvlm9czYE" + }, + { + id: "BgOhMcH9bxq" + }, + { + id: "wVK6JEUa3dg" + }, + { + id: "i7qaYfmGVDr" + }, + { + id: "qthyWVbotQC" + }, + { + id: "SpXVXzLd4J7" + }, + { + id: "VNwopsb7kn9" + }, + { + id: "RAm8A7loeoh" + }, + { + id: "NLN0MvWv9tl" + }, + { + id: "Xu0K6Z3qNO2" + }, + { + id: "FRr5D0NPON7" + }, + { + id: "M721NHGtdZV" + }, + { + id: "R2JKPCa46HW" + }, + { + id: "WgRFdBTdfQi" + }, + { + id: "K6oyIMh7Lee" + }, + { + id: "eoYV2p74eVz" + }, + { + id: "MU5VPuk3rW5" + }, + { + id: "PYMvB4nTFST" + }, + { + id: "Mv8OFlBpIPu" + }, + { + id: "V7Pjg9rw6N0" + }, + { + id: "OtWItoNqhys" + }, + { + id: "Q0n5FKoUS6l" + }, + { + id: "K3jhn3TXF3a" + }, + { + id: "QLFj5cZQWLj" + }, + { + id: "VH8vOjm0l8w" + }, + { + id: "Sgwptmcdflt" + }, + { + id: "yY8WLY9gRhm" + }, + { + id: "huf8ceU9WYg" + }, + { + id: "p9TMrt2mad3" + }, + { + id: "e1kLtVA3TED" + }, + { + id: "q6r94UZtgFo" + }, + { + id: "bM4Ky73uMao" + }, + { + id: "uYTq3TEO2a9" + }, + { + id: "Cjm8qD18Tr6" + }, + { + id: "nR7quusz3YP" + }, + { + id: "ZVsFK9S7iCz" + }, + { + id: "t8FylEz1hCS" + }, + { + id: "HZj9UP8uBXt" + }, + { + id: "RNGpZqutw3Y" + }, + { + id: "bT61pZ5HhoC" + }, + { + id: "rCKWdLr4B8K" + }, + { + id: "Vd1VRROd6Yy" + }, + { + id: "XiORvSsxn6s" + }, + { + id: "KcfIT29zGR7" + }, + { + id: "PhYZwGdtc6z" + }, + { + id: "wbtk73Zwhj9" + }, + { + id: "z5f0B6XGCmu" + }, + { + id: "AbLXaU1VKr2" + }, + { + id: "aKS2NUuvDBI" + }, + { + id: "xIKjidMrico" + }, + { + id: "mmpRXEalGoK" + }, + { + id: "IgtkLK0QFdh" + }, + { + id: "FvlL9KrAuYY" + }, + { + id: "YIxNlLm0yes" + }, + { + id: "rMLOSHsF0Yr" + }, + { + id: "GAvxcmr5jB1" + }, + { + id: "FAiKX1Jusu1" + }, + { + id: "h9q3qixffZT" + }, + { + id: "lemiKyVbgZn" + }, + { + id: "Hw1gDxNAYDL" + }, + { + id: "XtuhRhmbrJM" + }, + { + id: "QaPiKeYunF8" + }, + { + id: "PHo0IV7Vk50" + }, + { + id: "SFQblJrFblm" + }, + { + id: "pzbyaPNmCq6" + }, + { + id: "vPz4Irz7sxR" + }, + { + id: "LQHcC0TpbgQ" + }, + { + id: "m8aR0OQcDHv" + }, + { + id: "xd7F2Vnojzu" + }, + { + id: "lJTycmnbJIZ" + }, + { + id: "lKyrJXUZ7YS" + }, + { + id: "Z3mlfLeGQKp" + }, + { + id: "fNWPolZ9PMP" + }, + { + id: "DXegteybeb5" + }, + { + id: "Lci2Z5GKzx0" + }, + { + id: "a7doBBQzhJO" + }, + { + id: "l0ccv2yzfF3" + }, + { + id: "KMM6ALhQajz" + }, + { + id: "b7cYhnrFPUE" + }, + { + id: "MrfgzMnTIIW" + }, + { + id: "d6U5WUIGdJ7" + }, + { + id: "U1Y7swBzvRH" + }, + { + id: "qAFXoNjlZCB" + }, + { + id: "ejHozNnIdYG" + }, + { + id: "i6TCJEwssdE" + }, + { + id: "gtz3H5ccKZp" + }, + { + id: "lBkL9Poo7Xi" + }, + { + id: "RzfY7S4ALSH" + }, + { + id: "BqgmdYb2XTD" + }, + { + id: "fCFdj2T0Bq1" + }, + { + id: "S6KDC0jVhmD" + }, + { + id: "lscAsvBERtm" + }, + { + id: "PC3Ag91n82e" + }, + { + id: "ukvQBoBpWC1" + }, + { + id: "DMnt8N2ad3d" + }, + { + id: "DFNIFugTNcZ" + }, + { + id: "erqWTArTsyJ" + }, + { + id: "RFbtLkjhCUO" + }, + { + id: "mwN7QuEfT8m" + }, + { + id: "MBtmOhLs7y1" + }, + { + id: "E7LyAixSNEK" + }, + { + id: "p5vBB8iIOOy" + }, + { + id: "rXLor9Knq6l" + }, + { + id: "i6ZbkohHBsj" + }, + { + id: "Vcj6JJPBiSt" + }, + { + id: "M5gKSBoxeep" + }, + { + id: "iB2ZwGB842F" + }, + { + id: "pD8vik52aMk" + }, + { + id: "fvytjjnlQlK" + }, + { + id: "q3IbFJqsrvz" + }, + { + id: "lekPjgUm0o2" + }, + { + id: "ZALwM386w0T" + }, + { + id: "GTOQ2d0t0do" + }, + { + id: "SXWM1Q8m1GN" + }, + { + id: "dndTPmwDGyL" + }, + { + id: "rDfBWRlOOzD" + }, + { + id: "HFyjUvMjQ8H" + }, + { + id: "AVIZ5ZmCfA9" + }, + { + id: "sNBBf6HAaH7" + }, + { + id: "aVrmuhgPS9w" + }, + { + id: "Xu84rwlxASh" + }, + { + id: "QwMiPiME3bA" + }, + { + id: "zUdyiCV4CIs" + }, + { + id: "BVbil8QSUb3" + }, + { + id: "JQgs5AHDtid" + }, + { + id: "c7zBrtqOsf1" + }, + { + id: "XWRW9uHOlji" + }, + { + id: "Dw9I1vovUKY" + }, + { + id: "s2B7yvIFWwN" + }, + { + id: "rZa6Gr64Xq8" + }, + { + id: "dQgml7fcQXX" + }, + { + id: "rNaQEFRINbd" + }, + { + id: "r93q83kZoR9" + }, + { + id: "KCKsJOVndMZ" + }, + { + id: "L7gCR3dZF7x" + }, + { + id: "xE0XNP4e8vw" + }, + { + id: "F8uETYHaq9b" + }, + { + id: "TVII8EAwRTK" + }, + { + id: "yeuwqWrKjmt" + }, + { + id: "jHxL0gO9f2c" + }, + { + id: "sWZc9LfyOVb" + }, + { + id: "Z9QaI6sxTwW" + }, + { + id: "W6WHgzudBLK" + }, + { + id: "BnVjTzwis3o" + }, + { + id: "AlLmKZIIIT4" + }, + { + id: "V4ryZDSqFEK" + }, + { + id: "pJtnoiKxxMK" + }, + { + id: "AGrsLyKWrVX" + }, + { + id: "WoXiD46mGLe" + }, + { + id: "TkhwySsXC5V" + }, + { + id: "Csfn91puNQJ" + }, + { + id: "MppeufK8EIn" + }, + { + id: "vHkm3AJs1fm" + }, + { + id: "isppoCyGeei" + }, + { + id: "WJOMQq7KDBR" + }, + { + id: "JVnOe8yAq8N" + }, + { + id: "iTdfO09Pzko" + }, + { + id: "OgkR7quvLp7" + }, + { + id: "KFhJrkqnrnb" + }, + { + id: "ywHRE9TZ7CG" + }, + { + id: "esMAQ4vs4kM" + }, + { + id: "RN4xlSim6P3" + }, + { + id: "oXhpGsnm8Al" + }, + { + id: "tpeEG9eMRs5" + }, + { + id: "YnuwSqXPx9H" + }, + { + id: "NGJpKYKBer0" + }, + { + id: "OptJ7lOSfhV" + }, + { + id: "j0Dh90jG7Bj" + }, + { + id: "yDFM5J6WeKU" + }, + { + id: "EQc3n1juPFn" + }, + { + id: "vJ5mIf3sMgQ" + }, + { + id: "Nc0Jyfl41Fh" + }, + { + id: "VwOK4c13bDS" + }, + { + id: "YVdXYdu7Nqd" + }, + { + id: "M1qT3oCDwLF" + }, + { + id: "cyWSuKy2Kxx" + }, + { + id: "QuzM0smriDe" + }, + { + id: "awrM2eC2drd" + }, + { + id: "HluzDcVACRb" + }, + { + id: "oKwe9PMQhgo" + }, + { + id: "SQz3xtx1Sgr" + }, + { + id: "xIMxph4NMP1" + }, + { + id: "QCnJDmNjQy0" + }, + { + id: "Mi4Ax9suQmB" + }, + { + id: "LmRTf03IFkA" + }, + { + id: "EDHO4qOyY88" + }, + { + id: "WAjjFMDJKcx" + }, + { + id: "wcMOF23a1iw" + }, + { + id: "EeCYRgueWay" + }, + { + id: "IdXZ8KjGdlh" + }, + { + id: "JQr6TJx5KE3" + }, + { + id: "XQNCmYG6Whk" + }, + { + id: "iIpPPnnzDo6" + }, + { + id: "xLcBMDfJA1C" + }, + { + id: "iKAl5SWJrSK" + }, + { + id: "aiMSdypuNTg" + }, + { + id: "nc6vPP1N00J" + }, + { + id: "AjElim7bJSx" + }, + { + id: "msH78gZ7Fe6" + }, + { + id: "nuzj6P2AUM4" + }, + { + id: "Wg3UgsYrKlq" + }, + { + id: "Ucvn27dv6BC" + }, + { + id: "oIgBLlEo6eH" + }, + { + id: "mhb7WAKFGyQ" + }, + { + id: "duGLGssecoD" + }, + { + id: "e9iwTgr6lYJ" + }, + { + id: "rqG9HUvb3R9" + }, + { + id: "APf6lrzVwj2" + }, + { + id: "AkxQa6jQIJg" + }, + { + id: "xqd3HhbaMtp" + }, + { + id: "W5uwdNcVITg" + }, + { + id: "pcA1rkwOxbI" + }, + { + id: "qIwuQ4oLKC1" + }, + { + id: "VQ3bsgV1rc5" + }, + { + id: "q8uq6vpnjFi" + }, + { + id: "b3EU6KFCkub" + }, + { + id: "KzwP3CMWKGJ" + }, + { + id: "wP35CkKPKyv" + }, + { + id: "slWlW8NVuhi" + }, + { + id: "TzaGNKPDcuZ" + }, + { + id: "mKy8F58RNxW" + }, + { + id: "ke2gwHKHP3z" + }, + { + id: "wJhMpTNkoiO" + }, + { + id: "aSxNNRxPuBP" + }, + { + id: "O4B6S4LdiV5" + }, + { + id: "wg1JmqwahUh" + }, + { + id: "KHwOdsjEU9x" + }, + { + id: "sXZDTI7A8V8" + }, + { + id: "HRBg9rjmgNb" + }, + { + id: "DzJDJTl7xia" + }, + { + id: "uitVbo06tpi" + }, + { + id: "ZJPxnDs9bfO" + }, + { + id: "ygWPaPAngpd" + }, + { + id: "xRsoZIRmnt4" + }, + { + id: "sAO5hEWo4z5" + }, + { + id: "NqLYdlnK8sc" + }, + { + id: "MpcMjLmbATv" + }, + { + id: "eAI9ceJBSjl" + }, + { + id: "n3MRjKtwr3O" + }, + { + id: "Wc4vEGMjCjY" + }, + { + id: "ls4mOkNLjL9" + }, + { + id: "LNGluubHKwQ" + }, + { + id: "Id3FvX3GrwV" + }, + { + id: "nwK9gdlYTIP" + }, + { + id: "gP6hn503KUX" + }, + { + id: "acSIjDxIu3C" + }, + { + id: "hwzx6HWLaub" + }, + { + id: "hhF9Nwg2oy3" + }, + { + id: "IeAjqsC1ku7" + }, + { + id: "iHQVo7h7KOQ" + }, + { + id: "aq5knOnYVtW" + }, + { + id: "qtr8GGlm4gg" + }, + { + id: "aVlSMMvgVzf" + }, + { + id: "LS7fn234S9g" + }, + { + id: "n2CzrOFHflh" + }, + { + id: "iwAJl0kv6En" + }, + { + id: "ELzMcGisGqi" + }, + { + id: "Jm2z9TI6awk" + }, + { + id: "ciYRn4vdo2r" + }, + { + id: "vXuHPgzMVXa" + }, + { + id: "NdNNYcak8px" + }, + { + id: "Enl6oNeQkbF" + }, + { + id: "rbQkVTX1cAj" + }, + { + id: "Jxs1MKUjhxL" + }, + { + id: "P69SId31eDp" + }, + { + id: "qVWBrtcaEpc" + }, + { + id: "rvyM1Po98LX" + }, + { + id: "SCY3falEcJD" + }, + { + id: "MLQzJUNXkGb" + }, + { + id: "wP1zsnNxbSE" + }, + { + id: "mhWSEv79IJW" + }, + { + id: "rLpWq6vu7RP" + }, + { + id: "sFgNRYS5pBo" + }, + { + id: "G9whWBxuzKi" + }, + { + id: "lmjC0XitRfk" + }, + { + id: "gUPhNWkSXvD" + }, + { + id: "SVEfwJ0BGeD" + }, + { + id: "Z3qExYRw8yt" + }, + { + id: "B2obDRMclXM" + }, + { + id: "AZhwISa6QHW" + }, + { + id: "EfnAboGQLxc" + }, + { + id: "Z9ny6QeqsgX" + }, + { + id: "lAYbqGWZLhe" + }, + { + id: "VYwQVvXceME" + }, + { + id: "JUa8VsCXNoT" + }, + { + id: "CAK6tMitZah" + }, + { + id: "cfOROU83UtC" + }, + { + id: "yBAbJkEabiq" + }, + { + id: "SzZZCMKE6bR" + }, + { + id: "gE3gEGZbQMi" + }, + { + id: "qY69kbmJszK" + }, + { + id: "K2QJ8GHOTdn" + }, + { + id: "nlfUpdDWfry" + }, + { + id: "ZlUc0Xg8DBQ" + }, + { + id: "QYE5xUAhLdU" + }, + { + id: "jdZWJAMCoJf" + }, + { + id: "iPfENtZjvw5" + }, + { + id: "rCqFv1rEWDj" + }, + { + id: "TcQ6elHuhF4" + }, + { + id: "GhlGy3E9062" + }, + { + id: "xATvj8pdYoT" + }, + { + id: "TgsSBveFya6" + }, + { + id: "CIzmzfVIRil" + }, + { + id: "gQjEW99U7uP" + }, + { + id: "BH7rDkWjUqc" + }, + { + id: "lQ4xBMNlNo7" + }, + { + id: "W3t0pSZLtrC" + }, + { + id: "pk7bUK5c1Uf" + }, + { + id: "s7SLtx8wmRA" + }, + { + id: "y0lVBOxZ8rg" + }, + { + id: "KerdFMEvudA" + }, + { + id: "DWRblnjr7iu" + }, + { + id: "NwX8noGxLoz" + }, + { + id: "rnTuDT0QWRN" + }, + { + id: "is3w3HROKVc" + }, + { + id: "JKdMirJ02nv" + }, + { + id: "qoDNCkXepGV" + }, + { + id: "ZOaH2Sa9XVO" + }, + { + id: "UCEjSQB7b3h" + }, + { + id: "iRdLdLA0uNu" + }, + { + id: "LFoc1dglD7m" + }, + { + id: "qKaOljktnHq" + }, + { + id: "sqjgmc0RlQk" + }, + { + id: "w0QDch3dyPH" + }, + { + id: "BhmUfafilAA" + }, + { + id: "EvvMi4UlwMc" + }, + { + id: "zm9breCeT1m" + }, + { + id: "q3fs3NVlOEN" + }, + { + id: "hkaZh4A0WBo" + }, + { + id: "J8SpkWBy3wp" + }, + { + id: "DYSYH4fblSk" + }, + { + id: "ovOUo5jrC22" + }, + { + id: "YakeBgSsbOx" + }, + { + id: "vE0Sx9doaLj" + }, + { + id: "JemZqD90S44" + }, + { + id: "jVDUkOBCjDy" + }, + { + id: "sqRXIm3ZRAD" + }, + { + id: "D2MlHBjMK26" + }, + { + id: "LclKnZUAXJ1" + }, + { + id: "XBHuMdmlExu" + }, + { + id: "qghfVf1FWx2" + }, + { + id: "WIS2aSxaHKM" + }, + { + id: "HJ6XPsddD52" + }, + { + id: "MBi07H0IQKo" + }, + { + id: "eQy2FJ9EtXL" + }, + { + id: "fAsj6a4nudH" + }, + { + id: "IOznsQPh0eT" + }, + { + id: "hHkDZW9AaeC" + }, + { + id: "yzpBZ6WONMz" + }, + { + id: "ZgrJfynih78" + }, + { + id: "u1LpzuLP79U" + }, + { + id: "dOSiQNrW1BE" + }, + { + id: "Bift1B4gjru" + }, + { + id: "cDw53Ej8rju" + }, + { + id: "n7P2cG72iAQ" + }, + { + id: "mfy7Wbj9Shf" + }, + { + id: "a1hPfxRBAt4" + }, + { + id: "RX6B2wUWPrC" + }, + { + id: "WxMIZC6Cxqs" + }, + { + id: "CoGS2rMy5EO" + }, + { + id: "mE3HjykT1B8" + }, + { + id: "WcFNj1xjROd" + }, + { + id: "YNO3ZNvnk5q" + }, + { + id: "mEoJIrcgrA4" + }, + { + id: "H9ayxSSXG0x" + }, + { + id: "jVqoXv7rFns" + }, + { + id: "CihQ0kL7YI0" + }, + { + id: "Eb9RE5pv3ow" + }, + { + id: "C0f0alOlbpX" + }, + { + id: "dnAY9Xcx1Rq" + }, + { + id: "hLGRTw9HMzk" + }, + { + id: "RuZFg0DMg0e" + }, + { + id: "jTKaRAjxpnr" + }, + { + id: "R95g2g0ShvJ" + }, + { + id: "zw8HAdV98ZC" + }, + { + id: "hIpcmjLrDDW" + }, + { + id: "AEEhBQXfAJs" + }, + { + id: "VWJfRi9TVeu" + }, + { + id: "KctpIIucige" + }, + { + id: "FrmnHp1CyjR" + }, + { + id: "l4bBkadoPEJ" + }, + { + id: "wd0F1779Aj9" + }, + { + id: "IoLWBXJDOn1" + }, + { + id: "L4r7HZMiUnM" + }, + { + id: "FRxcUEwktoV" + }, + { + id: "g7NtNMbOQl3" + }, + { + id: "G7eJd6nSghG" + }, + { + id: "cWJ7hzzHdTV" + }, + { + id: "oCY8DaRvfZf" + }, + { + id: "Zwws5CQatMx" + }, + { + id: "iP4fRh8EHmF" + }, + { + id: "cnvDuTQ2CJL" + }, + { + id: "kMsHZRoNDNv" + }, + { + id: "qx8ozr7t7nB" + }, + { + id: "PKaC6hSkP7a" + }, + { + id: "IWM4eKPJJSc" + }, + { + id: "EZIMUaUD8AJ" + }, + { + id: "J1x66stNjk2" + }, + { + id: "HgQCFkML87Y" + }, + { + id: "aS2x3vkYvGp" + }, + { + id: "sAZZwifAr7z" + }, + { + id: "TNbHYOuQi8s" + }, + { + id: "wqb1glTqOuN" + }, + { + id: "TbiRD4Bsz4Z" + }, + { + id: "KnwLGQlW0iw" + }, + { + id: "Nv8dtry2e6e" + }, + { + id: "BJ3DJFBKwBR" + }, + { + id: "kyVsWxM5xpz" + }, + { + id: "poXLW7j5eUG" + }, + { + id: "ceQRFYQJ7Lg" + }, + { + id: "pw5wPMjAv96" + }, + { + id: "tePTZNauNtp" + }, + { + id: "ZzdTFqWrlDa" + }, + { + id: "BD9gU0GKlr2" + }, + { + id: "iZ6tzScHrd7" + }, + { + id: "h2D4Pc8AtLL" + }, + { + id: "XjpmsLNjyrz" + }, + { + id: "N9cKNnintUD" + }, + { + id: "tR6e8k99ODA" + }, + { + id: "CebtBqqp1fp" + }, + { + id: "TG841V5TUjf" + }, + { + id: "c497ZoB22oT" + }, + { + id: "AwflfVNpl2E" + }, + { + id: "BmTVMvJHVBO" + }, + { + id: "xO9WbCvFq5k" + }, + { + id: "RTixJpRqS4C" + }, + { + id: "EgDDvkPK3Sr" + }, + { + id: "Sw9P7yocbIE" + }, + { + id: "hCRqN3S7mvi" + }, + { + id: "oolcy5HBlMy" + }, + { + id: "pzpiH6wt7b7" + }, + { + id: "wNYYRm2c9EK" + }, + { + id: "dcCQqqorPO9" + }, + { + id: "D74c9A9m4Hq" + }, + { + id: "ALs1TcrrsDS" + }, + { + id: "wSHfjjFqUay" + }, + { + id: "fQkfMcFH0Xk" + }, + { + id: "xlDvsb6kxze" + }, + { + id: "DcmSvQd5N8c" + }, + { + id: "YUVOLvd05AE" + }, + { + id: "rUoqnP86L2E" + }, + { + id: "xPU0osaqkZX" + }, + { + id: "Ln9YDxpUyga" + }, + { + id: "PysJIi3VIol" + }, + { + id: "ZOZ4s2gTPj7" + }, + { + id: "poFeGPc400T" + }, + { + id: "srY0AxIpIVk" + }, + { + id: "tMk3Djk2RPh" + }, + { + id: "Z8Cm76B2726" + }, + { + id: "Vh1fsWOYcv1" + }, + { + id: "j0Mtr3xTMjM" + }, + { + id: "gfk1TNPI4wN" + }, + { + id: "CG4QD1HC3h4" + }, + { + id: "xQIU41mR69s" + }, + { + id: "WUQrS4Yqmoy" + }, + { + id: "CvXrokTtZh6" + }, + { + id: "dEnVMT8KigA" + }, + { + id: "hD90OKY1eqC" + }, + { + id: "m00wB3h3vPb" + }, + { + id: "iMSTuCsVerx" + }, + { + id: "SFQigiC2ISS" + }, + { + id: "lsUHC2VPbZP" + }, + { + id: "ivSrurTYLbk" + }, + { + id: "AHwKo0BrVSX" + }, + { + id: "vQYIk5G9NxP" + }, + { + id: "yxWgtnhFyMO" + }, + { + id: "cmWTK3wgzXQ" + }, + { + id: "QZVlKun3NjS" + }, + { + id: "VfxUdTtVcAL" + }, + { + id: "yP2nhllbQPh" + }, + { + id: "FHwmVcGuIQk" + }, + { + id: "nxvO0IkxI2B" + }, + { + id: "qRY6vngpkET" + }, + { + id: "gOgqOCQYdaC" + }, + { + id: "f6xGA6BZBLO" + }, + { + id: "QywkxFudXrC" + }, + { + id: "K5wBtEzE2qJ" + }, + { + id: "lL2LBkhlsmV" + }, + { + id: "z2X1vurdKjs" + }, + { + id: "CwxzbQzzHll" + }, + { + id: "PVvkHnLCRub" + }, + { + id: "XuGfiry96Bg" + }, + { + id: "mgDNpSYDR2i" + }, + { + id: "emXfKpymvVL" + }, + { + id: "Gt9rJxzdcdE" + }, + { + id: "EMLsRKB3O9g" + }, + { + id: "lzz1UhTzO4E" + }, + { + id: "xLL8E42eDho" + }, + { + id: "fspUWQx17AT" + }, + { + id: "QIp6DHlMGfb" + }, + { + id: "nGb94wPdcqx" + }, + { + id: "DpyDh5wQoGh" + }, + { + id: "SQTPktns35S" + }, + { + id: "fUxVOkpX3yi" + }, + { + id: "zbz3PIscPzD" + }, + { + id: "aQoqXL4cZaF" + }, + { + id: "vBQzLWajd2g" + }, + { + id: "KjguLUoJs8E" + }, + { + id: "yWhxXlPgUTM" + }, + { + id: "o1k9rQb9g2z" + }, + { + id: "cMNl5fYidCg" + }, + { + id: "bVZTNrnfn9G" + }, + { + id: "K3k64jslIlL" + }, + { + id: "x8SUTSsJoeO" + }, + { + id: "ELrilIB7yIR" + }, + { + id: "G6UMfezPqze" + }, + { + id: "jkyBvNzcTLl" + }, + { + id: "voQXVNftP4W" + }, + { + id: "ET2dJL1qVHh" + }, + { + id: "upKuGnxhxJA" + }, + { + id: "yMCshbaVExv" + }, + { + id: "up9gjdODKXE" + }, + { + id: "m5wSq1tCwhN" + }, + { + id: "HMEN3AsXCdJ" + }, + { + id: "TrmusBXxLm3" + }, + { + id: "S8vC8eUPHNj" + }, + { + id: "MNJReCDqWEz" + }, + { + id: "pvZTcaKK9C6" + }, + { + id: "fwxkctgmffZ" + }, + { + id: "g5UC62FBloI" + }, + { + id: "TJA0eGRoRpc" + }, + { + id: "KVn5fnK1y8t" + }, + { + id: "EUUkKEDoNsf" + }, + { + id: "YQ3csPLAlrn" + }, + { + id: "PwoQgMJNWbR" + }, + { + id: "ePuy1RNXaFU" + }, + { + id: "VP397wRvePm" + }, + { + id: "zerKCK3Ncn3" + }, + { + id: "aHs9PLxIdbr" + }, + { + id: "N3tpEjZcPm9" + }, + { + id: "uC8SoUvGjuF" + }, + { + id: "QuMiCgDs8cB" + }, + { + id: "guDOChjSGvN" + }, + { + id: "cDvT5D5ptAO" + }, + { + id: "FgYDmGwmpEU" + }, + { + id: "SbJs5cqXDlv" + }, + { + id: "sgcHQEaB40Y" + }, + { + id: "yf1TrU7Vfhk" + }, + { + id: "JLmpmvulte0" + }, + { + id: "DPKaN8PGYzf" + }, + { + id: "Zp2Yi4j2AAH" + }, + { + id: "K1fAArHJZFj" + }, + { + id: "eIQbndfxQMb" + }, + { + id: "ZGHtM1ou2fs" + }, + { + id: "jGDeUfXtmX7" + }, + { + id: "Jo8r6czq32Z" + }, + { + id: "BbXyAY49f5A" + }, + { + id: "NRPCjDljVtu" + }, + { + id: "fQxnuYyALNR" + }, + { + id: "jeRid8cKf3H" + }, + { + id: "a0MqrrOwWiu" + }, + { + id: "AWbvdyGIjLW" + }, + { + id: "bPqP6eRfkyn" + }, + { + id: "g704qWV3hEo" + }, + { + id: "tdXFMATR7Xu" + }, + { + id: "EcklTgiE7vX" + }, + { + id: "ShdRyzuLKA2" + }, + { + id: "sqgxmk27Zec" + }, + { + id: "qDSjVCb94M1" + }, + { + id: "D21JqRLIRMK" + }, + { + id: "Q4j2vs04v7h" + }, + { + id: "bX4VGIuPe0i" + }, + { + id: "EQnfnY03sRp" + }, + { + id: "t7bcrWLjL1m" + }, + { + id: "WdFFVSdqPmU" + }, + { + id: "Rr71mI9GJ0K" + }, + { + id: "VhnAWBJphc4" + }, + { + id: "dRigs62u5z1" + }, + { + id: "kqXJc3f9lTL" + }, + { + id: "pRHGAROvuyI" + }, + { + id: "HmT4gudRgSw" + }, + { + id: "pvwB2y1fXO3" + }, + { + id: "EfWCa0Cc8WW" + }, + { + id: "m3QGt8fY3L0" + }, + { + id: "wYTBPsNSraj" + }, + { + id: "fkggXsPoBkP" + }, + { + id: "nnilAOaSqli" + }, + { + id: "Yc8Cmr5XS4B" + }, + { + id: "FlBemv1NfEC" + }, + { + id: "KiheEgvUZ0i" + }, + { + id: "Wa6t6xbPoMh" + }, + { + id: "XglyerJlvLj" + }, + { + id: "xVaAo6qUVZe" + }, + { + id: "UxpUYgdb4oU" + }, + { + id: "dOuvjKSD6Hn" + }, + { + id: "IGCNbKZeeY5" + }, + { + id: "eXxcXRbu9cE" + }, + { + id: "pdF4XIHIGPx" + }, + { + id: "JZQk3w8sldD" + }, + { + id: "U4rDX9YlXys" + }, + { + id: "g4rWlg3FKUP" + }, + { + id: "NAxk1atfa7V" + }, + { + id: "kI0SufQ7aHj" + }, + { + id: "lxxASQqPUqd" + }, + { + id: "ny5xGrgFbt4" + }, + { + id: "ReaYfNwZ3Ri" + }, + { + id: "mryxrsqoTOf" + }, + { + id: "wc87kBLKL9E" + }, + { + id: "NNzcAXJIFrW" + }, + { + id: "dDSgv7NDUHv" + }, + { + id: "Qqed2D85sDL" + }, + { + id: "pqqtwJyy4km" + }, + { + id: "bnP1bAemxy1" + }, + { + id: "Zc5gvyjaSUb" + }, + { + id: "I9Du5dDmb5c" + }, + { + id: "P2WqNppWhpH" + }, + { + id: "W5fN3G6y1VI" + }, + { + id: "VF7LfO19vxS" + }, + { + id: "duINhdt3Yay" + }, + { + id: "Eyqyhztf8G1" + }, + { + id: "fA43H8Ds0Ja" + }, + { + id: "epAXoMcUZ7Z" + }, + { + id: "OUPkxfQld8y" + }, + { + id: "ldXIdLNUNEn" + }, + { + id: "r2TlHQ3PA6b" + }, + { + id: "KuR0y0h0mOM" + }, + { + id: "QYTlBnbOQc2" + }, + { + id: "f90eISKFm7P" + }, + { + id: "DlGaPAUaOvW" + }, + { + id: "rwgK8TkRwHl" + }, + { + id: "w0woO8XTlaW" + }, + { + id: "plnHVbJR6p4" + }, + { + id: "XQudzejlhJZ" + }, + { + id: "oCC1QKfF35y" + }, + { + id: "jCnyQOKQBFX" + }, + { + id: "n9HIySyR00g" + }, + { + id: "F2TAF765q1b" + }, + { + id: "CF0cFke6jiS" + }, + { + id: "FZxJ0KST9jn" + }, + { + id: "iaTSPSIVkSY" + }, + { + id: "DzAOqCf0ots" + }, + { + id: "lrnUABSHIFZ" + }, + { + id: "m7fBMpmVpSM" + }, + { + id: "c2NsG9JYWke" + }, + { + id: "BPzLs44ahIt" + }, + { + id: "oRiPgfOl9lq" + }, + { + id: "vHxNPlpdGpt" + }, + { + id: "cgP9X69GJQG" + }, + { + id: "caUqmDQjhe3" + }, + { + id: "QjsT50Xvf0Z" + }, + { + id: "q1O6MvgFZxp" + }, + { + id: "pg4MKQIQ2Jo" + }, + { + id: "sARzegYzuRQ" + }, + { + id: "SAhwDYs1RSD" + }, + { + id: "RTZPIa5HdU4" + }, + { + id: "KijawwvGExH" + }, + { + id: "K4y5pfOzlUO" + }, + { + id: "u6ZBka0T5wh" + }, + { + id: "Xy6Uu2lOc5h" + }, + { + id: "zpJovpBBfKM" + }, + { + id: "USQdmvrHh1Q" + }, + { + id: "Kq1uajqoUFk" + }, + { + id: "CwSv8Hsi7g8" + }, + { + id: "mCsrHgInpyg" + }, + { + id: "fmkqsEx6MRo" + }, + { + id: "Snb7KcCPUbh" + }, + { + id: "xzhG4p5lZnH" + }, + { + id: "AYdCrKEbzUu" + }, + { + id: "brnL0W3Fbsj" + }, + { + id: "p2cHs4bwern" + }, + { + id: "n32Do23x95z" + }, + { + id: "hnAcBh8UTrz" + }, + { + id: "h6EBpyeYXQX" + }, + { + id: "fwOsBKgfVi7" + }, + { + id: "cNAp6CJeLxk" + }, + { + id: "NeNJgIg8uHE" + }, + { + id: "rUTnT6Q9FYl" + }, + { + id: "EYzPUgNX3VC" + }, + { + id: "Q6Lhtm8s3Lv" + }, + { + id: "Bqzf3zcPFRk" + }, + { + id: "Jw2cH3eKRyl" + }, + { + id: "Jw4MoZMn7ts" + }, + { + id: "RfuZfAgIWmu" + }, + { + id: "geVF87N7qTw" + }, + { + id: "PduUQmdt0pB" + }, + { + id: "Xx2UQbqVvvo" + }, + { + id: "hbRI6YtqRhR" + }, + { + id: "nlt6j60tCHF" + }, + { + id: "ObV5AR1NECl" + }, + { + id: "OpTjTojwTW4" + }, + { + id: "JzhBBw5KHNs" + }, + { + id: "CvBAqD6RzLZ" + }, + { + id: "gAAkigtY7Cp" + }, + { + id: "wysrzjjmlFV" + }, + { + id: "m73lWmo5BDG" + }, + { + id: "mDvggfOIXuy" + }, + { + id: "L5QegIyR0Jd" + }, + { + id: "vBZeqBsk4t8" + }, + { + id: "AztUK2qVbeo" + }, + { + id: "UdQeIZ9knyI" + }, + { + id: "BrymZB4Qrpm" + }, + { + id: "h7diHExBH9j" + }, + { + id: "ERwZBXlsbiX" + }, + { + id: "HcB2W6Fgp7i" + }, + { + id: "YMczwSLMzYy" + }, + { + id: "AuPFYAbG4CX" + }, + { + id: "uiLQhUgOlq5" + }, + { + id: "nVecYeuwXRF" + }, + { + id: "zrRnmB6gD18" + }, + { + id: "isTUxyVIfgc" + }, + { + id: "uXr25l4RTvw" + }, + { + id: "YO3cRz8LjQB" + }, + { + id: "AlG0apJE5cm" + }, + { + id: "EDJw2gYz0kM" + }, + { + id: "I2DzylqJa2i" + }, + { + id: "mgiXuaxaqvA" + }, + { + id: "ufEHhOGhjYe" + }, + { + id: "n64rIxNP3AG" + }, + { + id: "ldJltwJ3lJL" + }, + { + id: "Jw4lCv7xDGf" + }, + { + id: "mIbcTJvfdkl" + }, + { + id: "t66taqSF1mW" + }, + { + id: "ncGs9vXS36w" + }, + { + id: "VeXU3mndzri" + }, + { + id: "o2uR8KOdB1E" + }, + { + id: "oWFhMuTIIts" + }, + { + id: "rhr20eCsvtx" + }, + { + id: "eQT6PwZmFTy" + }, + { + id: "fGp4OcovQpa" + }, + { + id: "qOapebUavrO" + }, + { + id: "CvYsZipdHMN" + }, + { + id: "WvQbZzvzfGt" + }, + { + id: "Em1q3YcXORk" + }, + { + id: "EBWhrVyXPDJ" + }, + { + id: "GHMuykRYMYS" + }, + { + id: "c1PIzYM0pWO" + }, + { + id: "b8AdvPWYM2S" + }, + { + id: "T3wZvkH6nj6" + }, + { + id: "rDfwvqhOjEu" + }, + { + id: "tqs6r11O0Bc" + }, + { + id: "Ed2Y8qbg78R" + }, + { + id: "qWslk59QHkK" + }, + { + id: "mS4S4e5S9Ik" + }, + { + id: "ndan8zClk4E" + }, + { + id: "T3on7ZuRmEL" + }, + { + id: "UCj7SppzG83" + }, + { + id: "qisBi5ksxNW" + }, + { + id: "uGa5JtIMfRx" + }, + { + id: "WbSOPMUSIjq" + }, + { + id: "NqTZjfTIsxC" + }, + { + id: "TWKYuqVgH7m" + }, + { + id: "eFSB0KRDeXq" + }, + { + id: "JOrJQHKng8y" + }, + { + id: "DHbXXPpMgPm" + }, + { + id: "DE9QyykBO1Q" + }, + { + id: "DCn4ijMbf3H" + }, + { + id: "jSPLEMDwXN4" + }, + { + id: "WG0oLS9FrZu" + }, + { + id: "NLaVvvZ7h9a" + }, + { + id: "kMqgc7WLKM2" + }, + { + id: "rvl7h2TZpHu" + }, + { + id: "a4BeuPBNXnG" + }, + { + id: "vv1QJFONsT6" + }, + { + id: "YYWlNyNPPdZ" + }, + { + id: "H8RixfF8ugH" + }, + { + id: "TveoRAM7hSi" + }, + { + id: "OZHQ1puF7s4" + }, + { + id: "Hy9kbfZLbEu" + }, + { + id: "KvxbnHd7y84" + }, + { + id: "JSVVdczqZzV" + }, + { + id: "ZMrYua0m4nJ" + }, + { + id: "NHXpG74NWB7" + }, + { + id: "dS1yFsbOQHe" + }, + { + id: "BQ8OEJc9l11" + }, + { + id: "Kxtv3KavBA1" + }, + { + id: "iMDr2FG7i8Q" + }, + { + id: "zohdJWi6RFq" + }, + { + id: "qZNNDXDCF8K" + }, + { + id: "Uji6Ds4aqnF" + }, + { + id: "JVeWBag2e9y" + }, + { + id: "swcD9FvQp4j" + }, + { + id: "pb62QK3itU5" + }, + { + id: "xWIyicUgscN" + }, + { + id: "zdXSYH2Yc8D" + }, + { + id: "D8uoK8m9Bfi" + }, + { + id: "fLJQCVqUZTS" + }, + { + id: "ZUwoAwYI5VL" + }, + { + id: "XJI24bY3AN7" + }, + { + id: "OTn9VMNEkdo" + }, + { + id: "hZpaU5uFSDm" + }, + { + id: "g8DdBm7EmUt" + }, + { + id: "Rvmh5Y2ZCk5" + }, + { + id: "UXhPdIDuqsv" + }, + { + id: "DMxw0SASFih" + }, + { + id: "j1AYf7vKU55" + }, + { + id: "FclfbEFMcf3" + }, + { + id: "iqIB5RZL6eh" + }, + { + id: "qvKYtvSWzfW" + }, + { + id: "dlBDyABLexm" + }, + { + id: "gIJls1GgxI7" + }, + { + id: "OGaAWQD6SYs" + }, + { + id: "dqHvtpUqLwB" + }, + { + id: "EQVdDszrAXa" + }, + { + id: "JKhjdiwoQZu" + }, + { + id: "mHxwn8ncOJw" + }, + { + id: "tVNVfLo33lW" + }, + { + id: "yzlfbdvi3wz" + }, + { + id: "GCxQySHWl0s" + }, + { + id: "ubsjwFFBaJM" + }, + { + id: "QFkzkfSYmpX" + }, + { + id: "TEQlaapDQoK" + }, + { + id: "rH0VineUPKN" + }, + { + id: "yAqrRMyFbIn" + }, + { + id: "UtDSIYVwEND" + }, + { + id: "sK3Vu1aTikL" + }, + { + id: "I0NavaepNgA" + }, + { + id: "CXpI8mc7ULB" + }, + { + id: "sfFAasecThR" + }, + { + id: "l9K5iESJ5xr" + }, + { + id: "sw9k3FkcfSX" + }, + { + id: "gqtzCpBxN3w" + }, + { + id: "vyDPazinp6j" + }, + { + id: "o0BgK1dLhF8" + }, + { + id: "z01qogI8qS0" + }, + { + id: "Xnif5imKLlT" + }, + { + id: "GCbYmPqcOOP" + }, + { + id: "YBoWCLKBgAh" + }, + { + id: "MN9tytgcXBx" + }, + { + id: "TjZwphhxCuV" + }, + { + id: "yDkjEd6exF9" + }, + { + id: "nE01sGNCY5P" + }, + { + id: "hqvkeW5QBOJ" + }, + { + id: "t6S2MopeRaM" + }, + { + id: "NnGUNkc5Zq8" + }, + { + id: "ByxqoYgfaTc" + }, + { + id: "JopfwdVI9PM" + }, + { + id: "JzGRvFgl6XX" + }, + { + id: "R4ph8PWKReI" + }, + { + id: "PhR1PdMTzhW" + }, + { + id: "VIVevZf6pQ2" + }, + { + id: "eP4F9eB76B0" + }, + { + id: "G0ywuTVnvoj" + }, + { + id: "gh0ybckORun" + }, + { + id: "faWnwnREAkq" + }, + { + id: "PaqugoqjRIj" + }, + { + id: "tBRDdxfKbMx" + }, + { + id: "k1Y0oNqPlmy" + }, + { + id: "LkfEuHBjru3" + }, + { + id: "ReolvhEKnQ7" + }, + { + id: "guhl24YzVdM" + }, + { + id: "z234PZ30yaw" + }, + { + id: "MRePckvSGyw" + }, + { + id: "EFTcruJcNmZ" + }, + { + id: "e2M7aiZQE4e" + }, + { + id: "Vz7RM29OOsG" + }, + { + id: "kpDoH80fwdX" + }, + { + id: "dNT8lAL4zGo" + }, + { + id: "i9RXBEa9GoU" + }, + { + id: "ME2ZBDsuhqU" + }, + { + id: "JnV7u3yyjJD" + }, + { + id: "FiD5fxH9zRE" + }, + { + id: "jWDvj4X61DN" + }, + { + id: "qgi2SfJgoq1" + }, + { + id: "cWIiusmHULW" + }, + { + id: "weoL19nwuVZ" + }, + { + id: "YUPqnxcM7Nw" + }, + { + id: "DSBXsRQSXUW" + }, + { + id: "JQJjsXvHE5M" + }, + { + id: "gYkBwYHWcFb" + }, + { + id: "PWqwcBdRGIH" + }, + { + id: "fPmlxsOal96" + }, + { + id: "VImHQqBejjf" + }, + { + id: "UBZ4ww4Re1b" + }, + { + id: "al4GkB6X2X3" + }, + { + id: "RkO3q22RKYT" + }, + { + id: "e0RGds86ow6" + }, + { + id: "c78POlfGgBH" + }, + { + id: "g5ptsn0SFX8" + }, + { + id: "iE2MrXb0KHO" + }, + { + id: "JMts1T5U4D9" + }, + { + id: "c9CWZXvG3Xx" + }, + { + id: "EIV6tvzGBHw" + }, + { + id: "ThQSMOIT9Iw" + }, + { + id: "Fhzyc2hDVPT" + }, + { + id: "JYBHeUA6iMj" + }, + { + id: "hMBotMwWnU1" + }, + { + id: "X00V3yPaJ8X" + }, + { + id: "mOchMUVJPbo" + }, + { + id: "qwmh84DV65K" + }, + { + id: "IyxiFteC8xx" + }, + { + id: "h5SFcZt5G1I" + }, + { + id: "lPeZdUm9fD7" + }, + { + id: "hskJrToJM6X" + }, + { + id: "spPxq7tMKMC" + }, + { + id: "tHUYjt9cU6h" + }, + { + id: "IR1NJ1FJ5GU" + }, + { + id: "k8ZPul89UDm" + }, + { + id: "yOsdnlPvpxf" + }, + { + id: "MR9LHv3e9I3" + }, + { + id: "K00jR5dmoFZ" + }, + { + id: "hdQYFKD7y2Q" + }, + { + id: "xXYv82KlBUh" + }, + { + id: "Xk2fvz4aTBU" + }, + { + id: "ZjlSWouBQCf" + }, + { + id: "wByywkNKJ26" + }, + { + id: "C7FI0F7aHvG" + }, + { + id: "hxHaqqMaIjO" + }, + { + id: "u1zgw8xV6sX" + }, + { + id: "WT6JLfyR9lL" + }, + { + id: "yvDKjcRRQsR" + }, + { + id: "Srnpwq8jKbp" + }, + { + id: "tfreCWQXBNA" + }, + { + id: "NpHsnQ2L1oY" + }, + { + id: "DvzKyuC0G4w" + }, + { + id: "UjdFTwnem0s" + }, + { + id: "hdlaTX6GNBB" + }, + { + id: "KP40aOgSHtr" + }, + { + id: "PcADvhvcaI2" + }, + { + id: "bfuI6iKIEC5" + }, + { + id: "dczh6Jfd4no" + }, + { + id: "EjsItGPbyn0" + }, + { + id: "CMVTl4aVnhu" + }, + { + id: "hy4y80DxUAZ" + }, + { + id: "bSbZ4v2bkh4" + }, + { + id: "FGV6TAbL0eN" + }, + { + id: "xpmIgxXB50B" + }, + { + id: "O5HZTrdAIy1" + }, + { + id: "HmeNsFNJHJv" + }, + { + id: "sJ2rOC42ck6" + }, + { + id: "l8Cj9yzytP5" + }, + { + id: "ahMLVbF8Jcl" + }, + { + id: "BbZ6cIgfJOO" + }, + { + id: "WvJmBdtUGPB" + }, + { + id: "C6r62Sn2N7B" + }, + { + id: "CpZpUPY6f2O" + }, + { + id: "Fdu706gYYLa" + }, + { + id: "mXivK01oPF2" + }, + { + id: "KOExHsBref6" + }, + { + id: "l2kZRcJjomr" + }, + { + id: "pknpU6PgUEc" + }, + { + id: "df5zH1E38K6" + }, + { + id: "LJWGHj5pj2Y" + }, + { + id: "TaLIhbdFuQz" + }, + { + id: "ECadFFezuoX" + }, + { + id: "PdfmwEAa7xp" + }, + { + id: "agM9Fh6Hgpu" + }, + { + id: "v2FoTjues3L" + }, + { + id: "F13tWZ5wwDT" + }, + { + id: "TK1WrNNwWjA" + }, + { + id: "mkIugjeYSjE" + }, + { + id: "CrzNIFHpOFf" + }, + { + id: "TWdFaF5MarN" + }, + { + id: "mc3jvzpzSi4" + }, + { + id: "rwfuVQHnZJ5" + }, + { + id: "e4ySYmFeqwO" + }, + { + id: "zb00vTMZ06a" + }, + { + id: "yEU926iVAJJ" + }, + { + id: "bne6tOoPaWn" + }, + { + id: "pxY7o1Z4iRz" + }, + { + id: "Zpg7xK5Dp9V" + }, + { + id: "PPTOBEeEYho" + }, + { + id: "POtQRvBjEyX" + }, + { + id: "aJ2GlNejzg4" + }, + { + id: "xEip3dtU8bp" + }, + { + id: "X3NOrmGT8qW" + }, + { + id: "UOJlcpPnBat" + }, + { + id: "YhBJbiD5N1z" + }, + { + id: "omFDCDDd3C9" + }, + { + id: "xrSqLKQb7pT" + }, + { + id: "IN2dOk0gY1G" + }, + { + id: "RTC6vFWnDjE" + }, + { + id: "X7ZVgRPt31q" + }, + { + id: "XiJOONviAv9" + }, + { + id: "TuUmXovlC0v" + }, + { + id: "lCvWPVeh3bi" + }, + { + id: "sLlD1iFlTVA" + }, + { + id: "hQ572oBgJMj" + }, + { + id: "SgVNzw10vvi" + }, + { + id: "yTx6l9Cm6f3" + }, + { + id: "mAlVEzog6VX" + }, + { + id: "CY8cV5khn7e" + }, + { + id: "m3eyTINTgmc" + }, + { + id: "fWzvQtKZThS" + }, + { + id: "T8dxbX2PRJZ" + }, + { + id: "QvMExiAJhu6" + }, + { + id: "OZHhNP5X4q7" + }, + { + id: "nlSZ7WHPsKZ" + }, + { + id: "p97QGsi0RrM" + }, + { + id: "kLNQT4KQ9hT" + }, + { + id: "a04CZxe0PSe" + }, + { + id: "anlv4Oq9s3x" + }, + { + id: "LSt7ymrwfQX" + }, + { + id: "H97XE5Ea089" + }, + { + id: "IrTjw1nmSsU" + }, + { + id: "BugoCRnfVKz" + }, + { + id: "baGvbrgFnV4" + }, + { + id: "SzEmaH63Qe8" + }, + { + id: "Fu9vow7WzeY" + }, + { + id: "N7qnHXK5FGb" + }, + { + id: "PbN5cqV5Fut" + }, + { + id: "S2NaydvPENH" + }, + { + id: "JBU18etaAp5" + }, + { + id: "Mw1VdFy0Y1F" + }, + { + id: "qAEsKR6PbsZ" + }, + { + id: "INkmICN0I2u" + }, + { + id: "moAlVM6Y6nD" + }, + { + id: "VXHhYWYQT4f" + }, + { + id: "bPJABq7F5Iy" + }, + { + id: "oJLOlJSjBj1" + }, + { + id: "fz3mmw8l3nP" + }, + { + id: "EArqQGjNegL" + }, + { + id: "TYgzUZx9Z3r" + }, + { + id: "yGTq3sKtveY" + }, + { + id: "hgIfb6cXD79" + }, + { + id: "BtpiBwHsnpq" + }, + { + id: "lBrkUwNpNa4" + }, + { + id: "UKDrGV0OsTM" + }, + { + id: "lyONqUkY1Bq" + }, + { + id: "ApJSynsKXZO" + }, + { + id: "wj7iV08dvFq" + }, + { + id: "PeyblWrhOwL" + }, + { + id: "kHhYmHVGSPZ" + }, + { + id: "gbQ6moBp9qw" + }, + { + id: "TQ45TWWIH3t" + }, + { + id: "Vw4Uv6UPIPC" + }, + { + id: "Xybm3mlz5A5" + }, + { + id: "eJ1NCIbKFeL" + }, + { + id: "n6ttgbYwKrn" + }, + { + id: "ecZBOCaQGz6" + }, + { + id: "zv1CHdVuXXS" + }, + { + id: "YAIfiMG7VTP" + }, + { + id: "Jkn1s1tI4mN" + }, + { + id: "YCTSlOlEeEi" + }, + { + id: "rwjqr2sflz7" + }, + { + id: "Z0q0Y3GRugt" + }, + { + id: "KynKCypNiZC" + }, + { + id: "zpTlA0mecnK" + }, + { + id: "aqFXzQJiD51" + }, + { + id: "UlF2nn4N0HD" + }, + { + id: "m9zkLiqFNrV" + }, + { + id: "CMyGBztoNjM" + }, + { + id: "j17OTOxKboa" + }, + { + id: "pSvSzOPYgAL" + }, + { + id: "qiKQveJF54d" + }, + { + id: "JdqfYTIFZXN" + }, + { + id: "SSXpxYhQsqQ" + }, + { + id: "uFO5tHtFUcM" + }, + { + id: "jK5RFcBSmlU" + }, + { + id: "hKhN7mvx5qu" + }, + { + id: "jXJNr6xpVtP" + }, + { + id: "mmQ3IGBKExL" + }, + { + id: "NoTCS7xBSx5" + }, + { + id: "CYSXNa08Fj0" + }, + { + id: "D4J8YGRsVws" + }, + { + id: "LemXsoRIQwH" + }, + { + id: "DQHGtTGOP6b" + }, + { + id: "jGYT5U5qJP6" + }, + { + id: "qMABUusqGNJ" + }, + { + id: "JW3Z34Xdue4" + }, + { + id: "hZOk3ACtAsk" + }, + { + id: "nOYt1LtFSyU" + }, + { + id: "KP7MT2E1mhZ" + }, + { + id: "aCoFVWBqEP4" + }, + { + id: "QcOla8xILGP" + }, + { + id: "eRlN9uGZpGg" + }, + { + id: "GB9GcIP0RIf" + }, + { + id: "szbAJSWOXjT" + }, + { + id: "sO0s5WLpWuH" + }, + { + id: "JBhJiwqBCUa" + }, + { + id: "w92ah6dK8rd" + }, + { + id: "IWMIqLqELNm" + }, + { + id: "am6EFqHGKeU" + }, + { + id: "f1glFBoLk1L" + }, + { + id: "nKOoyTkUQV0" + }, + { + id: "Og4IrbfB6B4" + }, + { + id: "BZ6vit8Ixkc" + }, + { + id: "dyqtigUT60R" + }, + { + id: "cw0Wm1QTHRq" + }, + { + id: "zgDKc8tteWj" + }, + { + id: "hJXKU5DTju0" + }, + { + id: "ae2WPaK2mRy" + }, + { + id: "BJMWTGwuGiw" + }, + { + id: "bey7zJmGM3q" + }, + { + id: "ETRqfu74kge" + }, + { + id: "kvzdkXBxHoN" + }, + { + id: "EQQPyoukut9" + }, + { + id: "sCkFpAVwSHz" + }, + { + id: "n0HT5ZSO7yJ" + }, + { + id: "DBs6e2Oxaj1" + }, + { + id: "WQC4U29qPvk" + }, + { + id: "GMOl74xzmAE" + }, + { + id: "QpRIPul20Sb" + }, + { + id: "ix2wsUzRgWa" + }, + { + id: "abW8F723ggS" + }, + { + id: "HpFEce6vxFX" + }, + { + id: "agEKP19IUKI" + }, + { + id: "FQs34xcmpUK" + }, + { + id: "nF3UQGBmFd7" + }, + { + id: "GKbl7tNClTE" + }, + { + id: "xhyjU2SVewz" + }, + { + id: "F4HLTxnnM3I" + }, + { + id: "oV9P0VvL9Jh" + }, + { + id: "ACpurvqPMtf" + }, + { + id: "TAN6Q7vjvuk" + }, + { + id: "QPyg4am8tzw" + }, + { + id: "n4wETNZkfSr" + }, + { + id: "zY9ds4oNZxw" + }, + { + id: "ejdLY4RhIFZ" + }, + { + id: "vxa2YQRGV7I" + }, + { + id: "QltoMhOG84t" + }, + { + id: "wqr0vnmvUMj" + }, + { + id: "C3vF099iBl0" + }, + { + id: "BKVQi8fxIum" + }, + { + id: "AIJm6oHGjTi" + }, + { + id: "QFcMulIoEii" + }, + { + id: "wSCTKjMRg3K" + }, + { + id: "O3mmGiJpEiP" + }, + { + id: "wk77FIbcJnx" + }, + { + id: "z1ielwdLtPl" + }, + { + id: "a7i7UlS9t1D" + }, + { + id: "nZblzPvJ5UW" + }, + { + id: "Fnndvk0hBPM" + }, + { + id: "Dxv9BsvEZLh" + }, + { + id: "XU0jdKgql5X" + }, + { + id: "oCGj37yqeHW" + }, + { + id: "pf2M0IZNu4Q" + }, + { + id: "rpAgG9XCWhO" + }, + { + id: "xaLjxxNKGBu" + }, + { + id: "IoD93AqFTed" + }, + { + id: "GEzcv3kfDOM" + }, + { + id: "gvxZ9YpmK1v" + }, + { + id: "ORkFbgtCEh1" + }, + { + id: "fjsXLEIXfim" + }, + { + id: "T3iVyvrCpZ0" + }, + { + id: "byOPfWkK6M6" + }, + { + id: "mhs9W9luxFt" + }, + { + id: "qMbxFg9McOF" + }, + { + id: "EZduybPx6eC" + }, + { + id: "QBRQnWPRO3V" + }, + { + id: "b1F5bfb7WUR" + }, + { + id: "ZxRA0U655yW" + }, + { + id: "el8sgzyHuEe" + }, + { + id: "MNzhtYGWLVY" + }, + { + id: "HljBY2QVY53" + }, + { + id: "wEU4djGp72e" + }, + { + id: "gPfUHBl1o6J" + }, + { + id: "WVVhjx3AObr" + }, + { + id: "D0FK08nsi0g" + }, + { + id: "dTGxA9DSdEX" + }, + { + id: "EoLrHZ9URks" + }, + { + id: "o0J1lAtfZqk" + }, + { + id: "FwKJ7gYEv8U" + }, + { + id: "QpJSF4IQTAL" + }, + { + id: "Af29qBHoHHA" + }, + { + id: "pGw8wH1qJeD" + }, + { + id: "rs87nYgwbKv" + }, + { + id: "aPCH8nWJJMT" + }, + { + id: "QqAzWHtJ8VC" + }, + { + id: "nNfWAu8J87O" + }, + { + id: "O41R77wEUfv" + }, + { + id: "HMltAwIjIIe" + }, + { + id: "gsypzntLahf" + }, + { + id: "aCLUGk6eLfv" + }, + { + id: "lZdR6a6gXza" + }, + { + id: "zIJBpRLfC4n" + }, + { + id: "Ly2yY7nlRjH" + }, + { + id: "lZecPzbOsbr" + }, + { + id: "Knsr5wP8GYI" + }, + { + id: "kBpMc3uWbhN" + }, + { + id: "ojmNKvb4jAf" + }, + { + id: "FMirgBvrEAq" + }, + { + id: "rFywUKFHZxr" + }, + { + id: "KFowGOhmuSL" + }, + { + id: "nkFBms3luru" + }, + { + id: "RpRJUDOPtt7" + }, + { + id: "TGRCfJEnXJr" + }, + { + id: "hOErLhq0tXw" + }, + { + id: "GKs8hLomBsy" + }, + { + id: "XEyIRFd9pct" + }, + { + id: "XdCoH1YKZBw" + }, + { + id: "zZ8z7D3wSNM" + }, + { + id: "HcAJuXJgLTb" + }, + { + id: "VGAFxBXz16y" + }, + { + id: "dxUk7h1GyIt" + }, + { + id: "j93R5zDcuzU" + }, + { + id: "I4jWcnFmgEC" + }, + { + id: "d9iMR1MpuIO" + }, + { + id: "MKQDyajwc0E" + }, + { + id: "RndxKqQGzUl" + }, + { + id: "dgzl5jBFSk6" + }, + { + id: "dtuiqEXYa7z" + }, + { + id: "ofHgE75zePD" + }, + { + id: "xmJQN1v5LiE" + }, + { + id: "AhJfrUZqpRA" + }, + { + id: "SUb63WbnG7h" + }, + { + id: "F0jbbkyQBuj" + }, + { + id: "hjpHnHZIniP" + }, + { + id: "EkrbBkjmsbC" + }, + { + id: "Och1Y2SQiyU" + }, + { + id: "rDIJySp9eE8" + }, + { + id: "fbqAiSsFLUV" + }, + { + id: "gaoFOXYLfIJ" + }, + { + id: "XDRRlz2vVbX" + }, + { + id: "ri7jVJXey9A" + }, + { + id: "qlB3VFc4UMH" + }, + { + id: "iuMX7cC1bK0" + }, + { + id: "V38G1q5B1t8" + }, + { + id: "L2pNGjAdjJB" + }, + { + id: "m8pRTzESbRL" + }, + { + id: "Rll4VmTDRiE" + }, + { + id: "dLblgrfLscW" + }, + { + id: "ZGLUWWvIzZE" + }, + { + id: "C3ZpWdpHuDG" + }, + { + id: "bQ1KQyVyuvv" + }, + { + id: "Wy8ad1wjlfd" + }, + { + id: "Dbn6fyCgMBV" + }, + { + id: "iPcreOldeV9" + }, + { + id: "vE6c1Y3nYnw" + }, + { + id: "Q2USZSJmcNK" + }, + { + id: "vnKb3BLUoyp" + }, + { + id: "Wr8kmywwseZ" + }, + { + id: "ARy2GG6qKx0" + }, + { + id: "ZNEXRG9L02p" + }, + { + id: "i0hJ7wfNKCR" + }, + { + id: "TV4y3CtOJ3s" + }, + { + id: "wwM3YPvBKu2" + }, + { + id: "TYEiJ6ZIHqW" + }, + { + id: "jNxOkbkY455" + }, + { + id: "vkmFz7JMhfw" + }, + { + id: "TaQ7kfd2hQs" + }, + { + id: "PIvggX3ALdP" + }, + { + id: "gowgzHWc8FT" + }, + { + id: "DZi1LydHCtD" + }, + { + id: "WIn2BE8tm0P" + }, + { + id: "lsqa3EEGHxv" + }, + { + id: "UJ80rknbJtm" + }, + { + id: "foPGXhwhlqp" + }, + { + id: "X2iNKYFI26W" + }, + { + id: "BLVKubgVxkF" + }, + { + id: "q5RI3DC3u1b" + }, + { + id: "VPWHSJjpyJj" + }, + { + id: "NvsbcAMSQxF" + }, + { + id: "dpcvWc01CeN" + }, + { + id: "DYFBf6MwWFL" + }, + { + id: "F9zWBqG5Pmi" + }, + { + id: "fPe1l06MurL" + }, + { + id: "S4eCMCTJPBj" + }, + { + id: "dbQSMpjKZZV" + }, + { + id: "S5GVdD2d3Bf" + }, + { + id: "TmCsvdJLHoX" + }, + { + id: "c5kEPNDpFdx" + }, + { + id: "VQKz6bjkd50" + }, + { + id: "SkmTDNoVzIz" + }, + { + id: "YYhpaiyEsmd" + }, + { + id: "tuOQTWUH1ax" + }, + { + id: "G4TOy4yGuFa" + }, + { + id: "wWpPWJ7tlo7" + }, + { + id: "Lbfg4szGfyn" + }, + { + id: "AzIoHy2idQw" + }, + { + id: "w7a4l3XHIgi" + }, + { + id: "calzWl8FrK5" + }, + { + id: "DLC5BmKgFCL" + }, + { + id: "IPvrsWbm0EM" + }, + { + id: "NsdUpcVYozo" + }, + { + id: "mFkrU0bpyJI" + }, + { + id: "EihevoTWn2i" + }, + { + id: "uuuqWJhEpIp" + }, + { + id: "rtF9slZoSZr" + }, + { + id: "klvjKLLdGno" + }, + { + id: "WfNSb6FE2nb" + }, + { + id: "nAKvEswLh5C" + }, + { + id: "F8W53IkegIL" + }, + { + id: "qELjt3LRkSD" + }, + { + id: "er9S4CQ9QOn" + }, + { + id: "p0wkjMFKy4r" + }, + { + id: "JsCnEwJV3jQ" + }, + { + id: "UF6K94f0zFM" + }, + { + id: "DUDHgE5DECu" + }, + { + id: "U0Rwx5aTWEQ" + }, + { + id: "E6kvtMFCIYa" + }, + { + id: "UCpFs9Ve8aU" + }, + { + id: "uXfAcKF2L3E" + }, + { + id: "VmP7a5p4Zqc" + }, + { + id: "l3dWbXKlY9e" + }, + { + id: "xLuvmLCd9RR" + }, + { + id: "D3SI8fLzweN" + }, + { + id: "sZtDiRPeUYj" + }, + { + id: "I8pqrvjpJIj" + }, + { + id: "LV2b3vaLRl1" + }, + { + id: "VshFFac9uYG" + }, + { + id: "AnXoUM1tfNT" + }, + { + id: "X2gchOnaDRc" + }, + { + id: "wZTSgnydP5I" + }, + { + id: "gWUVw8ARDEq" + }, + { + id: "dq0DcnVFNGR" + }, + { + id: "xX4lIVqF4yb" + }, + { + id: "RzFAUpfhxhb" + }, + { + id: "AWLFlPWPf2t" + }, + { + id: "cHGivPbe1rV" + }, + { + id: "UAtEKSd5QTf" + }, + { + id: "oygTu90sWvA" + }, + { + id: "HtaEyk8HLgQ" + }, + { + id: "wYLjA4vN6Y9" + }, + { + id: "VlfXTyi4gsp" + }, + { + id: "t3a8Jgy1c9R" + }, + { + id: "els7som2jwm" + }, + { + id: "lZxQjgqInzr" + }, + { + id: "dhMoBTZNcoW" + }, + { + id: "CnW6jhYnh1O" + }, + { + id: "vH5rOm0P0ut" + }, + { + id: "Pmj0jWhE4KE" + }, + { + id: "ZFvOc6I47s9" + }, + { + id: "tqWQn0wU9l4" + }, + { + id: "dr7PV4gaqyK" + }, + { + id: "pQ7ezTjaaik" + }, + { + id: "LGdq6IxjmRL" + }, + { + id: "uYG1rUdsJJi" + }, + { + id: "W9RHzTyBZDQ" + }, + { + id: "v1m7SA0NNuH" + }, + { + id: "jmrkDwROsPW" + }, + { + id: "uxWHRgYxZeh" + }, + { + id: "h7ARR5vhSLF" + }, + { + id: "J8EiZ36T6fV" + }, + { + id: "GQcsUZf81vP" + }, + { + id: "iMZihUMzH92" + }, + { + id: "ii2KMnWMx2L" + }, + { + id: "vfYblw5LxdL" + }, + { + id: "gxLOLoHyHcl" + }, + { + id: "uKNyTj9O0Oe" + }, + { + id: "ZqeYgCpP2VM" + }, + { + id: "NwGeMu9DUv2" + }, + { + id: "OQLDqdxxgX6" + }, + { + id: "Vc36hi7PkoP" + }, + { + id: "VhRX5JDVo7R" + }, + { + id: "nIXOdAExhVP" + }, + { + id: "g0MpCfAFokB" + }, + { + id: "rLaGvUnv2BF" + }, + { + id: "e2WgqiasKnD" + }, + { + id: "sY1WN6LjmAx" + }, + { + id: "pmzk0ho80aA" + }, + { + id: "yOr4gLFxp2p" + }, + { + id: "OjTS752GbZE" + }, + { + id: "ywNG86IY4Ve" + }, + { + id: "oLdmDr8baLT" + }, + { + id: "mepHuAA9l51" + }, + { + id: "xWjiTeok0Sr" + }, + { + id: "Oy39dnEWOK2" + }, + { + id: "k6lOze3vTzP" + }, + { + id: "Ro0zTlehHpg" + }, + { + id: "kIbcKauMdlW" + }, + { + id: "fyrVG90gRSN" + }, + { + id: "ML4nIEJMkHm" + }, + { + id: "JU4dWUv0Pmd" + }, + { + id: "VXrJKs8hic4" + }, + { + id: "qurlLuBdUw2" + }, + { + id: "Oa8I45tlQB3" + }, + { + id: "wxMmC45UyNw" + }, + { + id: "PIGufMYeGrZ" + }, + { + id: "HC2NlwpoXfb" + }, + { + id: "nhxC7Mph8M9" + }, + { + id: "rjNWdlvZQhg" + }, + { + id: "N6Yva6Ga2ob" + }, + { + id: "YaMjtfKVSCk" + }, + { + id: "FsPHdw5CkZI" + }, + { + id: "QkaisroplQb" + }, + { + id: "i4zWyzPSMrh" + }, + { + id: "jeasS04VBBQ" + }, + { + id: "GQpxsB7tekR" + }, + { + id: "uBKLA06Ey0t" + }, + { + id: "Zf2v0kbI7ah" + }, + { + id: "sELnI7fwEKO" + }, + { + id: "hHKKi9WNoBG" + }, + { + id: "jKOEimI0OIb" + }, + { + id: "UgYg0YW7ZIh" + }, + { + id: "KcfW8NK2Z7Y" + }, + { + id: "k6DIO9LIEk9" + }, + { + id: "vsH94z9yzVM" + }, + { + id: "BqRElDluXGa" + }, + { + id: "GfjNCGYbhNY" + }, + { + id: "FYknVPR8kUy" + }, + { + id: "USJTnOZow1K" + }, + { + id: "BzEwqabuW19" + }, + { + id: "bW22Wc00b4S" + }, + { + id: "lGqIDvuelR8" + }, + { + id: "wEGaCHYF2R4" + }, + { + id: "ElF7UA6vc7t" + }, + { + id: "RzKeCma9qb1" + }, + { + id: "YQwB39NwRW1" + }, + { + id: "f3dAOiFiysx" + }, + { + id: "IlMQTFvcq9r" + }, + { + id: "I3vRP5Bni5b" + }, + { + id: "Vszj4vZDyUs" + }, + { + id: "cjvCZFoi2Dr" + }, + { + id: "OTIM7YYULO8" + }, + { + id: "rx2jPcgpSCz" + }, + { + id: "qEAo0RFI8BB" + }, + { + id: "ZoTFLp2zdOW" + }, + { + id: "BdbhfPGpTGA" + }, + { + id: "I2xsJugrbwE" + }, + { + id: "JI5lagoUJR4" + }, + { + id: "GLppjdUQswj" + }, + { + id: "dOqQZ6trynI" + }, + { + id: "DlDuNku1b66" + }, + { + id: "mshIal30ffW" + }, + { + id: "dmd7ZqYOz46" + }, + { + id: "YE8bEIV793k" + }, + { + id: "byp7w6Xd9Df" + }, + { + id: "QoROdPmIdY1" + }, + { + id: "kKMSAINBBoh" + }, + { + id: "bW5BaqrBM4K" + }, + { + id: "vlh9UgShYdg" + }, + { + id: "mzU18N69g2X" + }, + { + id: "gLpZOjx1xOd" + }, + { + id: "c9kiQJVCeuT" + }, + { + id: "Ox0ri02ccXu" + }, + { + id: "ZR6YVkSqGp4" + }, + { + id: "lOv6IFgr6Fs" + }, + { + id: "XzJyHqWngAw" + }, + { + id: "zQpYVEyAM2t" + }, + { + id: "dZszFGdGfXk" + }, + { + id: "kcpaOwiXcpI" + }, + { + id: "KkARfEGrujF" + }, + { + id: "czlLWO6ZiMW" + }, + { + id: "YSMY6ReKm1O" + }, + { + id: "NKdsYuW27kb" + }, + { + id: "HFLrPC4Nf6q" + }, + { + id: "bPRybdN20Xm" + }, + { + id: "jMGyFA7m1Ob" + }, + { + id: "BmYyh9bZ0sr" + }, + { + id: "xVqfScSbEJM" + }, + { + id: "cxZuOFAsQBI" + }, + { + id: "EJoI3HArJ2W" + }, + { + id: "r4W2vzlmPhm" + }, + { + id: "dBD9OHJFN8u" + }, + { + id: "oiYONDJ6qz7" + }, + { + id: "WUnOTGhfQRe" + }, + { + id: "PSjKMcPGUvA" + }, + { + id: "xczhpx28kNO" + }, + { + id: "Mod8hYpQ3Ma" + }, + { + id: "gPR1x4RGbru" + }, + { + id: "eYeaOXVt039" + }, + { + id: "DxixRJsjTRR" + }, + { + id: "oTYEEpgxtgX" + }, + { + id: "sM0Us0NkSez" + }, + { + id: "p310xqwAJge" + }, + { + id: "Iu8GKS6jET3" + }, + { + id: "kzmwOrwmzbW" + }, + { + id: "m5Oezf4608z" + }, + { + id: "tyw435fDg96" + }, + { + id: "vULnao2hV5v" + }, + { + id: "y1QDBoy4iCH" + }, + { + id: "ycKFsbs3gYy" + }, + { + id: "eHGj3TIsp1l" + }, + { + id: "xKaB8tfbTzm" + }, + { + id: "Wmtbcwvb9JE" + }, + { + id: "x0aAcsVjGVG" + }, + { + id: "ciuLlgCMd5n" + }, + { + id: "uUSZoQB21WW" + }, + { + id: "Kt4ixaGIniH" + }, + { + id: "kxj58cIaKGk" + }, + { + id: "f2RU8QWiEdJ" + }, + { + id: "sIVFEyNfOg4" + }, + { + id: "rn1Njd6WQ7e" + }, + { + id: "Uc0gGJh4WdQ" + }, + { + id: "a2CrEOAsZwS" + }, + { + id: "QVIjVnhdadP" + }, + { + id: "b66n8RyCrE7" + }, + { + id: "vELbGdEphPd" + }, + { + id: "BIlBi8ZUqXU" + }, + { + id: "J6zFMI7V6xJ" + }, + { + id: "lpAPY3QOY2D" + }, + { + id: "shwrbTUmrAx" + }, + { + id: "Eey5ShuFdu2" + }, + { + id: "XPYS5UmG78a" + }, + { + id: "NAnOQYpT2v3" + }, + { + id: "KMD1hlO3JFE" + }, + { + id: "DiszpKrYNg8" + }, + { + id: "M4hyYfnb21I" + }, + { + id: "mhrDYMwGych" + }, + { + id: "SDKI1oF3nj9" + }, + { + id: "ilHa4I89d7i" + }, + { + id: "dYHcR6J7Abc" + }, + { + id: "cZI3AWM7bIa" + }, + { + id: "cFrEPBbo327" + }, + { + id: "FSzvKuWP4eS" + }, + { + id: "t40pWlXlLX9" + }, + { + id: "pYFPHYbVbvx" + }, + { + id: "jKsytwVp8OS" + }, + { + id: "p9wTDnu3tEx" + }, + { + id: "dP5TQmTvcRZ" + }, + { + id: "bqtZrXoryDF" + }, + { + id: "CNlLL1booGy" + }, + { + id: "X3D19LoA2Ij" + }, + { + id: "coPUdvGUGP3" + }, + { + id: "SHni2YastC5" + }, + { + id: "aSfF9kuNINJ" + }, + { + id: "oDAoqMWcsJQ" + }, + { + id: "kDmM5jEmXK0" + }, + { + id: "OM5nuJkMj7n" + }, + { + id: "iECNVrw4d6L" + }, + { + id: "oWkwN01B6Nf" + }, + { + id: "wGsBlwh6Zzt" + }, + { + id: "yb9pJOYyLzp" + }, + { + id: "xFHN76GRabJ" + }, + { + id: "Yo4ctSutDX0" + }, + { + id: "aIsnJuZbmVA" + }, + { + id: "l3jnkNNpoD8" + }, + { + id: "j4ldsmvrjTE" + }, + { + id: "NJolnlvYgLr" + }, + { + id: "mzsOsz0NwNY" + }, + { + id: "tEnFVk1BBEv" + }, + { + id: "tEnHQCXABkG" + }, + { + id: "Dluer5aKZmd" + }, + { + id: "xjfCBow0pdh" + }, + { + id: "Qwzs1iinAI7" + }, + { + id: "w12PJJwhEkK" + }, + { + id: "ut6pZJE1b10" + }, + { + id: "zNWXUETn6ce" + }, + { + id: "v0dXACseLuB" + }, + { + id: "CVuDPfH9adP" + }, + { + id: "Yjuj2YSbzuO" + }, + { + id: "jH1un8fVjmr" + }, + { + id: "eiyQhIiq6B8" + }, + { + id: "QSDkMI3ZHVb" + }, + { + id: "fRjipab4tIQ" + }, + { + id: "kGUxyt8hzpF" + }, + { + id: "p1117dugcct" + }, + { + id: "SvadRExYvpx" + }, + { + id: "OO10hddb0SE" + }, + { + id: "WHJeeko8o9N" + }, + { + id: "LNyTm9Nwni5" + }, + { + id: "Os6Lfw4QNcT" + }, + { + id: "PIsHZpHEzn9" + }, + { + id: "weLTzWrLXCO" + }, + { + id: "OJnbpJANbHh" + }, + { + id: "n5r4IdR25JQ" + }, + { + id: "j6Zl2qpZhgd" + }, + { + id: "Gsnp20ValtV" + }, + { + id: "Fja9YiCxaGn" + }, + { + id: "JLKGG67z7oj" + }, + { + id: "tm90emjVcPi" + }, + { + id: "GPR07SjIMNl" + }, + { + id: "DwEfz1MN7Z5" + }, + { + id: "qjboFI0irVu" + }, + { + id: "IlnqGuxfQAw" + }, + { + id: "u3B5RqJuDAP" + }, + { + id: "zztUpkj96gc" + }, + { + id: "Osmj7KfUlrZ" + }, + { + id: "IiC3TA08F8V" + }, + { + id: "meaUCG7XimL" + }, + { + id: "AI85d4oFRyK" + }, + { + id: "jHtXQo5UYtL" + }, + { + id: "yLLgphtsgMa" + }, + { + id: "ho26229Td1I" + }, + { + id: "S9BZ2FDmhpH" + }, + { + id: "cr0hjPlp4QE" + }, + { + id: "D3oZZXtXjNk" + }, + { + id: "w3mBVfrWhXl" + }, + { + id: "PNdayccdNqs" + }, + { + id: "u9wACZdnnNn" + }, + { + id: "vuWtipcge5e" + }, + { + id: "LdCzrlFXSZ6" + }, + { + id: "wfhTwCcGWfz" + }, + { + id: "lnAYMiASnj7" + }, + { + id: "b7YDjQ6DBzt" + }, + { + id: "qiI48uDJtzq" + }, + { + id: "lMhlxJL0DIn" + }, + { + id: "xuk02oLk12O" + }, + { + id: "yuEsMxPps5z" + }, + { + id: "w9FJ9oAdFys" + }, + { + id: "gXAbBadYQSQ" + }, + { + id: "VTFUHIKkEKt" + }, + { + id: "bljCgu8PfV9" + }, + { + id: "d5TeV3FtYB3" + }, + { + id: "KH7LkPHm5k5" + }, + { + id: "g8upMTyEZGZ" + }, + { + id: "mCfmHR3PQzc" + }, + { + id: "HWjrSuoNPte" + }, + { + id: "m4suCjvR0Hy" + }, + { + id: "HV8RTzgcFH3" + }, + { + id: "CTIjpYuOfto" + }, + { + id: "JrSIoCOdTH2" + }, + { + id: "c17T6PNyIqX" + }, + { + id: "BoOqUEdaztk" + }, + { + id: "SUQ79lxHpDv" + }, + { + id: "fvbZsIWC5PZ" + }, + { + id: "Mi4dWRtfIOC" + }, + { + id: "q1qhDrIElrR" + }, + { + id: "ueUTpWZE3IC" + }, + { + id: "hGalwSiElh2" + }, + { + id: "vGV0p4gP5on" + }, + { + id: "JiCwXiLnQ1w" + }, + { + id: "p9KfD6eaRvu" + }, + { + id: "xw4Bzx4bLqh" + }, + { + id: "UQAZucrwwmm" + }, + { + id: "PzribgWYmPy" + }, + { + id: "KfUCAQoOIae" + }, + { + id: "ctfiYW0ePJ8" + }, + { + id: "pMEnu7BjqMz" + }, + { + id: "qTd47nsMoQn" + }, + { + id: "z10oLuMLhng" + }, + { + id: "XJ9CPEET8nz" + }, + { + id: "FRkITWYb9oD" + }, + { + id: "cJ7omISg7gG" + }, + { + id: "AMmRrk24PME" + }, + { + id: "J30SIG4ROT8" + }, + { + id: "pB1wIv0ih9M" + }, + { + id: "H5kqKK3bZMJ" + }, + { + id: "vjVkzYeSzpG" + }, + { + id: "nAH0uNc3b5f" + }, + { + id: "mL3UjzzQN5D" + }, + { + id: "r1I94XfbSBX" + }, + { + id: "B0IIlxDym76" + }, + { + id: "AWEzRXCSmYp" + }, + { + id: "FupvWBUFXr7" + }, + { + id: "Qc9lf4VM9bD" + }, + { + id: "Ltgs94mfeWq" + }, + { + id: "pc9pwq4cSNF" + }, + { + id: "OzrLhULKTvy" + }, + { + id: "aRXfvyonenP" + }, + { + id: "FqKVs7kYJg7" + }, + { + id: "yzyTRoBQBtr" + }, + { + id: "wB4tSXlryyO" + }, + { + id: "nv65aTD6Qzg" + }, + { + id: "tPEwONuAeAc" + }, + { + id: "gaOSAjPM07w" + }, + { + id: "VruuGsc1oVh" + }, + { + id: "lwmXBt6k0JT" + }, + { + id: "M7phBZQCjQc" + }, + { + id: "TbmzGYnMAsP" + }, + { + id: "HzN8AhyCR1V" + }, + { + id: "NYvIHCSOFaz" + }, + { + id: "kIZcDOtYRbO" + }, + { + id: "ae2K7lJ7hA2" + }, + { + id: "YLSb0oR14M8" + }, + { + id: "cJwpswYfRkt" + }, + { + id: "baxbG2rMvaI" + }, + { + id: "vlmZCCRuUxh" + }, + { + id: "RJEZLKOrp4e" + }, + { + id: "YOC7ohJ3HUg" + }, + { + id: "r5WWF9WDzoa" + }, + { + id: "ScBZT01BDyw" + }, + { + id: "QlCIp2S9NHs" + }, + { + id: "KtwEaQjnQ9z" + }, + { + id: "UlgEReuUPM4" + }, + { + id: "HOgWkpYH3KB" + }, + { + id: "hJrRl1znK7u" + }, + { + id: "LFpl1falVZi" + }, + { + id: "BPUf7eVuS1v" + }, + { + id: "nAy0YQmzZ1D" + }, + { + id: "uymjACQV8J7" + }, + { + id: "Zz4Vmg1i7mN" + }, + { + id: "ts1QGabzcYw" + }, + { + id: "uQhGaLpMMoh" + }, + { + id: "jv1xvOC4VcU" + }, + { + id: "WxtkBmuVGTX" + }, + { + id: "Uo4cyJwAhTW" + }, + { + id: "avwP02MD1P4" + }, + { + id: "hPHBEamfR9r" + }, + { + id: "qIRCo0MfuGb" + }, + { + id: "KXSqt7jv6DU" + }, + { + id: "pRg7dkjqNPc" + }, + { + id: "spz1nZ1VIYX" + }, + { + id: "ESghrfHAgQ0" + }, + { + id: "cM2BKSrj9F9" + }, + { + id: "zrX32H9sf55" + }, + { + id: "qHM0SCRfeKu" + }, + { + id: "rohYGuO7b2I" + }, + { + id: "jsW3dmtjV8M" + }, + { + id: "F3LMRR29sKE" + }, + { + id: "IQHQNoqd4nx" + }, + { + id: "Qw7c6Ckb0XC" + }, + { + id: "XE9k2CrZlS2" + }, + { + id: "Q5pPVaZBdF0" + }, + { + id: "KbO0JnhiMwl" + }, + { + id: "HxTPIXpHK2J" + }, + { + id: "lfA2tW7PLt6" + }, + { + id: "VBsTsEbzGPI" + }, + { + id: "cEYYXIWidyb" + }, + { + id: "O63vIA5MVn6" + }, + { + id: "M17B9ve1RUv" + }, + { + id: "aSnKB1sWaz4" + }, + { + id: "oNhx6y8wjOL" + }, + { + id: "YnWHcyaUx1U" + }, + { + id: "Wd4Apo7jsQX" + }, + { + id: "UMR5Y436O0F" + }, + { + id: "lRjySFLPOvV" + }, + { + id: "kSb9WbodZd7" + }, + { + id: "wyq4M1nzdh5" + }, + { + id: "A5Cb4E3bwzS" + }, + { + id: "ZZYbPIT34Xp" + }, + { + id: "ojHQOYnQp5f" + }, + { + id: "XJcrabyKTPv" + }, + { + id: "uSdfZnGdrrP" + }, + { + id: "cg52sYUwBf0" + }, + { + id: "kWjl2ct0ELu" + }, + { + id: "KwSj4DlRWAm" + }, + { + id: "fXOca0kyjxj" + }, + { + id: "Uwcj0mz78BV" + }, + { + id: "aZDsMrQFXbC" + }, + { + id: "yuTyqZbSguv" + }, + { + id: "NWOvvlkEQAr" + }, + { + id: "V8KusxnqYbH" + }, + { + id: "dpde2Qfmr9A" + }, + { + id: "MThDfZ8kLrW" + }, + { + id: "TgeZ5TBh38t" + }, + { + id: "lLyWhh4v6XJ" + }, + { + id: "BiSz8ng2H4N" + }, + { + id: "gGv9ATEs68L" + }, + { + id: "NXTfAHdVqXj" + }, + { + id: "cHYqyMzoZqF" + }, + { + id: "bqaUcGiZTDI" + }, + { + id: "lNVfti2VHOX" + }, + { + id: "KVcTmvHWZtq" + }, + { + id: "tRuRgsBkMBC" + }, + { + id: "OynYyQiFu82" + }, + { + id: "tdhB1JXYBx2" + }, + { + id: "yE9HDrKG67N" + }, + { + id: "iq8oNsM9ra5" + }, + { + id: "mVIHzvqRIyv" + }, + { + id: "axzvT9Ilziq" + }, + { + id: "syDzCfKOGBE" + }, + { + id: "Fj9jDQMcBqf" + }, + { + id: "QybF2Ku5Ozu" + }, + { + id: "XLq4SbnoBHy" + }, + { + id: "GixhLOGj4xL" + }, + { + id: "WCPMuBOvpVT" + }, + { + id: "Fp7mrXIFhKM" + }, + { + id: "qo9G4Mee6fh" + }, + { + id: "FAZVf4rx0QR" + }, + { + id: "gfWvbbgdjoS" + }, + { + id: "PRSH45Enj2c" + }, + { + id: "wicmjKI3xiP" + }, + { + id: "JAv2gkP4MJT" + }, + { + id: "j62ikvjGr2n" + }, + { + id: "VNAPHh6SyJJ" + } + ], + userGroupAccesses: [ + { + access: "rwr-----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-r-----", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-r-----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-rw----", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-r-----", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + } + ], + programSections: [], + attributeValues: [], + programStages: [ + { + id: "hgpXE2JX97x" + } + ], + userAccesses: [ + { + access: "r-rw----", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-r-----", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ] + } + ], + categoryOptionCombos: [ + { + lastUpdated: "2017-05-10T17:53:55.158", + code: "default", + created: "2017-05-10T17:53:55.157", + name: "default", + id: "Xr12mI7VPn3", + ignoreApproval: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "Y7fcspgsU43" + } + ] + } + ], + programStages: [ + { + lastUpdated: "2021-03-01T11:52:49.333", + id: "hgpXE2JX97x", + created: "2016-06-08T13:38:09.797", + name: "BU02 - Register", + allowGenerateNextVisit: false, + executionDateLabel: "Date of initial clinical examination / Date d'examen clinique initial", + preGenerateUID: false, + publicAccess: "--------", + openAfterEnrollment: false, + repeatable: false, + featureType: "NONE", + remindCompleted: false, + displayGenerateEventBox: false, + generatedByEnrollmentDate: false, + validationStrategy: "ON_UPDATE_AND_INSERT", + autoGenerateEvent: true, + sortOrder: 1, + hideDueDate: false, + blockEntryForm: false, + enableUserAssignment: false, + minDaysFromStart: 0, + program: { + id: "lAu94BiaY5s" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "eK26I7dRbC4" + }, + notificationTemplates: [], + programStageDataElements: [ + { + lastUpdated: "2021-03-01T11:32:51.937", + id: "X0M4oNWjsTH", + created: "2016-06-08T13:43:40.011", + displayInReports: true, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 0, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "mwIgH1XXf6p" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.938", + id: "Oic1IVxpgq9", + created: "2016-06-08T13:43:40.046", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 1, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "J19avh4dgzs" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.935", + id: "ik9ISTmQ2Gf", + created: "2016-06-08T13:43:40.069", + displayInReports: true, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 2, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "Z8W89lDV4IL" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.933", + id: "SS8ELfQ7k8Q", + created: "2016-06-08T13:43:40.080", + displayInReports: true, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 3, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "HAt5fbygnrg" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.934", + id: "tI9OLIqrPrq", + created: "2016-06-08T13:43:40.090", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 4, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "xkt9nkHj5CA" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.936", + id: "ikP103Fn9Sm", + created: "2016-06-08T13:43:40.105", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 5, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "RETdv2kznbH" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.933", + id: "xiLmnCvUPdf", + created: "2016-06-08T13:43:40.117", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 6, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "QzAHATV8EWv" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.938", + id: "SoMCsw5q49F", + created: "2016-06-08T13:43:40.128", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 7, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "nidn593FWAF" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.935", + id: "uiXy4u4OWjX", + created: "2016-06-08T13:43:40.141", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 8, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "mTyzapAF9iT" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.937", + id: "KWGF449seo2", + created: "2016-06-08T13:43:40.152", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 9, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "qJOXKn3wSLS" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.934", + id: "aOPTA1pWe9Q", + created: "2016-06-08T13:43:40.167", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 10, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "qafL6BdLAkH" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.938", + id: "wyoMSLO3Yth", + created: "2016-06-08T13:43:40.179", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 11, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "GqDsjatLQXl" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.936", + id: "VlNK0nFtRoW", + created: "2016-06-08T13:43:40.194", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 12, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "QEFiXRZu7jY" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.935", + id: "fFRvBwrKPbL", + created: "2016-06-08T13:43:40.207", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 13, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "Sieb79556d6" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.934", + id: "CRNrasJPwQn", + created: "2016-06-08T13:43:40.221", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 14, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "PRaonbusSOU" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.934", + id: "bab7K5xD28E", + created: "2016-06-08T13:43:40.234", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 15, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "UY4A4oRdvqT" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.937", + id: "oWiZUXFOL0K", + created: "2016-06-08T13:43:40.247", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 16, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "j9OfhXT92Ej" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.936", + id: "sHKURVMWYuK", + created: "2016-06-08T13:43:40.263", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 17, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "TqqxE4hmd6Q" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.934", + id: "MHgGCjWZytP", + created: "2016-06-08T13:43:40.276", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 18, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "UCXRQtdD8K5" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.935", + id: "jEkBHzTLrbh", + created: "2016-06-08T13:43:40.290", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 19, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "UwC7RVH9Bwv" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.937", + id: "secyJOzy4J4", + created: "2016-06-08T13:43:40.305", + displayInReports: true, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 20, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "DHmAP1MjEoK" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.937", + id: "K4wQtB3HmdB", + created: "2016-11-30T01:47:34.226", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 23, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "o3F666LPvuM" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.937", + id: "VhzvUNRlsZR", + created: "2016-09-13T16:48:18.116", + displayInReports: true, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 24, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "IcCc2qu4DnR" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.937", + id: "HF4KB6yBSBu", + created: "2016-09-13T16:48:18.132", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 25, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "ffvtB32AWOF" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.936", + id: "ZbGhzG2pAxz", + created: "2016-11-02T23:17:46.433", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 26, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "adfHPJQRI3C" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.937", + id: "I7uqIgj34yA", + created: "2016-11-10T21:00:23.945", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 27, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "wiZbIU6sFG5" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.934", + id: "DUy9Sosd4t0", + created: "2016-11-10T21:00:24.035", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 28, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "dRoQ0J5dKuO" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.936", + id: "SIZDdeAClue", + created: "2016-11-10T21:00:24.048", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 29, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "pUzlgt7peZT" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.934", + id: "rPHoXZ87SHA", + created: "2016-11-10T21:00:24.060", + displayInReports: true, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 30, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "JAyZaIKj2zv" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.935", + id: "SrbZNYPXNB7", + created: "2016-11-10T21:03:54.212", + displayInReports: true, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 31, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "rWFQhbrnfMD" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.936", + id: "BlmMBSUevF0", + created: "2018-05-14T12:40:54.197", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 32, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "ZGCDiz5fZhb" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.935", + id: "f1OrYy2hEuL", + created: "2018-05-14T21:47:54.944", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 33, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "DAPNB0WxKMH" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.934", + id: "IOnR5EK74dX", + created: "2018-10-01T16:30:29.283", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 34, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "kzgD7nD4qLI" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.933", + id: "S8raF2aCPal", + created: "2020-01-14T21:28:13.551", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 36, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "LJHNsKzZ8Mg" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.938", + id: "XfbM7NmxzRh", + created: "2020-01-14T21:28:13.553", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 37, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "Q7dOlqe54eh" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.934", + id: "A1ouDbnrJ2K", + created: "2020-01-14T21:28:13.553", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 38, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "bTwp4cKNjgZ" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.937", + id: "E66yBUG6gTG", + created: "2020-01-14T21:28:13.551", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 38, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "gc8rKk6Hax6" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.936", + id: "wljGO43myNe", + created: "2020-01-14T21:28:13.552", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 39, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "PMlpZH7wYON" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.935", + id: "haxC12SZsvs", + created: "2020-01-14T21:28:13.554", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 40, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "KcYECFOPVpR" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.936", + id: "D6GevHoIeUZ", + created: "2020-01-14T21:28:13.553", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 41, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "e8XmDDvKCT1" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.934", + id: "AHdDAWvCDhC", + created: "2020-01-14T21:28:13.550", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 42, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "YrSJMlEJWEC" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.935", + id: "N3nkAIkavnF", + created: "2020-01-14T21:28:13.552", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 43, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "XyGxsyiIy4p" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.937", + id: "NtXysyvaAJZ", + created: "2020-01-14T21:28:13.553", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 44, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "uNdVSTX6lSE" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.937", + id: "AFGlVbgoLHS", + created: "2020-01-14T21:28:13.553", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 45, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "xIo6fsgpmdN" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.935", + id: "GT8JlUaUein", + created: "2020-01-14T23:53:14.411", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 46, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "BYPbyk5W7SL" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.936", + id: "p8M6Bz8SPDH", + created: "2020-01-15T00:22:45.728", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 46, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "VYGsfmL36PY" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.935", + id: "zI45THkcblV", + created: "2020-01-15T01:14:08.815", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 47, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "silWE44JpaQ" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.936", + id: "rq4keDCBetL", + created: "2020-01-16T00:22:51.423", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 48, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "ggwHn45jtgh" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + }, + { + lastUpdated: "2021-03-01T11:32:51.938", + id: "uY2T46apQBY", + created: "2021-03-01T11:32:51.938", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 49, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + programStage: { + id: "hgpXE2JX97x" + }, + dataElement: { + id: "NzJkoIvwyCh" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [] + } + ], + translations: [], + userGroupAccesses: [ + { + access: "r-rw----", + userGroupUid: "cT8WhjLqmH9", + displayName: "SS_NTD_Skin_Yaws_Surv_Global_Entry", + id: "cT8WhjLqmH9" + }, + { + access: "r-r-----", + userGroupUid: "IPzz6wlkIp0", + displayName: "NTD_SKIN_MYC_HQ", + id: "IPzz6wlkIp0" + }, + { + access: "r-r-----", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-r-----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-rw----", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV" + }, + { + access: "r-r-----", + userGroupUid: "cy0qXsDxzxe", + displayName: "SS_NTD_LSH_VL_LabLog_View", + id: "cy0qXsDxzxe" + }, + { + access: "r-r-----", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN" + }, + { + access: "r-r-----", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-rw----", + userGroupUid: "I95k8bm5q5J", + displayName: "SS_NTD_LSH_SUPPLY_DispatchHQ_Entry", + id: "I95k8bm5q5J" + }, + { + access: "rwr-----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-rw----", + userGroupUid: "IsbhpWFqxOx", + displayName: "SS_NTD_Skin_MYC_GlSurv_Entry", + id: "IsbhpWFqxOx" + }, + { + access: "rwrw----", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF" + }, + { + access: "r-r-----", + userGroupUid: "DRlUpjkyeT9", + displayName: "SS_NTD_SKIN_MYC_GlSurv_View", + id: "DRlUpjkyeT9" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-rw----", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT" + }, + { + access: "r-rw----", + userGroupUid: "TbGA9fMJpCR", + displayName: "SS_NTD_LSH_VL_LabLog_Entry", + id: "TbGA9fMJpCR" + }, + { + access: "r-r-----", + userGroupUid: "KZ2hDNFMcvB", + displayName: "SS_NTD_LSH_SUPPLY_DispatchHQ_View", + id: "KZ2hDNFMcvB" + }, + { + access: "rwr-----", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-r-----", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV" + }, + { + access: "r-r-----", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "r-r-----", + userGroupUid: "peFZC729hMn", + displayName: "SS_NTD_Skin_Yaws_Surv_Global_View", + id: "peFZC729hMn" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-rw----", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W" + }, + { + access: "r-r-----", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + programStageSections: [ + { + id: "JuoTOHBrYjD" + }, + { + id: "WKQvNhjIme6" + }, + { + id: "UaLdvwjiwJ4" + }, + { + id: "lA5R8jpglUg" + }, + { + id: "XoBIzGaZOLn" + }, + { + id: "bfQc4NoPHD9" + }, + { + id: "kmERl23mQ8R" + }, + { + id: "AJDiEfldKyX" + } + ] + } + ], + options: [ + { + code: "Op_Country_VEN", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Venezuela (Bolivarian Republic of)", + id: "JEYcfbIKDqM", + sortOrder: 240, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_XOD", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Rodrigues", + id: "H8AEpkxvjRU", + sortOrder: 177, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_RUS", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Russian Federation", + id: "y0ZlulciMOf", + sortOrder: 179, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_TUR", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Turkey", + id: "aewMRLmf9a9", + sortOrder: 223, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Partially healed", + created: "2019-06-05T07:42:44.563", + lastUpdated: "2020-11-20T12:44:52.663", + name: "Partially healed", + id: "Bp5pucqpTey", + sortOrder: 2, + optionSet: { + id: "tGr5pbgz67Z" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_QAT", + created: "2016-07-04T14:36:48.739", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Qatar", + id: "mKpPeqR2hX2", + sortOrder: 173, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_ETH", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Ethiopia", + id: "bdZkKddbme4", + sortOrder: 73, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_AFG", + created: "2016-07-04T14:36:48.721", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Afghanistan", + id: "GNF8jdbZ8Dw", + sortOrder: 3, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_MDG", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Madagascar", + id: "EvekRRBnMx4", + sortOrder: 127, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "1", + created: "2017-10-24T12:08:13.319", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Yes", + id: "CDIYMO9r2pv", + sortOrder: 1, + optionSet: { + id: "mJKvd2WXQtp" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Oui" + } + ] + }, + { + code: "Op_Country_MOZ", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Mozambique", + id: "cDIdNAHmPrE", + sortOrder: 145, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_LKA", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Sri Lanka", + id: "boiuNkaV65n", + sortOrder: 205, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_ARM", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Armenia", + id: "idhYV7lcUgH", + sortOrder: 12, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_CIV", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Cote d'Ivoire", + id: "FjJGgqd4e0t", + sortOrder: 54, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_PRI", + created: "2016-07-04T14:36:48.739", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Puerto Rico", + id: "kRFzU19Xd1Y", + sortOrder: 172, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_SMR", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "San Marino", + id: "X1rvZAaWg66", + sortOrder: 188, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_PAN", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Panama", + id: "FjYmkLvW8hG", + sortOrder: 164, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_XX6", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Germany, Former Democratic Republic", + id: "htZ89VAlt02", + sortOrder: 85, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_GMB", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Gambia", + id: "afoGJejzdk9", + sortOrder: 82, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_NPL", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Nepal", + id: "X9nQoyVwrsn", + sortOrder: 149, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_ZWE", + created: "2016-07-04T14:36:48.754", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Zimbabwe", + id: "XObEvb5qGAA", + sortOrder: 248, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_PSE", + created: "2016-07-04T14:36:48.754", + lastUpdated: "2021-04-29T19:44:45.085", + name: "West Bank and Gaza Strip", + id: "u6kafve6PQR", + sortOrder: 244, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_MLT", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Malta", + id: "i7A3r980S0D", + sortOrder: 132, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_MNG", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Mongolia", + id: "rtFuIPE4rvK", + sortOrder: 141, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Referred", + created: "2019-06-05T07:40:39.023", + lastUpdated: "2020-11-26T15:59:21.153", + name: "Referred ", + id: "jtEMRBZkuHe", + sortOrder: 2, + optionSet: { + id: "ESSQcpsmBse" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Référé" + } + ] + }, + { + code: "Died", + created: "2019-06-05T07:41:25.688", + lastUpdated: "2020-11-26T15:59:21.153", + name: "Died", + id: "i2FNFG2CgtO", + sortOrder: 4, + optionSet: { + id: "ESSQcpsmBse" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Mort" + } + ] + }, + { + code: "Op_Country_LBY", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Libya", + id: "Pm4Jv8Hp8kE", + sortOrder: 123, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_LVA", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Latvia", + id: "ULrEOBUJNtC", + sortOrder: 119, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_PHL", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Philippines", + id: "UyeM42XQdUL", + sortOrder: 168, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_ATG", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Antigua and Barbuda", + id: "cQkGLAeVhei", + sortOrder: 10, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_LBN", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Lebanon", + id: "whL5no7kcff", + sortOrder: 120, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_VNM", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Viet Nam", + id: "cMsUdHzYjEm", + sortOrder: 241, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_DJI", + created: "2016-07-04T14:36:48.725", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Djibouti", + id: "dA1bzDuyJpa", + sortOrder: 64, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_GUF", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "French Guiana", + id: "LBzfnDqxl0M", + sortOrder: 79, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_Unknown", + created: "2016-07-04T14:36:48.721", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Country Unknown", + id: "ROD72U5e1KY", + sortOrder: 2, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_BHR", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Bahrain", + id: "yNiomNqisdT", + sortOrder: 18, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_BWA", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Botswana", + id: "eoBbae6v8Is", + sortOrder: 30, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_XX1", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "China: Province of Taiwan only", + id: "oN6N4VVymmD", + sortOrder: 48, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_NZL", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "New Zealand", + id: "kxbQFgx63UI", + sortOrder: 153, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_CPV", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Cabo Verde", + id: "eWVs9rhuRhl", + sortOrder: 37, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_SDF", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Sudan (former)", + id: "RfNF6JV3ecp", + sortOrder: 207, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_COD", + created: "2016-07-04T14:36:48.725", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Democratic Republic of the Congo", + id: "C4WPfBbbyLg", + sortOrder: 62, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_SLB", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Solomon Islands", + id: "AIx354YR3oy", + sortOrder: 200, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_KEN", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Kenya", + id: "SAmZtKTfG80", + sortOrder: 114, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_UZB", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Uzbekistan", + id: "QkFFXvco1QM", + sortOrder: 238, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_BRA", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Brazil", + id: "XysXrwrAdcb", + sortOrder: 31, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_KAZ", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Kazakhstan", + id: "G4eMnJNlEhT", + sortOrder: 113, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_NER", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Niger", + id: "tzhv86drYJH", + sortOrder: 155, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_SRB", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Serbia", + id: "WmpDHvUrndV", + sortOrder: 192, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_SYC", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Seychelles", + id: "IWYV2nhwswl", + sortOrder: 194, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_BEN", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Benin", + id: "yIswGPbNEZk", + sortOrder: 24, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_FRO", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Faroe Islands", + id: "cI94C2PcXsS", + sortOrder: 75, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_PLW", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Palau", + id: "hr3HqQmzN7f", + sortOrder: 163, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_ARE", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "United Arab Emirates", + id: "UftyLoueGB8", + sortOrder: 229, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Not done", + created: "2019-05-20T09:58:31.063", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Not done", + id: "ktd2pbc0DJl", + sortOrder: 4, + optionSet: { + id: "vQBOhNnE09a" + }, + style: { + icon: "no_positive" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Non effectue" + }, + { + property: "NAME", + locale: "fr", + value: "Non effectué" + } + ] + }, + { + code: "Op_Country_BFA", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Burkina Faso", + id: "ftPDQflDhP4", + sortOrder: 35, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_CYP", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Cyprus", + id: "FaU1a7FxQGn", + sortOrder: 58, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_SHN", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Saint Helena", + id: "UxsQKwqAuGh", + sortOrder: 182, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_GRD", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Grenada", + id: "sZJBFcxVY8g", + sortOrder: 92, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_IND", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "India", + id: "TA7D8hfDnL6", + sortOrder: 103, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_SVK", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Slovakia", + id: "xPe8txtq1S7", + sortOrder: 198, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_BGR", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Bulgaria", + id: "UkW0Ae3paRK", + sortOrder: 34, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_DEU", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Germany", + id: "A4mupXkA7Tk", + sortOrder: 84, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_JAM", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Jamaica", + id: "C5Ly52gvu3w", + sortOrder: 110, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Healed", + created: "2019-06-05T07:40:23.311", + lastUpdated: "2020-11-26T15:59:21.153", + name: "Healed", + id: "Vir718Xtmot", + sortOrder: 1, + optionSet: { + id: "ESSQcpsmBse" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Guéri" + } + ] + }, + { + code: "Op_Country_LUX", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Luxembourg", + id: "erOhrWyHhDY", + sortOrder: 126, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_NIU", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Niue", + id: "NBcbgJQuPq8", + sortOrder: 157, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_COM", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Comoros", + id: "ZtNH7EW51t0", + sortOrder: 50, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_SOM", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Somalia", + id: "ejSCE1PrzIR", + sortOrder: 201, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_GNQ", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Equatorial Guinea", + id: "oXpUVu6DhB2", + sortOrder: 70, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Unknown", + created: "2019-06-19T02:05:29.853", + lastUpdated: "2020-11-26T15:59:21.154", + name: "Unknown", + id: "kj4jM9bi8MB", + sortOrder: 4, + optionSet: { + id: "Al6DsS3DTve" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Ne sait pas" + } + ] + }, + { + code: "Op_Country_DNK", + created: "2016-07-04T14:36:48.725", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Denmark", + id: "dZcbeWdMWsZ", + sortOrder: 63, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_WLF", + created: "2016-07-04T14:36:48.754", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Wallis and Futuna Islands", + id: "E3kChU0S6Ty", + sortOrder: 243, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_GBR", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "United Kingdom of Great Britain and Northern Ireland", + id: "eHHU7uow2mi", + sortOrder: 230, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_BRN", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Brunei Darussalam", + id: "g4TjSILnkWf", + sortOrder: 33, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_ISL", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Iceland", + id: "yDeHDMclb90", + sortOrder: 102, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_ANT", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Netherlands Antilles", + id: "FiPEiArokkj", + sortOrder: 151, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_KHM", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Cambodia", + id: "ekwPeN3y8hn", + sortOrder: 38, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_MSR", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Montserrat", + id: "HIoE2KG4A61", + sortOrder: 143, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_MDA", + created: "2016-07-04T14:36:48.739", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Republic of Moldova", + id: "aOpMFzlaTp0", + sortOrder: 175, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_BU_Tx_Other", + created: "2016-09-25T15:42:09.607", + lastUpdated: "2020-11-26T14:22:19.724", + name: "Other AB", + id: "s914v1OKfcW", + sortOrder: 3, + optionSet: { + id: "cYVMBWrU2Pi" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_AND", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Andorra", + id: "aaXQWSasFYh", + sortOrder: 7, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_CUB", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Cuba", + id: "X7tLQ18rhaG", + sortOrder: 56, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_COL", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Colombia", + id: "mQGGbSz6cee", + sortOrder: 49, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_CZE", + created: "2016-07-04T14:36:48.725", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Czech Republic", + id: "Rb24lhnATCV", + sortOrder: 59, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_TLS", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Timor-Leste", + id: "HepCKGVZOF9", + sortOrder: 217, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_MMR", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Myanmar", + id: "DwOOv26iA48", + sortOrder: 146, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_GUY", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Guyana", + id: "ielTPI84eJZ", + sortOrder: 98, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "LTFU", + created: "2019-06-05T07:43:31.598", + lastUpdated: "2020-11-20T12:44:52.663", + name: "Lost-to-follow-up", + id: "Nz4Cw1ckLD2", + sortOrder: 5, + optionSet: { + id: "tGr5pbgz67Z" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_GRC", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Greece", + id: "YkDHxJoSdxP", + sortOrder: 90, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_MWI", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Malawi", + id: "hK6W9ljkGqw", + sortOrder: 128, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_NFK", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Norfolk Island", + id: "g3iNcMjOKf2", + sortOrder: 158, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_BRB", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Barbados", + id: "Kfq910gLIPA", + sortOrder: 20, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_X12", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.084", + name: "United Kingdom, Scotland", + id: "GkfStXJBJqs", + sortOrder: 233, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_BIH", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Bosnia and Herzegovina", + id: "J38ZkiquJmy", + sortOrder: 29, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_BDI", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Burundi", + id: "N6LwQ834t7C", + sortOrder: 36, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_MUS", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Mauritius", + id: "nh1m0TLoIh8", + sortOrder: 136, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_CMR", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Cameroon", + id: "fVGpda6m2J1", + sortOrder: 39, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Referred", + created: "2019-06-05T07:43:04.892", + lastUpdated: "2020-11-20T12:44:52.663", + name: "Referred", + id: "y9unlLhGO4k", + sortOrder: 3, + optionSet: { + id: "tGr5pbgz67Z" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_NCL", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "New Caledonia", + id: "rM46cgyO8rb", + sortOrder: 152, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_PCN", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Pitcairn Island", + id: "XXEL9RuJPCO", + sortOrder: 169, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_CRI", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Costa Rica", + id: "DIMY2GI3N0D", + sortOrder: 53, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_JPN", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Japan", + id: "cBKW7YJr4rO", + sortOrder: 111, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_COG", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Congo", + id: "fSwZ2dQsngS", + sortOrder: 51, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_KWT", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Kuwait", + id: "x0psf8EdDge", + sortOrder: 116, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_UGA", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Uganda", + id: "aKJBQ499p7T", + sortOrder: 227, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_MLI", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Mali", + id: "xyem51RudNi", + sortOrder: 131, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_FLK", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Falkland Islands (Malvinas)", + id: "rmlWP6qawBg", + sortOrder: 74, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_HTI", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Haiti", + id: "eT6EbUJF8xK", + sortOrder: 99, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_TKM", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Turkmenistan", + id: "NEuSYMjN31a", + sortOrder: 224, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_ASM", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "American Samoa", + id: "RgllCEY0K6B", + sortOrder: 6, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_THA", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Thailand", + id: "DOHMCSDIbCb", + sortOrder: 214, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "New", + created: "2019-06-19T02:04:20.481", + lastUpdated: "2020-11-26T15:59:21.154", + name: "New case", + id: "qVOty3cF2WA", + sortOrder: 1, + optionSet: { + id: "Al6DsS3DTve" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Nouveau cas" + } + ] + }, + { + code: "Op_Country_PRK", + created: "2016-07-04T14:36:48.725", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Democratic People's Republic of Korea", + id: "LhTmzpsK3Be", + sortOrder: 61, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_SDN", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Sudan", + id: "DcGZ6Rn7qle", + sortOrder: 206, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Gender_Unknown", + created: "2016-07-04T14:36:48.721", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Unknown", + id: "DL8exJ3mxUX", + sortOrder: 3, + optionSet: { + id: "apzFCMWeffA" + }, + style: { + icon: "question_circle_positive" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Ne sait pas" + } + ] + }, + { + code: "Op_Country_BMU", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Bermuda", + id: "qwwz0vNXMD3", + sortOrder: 25, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_ERI", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Eritrea", + id: "jh3zGJQi06D", + sortOrder: 71, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_GHA", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Ghana", + id: "oTNU8h07Q7x", + sortOrder: 88, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_SYR", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Syrian Arab Republic", + id: "Mm43urCbMp9", + sortOrder: 212, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_NOR", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Norway", + id: "vKiKgfvmaOs", + sortOrder: 160, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_ROU", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Romania", + id: "PHh2qZ7KS7X", + sortOrder: 178, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_RWA", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Rwanda", + id: "D82B1UTMfPL", + sortOrder: 180, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_MHL", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Marshall Islands", + id: "BbVCIp24olr", + sortOrder: 133, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_HKG", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "China, Hong Kong Special Administrative Region", + id: "Ksv0YWONey8", + sortOrder: 46, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_TUN", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Tunisia", + id: "UPJI4u2Zpao", + sortOrder: 222, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_BOL", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Bolivia (Plurinational State of)", + id: "oPg7wRipLh4", + sortOrder: 27, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_BEL", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Belgium", + id: "EaE88cArPz5", + sortOrder: 22, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_AUS", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Australia", + id: "KAJ7p4zcnJt", + sortOrder: 14, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_GEO", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Georgia", + id: "wumaFN6DN2W", + sortOrder: 83, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_PRT", + created: "2016-07-04T14:36:48.739", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Portugal", + id: "j12hkmb7DHr", + sortOrder: 171, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Positive", + created: "2019-05-20T09:57:54.719", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Positive", + id: "PThinVriWjI", + sortOrder: 1, + optionSet: { + id: "vQBOhNnE09a" + }, + style: { + color: "#ef2222" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Positive" + }, + { + property: "NAME", + locale: "fr", + value: "Positif" + } + ] + }, + { + code: "Op_Country_GLP", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Guadeloupe", + id: "y8urVZCHd1T", + sortOrder: 93, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_VUT", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Vanuatu", + id: "XnUtsN4s1HS", + sortOrder: 239, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Tx_complete_stop", + created: "2017-01-12T02:07:25.647", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Treatment stopped for medical reasons", + id: "YDDAfmgEMih", + sortOrder: 2, + optionSet: { + id: "TqJC6mhsOv6" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Traitement arrêté pour raisons médicales" + } + ] + }, + { + code: "Op_Country_NGA", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Nigeria", + id: "Gyn24NJMikB", + sortOrder: 156, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_ALB", + created: "2016-07-04T14:36:48.721", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Albania", + id: "vRVl3O76lyn", + sortOrder: 4, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_BU_Tx_Rifam_Clar", + created: "2016-09-25T15:41:29.326", + lastUpdated: "2020-11-26T14:22:19.726", + name: "Rifampicin (10 mg/kg once daily) + Clarithromycin (7.5 mg/kg twice daily)", + id: "MuopyHevUQ8", + sortOrder: 2, + optionSet: { + id: "cYVMBWrU2Pi" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_SEN", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Senegal", + id: "vyw2jtfU39q", + sortOrder: 191, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_ZMB", + created: "2016-07-04T14:36:48.754", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Zambia", + id: "InEQETgtfSJ", + sortOrder: 247, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_NRU", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Nauru", + id: "otegwIeNezj", + sortOrder: 148, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_TZA", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.084", + name: "United Republic of Tanzania", + id: "Vz0KVAbfhRy", + sortOrder: 234, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_VIR", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Virgin Islands (USA)", + id: "Ba3mM6jHWLo", + sortOrder: 242, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_HRV", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Croatia", + id: "Q3JNcuoJx0i", + sortOrder: 55, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_USA", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.084", + name: "United States of America", + id: "WPZOE5WQJB9", + sortOrder: 235, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_XX7", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Germany, Former Federal Republic", + id: "gHRFa39BQfS", + sortOrder: 86, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_LTU", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Lithuania", + id: "bukRn9nzytv", + sortOrder: 125, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_SXM", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Sint Maarten (Dutch part)", + id: "VUldg1jCLBU", + sortOrder: 197, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_X10", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.084", + name: "United Kingdom, England and Wales", + id: "oPuTQ7Y5qMi", + sortOrder: 231, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_TUV", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Tuvalu", + id: "T6sKm7b1Iev", + sortOrder: 226, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_AIA", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Anguilla", + id: "sdGbRbHMjfM", + sortOrder: 9, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_EGY", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Egypt", + id: "OJ0DFyJMUOR", + sortOrder: 68, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_XX5", + created: "2016-07-04T14:36:48.725", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Czechoslovakia, Former", + id: "X6K4a7H6wDk", + sortOrder: 60, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_WSM", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Samoa", + id: "R3xI52BxTKZ", + sortOrder: 187, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_URY", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Uruguay", + id: "Iop94Prp34o", + sortOrder: 236, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_ISR", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Israel", + id: "aKXIbWkLKMT", + sortOrder: 108, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_LBR", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Liberia", + id: "QFaAj7RqyAm", + sortOrder: 122, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_SWE", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Sweden", + id: "iDEdgaPkpce", + sortOrder: 210, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_LSO", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Lesotho", + id: "WFTrDt1MKFN", + sortOrder: 121, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_SLV", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "El Salvador", + id: "mOkzdx2h0SG", + sortOrder: 69, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Recurrent", + created: "2020-01-15T00:50:39.619", + lastUpdated: "2020-11-26T15:59:21.154", + name: "Recurrent/Relapse", + id: "w9Ve9MgDnPI", + sortOrder: 2, + optionSet: { + id: "Al6DsS3DTve" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Recurrent/Rechute" + } + ] + }, + { + code: "Op_Country_ME1", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "The former state union Serbia and Montenegro", + id: "odQjRlU11Fy", + sortOrder: 215, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_FRA", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "France", + id: "kGIuN6tjNZI", + sortOrder: 78, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_YEM", + created: "2016-07-04T14:36:48.754", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Yemen", + id: "jVvKs0pcKlP", + sortOrder: 245, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_MYS", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Malaysia", + id: "zjI336whk3I", + sortOrder: 129, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_MTQ", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Martinique", + id: "KeMEEipyNOm", + sortOrder: 134, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_BLZ", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Belize", + id: "sFfFUiIkgDi", + sortOrder: 23, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_SLE", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Sierra Leone", + id: "H0I6K4ARBWm", + sortOrder: 195, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_IDN", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Indonesia", + id: "cSqaO8XLuNi", + sortOrder: 104, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_KNA", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Saint Kitts and Nevis", + id: "eh5c1MmXn8n", + sortOrder: 183, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Pending", + created: "2019-05-20T09:58:18.074", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Pending", + id: "XfXIcYn2wZB", + sortOrder: 3, + optionSet: { + id: "vQBOhNnE09a" + }, + style: { + color: "#fbb77f" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "En attente" + } + ] + }, + { + code: "Op_Country_SAU", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Saudi Arabia", + id: "OaWk0B8LtgK", + sortOrder: 190, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Gender_Female", + created: "2016-07-04T14:36:48.721", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Female", + id: "M0BoqSns1KA", + sortOrder: 1, + optionSet: { + id: "apzFCMWeffA" + }, + style: { + icon: "woman_positive" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Femme" + } + ] + }, + { + code: "Op_Country_BLR", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Belarus", + id: "eTIA3EPkyY4", + sortOrder: 21, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_PAK", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Pakistan", + id: "Ps7iJKJcqb8", + sortOrder: 162, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_SGP", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Singapore", + id: "qWdvoHjEe3v", + sortOrder: 196, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_BHS", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Bahamas", + id: "Rbwa1KlOCgs", + sortOrder: 17, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_MCO", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Monaco", + id: "EkjCgj5oboN", + sortOrder: 140, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_MDV", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Maldives", + id: "taFo3wtW5Eg", + sortOrder: 130, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_UKR", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Ukraine", + id: "So5Bmn1i2r2", + sortOrder: 228, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_LIE", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Liechtenstein", + id: "PP1n12Xmd4T", + sortOrder: 124, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_GAB", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Gabon", + id: "o3fBa5sIh8Q", + sortOrder: 81, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_GTM", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Guatemala", + id: "iQ3o79B3Rte", + sortOrder: 95, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_SCG", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Serbia and Montenegro, Former", + id: "aF9IHLadpWc", + sortOrder: 193, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Category_III", + created: "2019-06-05T07:46:06.721", + lastUpdated: "2020-11-26T15:59:21.153", + name: "Category III", + id: "Q9P2sPWVRfP", + sortOrder: 3, + optionSet: { + id: "nF2JkM7IXth" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Categorie III" + } + ] + }, + { + code: "Op_YesNo_No", + created: "2016-07-04T14:36:48.721", + lastUpdated: "2021-04-29T19:44:45.085", + name: "No", + id: "oq0sE3HHt7O", + sortOrder: 2, + optionSet: { + id: "vDeP0h2cO2n" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_Other", + created: "2016-07-04T14:36:48.721", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Other country", + id: "rpYKUF2SUbF", + sortOrder: 1, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_PYF", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "French Polynesia", + id: "LXpaR05sYo1", + sortOrder: 80, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_HUN", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Hungary", + id: "RU3idIirhku", + sortOrder: 101, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_JOR", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Jordan", + id: "y6bDnL6k4A9", + sortOrder: 112, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Categroy_U", + created: "2019-06-05T07:46:23.813", + lastUpdated: "2020-11-26T15:59:21.153", + name: "Category unknown", + id: "JbKYZp1CAIa", + sortOrder: 4, + optionSet: { + id: "nF2JkM7IXth" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Categorie inconnue" + } + ] + }, + { + code: "Op_Country_FIN", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Finland", + id: "l4T2wiKbQUL", + sortOrder: 77, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_TKL", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Tokelau", + id: "hOBEs8WJceb", + sortOrder: 219, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_IRN", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Iran (Islamic Republic of)", + id: "h3NVEPvY7io", + sortOrder: 105, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_SSD", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "South Sudan", + id: "tFp489Mt4rO", + sortOrder: 203, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_CYM", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Cayman Islands", + id: "nF2ZeKjSsf6", + sortOrder: 41, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Died", + created: "2019-06-05T07:43:21.317", + lastUpdated: "2020-11-20T12:44:52.663", + name: "Died", + id: "wMfa0vuPDQz", + sortOrder: 4, + optionSet: { + id: "tGr5pbgz67Z" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_ECU", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Ecuador", + id: "s54dxecMtMv", + sortOrder: 67, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_SVN", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Slovenia", + id: "aLAfEob7jZh", + sortOrder: 199, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_PRY", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Paraguay", + id: "QBJvSnKk1uW", + sortOrder: 166, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_CUW", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Curacao", + id: "vk3eaLsdOlS", + sortOrder: 57, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_AGO", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Angola", + id: "E1e60DQj7ER", + sortOrder: 8, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_TGO", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Togo", + id: "E4Ihgx3j6z1", + sortOrder: 218, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_TCD", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Chad", + id: "PTQq9HoYV7h", + sortOrder: 43, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_LAO", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Lao People's Democratic Republic", + id: "toz6mYv2HYF", + sortOrder: 118, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_CHL", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Chile", + id: "jxyr8IWOLiN", + sortOrder: 44, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_PNG", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Papua New Guinea", + id: "mxwaApcX2QJ", + sortOrder: 165, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_POL", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Poland", + id: "pBZQqnOre43", + sortOrder: 170, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_MRT", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Mauritania", + id: "FbfNBXab6GY", + sortOrder: 135, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_XX8", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Germany, West Berlin", + id: "Cq9V6QqCNme", + sortOrder: 87, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_YesNo_Yes", + created: "2016-07-04T14:36:48.721", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Yes", + id: "PHv5RMoDR3I", + sortOrder: 1, + optionSet: { + id: "vDeP0h2cO2n" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_DMA", + created: "2016-07-04T14:36:48.725", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Dominica", + id: "KkPkhg9dyZS", + sortOrder: 65, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_CHE", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Switzerland", + id: "qkBlV5zXEbg", + sortOrder: 211, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_PER", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Peru", + id: "REll9OOAWVM", + sortOrder: 167, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_FSM", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Micronesia (Federated States of)", + id: "hfkGnSUY6US", + sortOrder: 139, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_SWZ", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Eswatini", + id: "HN0RT0Kv1mD", + sortOrder: 209, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_GIN", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Guinea", + id: "X9j8yAE8jR1", + sortOrder: 96, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Retreatment", + created: "2019-06-19T02:05:49.689", + lastUpdated: "2020-11-26T15:59:21.154", + name: "Retreatment", + id: "fHwmBRPO12f", + sortOrder: 3, + optionSet: { + id: "Al6DsS3DTve" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Re-traitement" + } + ] + }, + { + code: "Op_Country_KGZ", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Kyrgyzstan", + id: "MHhH9Uf7Rj5", + sortOrder: 117, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_TTO", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Trinidad and Tobago", + id: "qoefJ5oz2kr", + sortOrder: 221, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_REU", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Reunion", + id: "ByOnLinEgi8", + sortOrder: 176, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_BGD", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Bangladesh", + id: "bDDw1zZn6H4", + sortOrder: 19, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_VCT", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Saint Vincent and the Grenadines", + id: "sEucrpuANOo", + sortOrder: 186, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Tx_complete_unknown", + created: "2017-01-12T02:07:56.408", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Treatment completion unknown", + id: "TaiTS6k5ivC", + sortOrder: 4, + optionSet: { + id: "TqJC6mhsOv6" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Ne sait pas" + } + ] + }, + { + code: "Op_Country_VGB", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "British Virgin Islands", + id: "LaqvuIL8pST", + sortOrder: 32, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_FJI", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Fiji", + id: "TIVtt9En4eU", + sortOrder: 76, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "9", + created: "2017-10-24T12:08:13.319", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Unknown", + id: "WBd1cXQvxhx", + sortOrder: 3, + optionSet: { + id: "mJKvd2WXQtp" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Ne sait pas" + } + ] + }, + { + code: "Op_Country_LCA", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Saint Lucia", + id: "yxRTRFzIdMC", + sortOrder: 184, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_GIB", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Gibraltar", + id: "HUm42tSwG8f", + sortOrder: 89, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_TCA", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Turks and Caicos Islands", + id: "evtYWLkx81g", + sortOrder: 225, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_ABW", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Aruba", + id: "YINMRPJJN5V", + sortOrder: 13, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Unknown", + created: "2019-05-20T09:59:15.560", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Unknown", + id: "RG6QTAyr0lY", + sortOrder: 5, + optionSet: { + id: "vQBOhNnE09a" + }, + style: { + icon: "question_circle_positive" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Ne sait pas" + } + ] + }, + { + code: "Op_Country_BTN", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Bhutan", + id: "mdKnXxpQ0LQ", + sortOrder: 26, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_NIC", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Nicaragua", + id: "PDWVapGBjI8", + sortOrder: 154, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_GNB", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Guinea-Bissau", + id: "pGnTV1cqwc0", + sortOrder: 97, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_ZAF", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "South Africa", + id: "h6dADh5Zx6g", + sortOrder: 202, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_X13", + created: "2016-07-04T14:36:48.754", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Yugoslavia, Former", + id: "fTISV70dLXk", + sortOrder: 246, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_IRL", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Ireland", + id: "GAyjbdM621v", + sortOrder: 107, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_ITA", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Italy", + id: "JY1pHQtniXy", + sortOrder: 109, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "2", + created: "2017-10-24T12:08:13.319", + lastUpdated: "2021-04-29T19:44:45.085", + name: "No", + id: "Vu05B3MCtV2", + sortOrder: 2, + optionSet: { + id: "mJKvd2WXQtp" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Non" + } + ] + }, + { + code: "Op_BU_Tx_Rifam_Strepto", + created: "2016-09-25T15:41:13.619", + lastUpdated: "2020-11-26T14:22:19.727", + name: "Rifampicin (10 mg/kg once daily) + Streptomycin (15 mg/kg once daily)", + id: "AzJhPoyTFg8", + sortOrder: 1, + optionSet: { + id: "cYVMBWrU2Pi" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Tx_complete_defaulter", + created: "2017-01-12T02:07:40.177", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Defaulter", + id: "AsAN6YZCEGh", + sortOrder: 3, + optionSet: { + id: "TqJC6mhsOv6" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Abandon" + } + ] + }, + { + code: "Op_Gender_Male", + created: "2016-07-04T14:36:48.721", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Male", + id: "FFuAh3CgxqV", + sortOrder: 2, + optionSet: { + id: "apzFCMWeffA" + }, + style: { + icon: "man_positive" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Homme" + } + ] + }, + { + code: "Op_Country_CHN", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "China", + id: "WJW9ptUoJ3A", + sortOrder: 45, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_KOR", + created: "2016-07-04T14:36:48.739", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Republic of Korea", + id: "J88eOGKY9Na", + sortOrder: 174, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_COK", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Cook Islands", + id: "iIyvPvW311F", + sortOrder: 52, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_AUT", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Austria", + id: "R9eRZscHOto", + sortOrder: 15, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_HND", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Honduras", + id: "uRNwaxhc5Tx", + sortOrder: 100, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_OMN", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Oman", + id: "owGF3JqsoAA", + sortOrder: 161, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_MAC", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "China, Macao Special Administrative Region", + id: "tiH4Rvkr1AU", + sortOrder: 47, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_SPM", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Saint Pierre and Miquelon", + id: "rdwbewfVXxn", + sortOrder: 185, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_CAN", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Canada", + id: "sZjbQs6bl0o", + sortOrder: 40, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Category_II", + created: "2019-06-05T07:45:51.559", + lastUpdated: "2020-11-26T15:59:21.153", + name: "Category II", + id: "TQIAxf467mJ", + sortOrder: 2, + optionSet: { + id: "nF2JkM7IXth" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Categorie II" + } + ] + }, + { + code: "Category_I", + created: "2019-06-05T07:45:32.676", + lastUpdated: "2020-11-26T15:59:21.153", + name: "Category I", + id: "B1dtYYHplC2", + sortOrder: 1, + optionSet: { + id: "nF2JkM7IXth" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Categorie I" + } + ] + }, + { + code: "Op_Country_MKD", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "The former Yugoslav republic of Macedonia", + id: "MXH9qJlmiHj", + sortOrder: 216, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_DZA", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Algeria", + id: "OPp0jE41c71", + sortOrder: 5, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_MEX", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Mexico", + id: "sYu5WdUFxxx", + sortOrder: 138, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_SUR", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Suriname", + id: "NkdCgJPQtjw", + sortOrder: 208, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_DOM", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Dominican Republic", + id: "Snabf2xuq8j", + sortOrder: 66, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_GUM", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Guam", + id: "bzazWy2jvpr", + sortOrder: 94, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_YesNo_Unknown", + created: "2016-07-04T14:36:48.721", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Unknown", + id: "do7Z43P6VB8", + sortOrder: 3, + optionSet: { + id: "vDeP0h2cO2n" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_IRQ", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Iraq", + id: "oKQ4Km493KI", + sortOrder: 106, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_NAM", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Namibia", + id: "MpAktPYMf90", + sortOrder: 147, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_CAF", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Central African Republic", + id: "QkKjW5DH4u9", + sortOrder: 42, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_TJK", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Tajikistan", + id: "VyBTcplZkJQ", + sortOrder: 213, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_STP", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Sao Tome and Principe", + id: "LsGOICl7YIw", + sortOrder: 189, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_AZE", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Azerbaijan", + id: "kTOG6zPV8n8", + sortOrder: 16, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_ARG", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Argentina", + id: "st3MnmCFpzF", + sortOrder: 11, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_KIR", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Kiribati", + id: "RTgnQw3zAy6", + sortOrder: 115, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Completely healed", + created: "2019-06-05T07:42:34.447", + lastUpdated: "2020-11-20T12:44:52.663", + name: "Complety healed", + id: "p4hdUBmGKQE", + sortOrder: 1, + optionSet: { + id: "tGr5pbgz67Z" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_X11", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.084", + name: "United Kingdom, Northern Ireland", + id: "ywkstElBpo1", + sortOrder: 232, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_TON", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Tonga", + id: "Rke3037hiuV", + sortOrder: 220, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_XX9", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.084", + name: "USSR, Former", + id: "q5u0ehHpFgt", + sortOrder: 237, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_MNP", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Northern Mariana Islands", + id: "P0fL0rvUSn7", + sortOrder: 159, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "LTFU", + created: "2019-06-05T07:41:10.854", + lastUpdated: "2020-11-26T15:59:21.153", + name: "Lost-to-follow-up", + id: "FeBILAXpi53", + sortOrder: 3, + optionSet: { + id: "ESSQcpsmBse" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Perdu de vue" + } + ] + }, + { + code: "Op_Country_XX4", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Ryu Kyu Islands", + id: "RN3bZeeFEbl", + sortOrder: 181, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_MYT", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Mayotte", + id: "cL4OmqIczsH", + sortOrder: 137, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_GRL", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Greenland", + id: "jGbV0Ne53W5", + sortOrder: 91, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_NLD", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Netherlands", + id: "ATcSjkUG9QV", + sortOrder: 150, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Tx_complete_yes", + created: "2017-01-12T02:07:11.352", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Treatment completed", + id: "yeYDY2bogxs", + sortOrder: 1, + optionSet: { + id: "TqJC6mhsOv6" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Traitement complété" + } + ] + }, + { + code: "Op_Country_EST", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Estonia", + id: "cqfa35jkUEd", + sortOrder: 72, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_MAR", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Morocco", + id: "DjVJE4YFp6g", + sortOrder: 144, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_BES", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Bonaire, Saint Eustatius and Saba", + id: "O8O4CpJVYOD", + sortOrder: 28, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_ESP", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Spain", + id: "z6RCpgOD0ve", + sortOrder: 204, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Op_Country_MNE", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Montenegro", + id: "OcaAwln2R11", + sortOrder: 142, + optionSet: { + id: "gUyghXvtx1M" + }, + attributeValues: [], + translations: [] + }, + { + code: "Negative", + created: "2019-05-20T09:58:05.446", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Negative", + id: "ADcYKbV8BWA", + sortOrder: 2, + optionSet: { + id: "vQBOhNnE09a" + }, + style: { + color: "#4ae769" + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Negatif" + }, + { + property: "NAME", + locale: "fr", + value: "Negative" + } + ] + } + ], + categoryOptions: [ + { + code: "default", + created: "2017-05-10T17:53:55.138", + lastUpdated: "2018-07-27T16:09:07.425", + name: "default", + id: "Y7fcspgsU43", + shortName: "default", + publicAccess: "rwrw----", + user: { + id: "eK26I7dRbC4" + }, + userGroupAccesses: [], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [] + } + ] + }, + dataset1: { + categoryCombos: [ + { + code: "ADMIN_DUTY_CC_SERVER_INSTANCES", + created: "2019-09-07T16:20:01.763", + lastUpdated: "2021-02-15T17:20:34.920", + name: "ADMIN_DUTY_CC_SERVER_INSTANCES", + id: "Fkyud1WKXWo", + dataDimensionType: "DISAGGREGATION", + publicAccess: "--------", + skipTotal: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + translations: [], + userAccesses: [], + categories: [ + { + id: "dL4wpziK7qW" + } + ] + }, + { + code: "default", + created: "2017-05-10T17:53:55.156", + lastUpdated: "2019-02-20T16:22:55.336", + name: "default", + id: "JzvGfLYkX17", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + skipTotal: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "eK26I7dRbC4" + }, + userGroupAccesses: [], + translations: [], + userAccesses: [], + categories: [ + { + id: "DMyxTSpvKOp" + } + ] + } + ], + optionSets: [ + { + code: "ADMIN_DUTY_OS_EXECUTION", + created: "2019-09-07T16:25:48.068", + lastUpdated: "2021-02-15T17:20:34.822", + name: "ADMIN_DUTY_OS_EXECUTION", + id: "YFZsozOszeV", + publicAccess: "--------", + version: 6, + valueType: "TEXT", + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + translations: [], + userAccesses: [], + options: [ + { + id: "SE6Aj9WR7dD" + }, + { + id: "rLojINCgwbi" + }, + { + id: "Fk33B9detC3" + } + ] + }, + { + code: "ADMIN_DUTY_OS_ASSIGNEE", + created: "2019-09-07T16:03:06.414", + lastUpdated: "2021-02-15T17:20:34.822", + name: "ADMIN_DUTY_OS_ASSIGNEE", + id: "wsWZHTuG77p", + publicAccess: "--------", + version: 7, + valueType: "TEXT", + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + translations: [], + userAccesses: [], + options: [ + { + id: "fKLt8V7YHct" + }, + { + id: "visof66qA5i" + }, + { + id: "wfetyLNtn4V" + } + ] + } + ], + categoryOptionCombos: [ + { + lastUpdated: "2021-02-15T17:20:34.945", + created: "2019-09-10T16:35:30.534", + name: "WHO_MALARIA", + id: "SvcP5ROAff3", + ignoreApproval: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "RkYSGG4MNhT" + } + ] + }, + { + lastUpdated: "2017-05-10T17:53:55.158", + code: "default", + created: "2017-05-10T17:53:55.157", + name: "default", + id: "Xr12mI7VPn3", + ignoreApproval: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "Y7fcspgsU43" + } + ] + }, + { + lastUpdated: "2021-02-15T17:20:34.945", + created: "2019-09-07T16:20:01.809", + name: "WHO_TRAINING", + id: "qpRs0fsxSeB", + ignoreApproval: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "buv02XljUjE" + } + ] + }, + { + lastUpdated: "2021-02-15T17:20:34.945", + created: "2019-09-10T16:35:30.521", + name: "WHO_PREPROD-VIS", + id: "jnNy9wEOvyu", + ignoreApproval: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "OgGW61Izy8Y" + } + ] + }, + { + lastUpdated: "2021-02-15T17:20:34.945", + created: "2019-09-10T16:35:30.507", + name: "WHO_DEV-CONT", + id: "JhrMD8OMFyf", + ignoreApproval: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "BclrlHiDxv1" + } + ] + }, + { + lastUpdated: "2021-02-15T17:20:34.945", + created: "2019-09-07T16:20:01.807", + name: "WHO_PROD", + id: "hHIs5QYHbQP", + ignoreApproval: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "rhGywpV4vXF" + } + ] + }, + { + lastUpdated: "2021-02-15T17:20:34.945", + created: "2019-09-07T16:20:01.804", + name: "WHO_PREPROD", + id: "irkK9eyChrC", + ignoreApproval: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "QllodPhxVeb" + } + ] + }, + { + lastUpdated: "2021-02-15T17:20:34.945", + created: "2020-09-30T17:50:25.933", + name: "WHO_PREPROD_CONT", + id: "jXGgFnnjHAW", + ignoreApproval: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "BnkWfh38wMf" + } + ] + }, + { + lastUpdated: "2021-02-15T17:20:34.945", + created: "2019-09-07T16:20:01.797", + name: "WHO_DEV", + id: "YkqDSFqJw7G", + ignoreApproval: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "jFwR5mUrvAM" + } + ] + } + ], + options: [ + { + code: "ADMIN_DUTY_OS_ASSIGNEE_EST", + created: "2019-09-07T16:03:30.022", + lastUpdated: "2021-02-15T17:20:34.796", + name: "EyeSeeTea", + id: "fKLt8V7YHct", + sortOrder: 1, + optionSet: { + id: "wsWZHTuG77p" + }, + attributeValues: [], + translations: [] + }, + { + code: "ADMIN_DUTY_OS_EXECUTION_MANUAL", + created: "2019-09-07T16:26:21.011", + lastUpdated: "2021-02-15T17:20:34.796", + name: "Manual", + id: "rLojINCgwbi", + sortOrder: 2, + optionSet: { + id: "YFZsozOszeV" + }, + attributeValues: [], + translations: [] + }, + { + code: "ADMIN_DUTY_OS_EXECUTION_NOT_EXECUTED", + created: "2019-09-07T16:26:11.003", + lastUpdated: "2021-02-15T17:20:34.796", + name: "Not executed", + id: "SE6Aj9WR7dD", + sortOrder: 1, + optionSet: { + id: "YFZsozOszeV" + }, + attributeValues: [], + translations: [] + }, + { + code: "ADMIN_DUTY_OS_ASSIGNEE_RAMON", + created: "2019-09-07T16:04:34.499", + lastUpdated: "2021-02-15T17:20:34.796", + name: "Ramon Jiménez Pomareta", + id: "wfetyLNtn4V", + sortOrder: 3, + optionSet: { + id: "wsWZHTuG77p" + }, + attributeValues: [], + translations: [] + }, + { + code: "ADMIN_DUTY_OS_ASSIGNEE_PETAR", + created: "2019-09-07T16:04:00.726", + lastUpdated: "2021-02-15T17:20:34.796", + name: "Petar Jovanovic", + id: "visof66qA5i", + sortOrder: 2, + optionSet: { + id: "wsWZHTuG77p" + }, + attributeValues: [], + translations: [] + }, + { + code: "ADMIN_DUTY_OS_EXECUTION_AUTOMATED", + created: "2019-09-07T16:26:31.328", + lastUpdated: "2021-02-15T17:20:34.796", + name: "Automated", + id: "Fk33B9detC3", + sortOrder: 3, + optionSet: { + id: "YFZsozOszeV" + }, + attributeValues: [], + translations: [] + } + ], + sections: [ + { + code: "ADMIN_DUTY_SECTION_STATS", + created: "2019-09-07T16:09:38.592", + lastUpdated: "2021-02-15T17:20:35.130", + name: "Platform statistics", + id: "d6i3UcpWuBG", + sortOrder: 8, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + dataSet: { + id: "FnYgTt843G2" + }, + greyedFields: [], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [] + }, + { + code: "ADMIN_DUTY_SECTION_GENERAL", + created: "2019-09-07T16:08:14.045", + lastUpdated: "2021-02-15T17:20:35.127", + name: "General", + id: "FAiD9yYVNUD", + sortOrder: 1, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + dataSet: { + id: "FnYgTt843G2" + }, + greyedFields: [], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [ + { + id: "DZmTHrT9JPg" + }, + { + id: "XtznMFZssKc" + }, + { + id: "EvRMsyVW63b" + } + ] + }, + { + code: "ADMIN_DUTY_SECTION_SERVER_ANALYTICS_MIDNIGHT", + created: "2019-09-07T16:09:01.724", + lastUpdated: "2021-02-15T17:20:35.129", + name: "Server analytics", + id: "aTewMAn9H4J", + sortOrder: 3, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + dataSet: { + id: "FnYgTt843G2" + }, + greyedFields: [ + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "Dx70nNMP3mB.SvcP5ROAff3", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_MALARIA", + externalAccess: false, + dimensionItem: "Dx70nNMP3mB.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "SvcP5ROAff3" + }, + dataElement: { + id: "Dx70nNMP3mB" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "crQfKtNHSHB.SvcP5ROAff3", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_MALARIA", + externalAccess: false, + dimensionItem: "crQfKtNHSHB.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "SvcP5ROAff3" + }, + dataElement: { + id: "crQfKtNHSHB" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "mjDgqDPsT4J.SvcP5ROAff3", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_MALARIA", + externalAccess: false, + dimensionItem: "mjDgqDPsT4J.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "SvcP5ROAff3" + }, + dataElement: { + id: "mjDgqDPsT4J" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "Dx70nNMP3mB.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "Dx70nNMP3mB.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu" + }, + dataElement: { + id: "Dx70nNMP3mB" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "tHGRW9Zwyxh.SvcP5ROAff3", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_MALARIA", + externalAccess: false, + dimensionItem: "tHGRW9Zwyxh.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "SvcP5ROAff3" + }, + dataElement: { + id: "tHGRW9Zwyxh" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "tHGRW9Zwyxh.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "tHGRW9Zwyxh.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu" + }, + dataElement: { + id: "tHGRW9Zwyxh" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "CTbBS3ArglV.SvcP5ROAff3", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_MALARIA", + externalAccess: false, + dimensionItem: "CTbBS3ArglV.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "SvcP5ROAff3" + }, + dataElement: { + id: "CTbBS3ArglV" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "mjDgqDPsT4J.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "mjDgqDPsT4J.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu" + }, + dataElement: { + id: "mjDgqDPsT4J" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "qpgGXrkTrgj.SvcP5ROAff3", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_MALARIA", + externalAccess: false, + dimensionItem: "qpgGXrkTrgj.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "SvcP5ROAff3" + }, + dataElement: { + id: "qpgGXrkTrgj" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "qpgGXrkTrgj.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "qpgGXrkTrgj.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu" + }, + dataElement: { + id: "qpgGXrkTrgj" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "crQfKtNHSHB.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "crQfKtNHSHB.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu" + }, + dataElement: { + id: "crQfKtNHSHB" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "CTbBS3ArglV.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "CTbBS3ArglV.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu" + }, + dataElement: { + id: "CTbBS3ArglV" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + } + ], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [ + { + id: "mjDgqDPsT4J" + }, + { + id: "CTbBS3ArglV" + }, + { + id: "crQfKtNHSHB" + }, + { + id: "tHGRW9Zwyxh" + }, + { + id: "Dx70nNMP3mB" + }, + { + id: "qpgGXrkTrgj" + } + ] + }, + { + created: "2021-02-12T11:43:21.147", + lastUpdated: "2021-02-22T17:38:52.011", + name: "Metadata reports", + id: "SHHYEsdT55c", + sortOrder: 7, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + dataSet: { + id: "FnYgTt843G2" + }, + greyedFields: [ + { + lastUpdated: "2021-09-29T06:00:52.438", + id: "BLlpSeTreIO.SvcP5ROAff3", + created: "2021-09-29T06:00:52.438", + name: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_MALARIA", + externalAccess: false, + dimensionItem: "BLlpSeTreIO.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "SvcP5ROAff3" + }, + dataElement: { + id: "BLlpSeTreIO" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.438", + id: "BLlpSeTreIO.qpRs0fsxSeB", + created: "2021-09-29T06:00:52.438", + name: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_TRAINING", + shortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_TRAINING", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_TRAINING", + displayShortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_TRAINING", + externalAccess: false, + dimensionItem: "BLlpSeTreIO.qpRs0fsxSeB", + displayFormName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_TRAINING", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "qpRs0fsxSeB" + }, + dataElement: { + id: "BLlpSeTreIO" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.438", + id: "BLlpSeTreIO.hHIs5QYHbQP", + created: "2021-09-29T06:00:52.438", + name: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_PROD", + shortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_PROD", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_PROD", + displayShortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_PROD", + externalAccess: false, + dimensionItem: "BLlpSeTreIO.hHIs5QYHbQP", + displayFormName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_PROD", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "hHIs5QYHbQP" + }, + dataElement: { + id: "BLlpSeTreIO" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.438", + id: "BLlpSeTreIO.jXGgFnnjHAW", + created: "2021-09-29T06:00:52.438", + name: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_PREPROD_CONT", + shortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_PREPROD_CONT", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_PREPROD_CONT", + displayShortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_PREPROD_CONT", + externalAccess: false, + dimensionItem: "BLlpSeTreIO.jXGgFnnjHAW", + displayFormName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_PREPROD_CONT", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "jXGgFnnjHAW" + }, + dataElement: { + id: "BLlpSeTreIO" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.438", + id: "BLlpSeTreIO.JhrMD8OMFyf", + created: "2021-09-29T06:00:52.438", + name: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_DEV-CONT", + shortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_DEV-CONT", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_DEV-CONT", + displayShortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_DEV-CONT", + externalAccess: false, + dimensionItem: "BLlpSeTreIO.JhrMD8OMFyf", + displayFormName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_DEV-CONT", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "JhrMD8OMFyf" + }, + dataElement: { + id: "BLlpSeTreIO" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + } + ], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [ + { + id: "BLlpSeTreIO" + } + ] + }, + { + code: "ADMIN_DUTY_SECTION_SERVER_STATUS", + created: "2019-09-07T16:08:45.341", + lastUpdated: "2021-02-15T17:20:35.128", + name: "Server status", + id: "NuxyY2XJPhZ", + sortOrder: 2, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + dataSet: { + id: "FnYgTt843G2" + }, + greyedFields: [ + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "CufSsSZAUme.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_MALARIA", + externalAccess: false, + dimensionItem: "CufSsSZAUme.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "SvcP5ROAff3" + }, + dataElement: { + id: "CufSsSZAUme" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "XrDIy4Gg3YR.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "XrDIy4Gg3YR.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu" + }, + dataElement: { + id: "XrDIy4Gg3YR" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "gfRkAIfJ2eO.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_MALARIA", + externalAccess: false, + dimensionItem: "gfRkAIfJ2eO.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "SvcP5ROAff3" + }, + dataElement: { + id: "gfRkAIfJ2eO" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "gfRkAIfJ2eO.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "gfRkAIfJ2eO.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu" + }, + dataElement: { + id: "gfRkAIfJ2eO" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "F5cEZ7QM03v.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_MALARIA", + externalAccess: false, + dimensionItem: "F5cEZ7QM03v.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "SvcP5ROAff3" + }, + dataElement: { + id: "F5cEZ7QM03v" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "RsZWioTWyYa.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "RsZWioTWyYa.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu" + }, + dataElement: { + id: "RsZWioTWyYa" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "fjMS4MkPcEQ.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_MALARIA", + externalAccess: false, + dimensionItem: "fjMS4MkPcEQ.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "SvcP5ROAff3" + }, + dataElement: { + id: "fjMS4MkPcEQ" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "RsZWioTWyYa.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_MALARIA", + externalAccess: false, + dimensionItem: "RsZWioTWyYa.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "SvcP5ROAff3" + }, + dataElement: { + id: "RsZWioTWyYa" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "CufSsSZAUme.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "CufSsSZAUme.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu" + }, + dataElement: { + id: "CufSsSZAUme" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "qoGoSfiLnbH.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_MALARIA", + externalAccess: false, + dimensionItem: "qoGoSfiLnbH.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "SvcP5ROAff3" + }, + dataElement: { + id: "qoGoSfiLnbH" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "XrDIy4Gg3YR.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_MALARIA", + externalAccess: false, + dimensionItem: "XrDIy4Gg3YR.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "SvcP5ROAff3" + }, + dataElement: { + id: "XrDIy4Gg3YR" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "fjMS4MkPcEQ.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "fjMS4MkPcEQ.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu" + }, + dataElement: { + id: "fjMS4MkPcEQ" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "K9IzaTNqEXa.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_MALARIA", + externalAccess: false, + dimensionItem: "K9IzaTNqEXa.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "SvcP5ROAff3" + }, + dataElement: { + id: "K9IzaTNqEXa" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "KOUVktXBH9W.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_MALARIA", + externalAccess: false, + dimensionItem: "KOUVktXBH9W.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "SvcP5ROAff3" + }, + dataElement: { + id: "KOUVktXBH9W" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "sFLQxZe72Ym.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "sFLQxZe72Ym.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu" + }, + dataElement: { + id: "sFLQxZe72Ym" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "F5cEZ7QM03v.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "F5cEZ7QM03v.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu" + }, + dataElement: { + id: "F5cEZ7QM03v" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "qoGoSfiLnbH.hHIs5QYHbQP", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_PROD", + shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_PROD", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_PROD", + displayShortName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_PROD", + externalAccess: false, + dimensionItem: "qoGoSfiLnbH.hHIs5QYHbQP", + displayFormName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_PROD", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "hHIs5QYHbQP" + }, + dataElement: { + id: "qoGoSfiLnbH" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "kDL0aoZKYfV.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_MALARIA", + externalAccess: false, + dimensionItem: "kDL0aoZKYfV.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "SvcP5ROAff3" + }, + dataElement: { + id: "kDL0aoZKYfV" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "sFLQxZe72Ym.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_MALARIA", + externalAccess: false, + dimensionItem: "sFLQxZe72Ym.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "SvcP5ROAff3" + }, + dataElement: { + id: "sFLQxZe72Ym" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "HaV3tXKCCnW.hHIs5QYHbQP", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_PROD", + shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_PROD", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_PROD", + displayShortName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_PROD", + externalAccess: false, + dimensionItem: "HaV3tXKCCnW.hHIs5QYHbQP", + displayFormName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_PROD", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "hHIs5QYHbQP" + }, + dataElement: { + id: "HaV3tXKCCnW" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "kDL0aoZKYfV.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "kDL0aoZKYfV.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu" + }, + dataElement: { + id: "kDL0aoZKYfV" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "BCytw0TARJ0.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_MALARIA", + externalAccess: false, + dimensionItem: "BCytw0TARJ0.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "SvcP5ROAff3" + }, + dataElement: { + id: "BCytw0TARJ0" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "HaV3tXKCCnW.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_MALARIA", + externalAccess: false, + dimensionItem: "HaV3tXKCCnW.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "SvcP5ROAff3" + }, + dataElement: { + id: "HaV3tXKCCnW" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "K9IzaTNqEXa.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "K9IzaTNqEXa.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu" + }, + dataElement: { + id: "K9IzaTNqEXa" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "BCytw0TARJ0.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "BCytw0TARJ0.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu" + }, + dataElement: { + id: "BCytw0TARJ0" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "KOUVktXBH9W.hHIs5QYHbQP", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_PROD", + shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_PROD", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_PROD", + displayShortName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_PROD", + externalAccess: false, + dimensionItem: "KOUVktXBH9W.hHIs5QYHbQP", + displayFormName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_PROD", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "hHIs5QYHbQP" + }, + dataElement: { + id: "KOUVktXBH9W" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + } + ], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [ + { + id: "fjMS4MkPcEQ" + }, + { + id: "F5cEZ7QM03v" + }, + { + id: "kDL0aoZKYfV" + }, + { + id: "RsZWioTWyYa" + }, + { + id: "CufSsSZAUme" + }, + { + id: "gfRkAIfJ2eO" + }, + { + id: "BCytw0TARJ0" + }, + { + id: "K9IzaTNqEXa" + }, + { + id: "XrDIy4Gg3YR" + }, + { + id: "sFLQxZe72Ym" + }, + { + id: "HaV3tXKCCnW" + }, + { + id: "qoGoSfiLnbH" + }, + { + id: "KOUVktXBH9W" + } + ] + }, + { + code: "ADMIN_DUTY_SECTION_PUBLIC_OBJECTS", + created: "2020-04-13T10:08:46.467", + lastUpdated: "2021-02-15T17:20:35.130", + name: "Public objects", + id: "flhHBsC1cUi", + sortOrder: 5, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + dataSet: { + id: "FnYgTt843G2" + }, + greyedFields: [ + { + lastUpdated: "2021-09-29T06:00:52.434", + id: "Dvx3NSCzImT.SvcP5ROAff3", + created: "2021-09-29T06:00:52.434", + name: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK WHO_MALARIA", + externalAccess: false, + dimensionItem: "Dvx3NSCzImT.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "SvcP5ROAff3" + }, + dataElement: { + id: "Dvx3NSCzImT" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.434", + id: "HF0iZZ0NqDE.SvcP5ROAff3", + created: "2021-09-29T06:00:52.434", + name: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT WHO_MALARIA", + externalAccess: false, + dimensionItem: "HF0iZZ0NqDE.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "SvcP5ROAff3" + }, + dataElement: { + id: "HF0iZZ0NqDE" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-09-29T06:00:52.434", + id: "ulfI0WDmW92.SvcP5ROAff3", + created: "2021-09-29T06:00:52.434", + name: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT WHO_MALARIA", + externalAccess: false, + dimensionItem: "ulfI0WDmW92.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true + }, + categoryOptionCombo: { + id: "SvcP5ROAff3" + }, + dataElement: { + id: "ulfI0WDmW92" + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [] + } + ], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [ + { + id: "Dvx3NSCzImT" + }, + { + id: "HF0iZZ0NqDE" + }, + { + id: "ulfI0WDmW92" + } + ] + }, + { + code: "ADMIN_DUTY_SECTION_COORDINATION_TASKS", + created: "2019-09-07T16:09:21.109", + lastUpdated: "2021-02-15T17:20:35.130", + name: "Coordination tasks", + id: "DCs4RcHnJVE", + sortOrder: 6, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + dataSet: { + id: "FnYgTt843G2" + }, + greyedFields: [], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [ + { + id: "nN6za0sVirK" + }, + { + id: "tCxs6EgMIo6" + }, + { + id: "lXknxysDVIL" + }, + { + id: "vde072gdxKY" + }, + { + id: "UdVGMNKksVU" + }, + { + id: "dnzBDLlnSZs" + }, + { + id: "Em7yGYvgAU3" + }, + { + id: "pPyNTfJE0PG" + }, + { + id: "wf8MI19zCzV" + }, + { + id: "bSdpvUwkRa1" + }, + { + id: "m4MjhFUcecj" + }, + { + id: "CIHmMkvNYDO" + } + ] + } + ], + dataElements: [ + { + code: "ADMIN_DUTY_DE_ANALYTICS_LOGS", + lastUpdated: "2021-02-15T17:20:34.973", + id: "qpgGXrkTrgj", + created: "2019-09-12T09:31:27.018", + name: "ADMIN_DUTY_DE_ANALYTICS_LOGS", + shortName: "ADMIN_DUTY_DE_ANALYTICS_LOGS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Relevant logs of the analytics run", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION", + lastUpdated: "2021-02-15T17:20:34.973", + id: "tHGRW9Zwyxh", + created: "2019-09-07T16:27:04.436", + name: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION", + shortName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TEXT", + formName: "How did the analytics run?", + zeroIsSignificant: false, + optionSet: { + id: "YFZsozOszeV" + }, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_TASKS_RESOLVED_RUN", + lastUpdated: "2021-02-15T17:20:34.972", + id: "UdVGMNKksVU", + created: "2019-09-07T16:32:08.443", + name: "ADMIN_DUTY_DE_TASKS_RESOLVED_RUN", + shortName: "ADMIN_DUTY_DE_TASKS_RESOLVED_RUN", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did you review the resolved issues on redmine?", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS", + lastUpdated: "2021-02-15T17:20:34.971", + id: "CTbBS3ArglV", + created: "2019-09-12T09:13:35.840", + name: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS", + shortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did the analytics run as per the logs? ", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_STATUS_COMMENTS", + lastUpdated: "2021-02-15T17:20:34.974", + id: "RsZWioTWyYa", + created: "2019-09-07T16:22:12.647", + name: "ADMIN_DUTY_DE_STATUS_COMMENTS", + shortName: "ADMIN_DUTY_DE_STATUS_COMMENTS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Comments about the server status", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK", + lastUpdated: "2021-02-15T17:20:34.974", + id: "Dvx3NSCzImT", + created: "2020-02-05T11:04:52.379", + name: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK", + shortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did you check the public objects?", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS", + lastUpdated: "2021-02-15T17:20:34.975", + id: "KOUVktXBH9W", + created: "2021-01-06T10:43:31.254", + name: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS", + shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Error logs on the docker instances clone", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_ANALYTICS_RUN", + lastUpdated: "2021-02-15T17:20:34.973", + id: "mjDgqDPsT4J", + created: "2019-09-07T16:24:19.762", + name: "ADMIN_DUTY_DE_ANALYTICS_RUN", + shortName: "ADMIN_DUTY_DE_ANALYTICS_RUN", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did you check the analytics status?", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS", + lastUpdated: "2021-02-15T17:20:34.974", + id: "XrDIy4Gg3YR", + created: "2019-09-16T06:14:07.937", + name: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS", + shortName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Comments on the cloning of the instances", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_TASKS_MAIL_RUN", + lastUpdated: "2021-02-15T17:20:34.975", + id: "nN6za0sVirK", + created: "2019-09-07T16:29:39.215", + name: "ADMIN_DUTY_DE_TASKS_MAIL_RUN", + shortName: "ADMIN_DUTY_DE_TASKS_MAIL_RUN", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did you check the integrated mailbox?", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_TASKS_BACKLOG_COMMENT", + lastUpdated: "2021-02-15T17:20:34.976", + id: "vde072gdxKY", + created: "2019-09-07T16:31:13.785", + name: "ADMIN_DUTY_DE_TASKS_BACKLOG_COMMENT", + shortName: "ADMIN_DUTY_DE_TASKS_BACKLOG_COMMENT", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Comments about the backlog issues on redmine", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_TASKS_MAIL_COMMENT", + lastUpdated: "2021-02-15T17:20:34.972", + id: "tCxs6EgMIo6", + created: "2019-09-07T16:30:08.001", + name: "ADMIN_DUTY_DE_TASKS_MAIL_COMMENT", + shortName: "ADMIN_DUTY_DE_TASKS_MAIL_COMMENT", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Comments about the integrated mailbox", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE", + lastUpdated: "2021-02-15T17:20:34.975", + id: "CufSsSZAUme", + created: "2019-09-16T06:11:22.559", + name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE", + shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did you check the database backup?", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS", + lastUpdated: "2021-02-15T17:20:34.974", + id: "gfRkAIfJ2eO", + created: "2019-09-16T06:12:35.695", + name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS", + shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Comments on database backup", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_TASKS_RESOLVED_COMMENT", + lastUpdated: "2021-02-15T17:20:34.974", + id: "dnzBDLlnSZs", + created: "2019-09-07T16:31:37.739", + name: "ADMIN_DUTY_DE_TASKS_RESOLVED_COMMENT", + shortName: "ADMIN_DUTY_DE_TASKS_RESOLVED_COMMENT", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Comments about the resolved issues on redmine", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS", + lastUpdated: "2021-02-15T17:20:34.976", + id: "qoGoSfiLnbH", + created: "2021-01-06T10:42:59.738", + name: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS", + shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Comments on the docker instances clone", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_TASKS_CLOSE_RUN", + lastUpdated: "2021-02-15T17:20:34.971", + id: "Em7yGYvgAU3", + created: "2019-09-07T16:33:45.824", + name: "ADMIN_DUTY_DE_TASKS_CLOSE_RUN", + shortName: "ADMIN_DUTY_DE_TASKS_CLOSE_RUN", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did you assign the issues that should be closed (30 days) on redmine?", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_STATUS_SERVER_UP", + lastUpdated: "2021-02-15T17:20:34.972", + id: "fjMS4MkPcEQ", + created: "2019-09-07T16:20:22.633", + name: "ADMIN_DUTY_DE_STATUS_SERVER_UP", + shortName: "ADMIN_DUTY_DE_STATUS_SERVER_UP", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Is the instance up and running?", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_TASKS_CHECK_PROD_ERRORS", + lastUpdated: "2021-02-15T17:20:34.972", + id: "CIHmMkvNYDO", + created: "2020-10-27T11:41:54.481", + name: "ADMIN_DUTY_DE_TASKS_CHECK_PROD_ERRORS", + shortName: "ADMIN_DUTY_DE_TASKS_CHECK_PROD_ERRORS", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did you check the prod logs errors? (only on Thursdays)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "kD52FGwJgDF" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_GENERAL_COMMENTS", + lastUpdated: "2021-02-15T17:20:34.973", + id: "XtznMFZssKc", + created: "2019-09-07T16:07:03.672", + name: "ADMIN_DUTY_DE_GENERAL_COMMENTS", + shortName: "ADMIN_DUTY_DE_GENERAL_COMMENTS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Comments of the duty day", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + lastUpdated: "2021-02-24T09:42:43.263", + id: "BLlpSeTreIO", + created: "2021-02-12T11:48:32.824", + name: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS", + shortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "rw------", + valueType: "LONG_TEXT", + formName: "Number of invalid expressions in indicators", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "kD52FGwJgDF" + }, + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT", + lastUpdated: "2021-02-15T17:20:34.974", + id: "ulfI0WDmW92", + created: "2020-02-05T11:06:05.458", + name: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT", + shortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Comments about the public objects", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS", + lastUpdated: "2021-02-15T17:20:34.972", + id: "BCytw0TARJ0", + created: "2019-09-16T06:12:04.486", + name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS", + shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Error logs on database backup", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_TASKS_CLOSE_COMMENT", + lastUpdated: "2021-02-15T17:20:34.975", + id: "pPyNTfJE0PG", + created: "2019-09-07T16:33:20.750", + name: "ADMIN_DUTY_DE_TASKS_CLOSE_COMMENT", + shortName: "ADMIN_DUTY_DE_TASKS_CLOSE_COMMENT", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Comments about the issues that should be closed (30 days) on redmine", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS", + lastUpdated: "2021-02-15T17:20:34.973", + id: "kDL0aoZKYfV", + created: "2019-09-07T16:21:58.469", + name: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS", + shortName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Failure logs", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD", + lastUpdated: "2021-02-15T17:20:34.973", + id: "crQfKtNHSHB", + created: "2019-09-12T09:26:00.926", + name: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD", + shortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did the analytics run as per the dashboard? ", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_GENERAL_ASSIGNEE", + lastUpdated: "2021-02-15T17:20:34.975", + id: "DZmTHrT9JPg", + created: "2019-09-07T16:05:25.606", + name: "ADMIN_DUTY_DE_GENERAL_ASSIGNEE", + shortName: "ADMIN_DUTY_DE_GENERAL_ASSIGNEE", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TEXT", + formName: "Assignee of the duty day", + zeroIsSignificant: false, + optionSet: { + id: "wsWZHTuG77p" + }, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_TASKS_BACKLOG_RUN", + lastUpdated: "2021-02-15T17:20:34.975", + id: "lXknxysDVIL", + created: "2019-09-07T16:30:52.035", + name: "ADMIN_DUTY_DE_TASKS_BACKLOG_RUN", + shortName: "ADMIN_DUTY_DE_TASKS_BACKLOG_RUN", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did you assign the backlog issues on redmine?", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS", + lastUpdated: "2021-02-15T17:20:34.971", + id: "sFLQxZe72Ym", + created: "2019-09-16T06:14:44.611", + name: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS", + shortName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Error logs on the cloning of the instances", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT", + lastUpdated: "2021-02-15T17:20:34.975", + id: "F5cEZ7QM03v", + created: "2019-09-07T16:21:16.224", + name: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT", + shortName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "INTEGER_ZERO_OR_POSITIVE", + formName: "Number of failures in the current day", + zeroIsSignificant: true, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_TASKS_DELETE_USERS", + lastUpdated: "2021-02-15T17:20:34.973", + id: "wf8MI19zCzV", + created: "2020-07-27T19:15:34.122", + name: "ADMIN_DUTY_DE_TASKS_DELETE_USERS", + shortName: "ADMIN_DUTY_DE_TASKS_DELETE_USERS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did you deleted all users with the suffix _TOBEDELETED? (only the FIRST duty day of each month)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_GENERAL_PENDING_TASKS", + lastUpdated: "2021-02-15T17:20:34.975", + id: "EvRMsyVW63b", + created: "2019-09-07T16:10:19.581", + name: "ADMIN_DUTY_DE_GENERAL_PENDING_TASKS", + shortName: "ADMIN_DUTY_DE_GENERAL_PENDING_TASKS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Pending tasks of the duty day", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_TASKS_RETURN_CHANNEL", + lastUpdated: "2021-02-15T17:20:34.975", + id: "m4MjhFUcecj", + created: "2021-02-08T10:13:58.780", + name: "ADMIN_DUTY_DE_TASKS_RETURN_CHANNEL", + shortName: "ADMIN_DUTY_DE_TASKS_RETURN_CHANNEL", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "rw------", + valueType: "TRUE_ONLY", + formName: "Did you synced all the return channel metadata sync rules in prod? (only the FIRST duty day of each month after the montly backup)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "kD52FGwJgDF" + }, + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS", + lastUpdated: "2021-02-15T17:20:34.974", + id: "Dx70nNMP3mB", + created: "2019-09-07T16:27:49.546", + name: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS", + shortName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Comments about the analytics", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT", + lastUpdated: "2021-02-15T17:20:34.972", + id: "HF0iZZ0NqDE", + created: "2020-02-05T11:05:29.726", + name: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT", + shortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "NUMBER", + formName: "Number of public objects", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_TASKS_DELETE_RULES", + lastUpdated: "2021-02-15T17:20:34.974", + id: "bSdpvUwkRa1", + created: "2020-10-13T10:24:32.648", + name: "ADMIN_DUTY_DE_TASKS_DELETE_RULES", + shortName: "ADMIN_DUTY_DE_TASKS_DELETE_RULES", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did you deleted all the metadata sync rules created at least one month ago? (only the FIRST duty day of each month after the montly backup)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "kD52FGwJgDF" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE", + lastUpdated: "2021-02-15T17:20:34.972", + id: "HaV3tXKCCnW", + created: "2021-01-06T10:42:11.044", + name: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE", + shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did you check the daily docker instance clone?", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + }, + { + code: "ADMIN_DUTY_DE_STATUS_CLONING_DONE", + lastUpdated: "2021-02-15T17:20:34.976", + id: "K9IzaTNqEXa", + created: "2019-09-16T06:15:15.566", + name: "ADMIN_DUTY_DE_STATUS_CLONING_DONE", + shortName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did you check the cloning of the instance?", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [] + } + ], + categoryOptions: [ + { + code: "default", + created: "2017-05-10T17:53:55.138", + lastUpdated: "2018-07-27T16:09:07.425", + name: "default", + id: "Y7fcspgsU43", + shortName: "default", + publicAccess: "rwrw----", + user: { + id: "eK26I7dRbC4" + }, + userGroupAccesses: [], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [] + }, + { + code: "ADMIN_DUTY_CO_SERVER_INSTANCES_PREPROD", + created: "2019-09-07T16:18:31.803", + lastUpdated: "2021-02-15T17:20:34.870", + name: "WHO_PREPROD", + id: "QllodPhxVeb", + shortName: "WHO_PREPROD", + publicAccess: "--------", + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [ + { + id: "H8RixfF8ugH" + } + ] + }, + { + code: "ADMIN_DUTY_CO_SERVER_INSTANCES_TRAINING", + created: "2019-09-07T16:18:46.637", + lastUpdated: "2021-02-15T17:20:34.870", + name: "WHO_TRAINING", + id: "buv02XljUjE", + shortName: "WHO_TRAINING", + publicAccess: "--------", + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [ + { + id: "H8RixfF8ugH" + } + ] + }, + { + code: "ADMIN_DUTY_CO_SERVER_INSTANCES_PROD", + created: "2019-09-07T16:18:16.992", + lastUpdated: "2021-02-15T17:20:34.869", + name: "WHO_PROD", + id: "rhGywpV4vXF", + shortName: "WHO_PROD", + publicAccess: "--------", + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [ + { + id: "H8RixfF8ugH" + } + ] + }, + { + code: "ADMIN_DUTY_CO_SERVER_INSTANCES_DEV", + created: "2019-09-07T16:17:34.811", + lastUpdated: "2021-02-15T17:20:34.869", + name: "WHO_DEV", + id: "jFwR5mUrvAM", + shortName: "WHO_DEV", + publicAccess: "--------", + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [ + { + id: "H8RixfF8ugH" + } + ] + }, + { + code: "ADMIN_DUTY_CO_SERVER_INSTANCES_MALARIA", + created: "2019-09-10T16:32:46.127", + lastUpdated: "2021-02-15T17:20:34.868", + name: "WHO_MALARIA", + id: "RkYSGG4MNhT", + shortName: "WHO_MALARIA", + publicAccess: "--------", + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [ + { + id: "H8RixfF8ugH" + } + ] + }, + { + code: "ADMIN_DUTY_CO_SERVER_INSTANCES_DEV-CONT", + created: "2019-09-10T16:31:58.313", + lastUpdated: "2021-02-15T17:20:34.869", + name: "WHO_DEV-CONT", + id: "BclrlHiDxv1", + shortName: "WHO_DEV-CONT", + publicAccess: "--------", + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [ + { + id: "H8RixfF8ugH" + } + ] + }, + { + code: "ADMIN_DUTY_CO_SERVER_INSTANCES_PREPROD-VIS", + created: "2019-09-10T16:32:19.140", + lastUpdated: "2021-02-15T17:20:34.869", + name: "WHO_PREPROD-VIS", + id: "OgGW61Izy8Y", + shortName: "WHO_PREPROD-VIS", + publicAccess: "--------", + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [ + { + id: "H8RixfF8ugH" + } + ] + }, + { + code: "ADMIN_DUTY_CO_SERVER_INSTANCES_PREPROD_CONT", + created: "2020-09-30T17:19:49.347", + lastUpdated: "2021-02-15T17:20:34.870", + name: "WHO_PREPROD_CONT", + id: "BnkWfh38wMf", + shortName: "WHO_PREPROD_CONT", + publicAccess: "--------", + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "kD52FGwJgDF" + }, + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [ + { + id: "H8RixfF8ugH" + } + ] + } + ], + categories: [ + { + code: "ADMIN_DUTY_CAT_SERVER_INSTANCES", + created: "2019-09-07T16:19:37.984", + lastUpdated: "2021-02-08T10:15:38.975", + name: "ADMIN_DUTY_CAT_SERVER_INSTANCES", + id: "dL4wpziK7qW", + dataDimensionType: "DISAGGREGATION", + publicAccess: "--------", + dataDimension: true, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + translations: [], + userAccesses: [], + categoryOptions: [ + { + id: "jFwR5mUrvAM" + }, + { + id: "BclrlHiDxv1" + }, + { + id: "buv02XljUjE" + }, + { + id: "QllodPhxVeb" + }, + { + id: "BnkWfh38wMf" + }, + { + id: "rhGywpV4vXF" + }, + { + id: "RkYSGG4MNhT" + } + ] + }, + { + code: "default", + created: "2017-05-10T17:53:55.152", + lastUpdated: "2021-08-07T06:18:19.628", + name: "default", + id: "DMyxTSpvKOp", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + dataDimension: false, + user: { + id: "eK26I7dRbC4" + }, + userGroupAccesses: [], + attributeValues: [], + translations: [], + userAccesses: [], + categoryOptions: [ + { + id: "Y7fcspgsU43" + } + ] + } + ], + dataSets: [ + { + code: "ADMIN_DUTY_DS_DAILY", + lastUpdated: "2021-02-15T17:20:35.068", + id: "FnYgTt843G2", + created: "2019-09-07T16:00:31.496", + name: "ADMIN - Duty day platform administration - Daily", + shortName: "ADMIN - Duty day platform administration", + validCompleteOnly: false, + dataElementDecoration: false, + publicAccess: "--------", + notifyCompletingUser: false, + noValueRequiresComment: false, + skipOffline: false, + compulsoryFieldsCompleteOnly: false, + fieldCombinationRequired: false, + renderHorizontally: true, + renderAsTabs: true, + mobile: false, + version: 80, + openPeriodsAfterCoEndDate: 0, + timelyDays: 15, + periodType: "Daily", + openFuturePeriods: 8, + expiryDays: 0, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "s5EVHUwoFKu" + }, + dataSetElements: [ + { + dataElement: { + id: "CufSsSZAUme" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "tCxs6EgMIo6" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "m4MjhFUcecj" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "CTbBS3ArglV" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "K9IzaTNqEXa" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "XtznMFZssKc" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "wf8MI19zCzV" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "bSdpvUwkRa1" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "pPyNTfJE0PG" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "qpgGXrkTrgj" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "BCytw0TARJ0" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "ulfI0WDmW92" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "nN6za0sVirK" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "kDL0aoZKYfV" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "fjMS4MkPcEQ" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "EvRMsyVW63b" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "Em7yGYvgAU3" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "qoGoSfiLnbH" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "RsZWioTWyYa" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "tHGRW9Zwyxh" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "Dx70nNMP3mB" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "F5cEZ7QM03v" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "lXknxysDVIL" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "crQfKtNHSHB" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "dnzBDLlnSZs" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "HF0iZZ0NqDE" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "KOUVktXBH9W" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "CIHmMkvNYDO" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "DZmTHrT9JPg" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "gfRkAIfJ2eO" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "BLlpSeTreIO" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "Dvx3NSCzImT" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "XrDIy4Gg3YR" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "sFLQxZe72Ym" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "mjDgqDPsT4J" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "vde072gdxKY" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "HaV3tXKCCnW" + }, + dataSet: { + id: "FnYgTt843G2" + } + }, + { + dataElement: { + id: "UdVGMNKksVU" + }, + dataSet: { + id: "FnYgTt843G2" + } + } + ], + compulsoryDataElementOperands: [], + translations: [], + dataInputPeriods: [], + organisationUnits: [ + { + id: "H8RixfF8ugH" + } + ], + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + indicators: [], + userAccesses: [], + legendSets: [] + } + ] + }, + dataset2: { + indicators: [ + { + lastUpdated: "2021-06-01T17:25:45.769", + id: "YhT6GxOLv73", + created: "2016-11-03T18:25:35.628", + name: "BU_Female%", + shortName: "BU_Proportion of Female", + publicAccess: "--------", + description: "Proportion of female among the Buruli ulcer cases, based on summary data", + denominatorDescription: "Total number of BU cases (summary)", + numeratorDescription: "Number of female BU cases (summary)", + numerator: "#{zqv3IsyTYta.V2LdgcGgFQt}", + denominator: "#{tOpVIYrnbhk}", + annualized: false, + decimals: 1, + indicatorType: { + id: "qpi4nN8Wkvl" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "q9wZgtaDxWn" + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + lastUpdated: "2021-06-01T17:25:45.794", + id: "lBRFDEaxUDi", + created: "2016-11-03T18:25:35.628", + name: "BU_under15y_%", + shortName: "BU_Proportion under 15 years", + publicAccess: "--------", + description: "Proportion of children under 15 years of age among the Buruli ulcer cases, based on summary data", + denominatorDescription: "Total number of BU cases (summary)", + numeratorDescription: "Number of BU cases under 15y (summary)", + numerator: "#{mBDooPcvqRy.HDXcEOGT2s1} + #{mBDooPcvqRy.DOJartWGuff}", + denominator: "#{tOpVIYrnbhk.Xr12mI7VPn3}", + annualized: false, + decimals: 1, + indicatorType: { + id: "qpi4nN8Wkvl" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "q9wZgtaDxWn" + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "BU_Ulcer%", + lastUpdated: "2021-06-01T17:25:45.777", + id: "kCS3GHdIcQ9", + created: "2016-11-03T18:25:35.628", + name: "BU_Ulcer%", + shortName: "BU_Proportion of ulcerative lesions", + publicAccess: "--------", + description: "Proportion of Buruli ulcer cases presenting at least on ulcerative lesion, based on summary data", + denominatorDescription: "Total number of BU cases (summary)", + numeratorDescription: "Number of BU cases with ulcerative lesions (summary)", + numerator: "#{UVEjNoZCtNQ.Xr12mI7VPn3}", + denominator: "#{tOpVIYrnbhk.Xr12mI7VPn3}", + annualized: false, + decimals: 1, + indicatorType: { + id: "qpi4nN8Wkvl" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "q9wZgtaDxWn" + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "IA_BU_PCR%", + lastUpdated: "2021-06-01T17:25:45.782", + id: "UBHvHs7yeEB", + created: "2016-11-03T18:25:35.628", + name: "BU - % laboratory-confirmed cases", + shortName: "BU_% lab-confirmed cases", + publicAccess: "--------", + description: "Proportion of Buruli ulcer cases confirmed by PCR, based on summary data", + denominatorDescription: "Total number of BU cases (summary)", + numeratorDescription: "Number of BU cases confirmed by PCR (summary)", + numerator: "#{IjrtWEc8Oei.Xr12mI7VPn3}", + denominator: "#{tOpVIYrnbhk.Xr12mI7VPn3}", + annualized: false, + decimals: 1, + indicatorType: { + id: "qpi4nN8Wkvl" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "q9wZgtaDxWn" + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + }, + { + code: "BU_ABcompleted%", + lastUpdated: "2021-06-01T17:25:45.784", + id: "fL136P7sU6J", + created: "2016-11-03T18:25:35.628", + name: "BU_ABcompleted%", + shortName: "BU_Proportion who completed AB treatment", + publicAccess: "--------", + description: "Proportion of Buruli ulcer caseswho completed AB treatment, based on summary data", + denominatorDescription: "Total number of BU cases (summary)", + numeratorDescription: "Number of BU cases who completed AB treatment (summary)", + numerator: "#{uFKSqvGwl21.Xr12mI7VPn3}", + denominator: "#{tOpVIYrnbhk.Xr12mI7VPn3}", + annualized: false, + decimals: 1, + indicatorType: { + id: "qpi4nN8Wkvl" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "q9wZgtaDxWn" + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + code: "IA_BU_JointLim_%", + lastUpdated: "2021-06-01T17:25:45.784", + id: "D8TeKh05msQ", + created: "2016-11-03T18:25:35.628", + name: "BU Joint Lim%", + shortName: "BU Joint Lim%", + publicAccess: "--------", + description: "Proportion of Buruli ulcer cases presenting joint limitation, based on summary data", + denominatorDescription: "Total number of BU cases (summary)", + numeratorDescription: "Number of BU cases with joint limitation (summary)", + numerator: "#{uhG3oatUV6j.Xr12mI7VPn3}", + denominator: "#{tOpVIYrnbhk.Xr12mI7VPn3}", + annualized: false, + decimals: 1, + indicatorType: { + id: "qpi4nN8Wkvl" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "q9wZgtaDxWn" + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [] + }, + { + lastUpdated: "2021-06-01T17:25:45.775", + id: "KiSlEe9D7SZ", + created: "2016-11-03T18:25:35.628", + name: "BU_CatIII%", + shortName: "BU_Proportion of category III", + publicAccess: "--------", + description: "Proportion of Buruli ulcer cases in category III, based on summary data", + denominatorDescription: "Total number of BU cases (summary)", + numeratorDescription: "Number of BU cases in category III (summary)", + numerator: "#{OG5wWMlhrxv.c7ypRdqByt7}", + denominator: "#{tOpVIYrnbhk.Xr12mI7VPn3}", + annualized: false, + decimals: 1, + indicatorType: { + id: "qpi4nN8Wkvl" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "q9wZgtaDxWn" + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [], + legendSets: [] + } + ], + categoryCombos: [ + { + code: "CC_BU_Category", + created: "2016-04-06T00:52:18.593", + lastUpdated: "2020-10-30T16:12:08.683", + name: "CC Category (BU)", + id: "MeoSuM1SQ1f", + dataDimensionType: "DISAGGREGATION", + publicAccess: "--------", + skipTotal: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "q9wZgtaDxWn" + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + } + ], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + categories: [ + { + id: "RchPsJmL2wA" + } + ] + }, + { + code: "CC_Gender", + created: "2016-04-11T06:05:55.442", + lastUpdated: "2021-05-04T11:59:49.283", + name: "CC Gender", + id: "VygZ6pni0XS", + dataDimensionType: "DISAGGREGATION", + publicAccess: "--------", + skipTotal: false, + lastUpdatedBy: { + id: "H4atNsEuKxP" + }, + user: { + id: "H4atNsEuKxP" + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "QUaeS1tdoLx", + displayName: "SS_NTD_LSH_AggrDataSimple_Entry", + id: "QUaeS1tdoLx" + }, + { + access: "r-------", + userGroupUid: "JusJWdDa1LM", + displayName: "SS_NTD_SBE_AggData_Entry", + id: "JusJWdDa1LM" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "H4YpPpQeKQR", + displayName: "SS_NTD_SBE_AggData_View", + id: "H4YpPpQeKQR" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo" + } + ], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + categories: [ + { + id: "gvZZplg7PkY" + } + ] + }, + { + code: "CC_AgeGroup", + created: "2016-04-06T00:52:18.593", + lastUpdated: "2021-03-16T16:47:21.664", + name: "CC Age Group", + id: "E0cSdwztY5K", + dataDimensionType: "DISAGGREGATION", + publicAccess: "--------", + skipTotal: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "q9wZgtaDxWn" + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "OBxv9dRBkM5", + displayName: "SS_NTD_SKIN_YAWS_AggData_View", + id: "OBxv9dRBkM5" + }, + { + access: "r-------", + userGroupUid: "JusJWdDa1LM", + displayName: "SS_NTD_SBE_AggData_Entry", + id: "JusJWdDa1LM" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "r-------", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "TUL6Ftyw9j6", + displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", + id: "TUL6Ftyw9j6" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "QUaeS1tdoLx", + displayName: "SS_NTD_LSH_AggrDataSimple_Entry", + id: "QUaeS1tdoLx" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "UnTaQrY57qi", + displayName: "NTD_LSH_Monthly_Importer", + id: "UnTaQrY57qi" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + }, + { + access: "r-------", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo" + } + ], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + categories: [ + { + id: "J2EQ3575tpG" + } + ] + }, + { + code: "default", + created: "2017-05-10T17:53:55.156", + lastUpdated: "2019-02-20T16:22:55.336", + name: "default", + id: "JzvGfLYkX17", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + skipTotal: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "eK26I7dRbC4" + }, + userGroupAccesses: [], + translations: [], + userAccesses: [], + categories: [ + { + id: "DMyxTSpvKOp" + } + ] + }, + { + code: "CC_AgeGroup_BU", + created: "2016-04-06T00:52:18.593", + lastUpdated: "2020-02-26T13:11:40.288", + name: "CC Age Group (BU)", + id: "rZydwxCQsc7", + dataDimensionType: "DISAGGREGATION", + publicAccess: "--------", + skipTotal: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "q9wZgtaDxWn" + }, + userGroupAccesses: [], + translations: [], + userAccesses: [], + categories: [ + { + id: "DddEdUVkG71" + } + ] + } + ], + categoryOptionCombos: [ + { + lastUpdated: "2019-08-14T08:31:54.280", + created: "2016-04-06T00:52:27.829", + name: "Under 5y", + id: "HDXcEOGT2s1", + ignoreApproval: false, + lastUpdatedBy: { + id: "ilJDyuqlwDC" + }, + categoryCombo: { + id: "E0cSdwztY5K" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "vZ0WdHAROAy" + } + ] + }, + { + lastUpdated: "2019-02-01T17:07:12.772", + created: "2017-03-13T18:09:38.688", + name: "50 y and over", + id: "g4ZnnHNE6sM", + ignoreApproval: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + categoryCombo: { + id: "rZydwxCQsc7" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "Ydd5J28bFdu" + } + ] + }, + { + lastUpdated: "2021-01-28T21:14:15.560", + created: "2016-04-06T00:52:27.834", + name: "15 y and over", + id: "vJEPLhdauF7", + ignoreApproval: false, + lastUpdatedBy: { + id: "H4atNsEuKxP" + }, + categoryCombo: { + id: "E0cSdwztY5K" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "qAeldgH4WMr" + } + ] + }, + { + lastUpdated: "2019-08-14T08:31:54.280", + created: "2016-09-13T18:48:18.724", + name: "Category unknown", + id: "Vcv8owxbxaN", + ignoreApproval: false, + lastUpdatedBy: { + id: "ilJDyuqlwDC" + }, + categoryCombo: { + id: "MeoSuM1SQ1f" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "msTyBF6xVJI" + } + ] + }, + { + lastUpdated: "2021-01-28T21:14:15.560", + created: "2016-04-06T00:52:27.836", + name: "Age Unknown", + id: "kek1YXjDq70", + ignoreApproval: false, + lastUpdatedBy: { + id: "H4atNsEuKxP" + }, + categoryCombo: { + id: "E0cSdwztY5K" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "w5ItMDKuO20" + } + ] + }, + { + lastUpdated: "2018-04-05T10:27:01.913", + created: "2018-04-05T10:27:01.913", + name: "Age Unknown", + id: "wzNLOvBy7wZ", + ignoreApproval: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + categoryCombo: { + id: "rZydwxCQsc7" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "w5ItMDKuO20" + } + ] + }, + { + lastUpdated: "2019-08-14T08:31:54.280", + created: "2016-09-13T18:48:18.729", + name: "Cat II", + id: "j5fsvsfsaJ3", + ignoreApproval: false, + lastUpdatedBy: { + id: "ilJDyuqlwDC" + }, + categoryCombo: { + id: "MeoSuM1SQ1f" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "FMJprslIeSG" + } + ] + }, + { + lastUpdated: "2019-02-01T17:07:12.772", + created: "2017-03-13T18:09:38.648", + name: "Under 5y", + id: "UZO2MsUMcgj", + ignoreApproval: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + categoryCombo: { + id: "rZydwxCQsc7" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "vZ0WdHAROAy" + } + ] + }, + { + lastUpdated: "2021-04-20T20:13:21.906", + created: "2016-04-11T06:05:55.469", + name: "Gender Unknown", + id: "jNbFhhnUsQv", + ignoreApproval: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + categoryCombo: { + id: "VygZ6pni0XS" + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "Sexe inconnu" + } + ], + attributeValues: [], + categoryOptions: [ + { + id: "NuBMsmUyzDA" + } + ] + }, + { + lastUpdated: "2021-04-20T20:13:21.906", + created: "2016-04-11T06:05:55.472", + name: "Male", + id: "Z2hvpF7mhh7", + ignoreApproval: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + categoryCombo: { + id: "VygZ6pni0XS" + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "Homme" + } + ], + attributeValues: [], + categoryOptions: [ + { + id: "qmsg1OVBqif" + } + ] + }, + { + lastUpdated: "2017-05-10T17:53:55.158", + code: "default", + created: "2017-05-10T17:53:55.157", + name: "default", + id: "Xr12mI7VPn3", + ignoreApproval: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "Y7fcspgsU43" + } + ] + }, + { + lastUpdated: "2019-08-14T08:31:54.280", + created: "2016-09-13T18:48:18.727", + name: "Cat I", + id: "rawZ86Q1W1k", + ignoreApproval: false, + lastUpdatedBy: { + id: "ilJDyuqlwDC" + }, + categoryCombo: { + id: "MeoSuM1SQ1f" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "OjTZlEq5DU6" + } + ] + }, + { + lastUpdated: "2019-08-14T08:31:54.280", + created: "2016-09-13T18:48:18.731", + name: "Cat III", + id: "c7ypRdqByt7", + ignoreApproval: false, + lastUpdatedBy: { + id: "ilJDyuqlwDC" + }, + categoryCombo: { + id: "MeoSuM1SQ1f" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "rduPRxceiXM" + } + ] + }, + { + lastUpdated: "2021-04-20T20:13:21.906", + created: "2016-04-11T06:05:55.471", + name: "Female", + id: "V2LdgcGgFQt", + ignoreApproval: false, + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + categoryCombo: { + id: "VygZ6pni0XS" + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "Femme" + } + ], + attributeValues: [], + categoryOptions: [ + { + id: "tZftZ03eewT" + } + ] + }, + { + lastUpdated: "2019-02-01T17:07:12.772", + created: "2017-03-13T18:09:38.677", + name: "15 to 49 y", + id: "AgIKhjS6s8v", + ignoreApproval: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + categoryCombo: { + id: "rZydwxCQsc7" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "ABOkZJOz8bn" + } + ] + }, + { + lastUpdated: "2021-01-28T21:14:15.560", + created: "2016-04-06T00:52:27.832", + name: "5 to 14 y", + id: "DOJartWGuff", + ignoreApproval: false, + lastUpdatedBy: { + id: "H4atNsEuKxP" + }, + categoryCombo: { + id: "E0cSdwztY5K" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "ciFLFA7AiOa" + } + ] + }, + { + lastUpdated: "2019-02-01T17:07:12.772", + created: "2017-03-13T18:09:38.666", + name: "5 to 14 y", + id: "HcDAlGa9KKf", + ignoreApproval: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + categoryCombo: { + id: "rZydwxCQsc7" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "ciFLFA7AiOa" + } + ] + } + ], + dataElements: [ + { + code: "BU_Lab_PCRconfirmation", + lastUpdated: "2021-03-23T09:13:34.048", + id: "IjrtWEc8Oei", + created: "2018-05-09T22:26:29.218", + name: "BU_Lab_PCRconfirmation", + shortName: "# PCR confirmed BU cases", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "INTEGER_ZERO_OR_POSITIVE", + formName: "Number of new BU cases confirmed by PCR", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "Nombre de cas confim\ufffds par PCR" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Cas confim\ufffds par PCR" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_Cl_Ulcer", + lastUpdated: "2020-10-30T16:12:07.989", + id: "UVEjNoZCtNQ", + created: "2018-05-09T22:26:29.218", + name: "BU_Cl_Ulcer", + shortName: "# BU cases with ulcerative lesions", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "--------", + description: "An ulcer is a painless skin lesion characterized by a necrotic center, undermined edges and oedematous skin. ", + valueType: "INTEGER_ZERO_OR_POSITIVE", + formName: "Number of new BU cases with ulcerative lesions", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "ilJDyuqlwDC" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "Nombre de cas pr\ufffdsentant un ulc\ufffdre" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Nombre de nouveaux cas d'UB presentant un ulcere au diagnostic" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "# cas d'UB presentant un ulcere" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_EPI_AnnualCases", + lastUpdated: "2021-03-23T09:13:33.879", + id: "tOpVIYrnbhk", + created: "2018-05-09T22:26:29.218", + name: "BU_EPI_AnnualCases", + shortName: "# annual new BU cases", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "--------", + description: "WHO defines a Buruli ulcer case as any person with painless nodule, papule, plaque or oedema evolving into a painless ulcer with undermined edges, often leading to invalidating sequelae in an endemic area.", + valueType: "INTEGER_ZERO_OR_POSITIVE", + formName: "Number of new BU cases diagnosed within reporting year", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Nombre annuel de cas d'ulc\ufffdre de Buruli" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "# annuel de cas d'ulcere de Buruli" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Nombre annuel de cas d'ulcere de Buruli" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: " OMS définit un cas d'ulcere de Buruli comme toute personne présentant des nodule, papule, plaque ou oedeme, sans douleur, evoluant en ulcère avec des bords minces, souvent menant à des séquelles invalidantes, dans une zone d'endémie." + }, + { + property: "NAME", + locale: "fr", + value: "UB_EPI_Cas_Annuel" + }, + { + property: "NAME", + locale: "fr", + value: "Nombre annuel de cas d'ulc\ufffdre de Buruli" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "aDYjuZk8cXT", + displayName: "WHO NTD department", + id: "aDYjuZk8cXT" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "UnTaQrY57qi", + displayName: "NTD_LSH_Monthly_Importer", + id: "UnTaQrY57qi" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_EPI_Age", + lastUpdated: "2020-10-30T16:12:07.990", + id: "mBDooPcvqRy", + created: "2018-05-09T22:26:29.218", + name: "BU_EPI_Age", + shortName: "# BU cases (by age group)", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "INTEGER_ZERO_OR_POSITIVE", + formName: "Number of new BU cases (by age group)", + zeroIsSignificant: true, + categoryCombo: { + id: "E0cSdwztY5K" + }, + lastUpdatedBy: { + id: "ilJDyuqlwDC" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Cas d'ulc\ufffdre de Buruli (par groupe d'\ufffdge)" + }, + { + property: "NAME", + locale: "fr", + value: "Nombre de cas d'ulc\ufffdre de Buruli (par groupe d'\ufffdge)" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_Tx_ABcompletion", + lastUpdated: "2020-10-30T16:12:08.486", + id: "uFKSqvGwl21", + created: "2018-05-09T22:26:29.218", + name: "BU_Tx_ABcompletion", + shortName: "# BU cases completing antibiotics treatment", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "--------", + description: "Treatment consists of a combination of antibiotics and complementary treatments (under morbidity management and disability prevention/rehabilitation). Treatment guidance for health workers can be found in the WHO publication \"Treatment of mycobacterium ulcerans disease (Buruli ulcer).\"", + valueType: "INTEGER_ZERO_OR_POSITIVE", + formName: "Number of new BU cases completing antibiotics treatment", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "ilJDyuqlwDC" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "# cas d'UB ayant acheve traitement AB" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Nombre de nouveaux cas d'UB ayant acheve le traitement antibiotique" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Patients ayant compl\ufffdt\ufffd le traitement antibiotique" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_CL_JointLim", + lastUpdated: "2020-10-30T16:12:08.198", + id: "uhG3oatUV6j", + created: "2018-05-09T22:26:29.218", + name: "BU_Cl_JointLim", + shortName: "# BU cases with joint limitation", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "INTEGER_ZERO_OR_POSITIVE", + formName: "Number of new BU cases with joint limitation at diagnosis", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "ilJDyuqlwDC" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "Nombre de cas pr\ufffdsentant une limitation articulaire au moment du diagnostique" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "# nouveaux cas d'UB avec limitation articulaire" + }, + { + property: "NAME", + locale: "fr", + value: "BU_Cl_JointLim" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Nombre de nouveaux cas d'UB presentant une limitation articulaire au diagnostic" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Cas pr\ufffdsentant une limitation articulaire au moment du diagnostique" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_Cl_Cat", + lastUpdated: "2020-10-30T16:12:08.444", + id: "OG5wWMlhrxv", + created: "2018-05-09T22:26:29.218", + name: "BU_Cl_Cat", + shortName: "# BU cases by category", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "--------", + description: "Category I: A single lesion 5cm or less / Category II: A single lesion 5-15cm / Category III: A single lesion more than 15 cm or multiple lesions or lesions at critical sites or osteomyelitis", + valueType: "INTEGER_ZERO_OR_POSITIVE", + formName: "Number of new BU cases by category", + zeroIsSignificant: true, + categoryCombo: { + id: "MeoSuM1SQ1f" + }, + lastUpdatedBy: { + id: "ilJDyuqlwDC" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Cas d'ulc\ufffdre de Buruli par cat\ufffdgorie" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "# cas d'UB par categorie" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Nombre de cas d'ulcere de Buruli par categorie" + }, + { + property: "NAME", + locale: "fr", + value: "Nombre de cas d'ulc\ufffdre de Buruli par cat\ufffdgorie" + }, + { + property: "NAME", + locale: "fr", + value: "Nombre de cas d'ulcere de Buruli par categorie" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Categori I: Une lésion unique de 5cm ou moins / Category II: Une lésion unique 5-15cm / Category III: Une lésion unique de plus de 15cm ou plusieurs lésions ou lesions à un site critique ou osteomyelite." + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_EPI_Gender", + lastUpdated: "2020-10-30T16:12:08.461", + id: "zqv3IsyTYta", + created: "2018-05-09T22:26:29.218", + name: "BU_EPI_Gender", + shortName: "# BU cases (by gender)", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "INTEGER_ZERO_OR_POSITIVE", + formName: "Number of new BU cases (by gender)", + zeroIsSignificant: true, + categoryCombo: { + id: "VygZ6pni0XS" + }, + lastUpdatedBy: { + id: "ilJDyuqlwDC" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Nombre de nouveaux cas d'UB par sexe" + }, + { + property: "NAME", + locale: "fr", + value: "Nombre de cas d'ulc\ufffdre de Buruli (par genre)" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Cas d'ulc\ufffdre de Buruli (par genre)" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "# cas d'UB par sexe" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + } + ], + categoryOptions: [ + { + code: "default", + created: "2017-05-10T17:53:55.138", + lastUpdated: "2018-07-27T16:09:07.425", + name: "default", + id: "Y7fcspgsU43", + shortName: "default", + publicAccess: "rwrw----", + user: { + id: "eK26I7dRbC4" + }, + userGroupAccesses: [], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [] + }, + { + code: "Op_Age_5-14y", + created: "2016-03-29T21:07:01.747", + lastUpdated: "2021-04-23T17:05:15.200", + name: "5 to 14 y", + id: "ciFLFA7AiOa", + shortName: "5 to 14 y", + publicAccess: "--------", + lastUpdatedBy: { + id: "ilJDyuqlwDC" + }, + user: { + id: "H4atNsEuKxP" + }, + userGroupAccesses: [ + { + access: "r-rw----", + userGroupUid: "Mg0TXhvvXJ4", + displayName: "SS_NTD_RAB_AggData_Entry", + id: "Mg0TXhvvXJ4" + }, + { + access: "r-rw----", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "rwrw----", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-rw----", + userGroupUid: "JusJWdDa1LM", + displayName: "SS_NTD_SBE_AggData_Entry", + id: "JusJWdDa1LM" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "r-r-----", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-rw----", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-r-----", + userGroupUid: "H4YpPpQeKQR", + displayName: "SS_NTD_SBE_AggData_View", + id: "H4YpPpQeKQR" + }, + { + access: "r-------", + userGroupUid: "TUL6Ftyw9j6", + displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", + id: "TUL6Ftyw9j6" + }, + { + access: "r-r-----", + userGroupUid: "B6oADCiiW8v", + displayName: "SS_NTD_RAB_AggData_View", + id: "B6oADCiiW8v" + }, + { + access: "r-rw----", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-rw----", + userGroupUid: "PCa3h9xXkLN", + displayName: "SS_NTD_RAB_AggData_Retro_Entry", + id: "PCa3h9xXkLN" + }, + { + access: "rwrw----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "OBxv9dRBkM5", + displayName: "SS_NTD_SKIN_YAWS_AggData_View", + id: "OBxv9dRBkM5" + }, + { + access: "r-------", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA" + }, + { + access: "r-r-----", + userGroupUid: "PthCrHajHLi", + displayName: "SS_NTD_RAB_AggData_Retro_View", + id: "PthCrHajHLi" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-rw----", + userGroupUid: "QUaeS1tdoLx", + displayName: "SS_NTD_LSH_AggrDataSimple_Entry", + id: "QUaeS1tdoLx" + }, + { + access: "r-rw----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "UnTaQrY57qi", + displayName: "NTD_LSH_Monthly_Importer", + id: "UnTaQrY57qi" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-r-----", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + }, + { + access: "rwr-----", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-r-----", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL" + } + ], + attributeValues: [], + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "5 à 14 ans" + }, + { + property: "NAME", + locale: "fr", + value: "5 à 14 ans" + } + ], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + organisationUnits: [] + }, + { + code: "Op_BU_Cat_II", + created: "2016-06-08T09:07:56.983", + lastUpdated: "2021-03-23T09:13:32.849", + name: "Cat II", + id: "FMJprslIeSG", + shortName: "Cat II", + publicAccess: "--------", + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "q9wZgtaDxWn" + }, + userGroupAccesses: [ + { + access: "r-rw----", + userGroupUid: "Mg0TXhvvXJ4", + displayName: "SS_NTD_RAB_AggData_Entry", + id: "Mg0TXhvvXJ4" + }, + { + access: "r-rw----", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo" + }, + { + access: "r-r-----", + userGroupUid: "IPzz6wlkIp0", + displayName: "NTD_SKIN_MYC_HQ", + id: "IPzz6wlkIp0" + }, + { + access: "rwrw----", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-r-----", + userGroupUid: "LCs79RaVi0a", + displayName: "SS_NTD_LSH_SUPPLY_MonthlyStock_Entry", + id: "LCs79RaVi0a" + }, + { + access: "rw------", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA" + }, + { + access: "r-r-----", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-r-----", + userGroupUid: "TNA9oGI43e4", + displayName: "NTD_LSH_EURO_ARM", + id: "TNA9oGI43e4" + }, + { + access: "r-rw----", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-r-----", + userGroupUid: "K40P7b1JFdc", + displayName: "NTD_EMRO", + id: "K40P7b1JFdc" + }, + { + access: "r-------", + userGroupUid: "VONeiGGohxr", + displayName: "NTD_RAB_Other", + id: "VONeiGGohxr" + }, + { + access: "r-r-----", + userGroupUid: "B6oADCiiW8v", + displayName: "SS_NTD_RAB_AggData_View", + id: "B6oADCiiW8v" + }, + { + access: "r-rw----", + userGroupUid: "TUL6Ftyw9j6", + displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", + id: "TUL6Ftyw9j6" + }, + { + access: "r-rw----", + userGroupUid: "PCa3h9xXkLN", + displayName: "SS_NTD_RAB_AggData_Retro_Entry", + id: "PCa3h9xXkLN" + }, + { + access: "r-rw----", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-r-----", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-r-----", + userGroupUid: "phezIKUxlC2", + displayName: "NTD_LSH_EMRO_SOM", + id: "phezIKUxlC2" + }, + { + access: "rwrw----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-r-----", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4" + }, + { + access: "r-r-----", + userGroupUid: "j3RfLgyvhbd", + displayName: "NTD_LSH_Country", + id: "j3RfLgyvhbd" + }, + { + access: "r-r-----", + userGroupUid: "orn5lTGFMve", + displayName: "NTD_LSH_Public", + id: "orn5lTGFMve" + }, + { + access: "r-r-----", + userGroupUid: "PthCrHajHLi", + displayName: "SS_NTD_RAB_AggData_Retro_View", + id: "PthCrHajHLi" + }, + { + access: "r-------", + userGroupUid: "pbZna7luFaM", + displayName: "NTD_RAB_OIE", + id: "pbZna7luFaM" + }, + { + access: "r-------", + userGroupUid: "Zr1fdsbkiAR", + displayName: "NTD_RAB_Official", + id: "Zr1fdsbkiAR" + }, + { + access: "r-r-----", + userGroupUid: "aDYjuZk8cXT", + displayName: "WHO NTD department", + id: "aDYjuZk8cXT" + }, + { + access: "rwr-----", + userGroupUid: "BMxt1NZML9e", + displayName: "NTD_LSH_SUPPLY_HQ", + id: "BMxt1NZML9e" + }, + { + access: "r-rw----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "K7VPSVrAYeV", + displayName: "NTD_RAB_Estimates", + id: "K7VPSVrAYeV" + }, + { + access: "r-r-----", + userGroupUid: "QUaeS1tdoLx", + displayName: "SS_NTD_LSH_AggrDataSimple_Entry", + id: "QUaeS1tdoLx" + }, + { + access: "r-rw----", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rwr-----", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK" + }, + { + access: "r-r-----", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-rw----", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "rwr-----", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-r-----", + userGroupUid: "MYa3lh5k0Yq", + displayName: "NTD_LSH_SUPPLY_HQPublished", + id: "MYa3lh5k0Yq" + }, + { + access: "r-r-----", + userGroupUid: "Fs9vCVCHjlE", + displayName: "NTD_LSH_Demo", + id: "Fs9vCVCHjlE" + }, + { + access: "r-r-----", + userGroupUid: "CoxTaSDd4Bz", + displayName: "NTD_Skin_AFRO_GHA", + id: "CoxTaSDd4Bz" + }, + { + access: "rwr-----", + userGroupUid: "I95k8bm5q5J", + displayName: "SS_NTD_LSH_SUPPLY_DispatchHQ_Entry", + id: "I95k8bm5q5J" + }, + { + access: "r-r-----", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL" + } + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + organisationUnits: [] + }, + { + code: "ALL_Op_Gender_Male", + created: "2016-03-29T21:07:01.529", + lastUpdated: "2021-04-20T20:13:21.844", + name: "Male", + id: "qmsg1OVBqif", + shortName: "Male", + publicAccess: "r-rw----", + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "H4atNsEuKxP" + }, + userGroupAccesses: [ + { + access: "r-rw----", + userGroupUid: "JusJWdDa1LM", + displayName: "SS_NTD_SBE_AggData_Entry", + id: "JusJWdDa1LM" + } + ], + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Homme" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Homme" + } + ], + userAccesses: [], + organisationUnits: [] + }, + { + code: "Op_Age_15over", + created: "2016-03-29T21:07:01.799", + lastUpdated: "2021-04-23T16:22:14.659", + name: "15 y and over", + id: "qAeldgH4WMr", + shortName: "15 y and over", + publicAccess: "--------", + lastUpdatedBy: { + id: "ilJDyuqlwDC" + }, + user: { + id: "H4atNsEuKxP" + }, + userGroupAccesses: [ + { + access: "r-rw----", + userGroupUid: "Mg0TXhvvXJ4", + displayName: "SS_NTD_RAB_AggData_Entry", + id: "Mg0TXhvvXJ4" + }, + { + access: "r-rw----", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "rwrw----", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-r-----", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "r-rw----", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "TUL6Ftyw9j6", + displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", + id: "TUL6Ftyw9j6" + }, + { + access: "r-r-----", + userGroupUid: "B6oADCiiW8v", + displayName: "SS_NTD_RAB_AggData_View", + id: "B6oADCiiW8v" + }, + { + access: "r-rw----", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-rw----", + userGroupUid: "PCa3h9xXkLN", + displayName: "SS_NTD_RAB_AggData_Retro_Entry", + id: "PCa3h9xXkLN" + }, + { + access: "rwrw----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "OBxv9dRBkM5", + displayName: "SS_NTD_SKIN_YAWS_AggData_View", + id: "OBxv9dRBkM5" + }, + { + access: "r-------", + userGroupUid: "JusJWdDa1LM", + displayName: "SS_NTD_SBE_AggData_Entry", + id: "JusJWdDa1LM" + }, + { + access: "r-------", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA" + }, + { + access: "r-r-----", + userGroupUid: "PthCrHajHLi", + displayName: "SS_NTD_RAB_AggData_Retro_View", + id: "PthCrHajHLi" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-rw----", + userGroupUid: "QUaeS1tdoLx", + displayName: "SS_NTD_LSH_AggrDataSimple_Entry", + id: "QUaeS1tdoLx" + }, + { + access: "r-rw----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "UnTaQrY57qi", + displayName: "NTD_LSH_Monthly_Importer", + id: "UnTaQrY57qi" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-r-----", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + }, + { + access: "rwr-----", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-r-----", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL" + } + ], + attributeValues: [], + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "15 ans +" + }, + { + property: "NAME", + locale: "fr", + value: "15 ans et plus" + } + ], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + organisationUnits: [] + }, + { + code: "ALL_Op_Gender_Female", + created: "2016-03-29T21:07:01.625", + lastUpdated: "2021-04-20T20:13:21.844", + name: "Female", + id: "tZftZ03eewT", + shortName: "Female", + publicAccess: "r-rw----", + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "H4atNsEuKxP" + }, + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA" + }, + { + access: "r-rw----", + userGroupUid: "JusJWdDa1LM", + displayName: "SS_NTD_SBE_AggData_Entry", + id: "JusJWdDa1LM" + }, + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-r-----", + userGroupUid: "H4YpPpQeKQR", + displayName: "SS_NTD_SBE_AggData_View", + id: "H4YpPpQeKQR" + } + ], + attributeValues: [], + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Femme" + }, + { + property: "NAME", + locale: "fr", + value: "Femme" + } + ], + userAccesses: [], + organisationUnits: [] + }, + { + code: "Op_Age_15-49y", + created: "2016-03-29T21:07:01.747", + lastUpdated: "2021-03-04T11:52:29.418", + name: "15 to 49 y", + id: "ABOkZJOz8bn", + shortName: "15 to 49 y", + publicAccess: "--------", + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "q9wZgtaDxWn" + }, + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA" + }, + { + access: "r-rw----", + userGroupUid: "JusJWdDa1LM", + displayName: "SS_NTD_SBE_AggData_Entry", + id: "JusJWdDa1LM" + }, + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-r-----", + userGroupUid: "H4YpPpQeKQR", + displayName: "SS_NTD_SBE_AggData_View", + id: "H4YpPpQeKQR" + } + ], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [] + }, + { + code: "Op_Age_50over", + created: "2016-03-29T21:07:01.799", + lastUpdated: "2019-02-01T17:07:10.547", + name: "50 y and over", + id: "Ydd5J28bFdu", + shortName: "50 y and over", + publicAccess: "--------", + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "q9wZgtaDxWn" + }, + userGroupAccesses: [], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [] + }, + { + code: "Op_BU_Cat_I", + created: "2016-06-08T09:07:56.820", + lastUpdated: "2021-03-23T09:13:32.957", + name: "Cat I", + id: "OjTZlEq5DU6", + shortName: "Cat I", + publicAccess: "--------", + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "q9wZgtaDxWn" + }, + userGroupAccesses: [ + { + access: "r-rw----", + userGroupUid: "Mg0TXhvvXJ4", + displayName: "SS_NTD_RAB_AggData_Entry", + id: "Mg0TXhvvXJ4" + }, + { + access: "r-rw----", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo" + }, + { + access: "rwrw----", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-r-----", + userGroupUid: "IPzz6wlkIp0", + displayName: "NTD_SKIN_MYC_HQ", + id: "IPzz6wlkIp0" + }, + { + access: "r-r-----", + userGroupUid: "LCs79RaVi0a", + displayName: "SS_NTD_LSH_SUPPLY_MonthlyStock_Entry", + id: "LCs79RaVi0a" + }, + { + access: "rw------", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA" + }, + { + access: "r-r-----", + userGroupUid: "TNA9oGI43e4", + displayName: "NTD_LSH_EURO_ARM", + id: "TNA9oGI43e4" + }, + { + access: "r-r-----", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-rw----", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-r-----", + userGroupUid: "K40P7b1JFdc", + displayName: "NTD_EMRO", + id: "K40P7b1JFdc" + }, + { + access: "r-------", + userGroupUid: "VONeiGGohxr", + displayName: "NTD_RAB_Other", + id: "VONeiGGohxr" + }, + { + access: "r-r-----", + userGroupUid: "B6oADCiiW8v", + displayName: "SS_NTD_RAB_AggData_View", + id: "B6oADCiiW8v" + }, + { + access: "r-rw----", + userGroupUid: "TUL6Ftyw9j6", + displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", + id: "TUL6Ftyw9j6" + }, + { + access: "r-rw----", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-rw----", + userGroupUid: "PCa3h9xXkLN", + displayName: "SS_NTD_RAB_AggData_Retro_Entry", + id: "PCa3h9xXkLN" + }, + { + access: "r-r-----", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-r-----", + userGroupUid: "phezIKUxlC2", + displayName: "NTD_LSH_EMRO_SOM", + id: "phezIKUxlC2" + }, + { + access: "rwrw----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-r-----", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4" + }, + { + access: "r-r-----", + userGroupUid: "j3RfLgyvhbd", + displayName: "NTD_LSH_Country", + id: "j3RfLgyvhbd" + }, + { + access: "r-r-----", + userGroupUid: "orn5lTGFMve", + displayName: "NTD_LSH_Public", + id: "orn5lTGFMve" + }, + { + access: "r-r-----", + userGroupUid: "PthCrHajHLi", + displayName: "SS_NTD_RAB_AggData_Retro_View", + id: "PthCrHajHLi" + }, + { + access: "r-------", + userGroupUid: "pbZna7luFaM", + displayName: "NTD_RAB_OIE", + id: "pbZna7luFaM" + }, + { + access: "r-------", + userGroupUid: "Zr1fdsbkiAR", + displayName: "NTD_RAB_Official", + id: "Zr1fdsbkiAR" + }, + { + access: "r-r-----", + userGroupUid: "aDYjuZk8cXT", + displayName: "WHO NTD department", + id: "aDYjuZk8cXT" + }, + { + access: "rwr-----", + userGroupUid: "BMxt1NZML9e", + displayName: "NTD_LSH_SUPPLY_HQ", + id: "BMxt1NZML9e" + }, + { + access: "r-rw----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-r-----", + userGroupUid: "QUaeS1tdoLx", + displayName: "SS_NTD_LSH_AggrDataSimple_Entry", + id: "QUaeS1tdoLx" + }, + { + access: "r-------", + userGroupUid: "K7VPSVrAYeV", + displayName: "NTD_RAB_Estimates", + id: "K7VPSVrAYeV" + }, + { + access: "r-rw----", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rwr-----", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK" + }, + { + access: "r-r-----", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-rw----", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "r-r-----", + userGroupUid: "MYa3lh5k0Yq", + displayName: "NTD_LSH_SUPPLY_HQPublished", + id: "MYa3lh5k0Yq" + }, + { + access: "rwr-----", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-r-----", + userGroupUid: "Fs9vCVCHjlE", + displayName: "NTD_LSH_Demo", + id: "Fs9vCVCHjlE" + }, + { + access: "r-r-----", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL" + }, + { + access: "rwr-----", + userGroupUid: "I95k8bm5q5J", + displayName: "SS_NTD_LSH_SUPPLY_DispatchHQ_Entry", + id: "I95k8bm5q5J" + }, + { + access: "r-r-----", + userGroupUid: "CoxTaSDd4Bz", + displayName: "NTD_Skin_AFRO_GHA", + id: "CoxTaSDd4Bz" + } + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + organisationUnits: [] + }, + { + code: "Op_Age_unknown", + created: "2016-03-29T21:07:01.840", + lastUpdated: "2021-04-23T16:32:11.880", + name: "Age Unknown", + id: "w5ItMDKuO20", + shortName: "Age Unknwon", + publicAccess: "--------", + lastUpdatedBy: { + id: "ilJDyuqlwDC" + }, + user: { + id: "H4atNsEuKxP" + }, + userGroupAccesses: [ + { + access: "r-rw----", + userGroupUid: "Mg0TXhvvXJ4", + displayName: "SS_NTD_RAB_AggData_Entry", + id: "Mg0TXhvvXJ4" + }, + { + access: "r-rw----", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "rwrw----", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-r-----", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "r-rw----", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-r-----", + userGroupUid: "H4YpPpQeKQR", + displayName: "SS_NTD_SBE_AggData_View", + id: "H4YpPpQeKQR" + }, + { + access: "r-------", + userGroupUid: "TUL6Ftyw9j6", + displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", + id: "TUL6Ftyw9j6" + }, + { + access: "r-r-----", + userGroupUid: "B6oADCiiW8v", + displayName: "SS_NTD_RAB_AggData_View", + id: "B6oADCiiW8v" + }, + { + access: "r-rw----", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-rw----", + userGroupUid: "PCa3h9xXkLN", + displayName: "SS_NTD_RAB_AggData_Retro_Entry", + id: "PCa3h9xXkLN" + }, + { + access: "rwrw----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "OBxv9dRBkM5", + displayName: "SS_NTD_SKIN_YAWS_AggData_View", + id: "OBxv9dRBkM5" + }, + { + access: "r-------", + userGroupUid: "JusJWdDa1LM", + displayName: "SS_NTD_SBE_AggData_Entry", + id: "JusJWdDa1LM" + }, + { + access: "r-------", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA" + }, + { + access: "r-r-----", + userGroupUid: "PthCrHajHLi", + displayName: "SS_NTD_RAB_AggData_Retro_View", + id: "PthCrHajHLi" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-rw----", + userGroupUid: "QUaeS1tdoLx", + displayName: "SS_NTD_LSH_AggrDataSimple_Entry", + id: "QUaeS1tdoLx" + }, + { + access: "r-rw----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "UnTaQrY57qi", + displayName: "NTD_LSH_Monthly_Importer", + id: "UnTaQrY57qi" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-r-----", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + }, + { + access: "rwr-----", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-r-----", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL" + } + ], + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Age inconnu" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Age inconnu" + } + ], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + organisationUnits: [] + }, + { + code: "Op_Age_under5", + created: "2016-03-29T21:07:01.700", + lastUpdated: "2021-04-26T09:09:26.820", + name: "Under 5y", + id: "vZ0WdHAROAy", + shortName: "Under 5y", + publicAccess: "--------", + lastUpdatedBy: { + id: "ilJDyuqlwDC" + }, + user: { + id: "H4atNsEuKxP" + }, + userGroupAccesses: [ + { + access: "r-rw----", + userGroupUid: "Mg0TXhvvXJ4", + displayName: "SS_NTD_RAB_AggData_Entry", + id: "Mg0TXhvvXJ4" + }, + { + access: "r-rw----", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo" + }, + { + access: "rwrw----", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "r-r-----", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "r-rw----", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "TUL6Ftyw9j6", + displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", + id: "TUL6Ftyw9j6" + }, + { + access: "r-r-----", + userGroupUid: "B6oADCiiW8v", + displayName: "SS_NTD_RAB_AggData_View", + id: "B6oADCiiW8v" + }, + { + access: "r-rw----", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-rw----", + userGroupUid: "PCa3h9xXkLN", + displayName: "SS_NTD_RAB_AggData_Retro_Entry", + id: "PCa3h9xXkLN" + }, + { + access: "rwrw----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "OBxv9dRBkM5", + displayName: "SS_NTD_SKIN_YAWS_AggData_View", + id: "OBxv9dRBkM5" + }, + { + access: "r-------", + userGroupUid: "JusJWdDa1LM", + displayName: "SS_NTD_SBE_AggData_Entry", + id: "JusJWdDa1LM" + }, + { + access: "r-------", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA" + }, + { + access: "r-r-----", + userGroupUid: "PthCrHajHLi", + displayName: "SS_NTD_RAB_AggData_Retro_View", + id: "PthCrHajHLi" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-rw----", + userGroupUid: "QUaeS1tdoLx", + displayName: "SS_NTD_LSH_AggrDataSimple_Entry", + id: "QUaeS1tdoLx" + }, + { + access: "r-rw----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "UnTaQrY57qi", + displayName: "NTD_LSH_Monthly_Importer", + id: "UnTaQrY57qi" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-r-----", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + }, + { + access: "rwr-----", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-r-----", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL" + } + ], + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Moins de 5 ans" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "< 5 ans" + } + ], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + organisationUnits: [] + }, + { + code: "Op_BU_Cat_unknown", + created: "2016-09-13T18:45:25.739", + lastUpdated: "2021-04-09T10:02:51.970", + name: "Category unknown", + id: "msTyBF6xVJI", + shortName: "Category unknown", + publicAccess: "--------", + lastUpdatedBy: { + id: "ilJDyuqlwDC" + }, + user: { + id: "q9wZgtaDxWn" + }, + userGroupAccesses: [ + { + access: "r-rw----", + userGroupUid: "Mg0TXhvvXJ4", + displayName: "SS_NTD_RAB_AggData_Entry", + id: "Mg0TXhvvXJ4" + }, + { + access: "r-rw----", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo" + }, + { + access: "rwrw----", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-r-----", + userGroupUid: "IPzz6wlkIp0", + displayName: "NTD_SKIN_MYC_HQ", + id: "IPzz6wlkIp0" + }, + { + access: "r-r-----", + userGroupUid: "LCs79RaVi0a", + displayName: "SS_NTD_LSH_SUPPLY_MonthlyStock_Entry", + id: "LCs79RaVi0a" + }, + { + access: "rw------", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA" + }, + { + access: "r-r-----", + userGroupUid: "TNA9oGI43e4", + displayName: "NTD_LSH_EURO_ARM", + id: "TNA9oGI43e4" + }, + { + access: "r-r-----", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-rw----", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-r-----", + userGroupUid: "K40P7b1JFdc", + displayName: "NTD_EMRO", + id: "K40P7b1JFdc" + }, + { + access: "r-------", + userGroupUid: "VONeiGGohxr", + displayName: "NTD_RAB_Other", + id: "VONeiGGohxr" + }, + { + access: "r-r-----", + userGroupUid: "B6oADCiiW8v", + displayName: "SS_NTD_RAB_AggData_View", + id: "B6oADCiiW8v" + }, + { + access: "r-rw----", + userGroupUid: "TUL6Ftyw9j6", + displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", + id: "TUL6Ftyw9j6" + }, + { + access: "r-rw----", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-rw----", + userGroupUid: "PCa3h9xXkLN", + displayName: "SS_NTD_RAB_AggData_Retro_Entry", + id: "PCa3h9xXkLN" + }, + { + access: "r-r-----", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-r-----", + userGroupUid: "phezIKUxlC2", + displayName: "NTD_LSH_EMRO_SOM", + id: "phezIKUxlC2" + }, + { + access: "rwrw----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-r-----", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4" + }, + { + access: "r-r-----", + userGroupUid: "j3RfLgyvhbd", + displayName: "NTD_LSH_Country", + id: "j3RfLgyvhbd" + }, + { + access: "r-r-----", + userGroupUid: "orn5lTGFMve", + displayName: "NTD_LSH_Public", + id: "orn5lTGFMve" + }, + { + access: "r-r-----", + userGroupUid: "PthCrHajHLi", + displayName: "SS_NTD_RAB_AggData_Retro_View", + id: "PthCrHajHLi" + }, + { + access: "r-------", + userGroupUid: "pbZna7luFaM", + displayName: "NTD_RAB_OIE", + id: "pbZna7luFaM" + }, + { + access: "r-------", + userGroupUid: "Zr1fdsbkiAR", + displayName: "NTD_RAB_Official", + id: "Zr1fdsbkiAR" + }, + { + access: "r-r-----", + userGroupUid: "aDYjuZk8cXT", + displayName: "WHO NTD department", + id: "aDYjuZk8cXT" + }, + { + access: "rwr-----", + userGroupUid: "BMxt1NZML9e", + displayName: "NTD_LSH_SUPPLY_HQ", + id: "BMxt1NZML9e" + }, + { + access: "r-rw----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-r-----", + userGroupUid: "QUaeS1tdoLx", + displayName: "SS_NTD_LSH_AggrDataSimple_Entry", + id: "QUaeS1tdoLx" + }, + { + access: "r-------", + userGroupUid: "K7VPSVrAYeV", + displayName: "NTD_RAB_Estimates", + id: "K7VPSVrAYeV" + }, + { + access: "r-rw----", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rwr-----", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK" + }, + { + access: "r-r-----", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-rw----", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "r-r-----", + userGroupUid: "MYa3lh5k0Yq", + displayName: "NTD_LSH_SUPPLY_HQPublished", + id: "MYa3lh5k0Yq" + }, + { + access: "rwr-----", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-r-----", + userGroupUid: "Fs9vCVCHjlE", + displayName: "NTD_LSH_Demo", + id: "Fs9vCVCHjlE" + }, + { + access: "r-r-----", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL" + }, + { + access: "rwr-----", + userGroupUid: "I95k8bm5q5J", + displayName: "SS_NTD_LSH_SUPPLY_DispatchHQ_Entry", + id: "I95k8bm5q5J" + }, + { + access: "r-r-----", + userGroupUid: "CoxTaSDd4Bz", + displayName: "NTD_Skin_AFRO_GHA", + id: "CoxTaSDd4Bz" + } + ], + attributeValues: [], + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Catégorie inconnue" + }, + { + property: "NAME", + locale: "fr", + value: "Catégorie inconnue" + } + ], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + organisationUnits: [] + }, + { + code: "Op_BU_Cat_III", + created: "2016-06-08T09:07:57.152", + lastUpdated: "2021-03-23T09:13:33.669", + name: "Cat III", + id: "rduPRxceiXM", + shortName: "Cat III", + publicAccess: "--------", + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "q9wZgtaDxWn" + }, + userGroupAccesses: [ + { + access: "r-rw----", + userGroupUid: "Mg0TXhvvXJ4", + displayName: "SS_NTD_RAB_AggData_Entry", + id: "Mg0TXhvvXJ4" + }, + { + access: "r-rw----", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo" + }, + { + access: "r-r-----", + userGroupUid: "IPzz6wlkIp0", + displayName: "NTD_SKIN_MYC_HQ", + id: "IPzz6wlkIp0" + }, + { + access: "rwrw----", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-r-----", + userGroupUid: "LCs79RaVi0a", + displayName: "SS_NTD_LSH_SUPPLY_MonthlyStock_Entry", + id: "LCs79RaVi0a" + }, + { + access: "rw------", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA" + }, + { + access: "r-r-----", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-r-----", + userGroupUid: "TNA9oGI43e4", + displayName: "NTD_LSH_EURO_ARM", + id: "TNA9oGI43e4" + }, + { + access: "r-rw----", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-r-----", + userGroupUid: "K40P7b1JFdc", + displayName: "NTD_EMRO", + id: "K40P7b1JFdc" + }, + { + access: "r-------", + userGroupUid: "VONeiGGohxr", + displayName: "NTD_RAB_Other", + id: "VONeiGGohxr" + }, + { + access: "r-r-----", + userGroupUid: "B6oADCiiW8v", + displayName: "SS_NTD_RAB_AggData_View", + id: "B6oADCiiW8v" + }, + { + access: "r-rw----", + userGroupUid: "TUL6Ftyw9j6", + displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", + id: "TUL6Ftyw9j6" + }, + { + access: "r-rw----", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-rw----", + userGroupUid: "PCa3h9xXkLN", + displayName: "SS_NTD_RAB_AggData_Retro_Entry", + id: "PCa3h9xXkLN" + }, + { + access: "r-r-----", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-r-----", + userGroupUid: "phezIKUxlC2", + displayName: "NTD_LSH_EMRO_SOM", + id: "phezIKUxlC2" + }, + { + access: "rwrw----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-r-----", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4" + }, + { + access: "r-r-----", + userGroupUid: "j3RfLgyvhbd", + displayName: "NTD_LSH_Country", + id: "j3RfLgyvhbd" + }, + { + access: "r-r-----", + userGroupUid: "orn5lTGFMve", + displayName: "NTD_LSH_Public", + id: "orn5lTGFMve" + }, + { + access: "r-r-----", + userGroupUid: "PthCrHajHLi", + displayName: "SS_NTD_RAB_AggData_Retro_View", + id: "PthCrHajHLi" + }, + { + access: "r-------", + userGroupUid: "pbZna7luFaM", + displayName: "NTD_RAB_OIE", + id: "pbZna7luFaM" + }, + { + access: "r-------", + userGroupUid: "Zr1fdsbkiAR", + displayName: "NTD_RAB_Official", + id: "Zr1fdsbkiAR" + }, + { + access: "r-r-----", + userGroupUid: "aDYjuZk8cXT", + displayName: "WHO NTD department", + id: "aDYjuZk8cXT" + }, + { + access: "rwr-----", + userGroupUid: "BMxt1NZML9e", + displayName: "NTD_LSH_SUPPLY_HQ", + id: "BMxt1NZML9e" + }, + { + access: "r-rw----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-r-----", + userGroupUid: "QUaeS1tdoLx", + displayName: "SS_NTD_LSH_AggrDataSimple_Entry", + id: "QUaeS1tdoLx" + }, + { + access: "r-------", + userGroupUid: "K7VPSVrAYeV", + displayName: "NTD_RAB_Estimates", + id: "K7VPSVrAYeV" + }, + { + access: "r-rw----", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rwr-----", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK" + }, + { + access: "r-r-----", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-rw----", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "rwr-----", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-r-----", + userGroupUid: "Fs9vCVCHjlE", + displayName: "NTD_LSH_Demo", + id: "Fs9vCVCHjlE" + }, + { + access: "r-r-----", + userGroupUid: "MYa3lh5k0Yq", + displayName: "NTD_LSH_SUPPLY_HQPublished", + id: "MYa3lh5k0Yq" + }, + { + access: "r-r-----", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL" + }, + { + access: "rwr-----", + userGroupUid: "I95k8bm5q5J", + displayName: "SS_NTD_LSH_SUPPLY_DispatchHQ_Entry", + id: "I95k8bm5q5J" + }, + { + access: "r-r-----", + userGroupUid: "CoxTaSDd4Bz", + displayName: "NTD_Skin_AFRO_GHA", + id: "CoxTaSDd4Bz" + } + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + organisationUnits: [] + }, + { + code: "ALL_Gender_9", + created: "2016-03-29T21:07:01.664", + lastUpdated: "2021-04-20T20:13:21.844", + name: "Gender Unknown", + id: "NuBMsmUyzDA", + shortName: "Gender Unknown", + publicAccess: "r-rw----", + lastUpdatedBy: { + id: "kD52FGwJgDF" + }, + user: { + id: "H4atNsEuKxP" + }, + userGroupAccesses: [], + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Sexe inconnu" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Sexe inconnu" + } + ], + userAccesses: [], + organisationUnits: [] + } + ], + categories: [ + { + code: "Cat_AgeGroup_BU", + created: "2016-03-29T21:07:02.275", + lastUpdated: "2019-02-01T17:07:11.316", + name: "Age group (BU)", + id: "DddEdUVkG71", + dataDimensionType: "DISAGGREGATION", + publicAccess: "--------", + dataDimension: true, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "q9wZgtaDxWn" + }, + userGroupAccesses: [], + attributeValues: [], + translations: [], + userAccesses: [], + categoryOptions: [ + { + id: "vZ0WdHAROAy" + }, + { + id: "ciFLFA7AiOa" + }, + { + id: "ABOkZJOz8bn" + }, + { + id: "Ydd5J28bFdu" + }, + { + id: "w5ItMDKuO20" + } + ] + }, + { + code: "ALL_Gender", + created: "2016-03-29T21:07:02.329", + lastUpdated: "2021-01-28T21:14:15.503", + name: "Gender", + id: "gvZZplg7PkY", + dataDimensionType: "DISAGGREGATION", + publicAccess: "r-------", + dataDimension: true, + lastUpdatedBy: { + id: "H4atNsEuKxP" + }, + user: { + id: "H4atNsEuKxP" + }, + userGroupAccesses: [], + attributeValues: [], + translations: [], + userAccesses: [], + categoryOptions: [ + { + id: "qmsg1OVBqif" + }, + { + id: "tZftZ03eewT" + }, + { + id: "NuBMsmUyzDA" + } + ] + }, + { + code: "Category (BU)", + created: "2016-09-13T18:48:07.977", + lastUpdated: "2021-03-23T09:13:34.345", + name: "Category (BU)", + id: "RchPsJmL2wA", + dataDimensionType: "DISAGGREGATION", + publicAccess: "--------", + dataDimension: true, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "q9wZgtaDxWn" + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + } + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + categoryOptions: [ + { + id: "msTyBF6xVJI" + }, + { + id: "OjTZlEq5DU6" + }, + { + id: "FMJprslIeSG" + }, + { + id: "rduPRxceiXM" + } + ] + }, + { + code: "Age group", + created: "2016-03-29T21:07:02.275", + lastUpdated: "2021-03-23T09:13:34.601", + name: "Age group", + id: "J2EQ3575tpG", + dataDimensionType: "DISAGGREGATION", + publicAccess: "--------", + dataDimension: true, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "q9wZgtaDxWn" + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "OBxv9dRBkM5", + displayName: "SS_NTD_SKIN_YAWS_AggData_View", + id: "OBxv9dRBkM5" + }, + { + access: "r-------", + userGroupUid: "JusJWdDa1LM", + displayName: "SS_NTD_SBE_AggData_Entry", + id: "JusJWdDa1LM" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "r-------", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "TUL6Ftyw9j6", + displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", + id: "TUL6Ftyw9j6" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "QUaeS1tdoLx", + displayName: "SS_NTD_LSH_AggrDataSimple_Entry", + id: "QUaeS1tdoLx" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "UnTaQrY57qi", + displayName: "NTD_LSH_Monthly_Importer", + id: "UnTaQrY57qi" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + }, + { + access: "r-------", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo" + } + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + categoryOptions: [ + { + id: "vZ0WdHAROAy" + }, + { + id: "ciFLFA7AiOa" + }, + { + id: "qAeldgH4WMr" + }, + { + id: "w5ItMDKuO20" + } + ] + }, + { + code: "default", + created: "2017-05-10T17:53:55.152", + lastUpdated: "2021-08-07T06:18:19.628", + name: "default", + id: "DMyxTSpvKOp", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + dataDimension: false, + user: { + id: "eK26I7dRbC4" + }, + userGroupAccesses: [], + attributeValues: [], + translations: [], + userAccesses: [], + categoryOptions: [ + { + id: "Y7fcspgsU43" + } + ] + } + ], + dataSets: [ + { + code: "DS_BU_minimum aggregated data_monthly", + lastUpdated: "2021-04-28T09:01:38.787", + id: "VqmVLwlbJLo", + created: "2018-02-02T18:27:19.493", + name: "BU_minimum aggregated data_monthly", + shortName: "BU_minimum aggregated data_monthly", + validCompleteOnly: false, + dataElementDecoration: false, + publicAccess: "--------", + notifyCompletingUser: false, + noValueRequiresComment: false, + description: "This dataset enables to capture monthly core aggregated data on suspected and confirmed Buruli ulcer cases.", + skipOffline: false, + compulsoryFieldsCompleteOnly: false, + fieldCombinationRequired: false, + renderHorizontally: false, + renderAsTabs: true, + mobile: false, + version: 3, + openPeriodsAfterCoEndDate: 0, + timelyDays: 15, + periodType: "Monthly", + openFuturePeriods: 0, + expiryDays: 0, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "q9wZgtaDxWn" + }, + dataSetElements: [ + { + dataElement: { + id: "IjrtWEc8Oei" + }, + dataSet: { + id: "VqmVLwlbJLo" + } + }, + { + dataElement: { + id: "UVEjNoZCtNQ" + }, + dataSet: { + id: "VqmVLwlbJLo" + } + }, + { + categoryCombo: { + id: "MeoSuM1SQ1f" + }, + dataElement: { + id: "OG5wWMlhrxv" + }, + dataSet: { + id: "VqmVLwlbJLo" + } + }, + { + dataElement: { + id: "uhG3oatUV6j" + }, + dataSet: { + id: "VqmVLwlbJLo" + } + }, + { + dataElement: { + id: "tOpVIYrnbhk" + }, + dataSet: { + id: "VqmVLwlbJLo" + } + }, + { + categoryCombo: { + id: "VygZ6pni0XS" + }, + dataElement: { + id: "zqv3IsyTYta" + }, + dataSet: { + id: "VqmVLwlbJLo" + } + }, + { + dataElement: { + id: "uFKSqvGwl21" + }, + dataSet: { + id: "VqmVLwlbJLo" + } + }, + { + categoryCombo: { + id: "rZydwxCQsc7" + }, + dataElement: { + id: "mBDooPcvqRy" + }, + dataSet: { + id: "VqmVLwlbJLo" + } + } + ], + compulsoryDataElementOperands: [], + translations: [], + dataInputPeriods: [], + organisationUnits: [ + { + id: "rm6NgPbM6Ld" + }, + { + id: "er7MPiN3tdH" + }, + { + id: "JI5lagoUJR4" + }, + { + id: "ovruC9wzRBW" + }, + { + id: "vkXlj7ZPkGi" + }, + { + id: "LbWpsX1FJcC" + }, + { + id: "jkyBvNzcTLl" + }, + { + id: "RUCp6OaTSAD" + }, + { + id: "BmTVMvJHVBO" + }, + { + id: "U8uqyDAu5bH" + }, + { + id: "aQJQ5mijJmH" + }, + { + id: "q23bFLr2E5D" + }, + { + id: "OzjRQLn3G24" + }, + { + id: "jVqoXv7rFns" + }, + { + id: "ZvX8lXd1tYs" + }, + { + id: "KAUSOoBq5Ft" + }, + { + id: "h7ARR5vhSLF" + }, + { + id: "dpcvWc01CeN" + } + ], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + indicators: [ + { + id: "YhT6GxOLv73" + }, + { + id: "lBRFDEaxUDi" + }, + { + id: "kCS3GHdIcQ9" + }, + { + id: "UBHvHs7yeEB" + }, + { + id: "fL136P7sU6J" + }, + { + id: "D8TeKh05msQ" + }, + { + id: "KiSlEe9D7SZ" + } + ], + userAccesses: [], + legendSets: [] + } + ], + indicatorTypes: [ + { + lastUpdated: "2021-05-28T16:24:02.018", + created: "2016-04-06T03:28:40.088", + name: "Percent", + id: "qpi4nN8Wkvl", + number: false, + factor: 100, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + translations: [] + } + ] + }, + dataset3: { + categoryCombos: [ + { + code: "default", + created: "2017-05-10T17:53:55.156", + lastUpdated: "2019-02-20T16:22:55.336", + name: "default", + id: "JzvGfLYkX17", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + skipTotal: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "eK26I7dRbC4" + }, + userGroupAccesses: [], + translations: [], + userAccesses: [], + categories: [ + { + id: "DMyxTSpvKOp" + } + ] + } + ], + categoryOptionCombos: [ + { + lastUpdated: "2017-05-10T17:53:55.158", + code: "default", + created: "2017-05-10T17:53:55.157", + name: "default", + id: "Xr12mI7VPn3", + ignoreApproval: false, + categoryCombo: { + id: "JzvGfLYkX17" + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "Y7fcspgsU43" + } + ] + } + ], + sections: [ + { + created: "2017-03-13T15:24:46.137", + lastUpdated: "2019-05-25T10:52:32.356", + name: "Gender distribution", + id: "QBA9xJy694a", + sortOrder: 3, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + dataSet: { + id: "ZO0DQJePIEH" + }, + greyedFields: [], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [ + { + id: "pjd3beNHprb" + } + ] + }, + { + created: "2017-03-13T15:27:27.788", + lastUpdated: "2019-05-25T10:52:32.357", + name: "Age distribution", + id: "yuOz1ToZ7mR", + sortOrder: 2, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + dataSet: { + id: "ZO0DQJePIEH" + }, + greyedFields: [], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [ + { + id: "hnihvm6kXLX" + } + ] + }, + { + created: "2017-03-13T15:26:11.163", + lastUpdated: "2019-05-25T10:52:32.357", + name: "Lab", + id: "gGk9TLyXQZO", + sortOrder: 6, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + dataSet: { + id: "ZO0DQJePIEH" + }, + greyedFields: [], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [ + { + id: "ijKH3KK0Etn" + } + ] + }, + { + created: "2017-03-13T15:21:34.091", + lastUpdated: "2019-05-25T10:52:32.357", + name: "Annual cases", + id: "lCu0Onx9YBZ", + sortOrder: 1, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + dataSet: { + id: "ZO0DQJePIEH" + }, + greyedFields: [], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [ + { + id: "tOpVIYrnbhk" + } + ] + }, + { + created: "2017-03-13T15:26:42.175", + lastUpdated: "2019-05-25T10:52:32.358", + name: "Treatment", + id: "VeERzaIGC16", + sortOrder: 7, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + dataSet: { + id: "ZO0DQJePIEH" + }, + greyedFields: [], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [ + { + id: "fCOiZOvhlYU" + } + ] + }, + { + created: "2017-03-13T15:25:25.396", + lastUpdated: "2019-05-25T10:52:32.358", + name: "Clinical presentation", + id: "cKWt05KOBMm", + sortOrder: 4, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + dataSet: { + id: "ZO0DQJePIEH" + }, + greyedFields: [], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [ + { + id: "AD4v3ACiiXX" + }, + { + id: "gUqE2t4L5UU" + }, + { + id: "tMY0YnV1PHQ" + } + ] + }, + { + created: "2017-03-13T15:25:48.973", + lastUpdated: "2019-05-25T10:52:32.359", + name: "Category", + id: "aEjB04cV1Wn", + sortOrder: 5, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + dataSet: { + id: "ZO0DQJePIEH" + }, + greyedFields: [], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [ + { + id: "lff6zDTvFi8" + }, + { + id: "ckHbEc6qoyV" + }, + { + id: "z2JQOIDlZUn" + } + ] + } + ], + dataElements: [ + { + code: "BU_Tx_ABcompletion_%", + lastUpdated: "2020-03-31T17:13:10.087", + id: "fCOiZOvhlYU", + created: "2017-03-12T21:49:03.996", + name: "BU_Tx_ABcompletion_%", + shortName: "% completing antibiotic treatment", + aggregationType: "AVERAGE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "PERCENTAGE", + formName: "% completing antibiotic treatment", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "eK26I7dRbC4" + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "% des patients suivant un traitement antibiotique" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "% traitement AB complété" + }, + { + property: "NAME", + locale: "fr", + value: "UB_Tx_ABcompletude_%" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_EPI_AnnualCases", + lastUpdated: "2021-03-23T09:13:33.879", + id: "tOpVIYrnbhk", + created: "2018-05-09T22:26:29.218", + name: "BU_EPI_AnnualCases", + shortName: "# annual new BU cases", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "--------", + description: "WHO defines a Buruli ulcer case as any person with painless nodule, papule, plaque or oedema evolving into a painless ulcer with undermined edges, often leading to invalidating sequelae in an endemic area.", + valueType: "INTEGER_ZERO_OR_POSITIVE", + formName: "Number of new BU cases diagnosed within reporting year", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV" + }, + user: { + id: "ilJDyuqlwDC" + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Nombre annuel de cas d'ulc\ufffdre de Buruli" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "# annuel de cas d'ulcere de Buruli" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Nombre annuel de cas d'ulcere de Buruli" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: " OMS définit un cas d'ulcere de Buruli comme toute personne présentant des nodule, papule, plaque ou oedeme, sans douleur, evoluant en ulcère avec des bords minces, souvent menant à des séquelles invalidantes, dans une zone d'endémie." + }, + { + property: "NAME", + locale: "fr", + value: "UB_EPI_Cas_Annuel" + }, + { + property: "NAME", + locale: "fr", + value: "Nombre annuel de cas d'ulc\ufffdre de Buruli" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "aDYjuZk8cXT", + displayName: "WHO NTD department", + id: "aDYjuZk8cXT" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w" + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "UnTaQrY57qi", + displayName: "NTD_LSH_Monthly_Importer", + id: "UnTaQrY57qi" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_Cl_CatIII_%", + lastUpdated: "2020-03-31T17:13:09.841", + id: "z2JQOIDlZUn", + created: "2017-03-12T21:49:03.997", + name: "BU_Cl_CatIII_%", + shortName: "% category III", + aggregationType: "AVERAGE", + domainType: "AGGREGATE", + publicAccess: "--------", + description: "Category III: A single lesion more than 15 cm or multiple lesions or lesions at critical sites or osteomyelitis", + valueType: "PERCENTAGE", + formName: "% category III", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "eK26I7dRbC4" + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "UB_Cl_CatIII_%" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Catégorie III: Une lésion unique de plus de 15 cm ou mulltiple lésions ou lésions au niveau d'un site critique ou ostéomyélite" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "% catégorie II" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "% catégorie III" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_Cl_JointLim_%", + lastUpdated: "2020-03-31T17:13:10.086", + id: "gUqE2t4L5UU", + created: "2017-03-12T21:49:03.997", + name: "BU_Cl_JointLim_%", + shortName: "% limitation of movement", + aggregationType: "AVERAGE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "PERCENTAGE", + formName: "% limitation of movement", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "eK26I7dRbC4" + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "UB_Cl_JointLim_%" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "% limitation de mouvement" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "% limitation de mouvement" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_Cl_CatII_%", + lastUpdated: "2020-03-31T17:12:59.894", + id: "ckHbEc6qoyV", + created: "2017-03-12T21:49:03.997", + name: "BU_Cl_CatII_%", + shortName: "% category II", + aggregationType: "AVERAGE", + domainType: "AGGREGATE", + publicAccess: "--------", + description: "Category II: A single lesion 5-15cm", + valueType: "PERCENTAGE", + formName: "% category II", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "eK26I7dRbC4" + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "% catégorie II" + }, + { + property: "NAME", + locale: "fr", + value: "UB_Cl_CatII_%" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "% catégorie II" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Catégorie II: Une lésion unique de 5 à 15 cm" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_EPI_U15y_%", + lastUpdated: "2020-03-31T17:13:14.697", + id: "hnihvm6kXLX", + created: "2017-03-12T21:49:03.996", + name: "BU_EPI_U15y_%", + shortName: "% children under 15 years", + aggregationType: "AVERAGE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "PERCENTAGE", + formName: "% children under 15 years", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "eK26I7dRbC4" + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "% enfants de moins de 15 ans" + }, + { + property: "NAME", + locale: "fr", + value: "UB_EPI_<15a_%" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "% moins de 15 ans" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_Cl_Ulcer_%", + lastUpdated: "2019-05-25T10:52:31.471", + id: "AD4v3ACiiXX", + created: "2017-03-12T21:49:03.997", + name: "BU_Cl_Ulcer_%", + shortName: "% ulcers", + aggregationType: "AVERAGE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "PERCENTAGE", + formName: "% ulcers", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "eK26I7dRbC4" + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "UB_Cl_Ulcere_%" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "% ulcères" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "% ulcères" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_Cl_CatI_%", + lastUpdated: "2020-03-31T17:13:00.278", + id: "lff6zDTvFi8", + created: "2017-03-12T21:49:03.997", + name: "BU_Cl_CatI_%", + shortName: "% category I", + aggregationType: "AVERAGE", + domainType: "AGGREGATE", + publicAccess: "--------", + description: "Category I: A single lesion 5cm or less", + valueType: "PERCENTAGE", + formName: "% category I", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "eK26I7dRbC4" + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "% catégorie I" + }, + { + property: "NAME", + locale: "fr", + value: "UB_Cl_CatI_%" + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Catégorie I: Une lésion unique de 5cm ou moins" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "% catégorie I" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_Lab_PCRconfirmation_%", + lastUpdated: "2020-03-31T17:13:02.187", + id: "ijKH3KK0Etn", + created: "2017-03-12T21:49:03.996", + name: "BU_Lab_PCRconfirmation_%", + shortName: "% PCR confirmation", + aggregationType: "AVERAGE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "PERCENTAGE", + formName: "% PCR confirmation", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "eK26I7dRbC4" + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "UB_Lab_PCRconfirmation_%" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "% confirmés par PCR" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "% des cas confirmés par PCR" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_EPI_Female_%", + lastUpdated: "2020-03-31T17:13:16.460", + id: "pjd3beNHprb", + created: "2017-03-12T21:49:03.996", + name: "BU_EPI_Female_%", + shortName: "% females", + aggregationType: "AVERAGE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "PERCENTAGE", + formName: "% females", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "eK26I7dRbC4" + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "UB_EPI_Femme_%" + }, + { + property: "FORM_NAME", + locale: "fr", + value: "% femmes" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "% femmes" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + }, + { + code: "BU_Cl_LowLimb_%", + lastUpdated: "2020-03-31T17:13:06.292", + id: "tMY0YnV1PHQ", + created: "2017-03-12T21:49:03.997", + name: "BU_Cl_LowLimb_%", + shortName: "% location on lower limbs", + aggregationType: "AVERAGE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "PERCENTAGE", + formName: "% location on lower limbs", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + user: { + id: "eK26I7dRbC4" + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "% localisation membres inférieurs" + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "% membres inférieurs" + }, + { + property: "NAME", + locale: "fr", + value: "UB_Cl_MbreInf_%" + } + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6" + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu" + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l" + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7" + } + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [], + aggregationLevels: [] + } + ], + categoryOptions: [ + { + code: "default", + created: "2017-05-10T17:53:55.138", + lastUpdated: "2018-07-27T16:09:07.425", + name: "default", + id: "Y7fcspgsU43", + shortName: "default", + publicAccess: "rwrw----", + user: { + id: "eK26I7dRbC4" + }, + userGroupAccesses: [], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [] + } + ], + categories: [ + { + code: "default", + created: "2017-05-10T17:53:55.152", + lastUpdated: "2021-08-07T06:18:19.628", + name: "default", + id: "DMyxTSpvKOp", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + dataDimension: false, + user: { + id: "eK26I7dRbC4" + }, + userGroupAccesses: [], + attributeValues: [], + translations: [], + userAccesses: [], + categoryOptions: [ + { + id: "Y7fcspgsU43" + } + ] + } + ], + dataSets: [ + { + code: "BU_minimum indicators_annual", + lastUpdated: "2021-04-28T09:01:38.788", + id: "ZO0DQJePIEH", + created: "2017-03-12T21:26:28.325", + name: "BU_minimum indicators_annual", + shortName: "BU_minimum indicators_annual", + validCompleteOnly: false, + dataElementDecoration: false, + publicAccess: "--------", + notifyCompletingUser: false, + noValueRequiresComment: false, + skipOffline: false, + compulsoryFieldsCompleteOnly: false, + fieldCombinationRequired: false, + renderHorizontally: false, + renderAsTabs: true, + mobile: false, + version: 17, + openPeriodsAfterCoEndDate: 0, + timelyDays: 60, + periodType: "Yearly", + openFuturePeriods: 0, + expiryDays: 0, + categoryCombo: { + id: "JzvGfLYkX17" + }, + lastUpdatedBy: { + id: "eK26I7dRbC4" + }, + workflow: { + id: "Li5owPOqVoe" + }, + user: { + id: "M5zQapPyTZI" + }, + dataSetElements: [ + { + dataElement: { + id: "tMY0YnV1PHQ" + }, + dataSet: { + id: "ZO0DQJePIEH" + } + }, + { + dataElement: { + id: "ckHbEc6qoyV" + }, + dataSet: { + id: "ZO0DQJePIEH" + } + }, + { + dataElement: { + id: "lff6zDTvFi8" + }, + dataSet: { + id: "ZO0DQJePIEH" + } + }, + { + dataElement: { + id: "AD4v3ACiiXX" + }, + dataSet: { + id: "ZO0DQJePIEH" + } + }, + { + dataElement: { + id: "fCOiZOvhlYU" + }, + dataSet: { + id: "ZO0DQJePIEH" + } + }, + { + dataElement: { + id: "gUqE2t4L5UU" + }, + dataSet: { + id: "ZO0DQJePIEH" + } + }, + { + dataElement: { + id: "ijKH3KK0Etn" + }, + dataSet: { + id: "ZO0DQJePIEH" + } + }, + { + dataElement: { + id: "z2JQOIDlZUn" + }, + dataSet: { + id: "ZO0DQJePIEH" + } + }, + { + dataElement: { + id: "tOpVIYrnbhk" + }, + dataSet: { + id: "ZO0DQJePIEH" + } + }, + { + dataElement: { + id: "pjd3beNHprb" + }, + dataSet: { + id: "ZO0DQJePIEH" + } + }, + { + dataElement: { + id: "hnihvm6kXLX" + }, + dataSet: { + id: "ZO0DQJePIEH" + } + } + ], + compulsoryDataElementOperands: [], + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: "Ce formulaire vise à collecter les indicateurs minimaux concernant l'ulcère de Buruli dans les pays endémiques. " + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "UB_Indicateurs_Annuel" + }, + { + property: "NAME", + locale: "fr", + value: "UB_Indicateurs_Annuel" + } + ], + dataInputPeriods: [], + organisationUnits: [ + { + id: "WXGcnQWJ0Qd" + }, + { + id: "JEHwU064LAj" + }, + { + id: "ovruC9wzRBW" + }, + { + id: "LbWpsX1FJcC" + }, + { + id: "wj7iV08dvFq" + }, + { + id: "SnYHrnchKjL" + }, + { + id: "jFOZHDZpjPL" + }, + { + id: "jkyBvNzcTLl" + }, + { + id: "BmTVMvJHVBO" + }, + { + id: "EDHO4qOyY88" + }, + { + id: "I3NxIqG7bD4" + }, + { + id: "WtcZBCTspgM" + }, + { + id: "aQJQ5mijJmH" + }, + { + id: "q23bFLr2E5D" + }, + { + id: "shRXArPWh8H" + }, + { + id: "jVqoXv7rFns" + }, + { + id: "hmZE3mVAZFf" + }, + { + id: "Fi5lLVwe1Th" + }, + { + id: "KAUSOoBq5Ft" + }, + { + id: "h7ARR5vhSLF" + }, + { + id: "mhWSEv79IJW" + }, + { + id: "UJVEh0g7qOo" + }, + { + id: "rm6NgPbM6Ld" + }, + { + id: "G037PAPU5dO" + }, + { + id: "er7MPiN3tdH" + }, + { + id: "JI5lagoUJR4" + }, + { + id: "VPesUmegQpP" + }, + { + id: "EGLpIMSAWhx" + }, + { + id: "vkXlj7ZPkGi" + }, + { + id: "DzAOqCf0ots" + }, + { + id: "qbqrFLCJewu" + }, + { + id: "WC5rU5fLMzY" + }, + { + id: "ZcrjvJaYQb7" + }, + { + id: "HfVjCurKxh2" + }, + { + id: "Zav7juzGmEo" + }, + { + id: "quQpOfBIDFC" + }, + { + id: "dpcvWc01CeN" + } + ], + userGroupAccesses: [ + { + access: "rwr-----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle" + }, + { + access: "r-r-----", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3" + }, + { + access: "r-r-----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD" + }, + { + access: "r-rw----", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ" + }, + { + access: "r-r-----", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25" + }, + { + access: "r-r-----", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr" + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg" + } + ], + attributeValues: [], + indicators: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6" + } + ], + legendSets: [] + } + ] + } }; //legend: MDtype, exclude/noexclude, replace/merge, user/nouser, usergroup/nousergroup, public/nopublic const product = _.product( - _.product(["program1", "dashboard1"], ["program2", "dashboard2"]), + _.product(["dataset1", "program1", "dashboard1"], ["dataset2", "program2", "dashboard2"], ["dataset3", "program3", "dashboard3"]), ["exclude", "noexclude"], [true, false], ["user", "nouser"], diff --git a/src/webapp/pages/bulk-apply/steps/AccessStep.tsx b/src/webapp/pages/bulk-apply/steps/AccessStep.tsx index 62c92f1..406e8c8 100644 --- a/src/webapp/pages/bulk-apply/steps/AccessStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/AccessStep.tsx @@ -8,6 +8,7 @@ import { MetadataSharingWizardStepProps } from "../SharingWizardSteps"; export const AccessStep: React.FC = ({ builder, updateBuilder }) => { const { compositionRoot } = useAppContext(); + const strategyName = builder.replaceExistingSharings ? i18n.t("Replace") : i18n.t("Merge"); const label = `${i18n.t("Update strategy")}: ${strategyName}`; diff --git a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx index 5790fa0..eeca158 100644 --- a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx @@ -95,7 +95,8 @@ export const ListDependenciesStep: React.FC = ({ .values() .flatten() .value(); - setRows(rows); + + setRows(rows); setIsLoading(false); }, error => snackbar.error(error) From 48b22eee7e9547e2434bb607bac16ed25a1dd3fc Mon Sep 17 00:00:00 2001 From: Jocelyn Dunkley Date: Wed, 29 Sep 2021 12:13:17 +0200 Subject: [PATCH 43/50] added search and filter to step 2 --- src/domain/entities/MetadataItem.ts | 24 +++++++- .../pages/bulk-apply/steps/AccessStep.tsx | 1 - .../bulk-apply/steps/ListDependenciesStep.tsx | 58 +++++++++++++++---- 3 files changed, 70 insertions(+), 13 deletions(-) diff --git a/src/domain/entities/MetadataItem.ts b/src/domain/entities/MetadataItem.ts index e4bb1aa..dddc807 100644 --- a/src/domain/entities/MetadataItem.ts +++ b/src/domain/entities/MetadataItem.ts @@ -1,8 +1,30 @@ import { Ref } from "./Ref"; import { SharedObject } from "./SharedObject"; -export type MetadataModel = "dataSets" | "programs" | "dashboards"; +export type MetadataModel = "dataSets" | "programs" | "dashboards" | "reports" | "visualizations" | "eventReports" | "eventCharts" | +"maps" | "interpretations" | "documents" | "categoryCombos" | "dataElements" | "categoryOptions" | "categories" | "indicators" | "optionSets" | "legendSets" | "programStages" | "programIndicators"; +export const displayName: Record = { + dataSets: "Data Sets", + programs: "Programs", + dashboards: "Dashboards", + reports: "Reports", + visualizations: "Visualizations", + eventReports: "Event Reports", + eventCharts: "Event Charts", + maps: "Maps", + interpretations: "Interpretations", + documents: "Documents", + categoryCombos: "Category Combos", + dataElements: "Data Elements", + categoryOptions: "Category Options", + categories: "Categories", + indicators: "Indicators", + optionSets: "Option Sets", + legendSets: "Legend Sets", + programStages: "Program Stages", + programIndicators: "Program Indicators" +} export type MetadataPayload = Record; export type MetadataItem = Ref & SharedObject & { [key: string]: any | undefined }; diff --git a/src/webapp/pages/bulk-apply/steps/AccessStep.tsx b/src/webapp/pages/bulk-apply/steps/AccessStep.tsx index 406e8c8..0ffb0aa 100644 --- a/src/webapp/pages/bulk-apply/steps/AccessStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/AccessStep.tsx @@ -11,7 +11,6 @@ export const AccessStep: React.FC = ({ builder, const strategyName = builder.replaceExistingSharings ? i18n.t("Replace") : i18n.t("Merge"); const label = `${i18n.t("Update strategy")}: ${strategyName}`; - const search = useCallback( (query: string) => compositionRoot.instance.searchUsers(query).toPromise(), [compositionRoot] diff --git a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx index 9dd79bb..2c31741 100644 --- a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx @@ -11,19 +11,24 @@ import AddCircleOutlineIcon from "@material-ui/icons/AddCircleOutline"; import RemoveCircleOutlineIcon from "@material-ui/icons/RemoveCircleOutline"; import _ from "lodash"; import React, { useCallback, useEffect, useMemo, useState } from "react"; -import { MetadataItem } from "../../../../domain/entities/MetadataItem"; +import { MetadataItem, MetadataModel, displayName } from "../../../../domain/entities/MetadataItem"; +import { ListOptions } from "../../../../domain/repositories/MetadataRepository"; import { Ref } from "../../../../domain/entities/Ref"; import i18n from "../../../../locales"; import { useAppContext } from "../../../contexts/app-context"; import { MetadataSharingWizardStepProps } from "../SharingWizardSteps"; +import Dropdown, { DropdownOption } from "../../../components/dropdown/Dropdown"; export const ListDependenciesStep: React.FC = ({ builder, updateBuilder }) => { const { compositionRoot } = useAppContext(); const snackbar = useSnackbar(); const [rows, setRows] = useState([]); + const [filteredRows, setFilteredRows] = useState([]); const [isLoading, setIsLoading] = useState(false); const [selection, setSelection] = useState([]); + const [filterOptions, setFilterOptions] = useState[]>([]); + const [listOptions, setListOptions] = useState(initialState); const columns = useMemo( (): TableColumn[] => [ @@ -84,10 +89,27 @@ export const ListDependenciesStep: React.FC = ({ [builder] ); + const applyFilterChanges = useCallback((model: MetadataModel) => { + setListOptions(options => ({ ...options, model })); + setFilteredRows(rows.filter(row => row.metadataType === model)) + }, [rows]); + + const onSearchChange = useCallback((search: string) => { + setListOptions(options => ({ ...options, search })); + if(search === "") { + setFilteredRows(rows.filter(row => row.metadataType === listOptions.model)); + } + else { + setFilteredRows(filteredRows.filter(row => row.name.includes(search))) + } + // eslint-disable-next-line + }, [listOptions]); + useEffect(() => { setIsLoading(true); compositionRoot.metadata.listDependencies(builder.baseElements).run( data => { + //getting all the dependencies and saving them const rows = _(data) .mapValues((value, key) => { return value.map(item => ({ ...item, metadataType: key })); @@ -97,16 +119,32 @@ export const ListDependenciesStep: React.FC = ({ .value(); setRows(rows); + //getting all the possible MDTypes from the dependencies + const filterModels: DropdownOption[] = Object.keys(data).map(item => ({id: (item as MetadataModel), name: i18n.t(displayName[item] || "")})); + setFilterOptions(filterModels) + setListOptions(options => ({ ...options, model: filterModels[0]?.id || "dashboards" })); + //the filteredRows will be the only type that I show in the UI, but I want to save the rows somewhere so I don't lose them + setFilteredRows(rows.filter(row => row.metadataType === filterModels[0]?.id)); setIsLoading(false); }, error => snackbar.error(error) ); }, [builder, compositionRoot, snackbar]); + const filterComponents = ( + + items={filterOptions} + onValueChange={applyFilterChanges} + value={listOptions.model} + label={i18n.t("Metadata type")} + hideEmpty={true} + /> + ); + return (
- rows={rows} + rows={filteredRows} columns={columns} sorting={{ field: "displayName", order: "asc" }} initialState={initialState} @@ -116,18 +154,16 @@ export const ListDependenciesStep: React.FC = ({ onChange={onTableChange} selection={selection} rowConfig={rowConfig} + filterComponents={filterComponents} + searchBoxLabel={i18n.t(`Search by name`)} + onChangeSearch={onSearchChange} />
); }; -const initialState = { - sorting: { - field: "displayName" as const, - order: "asc" as const, - }, - pagination: { - page: 1, - pageSize: 25, - }, +const initialState: ListOptions = { + model: "dashboards", + sorting: { field: "name", order: "asc" }, + pageSize: 25 }; From 18425ccc462b46bbbb97d7867711ca71775b7f1a Mon Sep 17 00:00:00 2001 From: Jocelyn Dunkley Date: Wed, 29 Sep 2021 12:25:30 +0200 Subject: [PATCH 44/50] Fixing some stylistic things --- src/domain/entities/MetadataItem.ts | 26 ++++++++++-- .../pages/bulk-apply/steps/AccessStep.tsx | 1 + .../bulk-apply/steps/ListDependenciesStep.tsx | 42 +++++++++++-------- 3 files changed, 48 insertions(+), 21 deletions(-) diff --git a/src/domain/entities/MetadataItem.ts b/src/domain/entities/MetadataItem.ts index dddc807..a524e9d 100644 --- a/src/domain/entities/MetadataItem.ts +++ b/src/domain/entities/MetadataItem.ts @@ -1,8 +1,26 @@ import { Ref } from "./Ref"; import { SharedObject } from "./SharedObject"; -export type MetadataModel = "dataSets" | "programs" | "dashboards" | "reports" | "visualizations" | "eventReports" | "eventCharts" | -"maps" | "interpretations" | "documents" | "categoryCombos" | "dataElements" | "categoryOptions" | "categories" | "indicators" | "optionSets" | "legendSets" | "programStages" | "programIndicators"; +export type MetadataModel = + | "dataSets" + | "programs" + | "dashboards" + | "reports" + | "visualizations" + | "eventReports" + | "eventCharts" + | "maps" + | "interpretations" + | "documents" + | "categoryCombos" + | "dataElements" + | "categoryOptions" + | "categories" + | "indicators" + | "optionSets" + | "legendSets" + | "programStages" + | "programIndicators"; export const displayName: Record = { dataSets: "Data Sets", @@ -23,8 +41,8 @@ export const displayName: Record = { optionSets: "Option Sets", legendSets: "Legend Sets", programStages: "Program Stages", - programIndicators: "Program Indicators" -} + programIndicators: "Program Indicators", +}; export type MetadataPayload = Record; export type MetadataItem = Ref & SharedObject & { [key: string]: any | undefined }; diff --git a/src/webapp/pages/bulk-apply/steps/AccessStep.tsx b/src/webapp/pages/bulk-apply/steps/AccessStep.tsx index 0ffb0aa..406e8c8 100644 --- a/src/webapp/pages/bulk-apply/steps/AccessStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/AccessStep.tsx @@ -11,6 +11,7 @@ export const AccessStep: React.FC = ({ builder, const strategyName = builder.replaceExistingSharings ? i18n.t("Replace") : i18n.t("Merge"); const label = `${i18n.t("Update strategy")}: ${strategyName}`; + const search = useCallback( (query: string) => compositionRoot.instance.searchUsers(query).toPromise(), [compositionRoot] diff --git a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx index 2c31741..efa12bd 100644 --- a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx @@ -89,21 +89,26 @@ export const ListDependenciesStep: React.FC = ({ [builder] ); - const applyFilterChanges = useCallback((model: MetadataModel) => { - setListOptions(options => ({ ...options, model })); - setFilteredRows(rows.filter(row => row.metadataType === model)) - }, [rows]); + const applyFilterChanges = useCallback( + (model: MetadataModel) => { + setListOptions(options => ({ ...options, model })); + setFilteredRows(rows.filter(row => row.metadataType === model)); + }, + [rows] + ); - const onSearchChange = useCallback((search: string) => { - setListOptions(options => ({ ...options, search })); - if(search === "") { - setFilteredRows(rows.filter(row => row.metadataType === listOptions.model)); - } - else { - setFilteredRows(filteredRows.filter(row => row.name.includes(search))) - } - // eslint-disable-next-line - }, [listOptions]); + const onSearchChange = useCallback( + (search: string) => { + setListOptions(options => ({ ...options, search })); + if (search === "") { + setFilteredRows(rows.filter(row => row.metadataType === listOptions.model)); + } else { + setFilteredRows(filteredRows.filter(row => row.name.includes(search))); + } + // eslint-disable-next-line + }, + [listOptions] + ); useEffect(() => { setIsLoading(true); @@ -120,8 +125,11 @@ export const ListDependenciesStep: React.FC = ({ setRows(rows); //getting all the possible MDTypes from the dependencies - const filterModels: DropdownOption[] = Object.keys(data).map(item => ({id: (item as MetadataModel), name: i18n.t(displayName[item] || "")})); - setFilterOptions(filterModels) + const filterModels: DropdownOption[] = Object.keys(data).map(item => ({ + id: item as MetadataModel, + name: i18n.t(displayName[item] || ""), + })); + setFilterOptions(filterModels); setListOptions(options => ({ ...options, model: filterModels[0]?.id || "dashboards" })); //the filteredRows will be the only type that I show in the UI, but I want to save the rows somewhere so I don't lose them setFilteredRows(rows.filter(row => row.metadataType === filterModels[0]?.id)); @@ -165,5 +173,5 @@ export const ListDependenciesStep: React.FC = ({ const initialState: ListOptions = { model: "dashboards", sorting: { field: "name", order: "asc" }, - pageSize: 25 + pageSize: 25, }; From ebb94acb47b08058e78e4a947ca0f89f923223fc Mon Sep 17 00:00:00 2001 From: Jocelyn Dunkley Date: Thu, 30 Sep 2021 16:13:49 +0200 Subject: [PATCH 45/50] I was able to call the indicators and programIndicators but putting the data back together and calling the indicator metadata in the right place is still confusing me --- .../repositories/MetadataD2ApiRepository.ts | 34 +++++++++++++++++-- src/domain/entities/MetadataItem.ts | 6 ++++ 2 files changed, 38 insertions(+), 2 deletions(-) diff --git a/src/data/repositories/MetadataD2ApiRepository.ts b/src/data/repositories/MetadataD2ApiRepository.ts index 40cb4e9..d5dd387 100644 --- a/src/data/repositories/MetadataD2ApiRepository.ts +++ b/src/data/repositories/MetadataD2ApiRepository.ts @@ -2,7 +2,7 @@ import i18n from "@eyeseetea/d2-ui-components/locales"; import _ from "lodash"; import { Future, FutureData } from "../../domain/entities/Future"; import { ImportResult, ImportStats } from "../../domain/entities/ImportResult"; -import { isValidModel, MetadataModel, MetadataPayload } from "../../domain/entities/MetadataItem"; +import { isValidModel, MetadataModel, MetadataPayload, DataDimensionItem } from "../../domain/entities/MetadataItem"; import { ListMetadataResponse, ListOptions, MetadataRepository } from "../../domain/repositories/MetadataRepository"; import { D2Api, D2ApiDefinition, MetadataResponse, Stats } from "../../types/d2-api"; import { getD2APiFromInstance } from "../../utils/d2-api"; @@ -52,7 +52,15 @@ export class MetadataD2ApiRepository implements MetadataRepository { return Future.futureMap(items, ({ model, id }) => this.fetchMetadataWithDependencies(model, id)); }) .map(payloads => mergePayloads(payloads)) - .map(payload => removeDefaults(payload)); + .map(payload => removeDefaults(payload)) + .map(payload => { + const indicatorIds = checkIfIndicatorsExist(payload); + if(indicatorIds.length !== 0) { + return this.fetchMetadata(indicatorIds) + .map(indicatorPayloads => mergePayloads([indicatorPayloads, payload])) + } + else return payload; + }); } public getModelName(model: string): string { @@ -96,6 +104,28 @@ function removeDefaults(payload: MetadataPayload): MetadataPayload { return _.mapValues(payload, items => items.filter(({ code, name }) => code !== "default" && name !== "default")); } +function checkIfIndicatorsExist(payload: MetadataPayload): string[] { + if('visualizations' in payload) { + const indicatorIds = _(payload.visualizations).flatMap(items => { + return items?.dataDimensionItems.map((dataDimensionItem: DataDimensionItem) => { + if('indicator' in dataDimensionItem) { + return dataDimensionItem?.indicator?.id; + } + else if('programIndicator' in dataDimensionItem) { + return dataDimensionItem?.programIndicator?.id; + } + return; + }); + + }) + .uniq() + .value(); + return indicatorIds; + } + else return []; + +} + function buildMetadataImportResult(response: MetadataResponse): ImportResult { const { status, stats, typeReports = [] } = response; const typeStats = typeReports.flatMap(({ klass, stats }) => formatStats(stats, getClassName(klass))); diff --git a/src/domain/entities/MetadataItem.ts b/src/domain/entities/MetadataItem.ts index e4bb1aa..98303c8 100644 --- a/src/domain/entities/MetadataItem.ts +++ b/src/domain/entities/MetadataItem.ts @@ -5,6 +5,12 @@ export type MetadataModel = "dataSets" | "programs" | "dashboards"; export type MetadataPayload = Record; +export interface DataDimensionItem { + dataDimensionItemType: string; + indicator?: Ref; + programIndicator?: Ref; +} + export type MetadataItem = Ref & SharedObject & { [key: string]: any | undefined }; export function isValidModel(model: string): model is MetadataModel { From 9a053ccda70a4c3a34a8de4da302cb900fed132a Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Fri, 1 Oct 2021 08:24:10 +0200 Subject: [PATCH 46/50] Update use case test init --- .../ApplySharingSettingsUseCase.metadata.ts | 27 -------------- .../ApplySharingSettingsUseCase.spec.ts | 37 ++++++++++++++++++- 2 files changed, 35 insertions(+), 29 deletions(-) diff --git a/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.metadata.ts b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.metadata.ts index d26b9ef..17e3497 100644 --- a/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.metadata.ts +++ b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.metadata.ts @@ -1,6 +1,4 @@ -import "lodash.product"; import _ from "lodash"; -import { SharingUpdate } from "../../../entities/SharingUpdate"; export const metadata: Record> = { dashboard1: { @@ -58083,28 +58081,3 @@ export const metadata: Record> = { ] } }; - -//legend: MDtype, exclude/noexclude, replace/merge, user/nouser, usergroup/nousergroup, public/nopublic -const product = _.product( - _.product(["dataset1", "program1", "dashboard1"], ["dataset2", "program2", "dashboard2"], ["dataset3", "program3", "dashboard3"]), - ["exclude", "noexclude"], - [true, false], - ["user", "nouser"], - ["usergroup", "nousergroup"], - ["public", "nopublic"] -); - -const user = [{ id: "s5EVHUwoFKu", access: "rw------", name: "Alexis Rico" }]; -const userGroup = [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }]; -const excluded = ["dTenEaC7Qeu", "oMz2k4EvzR8"]; - -export const tests: SharingUpdate[] = product.map((item: string[]) => ({ - baseElements: item[0], - excludedDependencies: item[1] === "exclude" ? excluded : [], - replaceExistingSharings: item[2], - sharings: { - userAccesses: item[3] === "user" ? user : [], - userGroupAccesses: item[4] === "usergroup" ? userGroup : [], - publicAccess: item[5] === "public" ? "rw------" : "--------", - }, -})); diff --git a/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts index 110f0c9..717e819 100644 --- a/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts +++ b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.spec.ts @@ -1,4 +1,5 @@ import _ from "lodash"; +import "lodash.product"; import { mergePayloads } from "../../../../data/repositories/MetadataD2ApiRepository"; import { Future, FutureData } from "../../../entities/Future"; import { ImportResult } from "../../../entities/ImportResult"; @@ -6,7 +7,7 @@ import { MetadataPayload } from "../../../entities/MetadataItem"; import { SharingUpdate } from "../../../entities/SharingUpdate"; import { ListMetadataResponse, ListOptions, MetadataRepository } from "../../../repositories/MetadataRepository"; import { ApplySharingSettingsUseCase } from "../ApplySharingSettingsUseCase"; -import { metadata, tests } from "./ApplySharingSettingsUseCase.metadata"; +import { metadata } from "./ApplySharingSettingsUseCase.metadata"; describe("Apply sharing settings use case", () => { let metadataRepository: MetadataRepository; @@ -17,7 +18,7 @@ describe("Apply sharing settings use case", () => { usecase = new ApplySharingSettingsUseCase(metadataRepository); }); - for (const update of tests) { + for (const update of buildTestCases()) { it(buildTitle(update), async () => { const { baseElements, excludedDependencies, sharings, replaceExistingSharings } = update; const { data: result, error } = await usecase.execute(update).runAsync(); @@ -74,6 +75,38 @@ function buildTitle(update: SharingUpdate): string { return `Should apply sharing setting with ${message}`; } +function buildTestCases(): SharingUpdate[] { + //@ts-ignore Lodash product is not typed + const product = _.product( + //@ts-ignore Lodash product is not typed + _.product( + ["dataset1", "program1", "dashboard1"], + ["dataset2", "program2", "dashboard2"], + ["dataset3", "program3", "dashboard3"] + ), + ["exclude", "noexclude"], + [true, false], + ["user", "nouser"], + ["usergroup", "nousergroup"], + ["public", "nopublic"] + ); + + const user = [{ id: "s5EVHUwoFKu", access: "rw------", name: "Alexis Rico" }]; + const userGroup = [{ id: "sCjEPgiOhP1", access: "rw------", name: "WIDP admins" }]; + const excluded = ["dTenEaC7Qeu", "oMz2k4EvzR8"]; + + return product.map((item: string[]) => ({ + baseElements: item[0], + excludedDependencies: item[1] === "exclude" ? excluded : [], + replaceExistingSharings: item[2], + sharings: { + userAccesses: item[3] === "user" ? user : [], + userGroupAccesses: item[4] === "usergroup" ? userGroup : [], + publicAccess: item[5] === "public" ? "rw------" : "--------", + }, + })); +} + class MockMetadataRepository implements MetadataRepository { getDependencies(_ids: string[]): FutureData { const payloads = mergePayloads(_ids.map(id => metadata[id] ?? {})); From 2aabd46edcf29acecae2a35a2bd48b63a4d9ccce Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Fri, 1 Oct 2021 08:25:13 +0200 Subject: [PATCH 47/50] Pin dependency --- package.json | 2 +- .../ApplySharingSettingsUseCase.metadata.ts | 105408 +++++++-------- .../bulk-apply/steps/ListDependenciesStep.tsx | 2 +- yarn.lock | 2 +- 4 files changed, 52677 insertions(+), 52737 deletions(-) diff --git a/package.json b/package.json index 8b4f879..e080b47 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "fluture": "14.0.0", "font-awesome": "4.7.0", "lodash": "4.17.21", - "lodash.product": "^18.9.19", + "lodash.product": "18.9.19", "postcss-rtl": "1.7.3", "purify-ts": "1.0.0", "purify-ts-extra-codec": "0.6.0", diff --git a/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.metadata.ts b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.metadata.ts index 17e3497..c7e9b72 100644 --- a/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.metadata.ts +++ b/src/domain/usecases/metadata/__tests__/ApplySharingSettingsUseCase.metadata.ts @@ -4808,3846 +4808,53 @@ export const metadata: Record> = { }, dashboard3: { dashboards: [ - { - created: "2017-05-31T21:15:05.427", - lastUpdated: "2021-06-09T15:16:44.954", - name: "01-Malaria Burden Reduction", - id: "sLldHZZgnFx", - publicAccess: "--------", - externalAccess: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "YdBcEIZpRHo" - }, - favorites: [ - "YdBcEIZpRHo", - "HUh7ns5NBfm", - "t6Xqbz61KaN", - "s9MM39gyJ7A", - "j7tkmEYS6mr" - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "suMb19wGXPR", - displayName: "MAL_Malaria admin", - id: "suMb19wGXPR" - }, - { - access: "r-------", - userGroupUid: "ZXEVDM9XRea", - displayName: "MAL_Malaria access", - id: "ZXEVDM9XRea" - } - ], - dashboardItems: [ - { - lastUpdated: "2020-04-14T18:23:01.630", - id: "bndKqtV1ZGl", - created: "2019-05-31T21:40:13.063", - type: "VISUALIZATION", - externalAccess: false, - contentCount: 1, - height: 20, - shape: "NORMAL", - interpretationCount: 0, - width: 29, - x: 0, - y: 80, - interpretationLikeCount: 0, - favorite: false, - visualization: { - id: "bIwPfcT9JVN" - }, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - reports: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - resources: [], - users: [], - userAccesses: [] - }, - { - lastUpdated: "2020-04-14T18:23:01.630", - id: "LLJURREsNnj", - created: "2019-05-31T21:40:13.063", - type: "VISUALIZATION", - externalAccess: false, - contentCount: 1, - height: 20, - shape: "NORMAL", - interpretationCount: 0, - width: 29, - x: 29, - y: 40, - interpretationLikeCount: 0, - favorite: false, - visualization: { - id: "SKJkOTlS8vN" - }, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - reports: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - resources: [], - users: [], - userAccesses: [] - }, - { - lastUpdated: "2020-04-14T18:23:01.630", - id: "imp9cY9m5EA", - created: "2019-05-31T21:40:13.063", - type: "VISUALIZATION", - externalAccess: false, - contentCount: 1, - height: 20, - shape: "NORMAL", - interpretationCount: 0, - width: 29, - x: 29, - y: 0, - interpretationLikeCount: 0, - favorite: false, - visualization: { - id: "QqZNdTABzsZ" - }, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - reports: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - resources: [], - users: [], - userAccesses: [] - }, - { - lastUpdated: "2020-04-14T18:23:01.631", - id: "COP5m9xs6iY", - created: "2019-05-31T21:40:13.063", - type: "VISUALIZATION", - externalAccess: false, - contentCount: 1, - height: 20, - shape: "NORMAL", - interpretationCount: 0, - width: 29, - x: 0, - y: 40, - interpretationLikeCount: 0, - favorite: false, - visualization: { - id: "tq6l6xuECZo" - }, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - reports: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - resources: [], - users: [], - userAccesses: [] - }, - { - lastUpdated: "2020-04-14T18:23:01.631", - id: "GBuwmMa1iGE", - created: "2019-05-31T21:40:13.063", - type: "VISUALIZATION", - externalAccess: false, - contentCount: 1, - height: 20, - shape: "NORMAL", - interpretationCount: 0, - width: 29, - x: 29, - y: 20, - interpretationLikeCount: 0, - favorite: false, - visualization: { - id: "mmdI4h7KdLL" - }, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - reports: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - resources: [], - users: [], - userAccesses: [] - }, - { - lastUpdated: "2020-04-14T18:23:01.631", - id: "Jx1yxCt3wvY", - created: "2019-05-31T21:40:13.063", - type: "VISUALIZATION", - externalAccess: false, - contentCount: 1, - height: 20, - shape: "NORMAL", - interpretationCount: 0, - width: 29, - x: 0, - y: 20, - interpretationLikeCount: 0, - favorite: false, - visualization: { - id: "pnEMZYfUAZt" - }, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - reports: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - resources: [], - users: [], - userAccesses: [] - }, - { - lastUpdated: "2020-04-14T18:23:01.631", - id: "NGkPe7Z2xco", - created: "2019-05-31T21:40:13.063", - type: "VISUALIZATION", - externalAccess: false, - contentCount: 1, - height: 20, - shape: "NORMAL", - interpretationCount: 0, - width: 29, - x: 0, - y: 60, - interpretationLikeCount: 0, - favorite: false, - visualization: { - id: "XG7LBCz7nQn" - }, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - reports: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - resources: [], - users: [], - userAccesses: [] - }, - { - lastUpdated: "2020-04-14T18:23:01.631", - id: "eEluY5AA8eb", - created: "2019-05-31T21:40:13.063", - type: "VISUALIZATION", - externalAccess: false, - contentCount: 1, - height: 20, - shape: "NORMAL", - interpretationCount: 0, - width: 29, - x: 29, - y: 60, - interpretationLikeCount: 0, - favorite: false, - visualization: { - id: "eqbjzgCFSFs" - }, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - reports: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - resources: [], - users: [], - userAccesses: [] - }, - { - lastUpdated: "2020-04-14T18:23:01.631", - id: "iFoBSxTa8n3", - created: "2019-05-31T21:40:13.063", - type: "VISUALIZATION", - externalAccess: false, - contentCount: 1, - height: 20, - shape: "NORMAL", - interpretationCount: 0, - width: 29, - x: 0, - y: 0, - interpretationLikeCount: 0, - favorite: false, - visualization: { - id: "wSudey0Yc2R" - }, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - reports: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - resources: [], - users: [], - userAccesses: [] - }, - { - lastUpdated: "2020-04-14T18:23:01.631", - id: "VMJj8auur7X", - created: "2019-05-31T21:40:13.063", - type: "VISUALIZATION", - externalAccess: false, - contentCount: 1, - height: 20, - shape: "NORMAL", - interpretationCount: 0, - width: 29, - x: 29, - y: 80, - interpretationLikeCount: 0, - favorite: false, - visualization: { - id: "qo7xD7OTGcF" - }, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - reports: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - resources: [], - users: [], - userAccesses: [] - }, - { - lastUpdated: "2020-04-14T18:23:01.631", - id: "pVa6oAu2DFk", - created: "2019-05-31T21:40:13.063", - type: "VISUALIZATION", - externalAccess: false, - contentCount: 1, - height: 20, - shape: "NORMAL", - interpretationCount: 0, - width: 29, - x: 0, - y: 100, - interpretationLikeCount: 0, - favorite: false, - visualization: { - id: "Cyy6FR0wEGe" - }, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - reports: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - resources: [], - users: [], - userAccesses: [] - }, - { - lastUpdated: "2020-04-14T18:23:01.632", - id: "ukizcelacKo", - created: "2019-05-31T21:40:13.063", - type: "VISUALIZATION", - externalAccess: false, - contentCount: 1, - height: 20, - shape: "NORMAL", - interpretationCount: 0, - width: 29, - x: 29, - y: 100, - interpretationLikeCount: 0, - favorite: false, - visualization: { - id: "GmqjzU8Crmi" - }, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - reports: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - resources: [], - users: [], - userAccesses: [] - }, - { - lastUpdated: "2020-04-14T18:23:01.632", - id: "g3Iv72l0jO5", - created: "2019-05-31T21:40:13.063", - type: "VISUALIZATION", - externalAccess: false, - contentCount: 1, - height: 20, - shape: "NORMAL", - interpretationCount: 0, - width: 29, - x: 0, - y: 120, - interpretationLikeCount: 0, - favorite: false, - visualization: { - id: "uZ03Z5GgJJ0" - }, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - reports: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - resources: [], - users: [], - userAccesses: [] - }, - { - lastUpdated: "2020-04-14T18:23:01.632", - id: "CnpABmw7iMA", - created: "2019-05-31T21:40:13.063", - type: "VISUALIZATION", - externalAccess: false, - contentCount: 1, - height: 20, - shape: "NORMAL", - interpretationCount: 0, - width: 29, - x: 29, - y: 120, - interpretationLikeCount: 0, - favorite: false, - visualization: { - id: "wleqcZVkF9U" - }, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - reports: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - resources: [], - users: [], - userAccesses: [] - }, - { - lastUpdated: "2020-04-14T18:23:01.632", - id: "jpEIVXB1NNd", - created: "2019-05-31T21:40:13.063", - type: "VISUALIZATION", - externalAccess: false, - contentCount: 1, - height: 20, - shape: "NORMAL", - interpretationCount: 0, - width: 29, - x: 0, - y: 140, - interpretationLikeCount: 0, - favorite: false, - visualization: { - id: "T4eg1e5rjXE" - }, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - reports: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - resources: [], - users: [], - userAccesses: [] - } - ], - translations: [], - userAccesses: [] - } - ], - visualizations: [ - { - lastUpdated: "2020-06-02T08:10:05.739", - id: "XG7LBCz7nQn", - created: "2019-04-06T11:39:51.176", - name: "MAL - Conf cases & ABER", - showData: true, - publicAccess: "--------", - userOrganisationUnitChildren: false, - type: "LINE", - hideEmptyColumns: false, - hideEmptyRows: false, - userOrganisationUnit: true, - rowSubTotals: false, - displayDensity: "NORMAL", - regressionType: "NONE", - cumulativeValues: false, - completedOnly: false, - colTotals: false, - showDimensionLabels: false, - sortOrder: 0, - fontSize: "NORMAL", - topLimit: 0, - hideEmptyRowItems: "ALL", - aggregationType: "DEFAULT", - userOrganisationUnitGrandChildren: false, - hideSubtitle: false, - title: "% Suspected Tested, Confirmed cases and ABER", - hideLegend: false, - externalAccess: false, - percentStackedValues: false, - colSubTotals: false, - noSpaceBetweenColumns: false, - showHierarchy: false, - rowTotals: false, - digitGroupSeparator: "SPACE", - hideTitle: false, - regression: false, - skipRounding: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - relativePeriods: { - thisYear: false, - quartersLastYear: false, - last52Weeks: false, - thisWeek: false, - lastMonth: false, - last14Days: false, - biMonthsThisYear: false, - monthsThisYear: false, - last2SixMonths: false, - yesterday: false, - thisQuarter: false, - last12Months: false, - last5FinancialYears: false, - thisSixMonth: false, - lastQuarter: false, - thisFinancialYear: false, - last4Weeks: false, - last3Months: false, - thisDay: false, - thisMonth: false, - last5Years: false, - last6BiMonths: false, - last4BiWeeks: false, - lastFinancialYear: false, - lastBiWeek: false, - weeksThisYear: false, - last6Months: false, - last3Days: false, - quartersThisYear: false, - monthsLastYear: false, - lastWeek: false, - last7Days: false, - thisBimonth: false, - lastBimonth: false, - lastSixMonth: false, - thisBiWeek: false, - lastYear: false, - last12Weeks: false, - last4Quarters: false - }, - reportingParams: { - parentOrganisationUnit: false, - reportingPeriod: false, - organisationUnit: false, - grandParentOrganisationUnit: false - }, - user: { - id: "kD52FGwJgDF" - }, - dataElementGroupSetDimensions: [], - translations: [], - yearlySeries: [], - filterDimensions: [ - "ou" - ], - itemOrganisationUnitGroups: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "ZXEVDM9XRea", - displayName: "MAL_Malaria access", - id: "ZXEVDM9XRea" - }, - { - access: "rw------", - userGroupUid: "OviFXqdot0H", - displayName: "MAL_Malaria users", - id: "OviFXqdot0H" - }, - { - access: "rw------", - userGroupUid: "suMb19wGXPR", - displayName: "MAL_Malaria admin", - id: "suMb19wGXPR" - } - ], - subscribers: [], - columnDimensions: [ - "dx" - ], - optionalAxes: [], - userAccesses: [], - favorites: [], - dataDimensionItems: [ - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "rPYLomUceL4" - } - }, - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "SqFthnK8FJY" - } - }, - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "VxAkjvBMvfp" - } - } - ], - categoryOptionGroupSetDimensions: [], - organisationUnitGroupSetDimensions: [], - organisationUnitLevels: [], - periods: [ - { - id: "2000" - }, - { - id: "2001" - }, - { - id: "2002" - }, - { - id: "2003" - }, - { - id: "2004" - }, - { - id: "2005" - }, - { - id: "2006" - }, - { - id: "2007" - }, - { - id: "2008" - }, - { - id: "2009" - }, - { - id: "2010" - }, - { - id: "2011" - }, - { - id: "2012" - }, - { - id: "2013" - }, - { - id: "2014" - }, - { - id: "2015" - }, - { - id: "2016" - }, - { - id: "2017" - }, - { - id: "2018" - } - ], - organisationUnits: [], - categoryDimensions: [], - rowDimensions: [ - "pe" - ] - }, - { - lastUpdated: "2020-06-02T08:10:05.746", - id: "mmdI4h7KdLL", - created: "2019-04-06T11:46:36.293", - name: "MAL - IPD", - showData: true, - publicAccess: "--------", - userOrganisationUnitChildren: false, - type: "LINE", - hideEmptyColumns: false, - hideEmptyRows: false, - userOrganisationUnit: true, - rowSubTotals: false, - displayDensity: "NORMAL", - regressionType: "NONE", - cumulativeValues: false, - completedOnly: false, - colTotals: false, - showDimensionLabels: false, - sortOrder: 0, - fontSize: "NORMAL", - topLimit: 0, - hideEmptyRowItems: "ALL", - aggregationType: "DEFAULT", - userOrganisationUnitGrandChildren: false, - hideSubtitle: false, - title: "Malaria and non-malaria IPD", - hideLegend: false, - externalAccess: false, - percentStackedValues: false, - colSubTotals: false, - noSpaceBetweenColumns: false, - showHierarchy: false, - rowTotals: false, - digitGroupSeparator: "SPACE", - hideTitle: false, - regression: false, - skipRounding: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - relativePeriods: { - thisYear: false, - quartersLastYear: false, - last52Weeks: false, - thisWeek: false, - lastMonth: false, - last14Days: false, - biMonthsThisYear: false, - monthsThisYear: false, - last2SixMonths: false, - yesterday: false, - thisQuarter: false, - last12Months: false, - last5FinancialYears: false, - thisSixMonth: false, - lastQuarter: false, - thisFinancialYear: false, - last4Weeks: false, - last3Months: false, - thisDay: false, - thisMonth: false, - last5Years: false, - last6BiMonths: false, - last4BiWeeks: false, - lastFinancialYear: false, - lastBiWeek: false, - weeksThisYear: false, - last6Months: false, - last3Days: false, - quartersThisYear: false, - monthsLastYear: false, - lastWeek: false, - last7Days: false, - thisBimonth: false, - lastBimonth: false, - lastSixMonth: false, - thisBiWeek: false, - lastYear: false, - last12Weeks: false, - last4Quarters: false - }, - reportingParams: { - parentOrganisationUnit: false, - reportingPeriod: false, - organisationUnit: false, - grandParentOrganisationUnit: false - }, - user: { - id: "kD52FGwJgDF" - }, - dataElementGroupSetDimensions: [], - translations: [], - yearlySeries: [], - filterDimensions: [ - "ou" - ], - itemOrganisationUnitGroups: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "ZXEVDM9XRea", - displayName: "MAL_Malaria access", - id: "ZXEVDM9XRea" - }, - { - access: "rw------", - userGroupUid: "OviFXqdot0H", - displayName: "MAL_Malaria users", - id: "OviFXqdot0H" - }, - { - access: "rw------", - userGroupUid: "suMb19wGXPR", - displayName: "MAL_Malaria admin", - id: "suMb19wGXPR" - } - ], - subscribers: [], - columnDimensions: [ - "dx" - ], - optionalAxes: [], - userAccesses: [], - favorites: [], - dataDimensionItems: [ - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "BhoZ0XenErj" - } - } - ], - categoryOptionGroupSetDimensions: [], - organisationUnitGroupSetDimensions: [], - organisationUnitLevels: [], - periods: [ - { - id: "1997" - }, - { - id: "1998" - }, - { - id: "1999" - }, - { - id: "2000" - }, - { - id: "2001" - }, - { - id: "2002" - }, - { - id: "2003" - }, - { - id: "2004" - }, - { - id: "2005" - }, - { - id: "2006" - }, - { - id: "2007" - }, - { - id: "2008" - }, - { - id: "2009" - }, - { - id: "2010" - }, - { - id: "2011" - }, - { - id: "2012" - }, - { - id: "2013" - }, - { - id: "2014" - }, - { - id: "2015" - }, - { - id: "2016" - }, - { - id: "2017" - }, - { - id: "2018" - } - ], - organisationUnits: [], - categoryDimensions: [], - rowDimensions: [ - "pe" - ] - }, - { - lastUpdated: "2020-06-02T08:10:06.960", - id: "wleqcZVkF9U", - created: "2019-05-31T21:43:28.273", - name: "MAL - Positivity", - showData: false, - numberType: "VALUE", - publicAccess: "--------", - userOrganisationUnitChildren: false, - legendDisplayStyle: "FILL", - type: "PIVOT_TABLE", - hideEmptyColumns: false, - hideEmptyRows: false, - userOrganisationUnit: true, - rowSubTotals: false, - displayDensity: "NORMAL", - cumulativeValues: false, - completedOnly: false, - colTotals: false, - showDimensionLabels: true, - sortOrder: 0, - fontSize: "NORMAL", - topLimit: 0, - aggregationType: "DEFAULT", - userOrganisationUnitGrandChildren: false, - hideSubtitle: false, - hideLegend: false, - externalAccess: false, - percentStackedValues: false, - legendDisplayStrategy: "FIXED", - colSubTotals: false, - noSpaceBetweenColumns: false, - showHierarchy: false, - rowTotals: false, - digitGroupSeparator: "SPACE", - hideTitle: false, - regression: false, - skipRounding: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - relativePeriods: { - thisYear: false, - quartersLastYear: false, - last52Weeks: false, - thisWeek: false, - lastMonth: false, - last14Days: false, - biMonthsThisYear: false, - monthsThisYear: false, - last2SixMonths: false, - yesterday: false, - thisQuarter: false, - last12Months: false, - last5FinancialYears: false, - thisSixMonth: false, - lastQuarter: false, - thisFinancialYear: false, - last4Weeks: false, - last3Months: false, - thisDay: false, - thisMonth: false, - last5Years: false, - last6BiMonths: false, - last4BiWeeks: false, - lastFinancialYear: false, - lastBiWeek: false, - weeksThisYear: false, - last6Months: false, - last3Days: false, - quartersThisYear: false, - monthsLastYear: false, - lastWeek: false, - last7Days: false, - thisBimonth: false, - lastBimonth: false, - lastSixMonth: false, - thisBiWeek: false, - lastYear: false, - last12Weeks: false, - last4Quarters: false - }, - reportingParams: { - parentOrganisationUnit: false, - reportingPeriod: false, - organisationUnit: false, - grandParentOrganisationUnit: false - }, - user: { - id: "kD52FGwJgDF" - }, - dataElementGroupSetDimensions: [], - translations: [], - yearlySeries: [], - filterDimensions: [ - "ou" - ], - itemOrganisationUnitGroups: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "ZXEVDM9XRea", - displayName: "MAL_Malaria access", - id: "ZXEVDM9XRea" - }, - { - access: "rw------", - userGroupUid: "OviFXqdot0H", - displayName: "MAL_Malaria users", - id: "OviFXqdot0H" - }, - { - access: "rw------", - userGroupUid: "suMb19wGXPR", - displayName: "MAL_Malaria admin", - id: "suMb19wGXPR" - } - ], - subscribers: [], - columnDimensions: [ - "dx" - ], - optionalAxes: [], - userAccesses: [], - favorites: [], - dataDimensionItems: [ - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "oAJpTsMsRxv" - } - }, - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "QHcjn7FHI2w" - } - } - ], - categoryOptionGroupSetDimensions: [], - organisationUnitGroupSetDimensions: [], - organisationUnitLevels: [], - periods: [ - { - id: "2000" - }, - { - id: "2001" - }, - { - id: "2002" - }, - { - id: "2003" - }, - { - id: "2004" - }, - { - id: "2005" - }, - { - id: "2006" - }, - { - id: "2007" - }, - { - id: "2008" - }, - { - id: "2009" - }, - { - id: "2010" - }, - { - id: "2011" - }, - { - id: "2012" - }, - { - id: "2013" - }, - { - id: "2014" - }, - { - id: "2015" - }, - { - id: "2016" - }, - { - id: "2017" - }, - { - id: "2018" - } - ], - organisationUnits: [], - categoryDimensions: [], - rowDimensions: [ - "pe" - ] - }, - { - lastUpdated: "2020-06-02T08:10:06.948", - id: "T4eg1e5rjXE", - created: "2019-05-31T21:43:50.053", - name: "MAL - Conf cases & ABER", - showData: false, - numberType: "VALUE", - publicAccess: "--------", - userOrganisationUnitChildren: false, - legendDisplayStyle: "FILL", - type: "PIVOT_TABLE", - hideEmptyColumns: false, - hideEmptyRows: false, - userOrganisationUnit: true, - rowSubTotals: false, - displayDensity: "NORMAL", - cumulativeValues: false, - completedOnly: false, - colTotals: false, - showDimensionLabels: true, - sortOrder: 0, - fontSize: "NORMAL", - topLimit: 0, - aggregationType: "DEFAULT", - userOrganisationUnitGrandChildren: false, - hideSubtitle: false, - hideLegend: false, - externalAccess: false, - percentStackedValues: false, - legendDisplayStrategy: "FIXED", - colSubTotals: false, - noSpaceBetweenColumns: false, - showHierarchy: false, - rowTotals: false, - digitGroupSeparator: "SPACE", - hideTitle: false, - regression: false, - skipRounding: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - relativePeriods: { - thisYear: false, - quartersLastYear: false, - last52Weeks: false, - thisWeek: false, - lastMonth: false, - last14Days: false, - biMonthsThisYear: false, - monthsThisYear: false, - last2SixMonths: false, - yesterday: false, - thisQuarter: false, - last12Months: false, - last5FinancialYears: false, - thisSixMonth: false, - lastQuarter: false, - thisFinancialYear: false, - last4Weeks: false, - last3Months: false, - thisDay: false, - thisMonth: false, - last5Years: false, - last6BiMonths: false, - last4BiWeeks: false, - lastFinancialYear: false, - lastBiWeek: false, - weeksThisYear: false, - last6Months: false, - last3Days: false, - quartersThisYear: false, - monthsLastYear: false, - lastWeek: false, - last7Days: false, - thisBimonth: false, - lastBimonth: false, - lastSixMonth: false, - thisBiWeek: false, - lastYear: false, - last12Weeks: false, - last4Quarters: false - }, - reportingParams: { - parentOrganisationUnit: false, - reportingPeriod: false, - organisationUnit: false, - grandParentOrganisationUnit: false - }, - user: { - id: "kD52FGwJgDF" - }, - dataElementGroupSetDimensions: [], - translations: [], - yearlySeries: [], - filterDimensions: [ - "ou" - ], - itemOrganisationUnitGroups: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "ZXEVDM9XRea", - displayName: "MAL_Malaria access", - id: "ZXEVDM9XRea" - }, - { - access: "rw------", - userGroupUid: "OviFXqdot0H", - displayName: "MAL_Malaria users", - id: "OviFXqdot0H" - }, - { - access: "rw------", - userGroupUid: "suMb19wGXPR", - displayName: "MAL_Malaria admin", - id: "suMb19wGXPR" - } - ], - subscribers: [], - columnDimensions: [ - "dx" - ], - optionalAxes: [], - userAccesses: [], - favorites: [], - dataDimensionItems: [ - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "rPYLomUceL4" - } - }, - { - dataDimensionItemType: "DATA_ELEMENT", - dataElement: { - id: "jme79pGjTuu" - } - } - ], - categoryOptionGroupSetDimensions: [], - organisationUnitGroupSetDimensions: [], - organisationUnitLevels: [], - periods: [ - { - id: "2000" - }, - { - id: "2001" - }, - { - id: "2002" - }, - { - id: "2003" - }, - { - id: "2004" - }, - { - id: "2005" - }, - { - id: "2006" - }, - { - id: "2007" - }, - { - id: "2008" - }, - { - id: "2009" - }, - { - id: "2010" - }, - { - id: "2011" - }, - { - id: "2012" - }, - { - id: "2013" - }, - { - id: "2014" - }, - { - id: "2015" - }, - { - id: "2016" - }, - { - id: "2017" - }, - { - id: "2018" - } - ], - organisationUnits: [], - categoryDimensions: [], - rowDimensions: [ - "pe" - ] - }, - { - lastUpdated: "2020-06-02T08:10:05.762", - id: "eqbjzgCFSFs", - created: "2019-06-19T09:57:39.082", - name: "MAL - Reporting Comp", - showData: true, - publicAccess: "--------", - userOrganisationUnitChildren: false, - type: "LINE", - hideEmptyColumns: false, - hideEmptyRows: false, - userOrganisationUnit: true, - rowSubTotals: false, - displayDensity: "NORMAL", - regressionType: "NONE", - cumulativeValues: false, - completedOnly: false, - colTotals: false, - showDimensionLabels: false, - sortOrder: 0, - fontSize: "NORMAL", - topLimit: 0, - hideEmptyRowItems: "ALL", - aggregationType: "COUNT", - userOrganisationUnitGrandChildren: false, - hideSubtitle: false, - title: "Reporting completeness", - hideLegend: false, - externalAccess: false, - percentStackedValues: false, - colSubTotals: false, - noSpaceBetweenColumns: false, - showHierarchy: false, - rowTotals: false, - digitGroupSeparator: "SPACE", - hideTitle: false, - regression: false, - skipRounding: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - relativePeriods: { - thisYear: false, - quartersLastYear: false, - last52Weeks: false, - thisWeek: false, - lastMonth: false, - last14Days: false, - biMonthsThisYear: false, - monthsThisYear: false, - last2SixMonths: false, - yesterday: false, - thisQuarter: false, - last12Months: false, - last5FinancialYears: false, - thisSixMonth: false, - lastQuarter: false, - thisFinancialYear: false, - last4Weeks: false, - last3Months: false, - thisDay: false, - thisMonth: false, - last5Years: false, - last6BiMonths: false, - last4BiWeeks: false, - lastFinancialYear: false, - lastBiWeek: false, - weeksThisYear: false, - last6Months: false, - last3Days: false, - quartersThisYear: false, - monthsLastYear: false, - lastWeek: false, - last7Days: false, - thisBimonth: false, - lastBimonth: false, - lastSixMonth: false, - thisBiWeek: false, - lastYear: false, - last12Weeks: false, - last4Quarters: false - }, - reportingParams: { - parentOrganisationUnit: false, - reportingPeriod: false, - organisationUnit: false, - grandParentOrganisationUnit: false - }, - user: { - id: "kD52FGwJgDF" - }, - dataElementGroupSetDimensions: [], - translations: [], - yearlySeries: [], - filterDimensions: [ - "ou" - ], - itemOrganisationUnitGroups: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "ZXEVDM9XRea", - displayName: "MAL_Malaria access", - id: "ZXEVDM9XRea" - }, - { - access: "rw------", - userGroupUid: "OviFXqdot0H", - displayName: "MAL_Malaria users", - id: "OviFXqdot0H" - }, - { - access: "rw------", - userGroupUid: "suMb19wGXPR", - displayName: "MAL_Malaria admin", - id: "suMb19wGXPR" - } - ], - subscribers: [], - columnDimensions: [ - "dx" - ], - optionalAxes: [], - userAccesses: [], - favorites: [], - dataDimensionItems: [ - { - dataDimensionItemType: "DATA_ELEMENT", - dataElement: { - id: "kRasaq1REFp" - } - }, - { - dataDimensionItemType: "DATA_ELEMENT", - dataElement: { - id: "v0WZQQ6gKAX" - } - }, - { - dataDimensionItemType: "DATA_ELEMENT", - dataElement: { - id: "GxlrIgMyEf4" - } - } - ], - categoryOptionGroupSetDimensions: [], - organisationUnitGroupSetDimensions: [], - organisationUnitLevels: [], - periods: [ - { - id: "2000" - }, - { - id: "2001" - }, - { - id: "2002" - }, - { - id: "2003" - }, - { - id: "2004" - }, - { - id: "2005" - }, - { - id: "2006" - }, - { - id: "2007" - }, - { - id: "2008" - }, - { - id: "2009" - }, - { - id: "2010" - }, - { - id: "2011" - }, - { - id: "2012" - }, - { - id: "2013" - }, - { - id: "2014" - }, - { - id: "2015" - }, - { - id: "2016" - }, - { - id: "2017" - }, - { - id: "2018" - } - ], - organisationUnits: [], - categoryDimensions: [], - rowDimensions: [ - "pe" - ] - }, - { - lastUpdated: "2020-06-02T08:10:05.765", - id: "QqZNdTABzsZ", - created: "2019-04-06T11:56:54.936", - name: "MAL - Testing", - showData: true, - publicAccess: "--------", - userOrganisationUnitChildren: false, - type: "LINE", - hideEmptyColumns: false, - hideEmptyRows: false, - userOrganisationUnit: true, - rowSubTotals: false, - displayDensity: "NORMAL", - regressionType: "NONE", - cumulativeValues: false, - completedOnly: false, - colTotals: false, - showDimensionLabels: false, - sortOrder: 0, - fontSize: "NORMAL", - topLimit: 0, - hideEmptyRowItems: "ALL", - aggregationType: "DEFAULT", - userOrganisationUnitGrandChildren: false, - hideSubtitle: false, - title: "Microscopy and RDT Testing", - hideLegend: false, - externalAccess: false, - percentStackedValues: false, - colSubTotals: false, - noSpaceBetweenColumns: false, - showHierarchy: false, - rowTotals: false, - digitGroupSeparator: "SPACE", - hideTitle: false, - regression: false, - skipRounding: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - relativePeriods: { - thisYear: false, - quartersLastYear: false, - last52Weeks: false, - thisWeek: false, - lastMonth: false, - last14Days: false, - biMonthsThisYear: false, - monthsThisYear: false, - last2SixMonths: false, - yesterday: false, - thisQuarter: false, - last12Months: false, - last5FinancialYears: false, - thisSixMonth: false, - lastQuarter: false, - thisFinancialYear: false, - last4Weeks: false, - last3Months: false, - thisDay: false, - thisMonth: false, - last5Years: false, - last6BiMonths: false, - last4BiWeeks: false, - lastFinancialYear: false, - lastBiWeek: false, - weeksThisYear: false, - last6Months: false, - last3Days: false, - quartersThisYear: false, - monthsLastYear: false, - lastWeek: false, - last7Days: false, - thisBimonth: false, - lastBimonth: false, - lastSixMonth: false, - thisBiWeek: false, - lastYear: false, - last12Weeks: false, - last4Quarters: false - }, - reportingParams: { - parentOrganisationUnit: false, - reportingPeriod: false, - organisationUnit: false, - grandParentOrganisationUnit: false - }, - user: { - id: "kD52FGwJgDF" - }, - dataElementGroupSetDimensions: [], - translations: [], - yearlySeries: [], - filterDimensions: [ - "ou" - ], - itemOrganisationUnitGroups: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "ZXEVDM9XRea", - displayName: "MAL_Malaria access", - id: "ZXEVDM9XRea" - }, - { - access: "rw------", - userGroupUid: "OviFXqdot0H", - displayName: "MAL_Malaria users", - id: "OviFXqdot0H" - }, - { - access: "rw------", - userGroupUid: "suMb19wGXPR", - displayName: "MAL_Malaria admin", - id: "suMb19wGXPR" - } - ], - subscribers: [], - columnDimensions: [ - "dx" - ], - optionalAxes: [], - userAccesses: [], - favorites: [], - dataDimensionItems: [ - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "KnoBf1YCOe2" - } - }, - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "l0TE4LdzE8j" - } - } - ], - categoryOptionGroupSetDimensions: [], - organisationUnitGroupSetDimensions: [], - organisationUnitLevels: [], - periods: [ - { - id: "1997" - }, - { - id: "1998" - }, - { - id: "1999" - }, - { - id: "2000" - }, - { - id: "2001" - }, - { - id: "2002" - }, - { - id: "2003" - }, - { - id: "2004" - }, - { - id: "2005" - }, - { - id: "2006" - }, - { - id: "2007" - }, - { - id: "2009" - }, - { - id: "2010" - }, - { - id: "2011" - }, - { - id: "2012" - }, - { - id: "2013" - }, - { - id: "2014" - }, - { - id: "2015" - }, - { - id: "2016" - }, - { - id: "2017" - }, - { - id: "2018" - }, - { - id: "2019" - } - ], - organisationUnits: [], - categoryDimensions: [], - rowDimensions: [ - "pe" - ] - }, - { - lastUpdated: "2020-06-02T08:10:06.956", - id: "GmqjzU8Crmi", - created: "2019-05-31T21:42:26.625", - name: "MAL - IPD", - showData: false, - numberType: "VALUE", - publicAccess: "--------", - userOrganisationUnitChildren: false, - legendDisplayStyle: "FILL", - type: "PIVOT_TABLE", - hideEmptyColumns: false, - hideEmptyRows: false, - userOrganisationUnit: true, - rowSubTotals: false, - displayDensity: "NORMAL", - cumulativeValues: false, - completedOnly: false, - colTotals: false, - showDimensionLabels: true, - sortOrder: 0, - fontSize: "NORMAL", - topLimit: 0, - aggregationType: "DEFAULT", - userOrganisationUnitGrandChildren: false, - hideSubtitle: false, - description: "", - hideLegend: false, - externalAccess: false, - percentStackedValues: false, - legendDisplayStrategy: "FIXED", - colSubTotals: false, - noSpaceBetweenColumns: false, - showHierarchy: false, - rowTotals: false, - digitGroupSeparator: "SPACE", - hideTitle: false, - regression: false, - skipRounding: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - relativePeriods: { - thisYear: false, - quartersLastYear: false, - last52Weeks: false, - thisWeek: false, - lastMonth: false, - last14Days: false, - biMonthsThisYear: false, - monthsThisYear: false, - last2SixMonths: false, - yesterday: false, - thisQuarter: false, - last12Months: false, - last5FinancialYears: false, - thisSixMonth: false, - lastQuarter: false, - thisFinancialYear: false, - last4Weeks: false, - last3Months: false, - thisDay: false, - thisMonth: false, - last5Years: false, - last6BiMonths: false, - last4BiWeeks: false, - lastFinancialYear: false, - lastBiWeek: false, - weeksThisYear: false, - last6Months: false, - last3Days: false, - quartersThisYear: false, - monthsLastYear: false, - lastWeek: false, - last7Days: false, - thisBimonth: false, - lastBimonth: false, - lastSixMonth: false, - thisBiWeek: false, - lastYear: false, - last12Weeks: false, - last4Quarters: false - }, - reportingParams: { - parentOrganisationUnit: false, - reportingPeriod: false, - organisationUnit: false, - grandParentOrganisationUnit: false - }, - user: { - id: "kD52FGwJgDF" - }, - dataElementGroupSetDimensions: [], - translations: [], - yearlySeries: [], - filterDimensions: [ - "ou" - ], - itemOrganisationUnitGroups: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "ZXEVDM9XRea", - displayName: "MAL_Malaria access", - id: "ZXEVDM9XRea" - }, - { - access: "rw------", - userGroupUid: "OviFXqdot0H", - displayName: "MAL_Malaria users", - id: "OviFXqdot0H" - }, - { - access: "rw------", - userGroupUid: "suMb19wGXPR", - displayName: "MAL_Malaria admin", - id: "suMb19wGXPR" - } - ], - subscribers: [], - columnDimensions: [ - "dx" - ], - optionalAxes: [], - userAccesses: [], - favorites: [], - dataDimensionItems: [ - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "BhoZ0XenErj" - } - } - ], - categoryOptionGroupSetDimensions: [], - organisationUnitGroupSetDimensions: [], - organisationUnitLevels: [], - periods: [ - { - id: "2000" - }, - { - id: "2001" - }, - { - id: "2002" - }, - { - id: "2003" - }, - { - id: "2004" - }, - { - id: "2005" - }, - { - id: "2006" - }, - { - id: "2007" - }, - { - id: "2008" - }, - { - id: "2009" - }, - { - id: "2010" - }, - { - id: "2011" - }, - { - id: "2012" - }, - { - id: "2013" - }, - { - id: "2014" - }, - { - id: "2015" - }, - { - id: "2016" - }, - { - id: "2017" - }, - { - id: "2018" - } - ], - organisationUnits: [], - categoryDimensions: [], - rowDimensions: [ - "pe" - ] - }, - { - lastUpdated: "2020-06-02T08:10:06.962", - id: "uZ03Z5GgJJ0", - created: "2019-05-31T21:42:54.097", - name: "MAL - Proportion", - showData: false, - numberType: "VALUE", - publicAccess: "--------", - userOrganisationUnitChildren: false, - legendDisplayStyle: "FILL", - type: "PIVOT_TABLE", - hideEmptyColumns: false, - hideEmptyRows: false, - userOrganisationUnit: true, - rowSubTotals: false, - displayDensity: "NORMAL", - cumulativeValues: false, - completedOnly: false, - colTotals: false, - showDimensionLabels: true, - sortOrder: 0, - fontSize: "NORMAL", - topLimit: 0, - aggregationType: "DEFAULT", - userOrganisationUnitGrandChildren: false, - hideSubtitle: false, - hideLegend: false, - externalAccess: false, - percentStackedValues: false, - legendDisplayStrategy: "FIXED", - colSubTotals: false, - noSpaceBetweenColumns: false, - showHierarchy: false, - rowTotals: false, - digitGroupSeparator: "SPACE", - hideTitle: false, - regression: false, - skipRounding: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - relativePeriods: { - thisYear: false, - quartersLastYear: false, - last52Weeks: false, - thisWeek: false, - lastMonth: false, - last14Days: false, - biMonthsThisYear: false, - monthsThisYear: false, - last2SixMonths: false, - yesterday: false, - thisQuarter: false, - last12Months: false, - last5FinancialYears: false, - thisSixMonth: false, - lastQuarter: false, - thisFinancialYear: false, - last4Weeks: false, - last3Months: false, - thisDay: false, - thisMonth: false, - last5Years: false, - last6BiMonths: false, - last4BiWeeks: false, - lastFinancialYear: false, - lastBiWeek: false, - weeksThisYear: false, - last6Months: false, - last3Days: false, - quartersThisYear: false, - monthsLastYear: false, - lastWeek: false, - last7Days: false, - thisBimonth: false, - lastBimonth: false, - lastSixMonth: false, - thisBiWeek: false, - lastYear: false, - last12Weeks: false, - last4Quarters: false - }, - reportingParams: { - parentOrganisationUnit: false, - reportingPeriod: false, - organisationUnit: false, - grandParentOrganisationUnit: false - }, - user: { - id: "kD52FGwJgDF" - }, - dataElementGroupSetDimensions: [], - translations: [], - yearlySeries: [], - filterDimensions: [ - "ou" - ], - itemOrganisationUnitGroups: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "ZXEVDM9XRea", - displayName: "MAL_Malaria access", - id: "ZXEVDM9XRea" - }, - { - access: "rw------", - userGroupUid: "OviFXqdot0H", - displayName: "MAL_Malaria users", - id: "OviFXqdot0H" - }, - { - access: "rw------", - userGroupUid: "suMb19wGXPR", - displayName: "MAL_Malaria admin", - id: "suMb19wGXPR" - } - ], - subscribers: [], - columnDimensions: [ - "dx" - ], - optionalAxes: [], - userAccesses: [], - favorites: [], - dataDimensionItems: [ - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "EiWBxnS9wmk" - } - }, - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "AF99VXqV5Fe" - } - }, - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "JzWUCTqpITC" - } - } - ], - categoryOptionGroupSetDimensions: [], - organisationUnitGroupSetDimensions: [], - organisationUnitLevels: [], - periods: [ - { - id: "2000" - }, - { - id: "2001" - }, - { - id: "2002" - }, - { - id: "2003" - }, - { - id: "2004" - }, - { - id: "2005" - }, - { - id: "2006" - }, - { - id: "2007" - }, - { - id: "2008" - }, - { - id: "2009" - }, - { - id: "2010" - }, - { - id: "2011" - }, - { - id: "2012" - }, - { - id: "2013" - }, - { - id: "2014" - }, - { - id: "2015" - }, - { - id: "2016" - }, - { - id: "2017" - }, - { - id: "2018" - } - ], - organisationUnits: [], - categoryDimensions: [], - rowDimensions: [ - "pe" - ] - }, - { - lastUpdated: "2020-06-02T08:10:05.748", - id: "wSudey0Yc2R", - created: "2019-04-06T11:47:33.624", - name: "MAL - OPD", - showData: true, - publicAccess: "--------", - userOrganisationUnitChildren: false, - type: "LINE", - hideEmptyColumns: false, - hideEmptyRows: false, - userOrganisationUnit: true, - rowSubTotals: false, - displayDensity: "NORMAL", - regressionType: "NONE", - cumulativeValues: false, - completedOnly: false, - colTotals: false, - showDimensionLabels: false, - sortOrder: 0, - fontSize: "NORMAL", - topLimit: 0, - hideEmptyRowItems: "NONE", - aggregationType: "DEFAULT", - userOrganisationUnitGrandChildren: false, - hideSubtitle: false, - title: "OPD malaria vs Non-malaria OPD", - hideLegend: false, - externalAccess: false, - percentStackedValues: false, - colSubTotals: false, - noSpaceBetweenColumns: false, - showHierarchy: false, - rowTotals: false, - digitGroupSeparator: "SPACE", - hideTitle: false, - regression: false, - skipRounding: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - relativePeriods: { - thisYear: false, - quartersLastYear: false, - last52Weeks: false, - thisWeek: false, - lastMonth: false, - last14Days: false, - biMonthsThisYear: false, - monthsThisYear: false, - last2SixMonths: false, - yesterday: false, - thisQuarter: false, - last12Months: false, - last5FinancialYears: false, - thisSixMonth: false, - lastQuarter: false, - thisFinancialYear: false, - last4Weeks: false, - last3Months: false, - thisDay: false, - thisMonth: false, - last5Years: false, - last6BiMonths: false, - last4BiWeeks: false, - lastFinancialYear: false, - lastBiWeek: false, - weeksThisYear: false, - last6Months: false, - last3Days: false, - quartersThisYear: false, - monthsLastYear: false, - lastWeek: false, - last7Days: false, - thisBimonth: false, - lastBimonth: false, - lastSixMonth: false, - thisBiWeek: false, - lastYear: false, - last12Weeks: false, - last4Quarters: false - }, - reportingParams: { - parentOrganisationUnit: false, - reportingPeriod: false, - organisationUnit: false, - grandParentOrganisationUnit: false - }, - user: { - id: "kD52FGwJgDF" - }, - dataElementGroupSetDimensions: [], - translations: [], - yearlySeries: [], - filterDimensions: [ - "ou" - ], - itemOrganisationUnitGroups: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "ZXEVDM9XRea", - displayName: "MAL_Malaria access", - id: "ZXEVDM9XRea" - }, - { - access: "rw------", - userGroupUid: "OviFXqdot0H", - displayName: "MAL_Malaria users", - id: "OviFXqdot0H" - }, - { - access: "rw------", - userGroupUid: "suMb19wGXPR", - displayName: "MAL_Malaria admin", - id: "suMb19wGXPR" - } - ], - subscribers: [], - columnDimensions: [ - "dx" - ], - optionalAxes: [], - userAccesses: [], - favorites: [], - dataDimensionItems: [ - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "rOt4BctnRqS" - } - }, - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "J06o672aumY" - } - } - ], - categoryOptionGroupSetDimensions: [], - organisationUnitGroupSetDimensions: [], - organisationUnitLevels: [], - periods: [ - { - id: "1997" - }, - { - id: "1998" - }, - { - id: "1999" - }, - { - id: "2000" - }, - { - id: "2001" - }, - { - id: "2002" - }, - { - id: "2003" - }, - { - id: "2004" - }, - { - id: "2005" - }, - { - id: "2006" - }, - { - id: "2007" - }, - { - id: "2008" - }, - { - id: "2009" - }, - { - id: "2010" - }, - { - id: "2011" - }, - { - id: "2012" - }, - { - id: "2013" - }, - { - id: "2014" - }, - { - id: "2015" - }, - { - id: "2016" - }, - { - id: "2017" - }, - { - id: "2018" - } - ], - organisationUnits: [], - categoryDimensions: [], - rowDimensions: [ - "pe" - ] - }, - { - lastUpdated: "2020-06-02T08:10:06.958", - id: "qo7xD7OTGcF", - created: "2019-05-31T21:41:45.698", - name: "MAL - Microscopy", - showData: false, - numberType: "VALUE", - publicAccess: "--------", - userOrganisationUnitChildren: false, - legendDisplayStyle: "FILL", - type: "PIVOT_TABLE", - hideEmptyColumns: false, - hideEmptyRows: false, - userOrganisationUnit: true, - rowSubTotals: false, - displayDensity: "NORMAL", - cumulativeValues: false, - completedOnly: false, - colTotals: false, - showDimensionLabels: true, - sortOrder: 0, - fontSize: "NORMAL", - topLimit: 0, - aggregationType: "DEFAULT", - userOrganisationUnitGrandChildren: false, - hideSubtitle: false, - hideLegend: false, - externalAccess: false, - percentStackedValues: false, - legendDisplayStrategy: "FIXED", - colSubTotals: false, - noSpaceBetweenColumns: false, - showHierarchy: false, - rowTotals: false, - digitGroupSeparator: "SPACE", - hideTitle: false, - regression: false, - skipRounding: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - relativePeriods: { - thisYear: false, - quartersLastYear: false, - last52Weeks: false, - thisWeek: false, - lastMonth: false, - last14Days: false, - biMonthsThisYear: false, - monthsThisYear: false, - last2SixMonths: false, - yesterday: false, - thisQuarter: false, - last12Months: false, - last5FinancialYears: false, - thisSixMonth: false, - lastQuarter: false, - thisFinancialYear: false, - last4Weeks: false, - last3Months: false, - thisDay: false, - thisMonth: false, - last5Years: false, - last6BiMonths: false, - last4BiWeeks: false, - lastFinancialYear: false, - lastBiWeek: false, - weeksThisYear: false, - last6Months: false, - last3Days: false, - quartersThisYear: false, - monthsLastYear: false, - lastWeek: false, - last7Days: false, - thisBimonth: false, - lastBimonth: false, - lastSixMonth: false, - thisBiWeek: false, - lastYear: false, - last12Weeks: false, - last4Quarters: false - }, - reportingParams: { - parentOrganisationUnit: false, - reportingPeriod: false, - organisationUnit: false, - grandParentOrganisationUnit: false - }, - user: { - id: "kD52FGwJgDF" - }, - dataElementGroupSetDimensions: [], - translations: [], - yearlySeries: [], - filterDimensions: [ - "ou" - ], - itemOrganisationUnitGroups: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "ZXEVDM9XRea", - displayName: "MAL_Malaria access", - id: "ZXEVDM9XRea" - }, - { - access: "rw------", - userGroupUid: "OviFXqdot0H", - displayName: "MAL_Malaria users", - id: "OviFXqdot0H" - }, - { - access: "rw------", - userGroupUid: "suMb19wGXPR", - displayName: "MAL_Malaria admin", - id: "suMb19wGXPR" - } - ], - subscribers: [], - columnDimensions: [ - "dx" - ], - optionalAxes: [], - userAccesses: [], - favorites: [], - dataDimensionItems: [ - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "KnoBf1YCOe2" - } - }, - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "w44M511O2yp" - } - } - ], - categoryOptionGroupSetDimensions: [], - organisationUnitGroupSetDimensions: [], - organisationUnitLevels: [], - periods: [ - { - id: "2009" - }, - { - id: "2010" - }, - { - id: "2011" - }, - { - id: "2012" - }, - { - id: "2013" - }, - { - id: "2014" - }, - { - id: "2015" - }, - { - id: "2016" - }, - { - id: "2017" - }, - { - id: "2018" - }, - { - id: "2002" - }, - { - id: "2003" - }, - { - id: "2004" - }, - { - id: "2005" - }, - { - id: "2006" - }, - { - id: "2007" - }, - { - id: "2008" - }, - { - id: "2000" - }, - { - id: "2001" - } - ], - organisationUnits: [], - categoryDimensions: [], - rowDimensions: [ - "pe" - ] - }, - { - lastUpdated: "2020-06-02T08:10:05.744", - id: "tq6l6xuECZo", - created: "2019-04-06T11:45:42.916", - name: "MAL - Deaths", - showData: true, - publicAccess: "--------", - userOrganisationUnitChildren: false, - type: "LINE", - hideEmptyColumns: false, - hideEmptyRows: false, - userOrganisationUnit: true, - rowSubTotals: false, - displayDensity: "NORMAL", - regressionType: "NONE", - cumulativeValues: false, - completedOnly: false, - colTotals: false, - showDimensionLabels: false, - sortOrder: 0, - fontSize: "NORMAL", - topLimit: 0, - hideEmptyRowItems: "ALL", - aggregationType: "DEFAULT", - userOrganisationUnitGrandChildren: false, - hideSubtitle: false, - title: "Malaria and Non-malaria deaths", - hideLegend: false, - externalAccess: false, - percentStackedValues: false, - colSubTotals: false, - noSpaceBetweenColumns: false, - showHierarchy: false, - rowTotals: false, - digitGroupSeparator: "SPACE", - hideTitle: false, - regression: false, - skipRounding: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - relativePeriods: { - thisYear: false, - quartersLastYear: false, - last52Weeks: false, - thisWeek: false, - lastMonth: false, - last14Days: false, - biMonthsThisYear: false, - monthsThisYear: false, - last2SixMonths: false, - yesterday: false, - thisQuarter: false, - last12Months: false, - last5FinancialYears: false, - thisSixMonth: false, - lastQuarter: false, - thisFinancialYear: false, - last4Weeks: false, - last3Months: false, - thisDay: false, - thisMonth: false, - last5Years: false, - last6BiMonths: false, - last4BiWeeks: false, - lastFinancialYear: false, - lastBiWeek: false, - weeksThisYear: false, - last6Months: false, - last3Days: false, - quartersThisYear: false, - monthsLastYear: false, - lastWeek: false, - last7Days: false, - thisBimonth: false, - lastBimonth: false, - lastSixMonth: false, - thisBiWeek: false, - lastYear: false, - last12Weeks: false, - last4Quarters: false - }, - reportingParams: { - parentOrganisationUnit: false, - reportingPeriod: false, - organisationUnit: false, - grandParentOrganisationUnit: false - }, - user: { - id: "kD52FGwJgDF" - }, - dataElementGroupSetDimensions: [], - translations: [], - yearlySeries: [], - filterDimensions: [ - "ou" - ], - itemOrganisationUnitGroups: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "ZXEVDM9XRea", - displayName: "MAL_Malaria access", - id: "ZXEVDM9XRea" - }, - { - access: "rw------", - userGroupUid: "OviFXqdot0H", - displayName: "MAL_Malaria users", - id: "OviFXqdot0H" - }, - { - access: "rw------", - userGroupUid: "suMb19wGXPR", - displayName: "MAL_Malaria admin", - id: "suMb19wGXPR" - } - ], - subscribers: [], - columnDimensions: [ - "dx" - ], - optionalAxes: [], - userAccesses: [], - favorites: [], - dataDimensionItems: [ - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "FdfpxYmcsC3" - } - }, - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "FHm610XVh02" - } - } - ], - categoryOptionGroupSetDimensions: [], - organisationUnitGroupSetDimensions: [], - organisationUnitLevels: [], - periods: [ - { - id: "1997" - }, - { - id: "1998" - }, - { - id: "1999" - }, - { - id: "2000" - }, - { - id: "2001" - }, - { - id: "2002" - }, - { - id: "2003" - }, - { - id: "2004" - }, - { - id: "2005" - }, - { - id: "2006" - }, - { - id: "2007" - }, - { - id: "2008" - }, - { - id: "2009" - }, - { - id: "2010" - }, - { - id: "2011" - }, - { - id: "2012" - }, - { - id: "2013" - }, - { - id: "2014" - }, - { - id: "2015" - }, - { - id: "2016" - }, - { - id: "2017" - }, - { - id: "2018" - } - ], - organisationUnits: [], - categoryDimensions: [], - rowDimensions: [ - "pe" - ] - }, - { - lastUpdated: "2020-06-02T08:10:06.954", - id: "Cyy6FR0wEGe", - created: "2019-05-31T21:42:05.989", - name: "MAL - Deaths", - showData: false, - numberType: "VALUE", - publicAccess: "--------", - userOrganisationUnitChildren: false, - legendDisplayStyle: "FILL", - type: "PIVOT_TABLE", - hideEmptyColumns: false, - hideEmptyRows: false, - userOrganisationUnit: true, - rowSubTotals: false, - displayDensity: "NORMAL", - cumulativeValues: false, - completedOnly: false, - colTotals: false, - showDimensionLabels: false, - sortOrder: 0, - fontSize: "NORMAL", - topLimit: 0, - aggregationType: "DEFAULT", - userOrganisationUnitGrandChildren: false, - hideSubtitle: false, - hideLegend: false, - externalAccess: false, - percentStackedValues: false, - legendDisplayStrategy: "FIXED", - colSubTotals: false, - noSpaceBetweenColumns: false, - showHierarchy: false, - rowTotals: false, - digitGroupSeparator: "SPACE", - hideTitle: false, - regression: false, - skipRounding: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - relativePeriods: { - thisYear: false, - quartersLastYear: false, - last52Weeks: false, - thisWeek: false, - lastMonth: false, - last14Days: false, - biMonthsThisYear: false, - monthsThisYear: false, - last2SixMonths: false, - yesterday: false, - thisQuarter: false, - last12Months: false, - last5FinancialYears: false, - thisSixMonth: false, - lastQuarter: false, - thisFinancialYear: false, - last4Weeks: false, - last3Months: false, - thisDay: false, - thisMonth: false, - last5Years: false, - last6BiMonths: false, - last4BiWeeks: false, - lastFinancialYear: false, - lastBiWeek: false, - weeksThisYear: false, - last6Months: false, - last3Days: false, - quartersThisYear: false, - monthsLastYear: false, - lastWeek: false, - last7Days: false, - thisBimonth: false, - lastBimonth: false, - lastSixMonth: false, - thisBiWeek: false, - lastYear: false, - last12Weeks: false, - last4Quarters: false - }, - reportingParams: { - parentOrganisationUnit: false, - reportingPeriod: false, - organisationUnit: false, - grandParentOrganisationUnit: false - }, - user: { - id: "kD52FGwJgDF" - }, - dataElementGroupSetDimensions: [], - translations: [], - yearlySeries: [], - filterDimensions: [ - "ou" - ], - itemOrganisationUnitGroups: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "ZXEVDM9XRea", - displayName: "MAL_Malaria access", - id: "ZXEVDM9XRea" - }, - { - access: "rw------", - userGroupUid: "OviFXqdot0H", - displayName: "MAL_Malaria users", - id: "OviFXqdot0H" - }, - { - access: "rw------", - userGroupUid: "suMb19wGXPR", - displayName: "MAL_Malaria admin", - id: "suMb19wGXPR" - } - ], - subscribers: [], - columnDimensions: [ - "dx" - ], - optionalAxes: [], - userAccesses: [], - favorites: [], - dataDimensionItems: [ - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "FdfpxYmcsC3" - } - } - ], - categoryOptionGroupSetDimensions: [], - organisationUnitGroupSetDimensions: [], - organisationUnitLevels: [], - periods: [ - { - id: "2000" - }, - { - id: "2001" - }, - { - id: "2002" - }, - { - id: "2003" - }, - { - id: "2004" - }, - { - id: "2005" - }, - { - id: "2006" - }, - { - id: "2007" - }, - { - id: "2008" - }, - { - id: "2009" - }, - { - id: "2010" - }, - { - id: "2011" - }, - { - id: "2012" - }, - { - id: "2013" - }, - { - id: "2014" - }, - { - id: "2015" - }, - { - id: "2016" - }, - { - id: "2017" - }, - { - id: "2018" - } - ], - organisationUnits: [], - categoryDimensions: [], - rowDimensions: [ - "pe" - ] - }, - { - lastUpdated: "2020-06-02T08:10:05.764", - id: "bIwPfcT9JVN", - created: "2018-01-16T10:31:41.996", - name: "MAL - Surveillance (cases and threshold) - last 12 months", - showData: true, - publicAccess: "--------", - userOrganisationUnitChildren: false, - type: "LINE", - hideEmptyColumns: false, - hideEmptyRows: false, - userOrganisationUnit: true, - rowSubTotals: false, - displayDensity: "NORMAL", - regressionType: "NONE", - cumulativeValues: false, - completedOnly: false, - colTotals: false, - showDimensionLabels: false, - sortOrder: 0, - fontSize: "NORMAL", - topLimit: 0, - hideEmptyRowItems: "NONE", - aggregationType: "DEFAULT", - userOrganisationUnitGrandChildren: false, - hideSubtitle: false, - title: "Malaria surveillance", - hideLegend: false, - externalAccess: false, - percentStackedValues: false, - colSubTotals: false, - noSpaceBetweenColumns: false, - showHierarchy: false, - rowTotals: false, - digitGroupSeparator: "SPACE", - hideTitle: false, - regression: false, - skipRounding: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - relativePeriods: { - thisYear: false, - quartersLastYear: false, - last52Weeks: false, - thisWeek: false, - lastMonth: false, - last14Days: false, - biMonthsThisYear: false, - monthsThisYear: false, - last2SixMonths: false, - yesterday: false, - thisQuarter: false, - last12Months: true, - last5FinancialYears: false, - thisSixMonth: false, - lastQuarter: false, - thisFinancialYear: false, - last4Weeks: false, - last3Months: false, - thisDay: false, - thisMonth: false, - last5Years: false, - last6BiMonths: false, - last4BiWeeks: false, - lastFinancialYear: false, - lastBiWeek: false, - weeksThisYear: false, - last6Months: false, - last3Days: false, - quartersThisYear: false, - monthsLastYear: false, - lastWeek: false, - last7Days: false, - thisBimonth: false, - lastBimonth: false, - lastSixMonth: false, - thisBiWeek: false, - lastYear: false, - last12Weeks: false, - last4Quarters: false - }, - reportingParams: { - parentOrganisationUnit: false, - reportingPeriod: false, - organisationUnit: false, - grandParentOrganisationUnit: false - }, - user: { - id: "kD52FGwJgDF" - }, - dataElementGroupSetDimensions: [], - translations: [], - yearlySeries: [], - filterDimensions: [ - "ou" - ], - itemOrganisationUnitGroups: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "ZXEVDM9XRea", - displayName: "MAL_Malaria access", - id: "ZXEVDM9XRea" - }, - { - access: "rw------", - userGroupUid: "OviFXqdot0H", - displayName: "MAL_Malaria users", - id: "OviFXqdot0H" - }, - { - access: "rw------", - userGroupUid: "suMb19wGXPR", - displayName: "MAL_Malaria admin", - id: "suMb19wGXPR" - } - ], - subscribers: [], - columnDimensions: [ - "dx" - ], - optionalAxes: [], - userAccesses: [], - favorites: [], - dataDimensionItems: [ - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "rPYLomUceL4" - } - }, - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "tIWGvDkU6lb" - } - }, - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "bA6kgEyRkg0" - } - } - ], - categoryOptionGroupSetDimensions: [], - organisationUnitGroupSetDimensions: [], - organisationUnitLevels: [], - periods: [], - organisationUnits: [], - categoryDimensions: [], - rowDimensions: [ - "pe" - ] - }, - { - lastUpdated: "2020-06-02T08:10:05.752", - id: "SKJkOTlS8vN", - created: "2019-04-06T11:50:13.171", - name: "MAL - Positivity", - showData: true, - publicAccess: "--------", - userOrganisationUnitChildren: false, - type: "LINE", - hideEmptyColumns: false, - hideEmptyRows: false, - userOrganisationUnit: true, - rowSubTotals: false, - displayDensity: "NORMAL", - regressionType: "NONE", - cumulativeValues: false, - completedOnly: false, - colTotals: false, - showDimensionLabels: false, - sortOrder: 0, - fontSize: "NORMAL", - topLimit: 0, - hideEmptyRowItems: "ALL", - aggregationType: "DEFAULT", - userOrganisationUnitGrandChildren: false, - hideSubtitle: false, - title: "Test Positivity", - hideLegend: false, - externalAccess: false, - percentStackedValues: false, - colSubTotals: false, - noSpaceBetweenColumns: false, - showHierarchy: false, - rowTotals: false, - digitGroupSeparator: "SPACE", - hideTitle: false, - regression: false, - skipRounding: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - relativePeriods: { - thisYear: false, - quartersLastYear: false, - last52Weeks: false, - thisWeek: false, - lastMonth: false, - last14Days: false, - biMonthsThisYear: false, - monthsThisYear: false, - last2SixMonths: false, - yesterday: false, - thisQuarter: false, - last12Months: false, - last5FinancialYears: false, - thisSixMonth: false, - lastQuarter: false, - thisFinancialYear: false, - last4Weeks: false, - last3Months: false, - thisDay: false, - thisMonth: false, - last5Years: false, - last6BiMonths: false, - last4BiWeeks: false, - lastFinancialYear: false, - lastBiWeek: false, - weeksThisYear: false, - last6Months: false, - last3Days: false, - quartersThisYear: false, - monthsLastYear: false, - lastWeek: false, - last7Days: false, - thisBimonth: false, - lastBimonth: false, - lastSixMonth: false, - thisBiWeek: false, - lastYear: false, - last12Weeks: false, - last4Quarters: false - }, - reportingParams: { - parentOrganisationUnit: false, - reportingPeriod: false, - organisationUnit: false, - grandParentOrganisationUnit: false - }, - user: { - id: "kD52FGwJgDF" - }, - dataElementGroupSetDimensions: [], - translations: [], - yearlySeries: [], - filterDimensions: [ - "ou" - ], - itemOrganisationUnitGroups: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "ZXEVDM9XRea", - displayName: "MAL_Malaria access", - id: "ZXEVDM9XRea" - }, - { - access: "rw------", - userGroupUid: "OviFXqdot0H", - displayName: "MAL_Malaria users", - id: "OviFXqdot0H" - }, - { - access: "rw------", - userGroupUid: "suMb19wGXPR", - displayName: "MAL_Malaria admin", - id: "suMb19wGXPR" - } - ], - subscribers: [], - columnDimensions: [ - "dx" - ], - optionalAxes: [], - userAccesses: [], - favorites: [], - dataDimensionItems: [ - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "oAJpTsMsRxv" - } - }, - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "QHcjn7FHI2w" - } - } - ], - categoryOptionGroupSetDimensions: [], - organisationUnitGroupSetDimensions: [], - organisationUnitLevels: [], - periods: [ - { - id: "1997" - }, - { - id: "1998" - }, - { - id: "1999" - }, - { - id: "2000" - }, - { - id: "2001" - }, - { - id: "2002" - }, - { - id: "2003" - }, - { - id: "2004" - }, - { - id: "2005" - }, - { - id: "2006" - }, - { - id: "2007" - }, - { - id: "2008" - }, - { - id: "2009" - }, - { - id: "2010" - }, - { - id: "2011" - }, - { - id: "2012" - }, - { - id: "2013" - }, - { - id: "2014" - }, - { - id: "2015" - }, - { - id: "2016" - }, - { - id: "2017" - }, - { - id: "2018" - } - ], - organisationUnits: [], - categoryDimensions: [], - rowDimensions: [ - "pe" - ] - }, - { - lastUpdated: "2020-06-02T08:10:05.755", - id: "pnEMZYfUAZt", - created: "2019-04-06T11:50:40.531", - name: "MAL - Proportion", - showData: true, - publicAccess: "--------", - userOrganisationUnitChildren: false, - type: "LINE", - hideEmptyColumns: false, - hideEmptyRows: false, - userOrganisationUnit: true, - rowSubTotals: false, - displayDensity: "NORMAL", - regressionType: "NONE", - cumulativeValues: false, - completedOnly: false, - colTotals: false, - showDimensionLabels: false, - sortOrder: 0, - fontSize: "NORMAL", - topLimit: 0, - hideEmptyRowItems: "ALL", - aggregationType: "DEFAULT", - userOrganisationUnitGrandChildren: false, - hideSubtitle: false, - title: "Proportions (OPD,IPD, Deaths)", - hideLegend: false, - externalAccess: false, - percentStackedValues: false, - colSubTotals: false, - noSpaceBetweenColumns: false, - showHierarchy: false, - rowTotals: false, - digitGroupSeparator: "SPACE", - hideTitle: false, - regression: false, - skipRounding: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - relativePeriods: { - thisYear: false, - quartersLastYear: false, - last52Weeks: false, - thisWeek: false, - lastMonth: false, - last14Days: false, - biMonthsThisYear: false, - monthsThisYear: false, - last2SixMonths: false, - yesterday: false, - thisQuarter: false, - last12Months: false, - last5FinancialYears: false, - thisSixMonth: false, - lastQuarter: false, - thisFinancialYear: false, - last4Weeks: false, - last3Months: false, - thisDay: false, - thisMonth: false, - last5Years: false, - last6BiMonths: false, - last4BiWeeks: false, - lastFinancialYear: false, - lastBiWeek: false, - weeksThisYear: false, - last6Months: false, - last3Days: false, - quartersThisYear: false, - monthsLastYear: false, - lastWeek: false, - last7Days: false, - thisBimonth: false, - lastBimonth: false, - lastSixMonth: false, - thisBiWeek: false, - lastYear: false, - last12Weeks: false, - last4Quarters: false - }, - reportingParams: { - parentOrganisationUnit: false, - reportingPeriod: false, - organisationUnit: false, - grandParentOrganisationUnit: false - }, - user: { - id: "kD52FGwJgDF" - }, - dataElementGroupSetDimensions: [], - translations: [], - yearlySeries: [], - filterDimensions: [ - "ou" - ], - itemOrganisationUnitGroups: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "ZXEVDM9XRea", - displayName: "MAL_Malaria access", - id: "ZXEVDM9XRea" - }, - { - access: "rw------", - userGroupUid: "OviFXqdot0H", - displayName: "MAL_Malaria users", - id: "OviFXqdot0H" - }, - { - access: "rw------", - userGroupUid: "suMb19wGXPR", - displayName: "MAL_Malaria admin", - id: "suMb19wGXPR" - } - ], - subscribers: [], - columnDimensions: [ - "dx" - ], - optionalAxes: [], - userAccesses: [], - favorites: [], - dataDimensionItems: [ - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "EiWBxnS9wmk" - } - }, - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "AF99VXqV5Fe" - } - }, - { - dataDimensionItemType: "INDICATOR", - indicator: { - id: "JzWUCTqpITC" - } - } - ], - categoryOptionGroupSetDimensions: [], - organisationUnitGroupSetDimensions: [], - organisationUnitLevels: [], - periods: [ - { - id: "1997" - }, - { - id: "1998" - }, - { - id: "1999" - }, - { - id: "2000" - }, - { - id: "2001" - }, - { - id: "2002" - }, - { - id: "2003" - }, - { - id: "2004" - }, - { - id: "2005" - }, - { - id: "2006" - }, - { - id: "2007" - }, - { - id: "2008" - }, - { - id: "2009" - }, - { - id: "2010" - }, - { - id: "2011" - }, - { - id: "2012" - }, - { - id: "2013" - }, - { - id: "2014" - }, - { - id: "2015" - }, - { - id: "2016" - }, - { - id: "2017" - }, - { - id: "2018" - } - ], - organisationUnits: [], - categoryDimensions: [], - rowDimensions: [ - "pe" - ] - } - ] - }, - program1: { - categoryCombos: [ - { - code: "default", - created: "2017-05-10T17:53:55.156", - lastUpdated: "2019-02-20T16:22:55.336", - name: "default", - id: "JzvGfLYkX17", - dataDimensionType: "DISAGGREGATION", - publicAccess: "rw------", - skipTotal: false, - lastUpdatedBy: { - id: "eK26I7dRbC4", - }, - user: { - id: "eK26I7dRbC4", - }, - userGroupAccesses: [], - translations: [], - userAccesses: [], - categories: [ - { - id: "DMyxTSpvKOp", - }, - ], - }, - ], - programs: [ { - lastUpdated: "2020-06-04T17:17:44.859", - id: "yx6VLBFBlrK", - created: "2019-08-21T11:19:35.553", - name: "ADMIN_Analytics_Check(Event)", - shortName: "ADMIN_Analytics_Check(Event)", + created: "2017-05-31T21:15:05.427", + lastUpdated: "2021-06-09T15:16:44.954", + name: "01-Malaria Burden Reduction", + id: "sLldHZZgnFx", publicAccess: "--------", - completeEventsExpiryDays: 0, - ignoreOverdueEvents: false, - skipOffline: false, - featureType: "NONE", - minAttributesRequiredToSearch: 1, - displayFrontPageList: false, - onlyEnrollOnce: false, - programType: "WITHOUT_REGISTRATION", - accessLevel: "OPEN", - version: 1, - maxTeiCountToReturn: 0, - selectIncidentDatesInFuture: false, - displayIncidentDate: true, - selectEnrollmentDatesInFuture: false, - expiryDays: 0, - useFirstStageDuringRegistration: false, - categoryCombo: { - id: "JzvGfLYkX17", - }, + externalAccess: false, lastUpdatedBy: { - id: "H4atNsEuKxP", + id: "kD52FGwJgDF", }, user: { - id: "kD52FGwJgDF", + id: "YdBcEIZpRHo", }, - programTrackedEntityAttributes: [], - notificationTemplates: [], - translations: [], - organisationUnits: [ - { - id: "H8RixfF8ugH", - }, - ], + favorites: ["YdBcEIZpRHo", "HUh7ns5NBfm", "t6Xqbz61KaN", "s9MM39gyJ7A", "j7tkmEYS6mr"], userGroupAccesses: [ { - access: "r-r-----", - userGroupUid: "sCjEPgiOhP1", - displayName: "WIDP admins", - id: "sCjEPgiOhP1", - }, - { - access: "rwrw----", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg", - }, - ], - programSections: [], - attributeValues: [], - programStages: [ - { - id: "EGA9fqLFtxM", + access: "r-------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR", }, - ], - userAccesses: [], - }, - ], - categoryOptionCombos: [ - { - lastUpdated: "2017-05-10T17:53:55.158", - code: "default", - created: "2017-05-10T17:53:55.157", - name: "default", - id: "Xr12mI7VPn3", - ignoreApproval: false, - categoryCombo: { - id: "JzvGfLYkX17", - }, - translations: [], - attributeValues: [], - categoryOptions: [ { - id: "Y7fcspgsU43", + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea", }, ], - }, - ], - programStages: [ - { - lastUpdated: "2020-06-04T17:17:44.805", - id: "EGA9fqLFtxM", - created: "2019-08-21T11:19:35.521", - name: "ADMIN_Analytics_Check(Event)", - allowGenerateNextVisit: false, - preGenerateUID: false, - publicAccess: "--------", - openAfterEnrollment: false, - repeatable: false, - featureType: "NONE", - remindCompleted: false, - displayGenerateEventBox: true, - generatedByEnrollmentDate: false, - validationStrategy: "ON_UPDATE_AND_INSERT", - autoGenerateEvent: true, - sortOrder: 1, - hideDueDate: false, - blockEntryForm: false, - enableUserAssignment: false, - minDaysFromStart: 0, - program: { - id: "yx6VLBFBlrK", - }, - lastUpdatedBy: { - id: "H4atNsEuKxP", - }, - user: { - id: "kD52FGwJgDF", - }, - notificationTemplates: [], - programStageDataElements: [ + dashboardItems: [ { - lastUpdated: "2020-06-04T17:17:44.806", - id: "QxkWkYWHGhS", - created: "2019-09-10T17:17:31.872", - displayInReports: false, - skipSynchronization: false, + lastUpdated: "2020-04-14T18:23:01.630", + id: "bndKqtV1ZGl", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 1, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 80, + interpretationLikeCount: 0, favorite: false, + visualization: { + id: "bIwPfcT9JVN", + }, access: { read: true, update: true, @@ -8656,31 +4863,68 @@ export const metadata: Record> = { write: true, manage: true, }, - programStage: { - id: "EGA9fqLFtxM", + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2020-04-14T18:23:01.630", + id: "LLJURREsNnj", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 29, + y: 40, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "SKJkOTlS8vN", }, - dataElement: { - id: "JKmrptCJjQN", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, }, favorites: [], + reports: [], translations: [], userGroupAccesses: [], attributeValues: [], + resources: [], + users: [], userAccesses: [], }, { - lastUpdated: "2020-06-04T17:17:44.806", - id: "lggWjTVxKXg", - created: "2019-09-10T17:17:44.152", - displayInReports: false, - skipSynchronization: false, + lastUpdated: "2020-04-14T18:23:01.630", + id: "imp9cY9m5EA", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 2, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 29, + y: 0, + interpretationLikeCount: 0, favorite: false, + visualization: { + id: "QqZNdTABzsZ", + }, access: { read: true, update: true, @@ -8689,285 +4933,208 @@ export const metadata: Record> = { write: true, manage: true, }, - programStage: { - id: "EGA9fqLFtxM", + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2020-04-14T18:23:01.631", + id: "COP5m9xs6iY", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 40, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "tq6l6xuECZo", }, - dataElement: { - id: "KfhTiPYwKPm", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, }, favorites: [], + reports: [], translations: [], userGroupAccesses: [], attributeValues: [], + resources: [], + users: [], userAccesses: [], }, - ], - translations: [], - userGroupAccesses: [ { - access: "r-r-----", - userGroupUid: "sCjEPgiOhP1", - displayName: "WIDP admins", - id: "sCjEPgiOhP1", + lastUpdated: "2020-04-14T18:23:01.631", + id: "GBuwmMa1iGE", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 29, + y: 20, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "mmdI4h7KdLL", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], }, { - access: "rwrw----", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg", + lastUpdated: "2020-04-14T18:23:01.631", + id: "Jx1yxCt3wvY", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 20, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "pnEMZYfUAZt", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], }, - ], - attributeValues: [], - userAccesses: [], - programStageSections: [], - }, - ], - categoryOptions: [ - { - code: "default", - created: "2017-05-10T17:53:55.138", - lastUpdated: "2018-07-27T16:09:07.425", - name: "default", - id: "Y7fcspgsU43", - shortName: "default", - publicAccess: "rwrw----", - user: { - id: "eK26I7dRbC4", - }, - userGroupAccesses: [], - attributeValues: [], - translations: [], - userAccesses: [], - organisationUnits: [], - }, - ], - dataElements: [ - { - lastUpdated: "2020-06-05T11:13:45.280", - id: "JKmrptCJjQN", - created: "2019-09-10T17:16:59.679", - name: "ADMIN_Analytics_Execution_1_Events", - shortName: "ADMIN_Analytics_Execution_1_Events", - aggregationType: "SUM", - domainType: "TRACKER", - publicAccess: "--------", - valueType: "TRUE_ONLY", - formName: "Analytics run at 0h", - zeroIsSignificant: true, - categoryCombo: { - id: "JzvGfLYkX17", - }, - lastUpdatedBy: { - id: "eK26I7dRbC4", - }, - user: { - id: "H4atNsEuKxP", - }, - translations: [], - userGroupAccesses: [ { - access: "r-------", - userGroupUid: "sCjEPgiOhP1", - displayName: "WIDP admins", - id: "sCjEPgiOhP1", + lastUpdated: "2020-04-14T18:23:01.631", + id: "NGkPe7Z2xco", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 60, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "XG7LBCz7nQn", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], }, { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg", - }, - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [], - }, - { - lastUpdated: "2020-06-05T11:13:56.574", - id: "KfhTiPYwKPm", - created: "2019-09-10T17:17:18.194", - name: "ADMIN_Analytics_Execution_2_Events", - shortName: "ADMIN_Analytics_Execution_2_Events", - aggregationType: "SUM", - domainType: "TRACKER", - publicAccess: "--------", - valueType: "TRUE_ONLY", - formName: "Analytics run at 12h", - zeroIsSignificant: true, - categoryCombo: { - id: "JzvGfLYkX17", - }, - lastUpdatedBy: { - id: "eK26I7dRbC4", - }, - user: { - id: "H4atNsEuKxP", - }, - translations: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "sCjEPgiOhP1", - displayName: "WIDP admins", - id: "sCjEPgiOhP1", - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg", - }, - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [], - }, - ], - categories: [ - { - code: "default", - created: "2017-05-10T17:53:55.152", - lastUpdated: "2021-08-07T06:18:19.628", - name: "default", - id: "DMyxTSpvKOp", - dataDimensionType: "DISAGGREGATION", - publicAccess: "rw------", - dataDimension: false, - user: { - id: "eK26I7dRbC4", - }, - userGroupAccesses: [], - attributeValues: [], - translations: [], - userAccesses: [], - categoryOptions: [ - { - id: "Y7fcspgsU43", - }, - ], - }, - ], - programStageDataElements: [ - { - created: "2019-09-10T17:17:31.872", - lastUpdated: "2020-06-04T17:17:44.806", - id: "QxkWkYWHGhS", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 1, - allowFutureDate: false, - programStage: { - id: "EGA9fqLFtxM", - }, - dataElement: { - id: "JKmrptCJjQN", - }, - }, - { - created: "2019-09-10T17:17:44.152", - lastUpdated: "2020-06-04T17:17:44.806", - id: "lggWjTVxKXg", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 2, - allowFutureDate: false, - programStage: { - id: "EGA9fqLFtxM", - }, - dataElement: { - id: "KfhTiPYwKPm", - }, - }, - ], - }, - program2: { - categoryCombos: [ - { - code: "default", - created: "2017-05-10T17:53:55.156", - lastUpdated: "2019-02-20T16:22:55.336", - name: "default", - id: "JzvGfLYkX17", - dataDimensionType: "DISAGGREGATION", - publicAccess: "rw------", - skipTotal: false, - lastUpdatedBy: { - id: "eK26I7dRbC4", - }, - user: { - id: "eK26I7dRbC4", - }, - userGroupAccesses: [], - translations: [], - userAccesses: [], - categories: [ - { - id: "DMyxTSpvKOp", + lastUpdated: "2020-04-14T18:23:01.631", + id: "eEluY5AA8eb", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 29, + y: 60, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "eqbjzgCFSFs", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], }, - ], - }, - ], - programs: [ - { - lastUpdated: "2020-06-04T17:17:12.801", - id: "rjsnrRKjtwU", - created: "2019-08-21T11:24:20.251", - name: "ADMIN_Analytics_Check(Tracker)", - shortName: "ADMIN_Analytics_Check(Tracker)", - publicAccess: "--------", - completeEventsExpiryDays: 0, - ignoreOverdueEvents: false, - skipOffline: false, - featureType: "NONE", - minAttributesRequiredToSearch: 1, - displayFrontPageList: false, - onlyEnrollOnce: false, - programType: "WITH_REGISTRATION", - accessLevel: "OPEN", - version: 2, - maxTeiCountToReturn: 0, - selectIncidentDatesInFuture: false, - displayIncidentDate: true, - selectEnrollmentDatesInFuture: false, - expiryDays: 0, - useFirstStageDuringRegistration: false, - categoryCombo: { - id: "JzvGfLYkX17", - }, - lastUpdatedBy: { - id: "H4atNsEuKxP", - }, - trackedEntityType: { - id: "MCPQUTHX1Ze", - }, - user: { - id: "kD52FGwJgDF", - }, - programTrackedEntityAttributes: [ { - lastUpdated: "2020-06-04T17:17:12.802", - id: "OT1TfVwhsBO", - created: "2019-09-11T12:37:56.247", - name: "ADMIN_Analytics_Check(Tracker) First name", - displayName: "ADMIN_Analytics_Check(Tracker) First name", - mandatory: false, - displayShortName: "ADMIN_Analytics_Check(Tracker) First Name", + lastUpdated: "2020-04-14T18:23:01.631", + id: "iFoBSxTa8n3", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", externalAccess: false, - renderOptionsAsRadio: false, - valueType: "TEXT", - allowFutureDate: false, - searchable: true, - displayInList: true, - sortOrder: 1, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 0, + interpretationLikeCount: 0, favorite: false, + visualization: { + id: "wSudey0Yc2R", + }, access: { read: true, update: true, @@ -8976,117 +5143,103 @@ export const metadata: Record> = { write: true, manage: true, }, - program: { - id: "rjsnrRKjtwU", + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2020-04-14T18:23:01.631", + id: "VMJj8auur7X", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 29, + y: 80, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "qo7xD7OTGcF", }, - trackedEntityAttribute: { - id: "DwZNiXy5Daz", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, }, favorites: [], - programTrackedEntityAttributeGroups: [], + reports: [], translations: [], userGroupAccesses: [], attributeValues: [], + resources: [], + users: [], userAccesses: [], }, - ], - notificationTemplates: [], - translations: [], - organisationUnits: [ - { - id: "H8RixfF8ugH", - }, - ], - userGroupAccesses: [ - { - access: "r-r-----", - userGroupUid: "sCjEPgiOhP1", - displayName: "WIDP admins", - id: "sCjEPgiOhP1", - }, - { - access: "rwrw----", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg", - }, - ], - programSections: [], - attributeValues: [], - programStages: [ - { - id: "DQitAUlaicG", - }, - ], - userAccesses: [], - }, - ], - categoryOptionCombos: [ - { - lastUpdated: "2017-05-10T17:53:55.158", - code: "default", - created: "2017-05-10T17:53:55.157", - name: "default", - id: "Xr12mI7VPn3", - ignoreApproval: false, - categoryCombo: { - id: "JzvGfLYkX17", - }, - translations: [], - attributeValues: [], - categoryOptions: [ { - id: "Y7fcspgsU43", + lastUpdated: "2020-04-14T18:23:01.631", + id: "pVa6oAu2DFk", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 100, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "Cyy6FR0wEGe", + }, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], }, - ], - }, - ], - programStages: [ - { - lastUpdated: "2020-06-04T17:17:12.733", - id: "DQitAUlaicG", - created: "2019-08-21T11:24:20.216", - name: "check", - allowGenerateNextVisit: false, - preGenerateUID: false, - publicAccess: "--------", - openAfterEnrollment: false, - repeatable: true, - featureType: "NONE", - remindCompleted: false, - displayGenerateEventBox: true, - generatedByEnrollmentDate: false, - validationStrategy: "ON_COMPLETE", - autoGenerateEvent: true, - sortOrder: 1, - hideDueDate: false, - blockEntryForm: false, - enableUserAssignment: false, - minDaysFromStart: 0, - program: { - id: "rjsnrRKjtwU", - }, - lastUpdatedBy: { - id: "H4atNsEuKxP", - }, - user: { - id: "kD52FGwJgDF", - }, - notificationTemplates: [], - programStageDataElements: [ { - lastUpdated: "2020-06-04T17:17:12.734", - id: "tzA1MiQtotT", - created: "2019-08-21T11:24:20.216", - displayInReports: false, - skipSynchronization: false, + lastUpdated: "2020-04-14T18:23:01.632", + id: "ukizcelacKo", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 1, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 29, + y: 100, + interpretationLikeCount: 0, favorite: false, + visualization: { + id: "GmqjzU8Crmi", + }, access: { read: true, update: true, @@ -9095,31 +5248,68 @@ export const metadata: Record> = { write: true, manage: true, }, - programStage: { - id: "DQitAUlaicG", + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2020-04-14T18:23:01.632", + id: "g3Iv72l0jO5", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 120, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "uZ03Z5GgJJ0", }, - dataElement: { - id: "euPtt2LWNis", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, }, favorites: [], + reports: [], translations: [], userGroupAccesses: [], attributeValues: [], + resources: [], + users: [], userAccesses: [], }, { - lastUpdated: "2020-06-04T17:17:12.734", - id: "RVMZjwFEH1y", - created: "2019-08-21T11:24:20.216", - displayInReports: false, - skipSynchronization: false, + lastUpdated: "2020-04-14T18:23:01.632", + id: "CnpABmw7iMA", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 2, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 29, + y: 120, + interpretationLikeCount: 0, favorite: false, + visualization: { + id: "wleqcZVkF9U", + }, access: { read: true, update: true, @@ -9128,48956 +5318,52706 @@ export const metadata: Record> = { write: true, manage: true, }, - programStage: { - id: "DQitAUlaicG", + favorites: [], + reports: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + resources: [], + users: [], + userAccesses: [], + }, + { + lastUpdated: "2020-04-14T18:23:01.632", + id: "jpEIVXB1NNd", + created: "2019-05-31T21:40:13.063", + type: "VISUALIZATION", + externalAccess: false, + contentCount: 1, + height: 20, + shape: "NORMAL", + interpretationCount: 0, + width: 29, + x: 0, + y: 140, + interpretationLikeCount: 0, + favorite: false, + visualization: { + id: "T4eg1e5rjXE", }, - dataElement: { - id: "X8XLOWOJsbR", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, }, favorites: [], + reports: [], translations: [], userGroupAccesses: [], attributeValues: [], + resources: [], + users: [], userAccesses: [], }, ], translations: [], - userGroupAccesses: [ - { - access: "r-r-----", - userGroupUid: "sCjEPgiOhP1", - displayName: "WIDP admins", - id: "sCjEPgiOhP1", - }, - { - access: "rwrw----", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg", - }, - ], - attributeValues: [], userAccesses: [], - programStageSections: [], }, ], - trackedEntityTypes: [ + visualizations: [ { - code: "Person", - created: "2018-11-29T00:00:00.000", - lastUpdated: "2021-06-18T12:10:43.381", - name: "Person", - id: "MCPQUTHX1Ze", + lastUpdated: "2020-06-02T08:10:05.739", + id: "XG7LBCz7nQn", + created: "2019-04-06T11:39:51.176", + name: "MAL - Conf cases & ABER", + showData: true, publicAccess: "--------", - description: "Person", - maxTeiCountToReturn: 0, - allowAuditLog: false, - featureType: "NONE", - minAttributesRequiredToSearch: 1, - lastUpdatedBy: { - id: "Qu9goywu6cV", - }, - user: { - id: "ilJDyuqlwDC", + userOrganisationUnitChildren: false, + type: "LINE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "ALL", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + title: "% Suspected Tested, Confirmed cases and ABER", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, }, + user: { + id: "kD52FGwJgDF", + }, + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: ["ou"], + itemOrganisationUnitGroups: [], userGroupAccesses: [ - { - access: "rwrw----", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz", - }, - { - access: "r-------", - userGroupUid: "Wx8ovUuTEEU", - displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", - id: "Wx8ovUuTEEU", - }, - { - access: "r-r-----", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD", - }, - { - access: "r-------", - userGroupUid: "adE2VMPwCI5", - displayName: "SS_NTD_LSH_VL_LeishManTracker_View", - id: "adE2VMPwCI5", - }, - { - access: "r-rw----", - userGroupUid: "HJRKloCWNeh", - displayName: "SS_NTD_SKIN_ACD_Event_Entry", - id: "HJRKloCWNeh", - }, - { - access: "r-rw----", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV", - }, - { - access: "r-rw----", - userGroupUid: "BIIJN4E57xU", - displayName: "SS_NTD_SKIN_YAWS_Event_Entry", - id: "BIIJN4E57xU", - }, - { - access: "r-r-----", - userGroupUid: "cy0qXsDxzxe", - displayName: "SS_NTD_LSH_VL_LabLog_View", - id: "cy0qXsDxzxe", - }, { access: "r-------", - userGroupUid: "GHGv3VsHn1a", - displayName: "SS_NTD_LSH_CL_LeishManTracker_View", - id: "GHGv3VsHn1a", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea", }, { - access: "r-r-----", - userGroupUid: "SttGU3eGd4O", - displayName: "SS_NTD_LSH_CL_Tracker_View", - id: "SttGU3eGd4O", + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H", }, { - access: "r-r-----", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF", + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR", }, + ], + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ { - access: "r-rw----", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA", + dataDimensionItemType: "INDICATOR", + indicator: { + id: "rPYLomUceL4", + }, }, { - access: "r-rw----", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu", + dataDimensionItemType: "INDICATOR", + indicator: { + id: "SqFthnK8FJY", + }, }, { - access: "r-rw----", - userGroupUid: "AKCiUSICdUT", - displayName: "SS_NTD_LSH_VL_Event_Entry", - id: "AKCiUSICdUT", + dataDimensionItemType: "INDICATOR", + indicator: { + id: "VxAkjvBMvfp", + }, }, + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ { - access: "r-r-----", - userGroupUid: "Ot2xz1vXELL", - displayName: "SS_NTD_CH_Healthcare_Event_View", - id: "Ot2xz1vXELL", + id: "2000", }, { - access: "r-r-----", - userGroupUid: "DzvWl4E1DhF", - displayName: "SS_NTD_CH_HealthSystem_Event_View", - id: "DzvWl4E1DhF", + id: "2001", }, { - access: "r-rw----", - userGroupUid: "UxF4jhfIylS", - displayName: "SS_NTD_LSH_CL_Tracker_Entry", - id: "UxF4jhfIylS", + id: "2002", }, { - access: "r-r-----", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3", + id: "2003", }, { - access: "r-r-----", - userGroupUid: "cDb6nhH0rXS", - displayName: "SS_NTD_LSH_VL_Tracker_View", - id: "cDb6nhH0rXS", + id: "2004", }, { - access: "r-r-----", - userGroupUid: "YJ4SW7rs30P", - displayName: "SS_NTD_LSH_CPG", - id: "YJ4SW7rs30P", + id: "2005", }, { - access: "r-r-----", - userGroupUid: "ODVk6IF6Dso", - displayName: "SS_NTD_SKIN_ACD_Event_View", - id: "ODVk6IF6Dso", + id: "2006", }, { - access: "r-r-----", - userGroupUid: "YWgdwKzbsnN", - displayName: "SS_NTD_LSH_VL_Event_View", - id: "YWgdwKzbsnN", + id: "2007", }, { - access: "r-r-----", - userGroupUid: "fC90V0CPRFC", - displayName: "SS_NTD_SKIN_YAWS_Event_View", - id: "fC90V0CPRFC", + id: "2008", }, { - access: "r-rw----", - userGroupUid: "ln8nJQmOSpJ", - displayName: "SS_NTD_CH_Healthcare_Event_Entry", - id: "ln8nJQmOSpJ", + id: "2009", }, { - access: "rwr-----", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle", + id: "2010", }, { - access: "r-------", - userGroupUid: "fDujq7N2i6v", - displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", - id: "fDujq7N2i6v", + id: "2011", }, { - access: "r-rw----", - userGroupUid: "UnTaQrY57qi", - displayName: "NTD_LSH_Monthly_Importer", - id: "UnTaQrY57qi", + id: "2012", }, { - access: "rwrw----", - userGroupUid: "r4gcKCyB5fF", - displayName: "NTD_LSH_VL_PHC", - id: "r4gcKCyB5fF", + id: "2013", }, { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg", + id: "2014", }, { - access: "r-rw----", - userGroupUid: "TbGA9fMJpCR", - displayName: "SS_NTD_LSH_VL_LabLog_Entry", - id: "TbGA9fMJpCR", + id: "2015", }, { - access: "rwr-----", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2", + id: "2016", }, { - access: "r-r-----", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w", + id: "2017", }, { - access: "r-rw----", - userGroupUid: "Qi5B1pnVvEH", - displayName: "SS_NTD_CH_HealthSystem_Event_Entry", - id: "Qi5B1pnVvEH", - }, - { - access: "r-rw----", - userGroupUid: "mYtjuODefO4", - displayName: "SS_NTD_LSH_VL_Tracker_Entry", - id: "mYtjuODefO4", - }, - { - access: "r-r-----", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV", - }, - ], - attributeValues: [], - trackedEntityTypeAttributes: [], - translations: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6", - }, - { - access: "r-rw----", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W", + id: "2018", }, ], - }, - ], - categoryOptions: [ - { - code: "default", - created: "2017-05-10T17:53:55.138", - lastUpdated: "2018-07-27T16:09:07.425", - name: "default", - id: "Y7fcspgsU43", - shortName: "default", - publicAccess: "rwrw----", - user: { - id: "eK26I7dRbC4", - }, - userGroupAccesses: [], - attributeValues: [], - translations: [], - userAccesses: [], organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["pe"], }, - ], - dataElements: [ { - lastUpdated: "2020-06-09T18:01:24.388", - id: "euPtt2LWNis", - created: "2019-08-21T11:20:31.515", - name: "ADMIN_Analytics_Execution_1_Tracker", - shortName: "ADMIN_Analytics_Execution_1_Tracker", - aggregationType: "SUM", - domainType: "TRACKER", + lastUpdated: "2020-06-02T08:10:05.746", + id: "mmdI4h7KdLL", + created: "2019-04-06T11:46:36.293", + name: "MAL - IPD", + showData: true, publicAccess: "--------", - valueType: "TRUE_ONLY", - formName: "Analytics run at 0h", - zeroIsSignificant: true, - categoryCombo: { - id: "JzvGfLYkX17", - }, + userOrganisationUnitChildren: false, + type: "LINE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "ALL", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + title: "Malaria and non-malaria IPD", + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, lastUpdatedBy: { id: "kD52FGwJgDF", }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, + }, user: { - id: "H4atNsEuKxP", + id: "kD52FGwJgDF", }, + dataElementGroupSetDimensions: [], translations: [], + yearlySeries: [], + filterDimensions: ["ou"], + itemOrganisationUnitGroups: [], userGroupAccesses: [ { access: "r-------", - userGroupUid: "sCjEPgiOhP1", - displayName: "WIDP admins", - id: "sCjEPgiOhP1", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea", }, { access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H", + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR", }, ], - attributeValues: [], + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], userAccesses: [], - legendSets: [], - aggregationLevels: [], - }, - { - lastUpdated: "2020-06-09T18:01:32.053", - id: "X8XLOWOJsbR", - created: "2019-08-21T11:22:01.691", - name: "ADMIN_Analytics_Execution_2_Tracker", - shortName: "ADMIN_Analytics_Execution_2_Tracker", - aggregationType: "SUM", - domainType: "TRACKER", - publicAccess: "--------", - valueType: "TRUE_ONLY", - formName: "Analytics run at 12h", - zeroIsSignificant: true, - categoryCombo: { - id: "JzvGfLYkX17", - }, - lastUpdatedBy: { - id: "kD52FGwJgDF", - }, - user: { - id: "H4atNsEuKxP", - }, - translations: [], - userGroupAccesses: [ + favorites: [], + dataDimensionItems: [ { - access: "r-------", - userGroupUid: "sCjEPgiOhP1", - displayName: "WIDP admins", - id: "sCjEPgiOhP1", + dataDimensionItemType: "INDICATOR", + indicator: { + id: "BhoZ0XenErj", + }, }, + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg", + id: "1997", + }, + { + id: "1998", + }, + { + id: "1999", + }, + { + id: "2000", + }, + { + id: "2001", + }, + { + id: "2002", + }, + { + id: "2003", + }, + { + id: "2004", + }, + { + id: "2005", + }, + { + id: "2006", + }, + { + id: "2007", + }, + { + id: "2008", + }, + { + id: "2009", + }, + { + id: "2010", + }, + { + id: "2011", + }, + { + id: "2012", + }, + { + id: "2013", + }, + { + id: "2014", + }, + { + id: "2015", + }, + { + id: "2016", + }, + { + id: "2017", + }, + { + id: "2018", }, ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["pe"], }, - ], - categories: [ { - code: "default", - created: "2017-05-10T17:53:55.152", - lastUpdated: "2021-08-07T06:18:19.628", - name: "default", - id: "DMyxTSpvKOp", - dataDimensionType: "DISAGGREGATION", - publicAccess: "rw------", - dataDimension: false, - user: { - id: "eK26I7dRbC4", - }, - userGroupAccesses: [], - attributeValues: [], - translations: [], - userAccesses: [], - categoryOptions: [ - { - id: "Y7fcspgsU43", - }, - ], - }, - ], - programStageDataElements: [ - { - created: "2019-08-21T11:24:20.216", - lastUpdated: "2020-06-04T17:17:12.734", - id: "tzA1MiQtotT", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 1, - allowFutureDate: false, - programStage: { - id: "DQitAUlaicG", - }, - dataElement: { - id: "euPtt2LWNis", - }, - }, - { - created: "2019-08-21T11:24:20.216", - lastUpdated: "2020-06-04T17:17:12.734", - id: "RVMZjwFEH1y", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 2, - allowFutureDate: false, - programStage: { - id: "DQitAUlaicG", - }, - dataElement: { - id: "X8XLOWOJsbR", - }, - }, - ], - programTrackedEntityAttributes: [ - { - created: "2019-09-11T12:37:56.247", - lastUpdated: "2020-06-04T17:17:12.802", - id: "OT1TfVwhsBO", - mandatory: false, - searchable: true, - renderOptionsAsRadio: false, - displayInList: true, - sortOrder: 1, - allowFutureDate: false, - program: { - id: "rjsnrRKjtwU", - }, - trackedEntityAttribute: { - id: "DwZNiXy5Daz", - }, - programTrackedEntityAttributeGroups: [], - }, - ], - trackedEntityAttributes: [ - { - code: "ALL_At_FirstName", - lastUpdated: "2021-05-26T19:30:52.289", - id: "DwZNiXy5Daz", - created: "2016-06-08T12:49:53.384", - name: "First name", - shortName: "First Name", - aggregationType: "NONE", - displayInListNoProgram: true, - publicAccess: "r-------", - pattern: "", - description: "First name of patient", - skipSynchronization: false, - sortOrderInListNoProgram: 2, - generated: false, - displayOnVisitSchedule: false, - valueType: "TEXT", - orgunitScope: false, - confidential: false, - unique: false, - inherit: false, + lastUpdated: "2020-06-02T08:10:06.960", + id: "wleqcZVkF9U", + created: "2019-05-31T21:43:28.273", + name: "MAL - Positivity", + showData: false, + numberType: "VALUE", + publicAccess: "--------", + userOrganisationUnitChildren: false, + legendDisplayStyle: "FILL", + type: "PIVOT_TABLE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: true, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + hideLegend: false, + externalAccess: false, + percentStackedValues: false, + legendDisplayStrategy: "FIXED", + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, lastUpdatedBy: { id: "kD52FGwJgDF", }, + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, + }, + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, + }, user: { - id: "ilJDyuqlwDC", + id: "kD52FGwJgDF", }, - translations: [ + dataElementGroupSetDimensions: [], + translations: [], + yearlySeries: [], + filterDimensions: ["ou"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ { - property: "DESCRIPTION", - locale: "pt", - value: "Primeiro nome do Paciente", + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea", }, - ], - userGroupAccesses: [ { access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H", + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR", }, ], - attributeValues: [], + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], userAccesses: [], - legendSets: [], - }, - ], - }, - program3: { - optionSets: [ - { - code: "OpS_YNU_Numeric_129", - created: "2017-07-18T08:27:58.474", - lastUpdated: "2021-04-29T19:44:45.263", - name: "YNU_Numeric_129", - id: "mJKvd2WXQtp", - publicAccess: "--------", - version: 18, - valueType: "INTEGER", - lastUpdatedBy: { - id: "Qu9goywu6cV" - }, - user: { - id: "ilJDyuqlwDC" - }, - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "r-------", - userGroupUid: "Ot2xz1vXELL", - displayName: "SS_NTD_CH_Healthcare_Event_View", - id: "Ot2xz1vXELL" - }, - { - access: "r-------", - userGroupUid: "Wx8ovUuTEEU", - displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", - id: "Wx8ovUuTEEU" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "adE2VMPwCI5", - displayName: "SS_NTD_LSH_VL_LeishManTracker_View", - id: "adE2VMPwCI5" - }, - { - access: "r-------", - userGroupUid: "Qi5B1pnVvEH", - displayName: "SS_NTD_CH_HealthSystem_Event_Entry", - id: "Qi5B1pnVvEH" - }, - { - access: "r-------", - userGroupUid: "nPPxGTmEqbL", - displayName: "SS_NTD_LSH_AggData_View", - id: "nPPxGTmEqbL" - }, - { - access: "r-------", - userGroupUid: "NApRIgamRrj", - displayName: "SS_NTD_SKIN_LEP_Event_Entry", - id: "NApRIgamRrj" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "peFZC729hMn", - displayName: "SS_NTD_Skin_Yaws_Surv_Global_View", - id: "peFZC729hMn" - }, - { - access: "r-------", - userGroupUid: "GHGv3VsHn1a", - displayName: "SS_NTD_LSH_CL_LeishManTracker_View", - id: "GHGv3VsHn1a" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "DRlUpjkyeT9", - displayName: "SS_NTD_SKIN_MYC_GlSurv_View", - id: "DRlUpjkyeT9" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "fth3On7vInl", - displayName: "NTD", - id: "fth3On7vInl" - }, - { - access: "r-------", - userGroupUid: "cT8WhjLqmH9", - displayName: "SS_NTD_Skin_Yaws_Surv_Global_Entry", - id: "cT8WhjLqmH9" - }, - { - access: "r-------", - userGroupUid: "ln8nJQmOSpJ", - displayName: "SS_NTD_CH_Healthcare_Event_Entry", - id: "ln8nJQmOSpJ" - }, - { - access: "r-------", - userGroupUid: "SttGU3eGd4O", - displayName: "SS_NTD_LSH_CL_Tracker_View", - id: "SttGU3eGd4O" - }, - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "wG402TIgmDq", - displayName: "SS_NTD_Skin_Yaws_Surv_GHA_Entry", - id: "wG402TIgmDq" - }, - { - access: "r-------", - userGroupUid: "IsbhpWFqxOx", - displayName: "SS_NTD_Skin_MYC_GlSurv_Entry", - id: "IsbhpWFqxOx" - }, - { - access: "r-------", - userGroupUid: "HVjJiw4WEW5", - displayName: "SS_NTD_Skin_Yaws_Surv_GHA_View", - id: "HVjJiw4WEW5" - }, - { - access: "r-------", - userGroupUid: "UxF4jhfIylS", - displayName: "SS_NTD_LSH_CL_Tracker_Entry", - id: "UxF4jhfIylS" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-------", - userGroupUid: "DzvWl4E1DhF", - displayName: "SS_NTD_CH_HealthSystem_Event_View", - id: "DzvWl4E1DhF" - }, - { - access: "r-------", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-------", - userGroupUid: "z06qKmTZ3OR", - displayName: "SS_NTD_SKIN_LEP_Event_View", - id: "z06qKmTZ3OR" - }, - { - access: "r-------", - userGroupUid: "fDujq7N2i6v", - displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", - id: "fDujq7N2i6v" - }, - { - access: "r-------", - userGroupUid: "eXn7a4TcJBj", - displayName: "SS_NTD_LSH_CL_Event_View", - id: "eXn7a4TcJBj" - }, - { - access: "r-------", - userGroupUid: "IPzz6wlkIp0", - displayName: "NTD_SKIN_MYC_HQ", - id: "IPzz6wlkIp0" - }, - { - access: "r-------", - userGroupUid: "orn5lTGFMve", - displayName: "NTD_LSH_Public", - id: "orn5lTGFMve" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "Fr3SskvRRFO", - displayName: "NTD Chagas disease", - id: "Fr3SskvRRFO" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - }, - { - access: "r-------", - userGroupUid: "aAGXWv0GkMo", - displayName: "SS_NTD_LSH_AggData_Entry", - id: "aAGXWv0GkMo" - } - ], - attributeValues: [], - translations: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "Petar Jovanovic", - id: "q9wZgtaDxWn", - userUid: "q9wZgtaDxWn" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - options: [ - { - id: "CDIYMO9r2pv" - }, - { - id: "Vu05B3MCtV2" - }, - { - id: "WBd1cXQvxhx" - } - ] - }, - { - code: "OpS_Tx_complete", - created: "2017-01-12T02:06:48.997", - lastUpdated: "2021-04-29T19:44:45.271", - name: "Treatment completion", - id: "TqJC6mhsOv6", - publicAccess: "--------", - version: 24, - valueType: "TEXT", - lastUpdatedBy: { - id: "Qu9goywu6cV" - }, - user: { - id: "q9wZgtaDxWn" - }, - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "Wx8ovUuTEEU", - displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", - id: "Wx8ovUuTEEU" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "adE2VMPwCI5", - displayName: "SS_NTD_LSH_VL_LeishManTracker_View", - id: "adE2VMPwCI5" - }, - { - access: "r-------", - userGroupUid: "FhhAcewq9it", - displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", - id: "FhhAcewq9it" - }, - { - access: "r-------", - userGroupUid: "mYtjuODefO4", - displayName: "SS_NTD_LSH_VL_Tracker_Entry", - id: "mYtjuODefO4" - }, - { - access: "r-------", - userGroupUid: "NApRIgamRrj", - displayName: "SS_NTD_SKIN_LEP_Event_Entry", - id: "NApRIgamRrj" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "GHGv3VsHn1a", - displayName: "SS_NTD_LSH_CL_LeishManTracker_View", - id: "GHGv3VsHn1a" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "AKCiUSICdUT", - displayName: "SS_NTD_LSH_VL_Event_Entry", - id: "AKCiUSICdUT" - }, - { - access: "r-------", - userGroupUid: "ZuT9b32Dhv5", - displayName: "SS_NTD_LSH_VL_KEN_Event_View", - id: "ZuT9b32Dhv5" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "SttGU3eGd4O", - displayName: "SS_NTD_LSH_CL_Tracker_View", - id: "SttGU3eGd4O" - }, - { - access: "r-------", - userGroupUid: "owXIJqhlxHy", - displayName: "SS_NTD_LSH_VL_ARM_Tracker_Entry", - id: "owXIJqhlxHy" - }, - { - access: "r-------", - userGroupUid: "YWgdwKzbsnN", - displayName: "SS_NTD_LSH_VL_Event_View", - id: "YWgdwKzbsnN" - }, - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "sXNyAgGyHSK", - displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", - id: "sXNyAgGyHSK" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "cDb6nhH0rXS", - displayName: "SS_NTD_LSH_VL_Tracker_View", - id: "cDb6nhH0rXS" - }, - { - access: "r-------", - userGroupUid: "tEOUdu1ala4", - displayName: "NTD_EURO", - id: "tEOUdu1ala4" - }, - { - access: "r-------", - userGroupUid: "UxF4jhfIylS", - displayName: "SS_NTD_LSH_CL_Tracker_Entry", - id: "UxF4jhfIylS" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-------", - userGroupUid: "z06qKmTZ3OR", - displayName: "SS_NTD_SKIN_LEP_Event_View", - id: "z06qKmTZ3OR" - }, - { - access: "r-------", - userGroupUid: "fDujq7N2i6v", - displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", - id: "fDujq7N2i6v" - }, - { - access: "r-------", - userGroupUid: "eXn7a4TcJBj", - displayName: "SS_NTD_LSH_CL_Event_View", - id: "eXn7a4TcJBj" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "rw------", - userGroupUid: "r4gcKCyB5fF", - displayName: "NTD_LSH_VL_PHC", - id: "r4gcKCyB5fF" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "QCd81cBHcad", - displayName: "SS_NTD_LSH_VL_ARM_Tracker_View", - id: "QCd81cBHcad" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "wwAK2yjjWQc", - displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", - id: "wwAK2yjjWQc" - } - ], - attributeValues: [], - translations: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - options: [ - { - id: "yeYDY2bogxs" - }, - { - id: "YDDAfmgEMih" - }, - { - id: "AsAN6YZCEGh" - }, - { - id: "TaiTS6k5ivC" - } - ] - }, - { - code: "OpS_BU_AB_Type", - created: "2016-06-08T10:13:38.517", - lastUpdated: "2021-03-01T11:52:58.492", - name: "BU_AB_Type", - id: "cYVMBWrU2Pi", - publicAccess: "--------", - version: 10, - valueType: "TEXT", - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - } - ], - attributeValues: [], - translations: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - options: [ - { - id: "AzJhPoyTFg8" - }, - { - id: "MuopyHevUQ8" - }, - { - id: "s914v1OKfcW" - } - ] - }, - { - code: "OpS_BU_ITxO", - created: "2019-06-05T07:42:16.335", - lastUpdated: "2021-03-19T17:24:32.051", - name: "BU_ITxO", - id: "tGr5pbgz67Z", - publicAccess: "--------", - version: 7, - valueType: "TEXT", - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - translations: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - options: [ - { - id: "p4hdUBmGKQE" - }, - { - id: "Bp5pucqpTey" - }, - { - id: "y9unlLhGO4k" - }, - { - id: "wMfa0vuPDQz" - }, - { - id: "Nz4Cw1ckLD2" - } - ] - }, - { - code: "OpS_Country", - created: "2016-02-28T00:35:34.236", - lastUpdated: "2021-04-29T19:44:45.232", - name: "Country", - id: "gUyghXvtx1M", - publicAccess: "--------", - version: 276, - valueType: "TEXT", - lastUpdatedBy: { - id: "Qu9goywu6cV" - }, - user: { - id: "q9wZgtaDxWn" - }, - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "r-------", - userGroupUid: "Ot2xz1vXELL", - displayName: "SS_NTD_CH_Healthcare_Event_View", - id: "Ot2xz1vXELL" - }, - { - access: "r-------", - userGroupUid: "Wx8ovUuTEEU", - displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", - id: "Wx8ovUuTEEU" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "adE2VMPwCI5", - displayName: "SS_NTD_LSH_VL_LeishManTracker_View", - id: "adE2VMPwCI5" - }, - { - access: "r-------", - userGroupUid: "FhhAcewq9it", - displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", - id: "FhhAcewq9it" - }, - { - access: "r-------", - userGroupUid: "mYtjuODefO4", - displayName: "SS_NTD_LSH_VL_Tracker_Entry", - id: "mYtjuODefO4" - }, - { - access: "r-------", - userGroupUid: "NApRIgamRrj", - displayName: "SS_NTD_SKIN_LEP_Event_Entry", - id: "NApRIgamRrj" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "GHGv3VsHn1a", - displayName: "SS_NTD_LSH_CL_LeishManTracker_View", - id: "GHGv3VsHn1a" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "ZuT9b32Dhv5", - displayName: "SS_NTD_LSH_VL_KEN_Event_View", - id: "ZuT9b32Dhv5" - }, - { - access: "r-------", - userGroupUid: "AKCiUSICdUT", - displayName: "SS_NTD_LSH_VL_Event_Entry", - id: "AKCiUSICdUT" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "BIIJN4E57xU", - displayName: "SS_NTD_SKIN_YAWS_Event_Entry", - id: "BIIJN4E57xU" - }, - { - access: "r-------", - userGroupUid: "DgpZijnf5Sf", - displayName: "SS_NTD_CH_VectorControl_Event_Entry", - id: "DgpZijnf5Sf" - }, - { - access: "r-------", - userGroupUid: "ln8nJQmOSpJ", - displayName: "SS_NTD_CH_Healthcare_Event_Entry", - id: "ln8nJQmOSpJ" - }, - { - access: "r-------", - userGroupUid: "SttGU3eGd4O", - displayName: "SS_NTD_LSH_CL_Tracker_View", - id: "SttGU3eGd4O" - }, - { - access: "r-------", - userGroupUid: "owXIJqhlxHy", - displayName: "SS_NTD_LSH_VL_ARM_Tracker_Entry", - id: "owXIJqhlxHy" - }, - { - access: "r-------", - userGroupUid: "YWgdwKzbsnN", - displayName: "SS_NTD_LSH_VL_Event_View", - id: "YWgdwKzbsnN" - }, - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "sXNyAgGyHSK", - displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", - id: "sXNyAgGyHSK" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "cDb6nhH0rXS", - displayName: "SS_NTD_LSH_VL_Tracker_View", - id: "cDb6nhH0rXS" - }, - { - access: "r-------", - userGroupUid: "tEOUdu1ala4", - displayName: "NTD_EURO", - id: "tEOUdu1ala4" - }, - { - access: "r-------", - userGroupUid: "UxF4jhfIylS", - displayName: "SS_NTD_LSH_CL_Tracker_Entry", - id: "UxF4jhfIylS" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "kvu9Bts7nJb", - displayName: "SS_NTD_CH_VectorControl_Event_View", - id: "kvu9Bts7nJb" - }, - { - access: "r-------", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-------", - userGroupUid: "z06qKmTZ3OR", - displayName: "SS_NTD_SKIN_LEP_Event_View", - id: "z06qKmTZ3OR" - }, - { - access: "r-------", - userGroupUid: "fDujq7N2i6v", - displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", - id: "fDujq7N2i6v" - }, - { - access: "r-------", - userGroupUid: "eXn7a4TcJBj", - displayName: "SS_NTD_LSH_CL_Event_View", - id: "eXn7a4TcJBj" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "rw------", - userGroupUid: "PRgi0GEW3gw", - displayName: "NTD Chagas disease - WCD2020", - id: "PRgi0GEW3gw" - }, - { - access: "rw------", - userGroupUid: "r4gcKCyB5fF", - displayName: "NTD_LSH_VL_PHC", - id: "r4gcKCyB5fF" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "Fr3SskvRRFO", - displayName: "NTD Chagas disease", - id: "Fr3SskvRRFO" - }, - { - access: "r-------", - userGroupUid: "QCd81cBHcad", - displayName: "SS_NTD_LSH_VL_ARM_Tracker_View", - id: "QCd81cBHcad" - }, - { - access: "r-------", - userGroupUid: "fC90V0CPRFC", - displayName: "SS_NTD_SKIN_YAWS_Event_View", - id: "fC90V0CPRFC" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "wwAK2yjjWQc", - displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", - id: "wwAK2yjjWQc" - } - ], - attributeValues: [], - translations: [], - userAccesses: [ - { - access: "rw------", - displayName: "Chagas World Day 2020", - id: "iUNlUiEkyQx", - userUid: "iUNlUiEkyQx" - }, - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "rw------", - displayName: "Petar Jovanovic", - id: "q9wZgtaDxWn", - userUid: "q9wZgtaDxWn" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - options: [ - { - id: "rpYKUF2SUbF" - }, - { - id: "ROD72U5e1KY" - }, - { - id: "GNF8jdbZ8Dw" - }, - { - id: "vRVl3O76lyn" - }, - { - id: "OPp0jE41c71" - }, - { - id: "RgllCEY0K6B" - }, - { - id: "aaXQWSasFYh" - }, - { - id: "E1e60DQj7ER" - }, - { - id: "sdGbRbHMjfM" - }, - { - id: "cQkGLAeVhei" - }, - { - id: "st3MnmCFpzF" - }, - { - id: "idhYV7lcUgH" - }, - { - id: "YINMRPJJN5V" - }, - { - id: "KAJ7p4zcnJt" - }, - { - id: "R9eRZscHOto" - }, - { - id: "kTOG6zPV8n8" - }, - { - id: "Rbwa1KlOCgs" - }, - { - id: "yNiomNqisdT" - }, - { - id: "bDDw1zZn6H4" - }, - { - id: "Kfq910gLIPA" - }, - { - id: "eTIA3EPkyY4" - }, - { - id: "EaE88cArPz5" - }, - { - id: "sFfFUiIkgDi" - }, - { - id: "yIswGPbNEZk" - }, - { - id: "qwwz0vNXMD3" - }, - { - id: "mdKnXxpQ0LQ" - }, - { - id: "oPg7wRipLh4" - }, - { - id: "O8O4CpJVYOD" - }, - { - id: "J38ZkiquJmy" - }, - { - id: "eoBbae6v8Is" - }, - { - id: "XysXrwrAdcb" - }, - { - id: "LaqvuIL8pST" - }, - { - id: "g4TjSILnkWf" - }, - { - id: "UkW0Ae3paRK" - }, - { - id: "ftPDQflDhP4" - }, - { - id: "N6LwQ834t7C" - }, - { - id: "eWVs9rhuRhl" - }, - { - id: "ekwPeN3y8hn" - }, - { - id: "fVGpda6m2J1" - }, - { - id: "sZjbQs6bl0o" - }, - { - id: "nF2ZeKjSsf6" - }, - { - id: "QkKjW5DH4u9" - }, - { - id: "PTQq9HoYV7h" - }, - { - id: "jxyr8IWOLiN" - }, - { - id: "WJW9ptUoJ3A" - }, - { - id: "Ksv0YWONey8" - }, - { - id: "tiH4Rvkr1AU" - }, - { - id: "oN6N4VVymmD" - }, - { - id: "mQGGbSz6cee" - }, - { - id: "ZtNH7EW51t0" - }, - { - id: "fSwZ2dQsngS" - }, - { - id: "iIyvPvW311F" - }, - { - id: "DIMY2GI3N0D" - }, - { - id: "FjJGgqd4e0t" - }, - { - id: "Q3JNcuoJx0i" - }, - { - id: "X7tLQ18rhaG" - }, - { - id: "vk3eaLsdOlS" - }, - { - id: "FaU1a7FxQGn" - }, - { - id: "Rb24lhnATCV" - }, - { - id: "X6K4a7H6wDk" - }, - { - id: "LhTmzpsK3Be" - }, - { - id: "C4WPfBbbyLg" - }, - { - id: "dZcbeWdMWsZ" - }, - { - id: "dA1bzDuyJpa" - }, - { - id: "KkPkhg9dyZS" - }, - { - id: "Snabf2xuq8j" - }, - { - id: "s54dxecMtMv" - }, - { - id: "OJ0DFyJMUOR" - }, - { - id: "mOkzdx2h0SG" - }, - { - id: "oXpUVu6DhB2" - }, - { - id: "jh3zGJQi06D" - }, - { - id: "cqfa35jkUEd" - }, - { - id: "bdZkKddbme4" - }, - { - id: "rmlWP6qawBg" - }, - { - id: "cI94C2PcXsS" - }, - { - id: "TIVtt9En4eU" - }, - { - id: "l4T2wiKbQUL" - }, - { - id: "kGIuN6tjNZI" - }, - { - id: "LBzfnDqxl0M" - }, - { - id: "LXpaR05sYo1" - }, - { - id: "o3fBa5sIh8Q" - }, - { - id: "afoGJejzdk9" - }, - { - id: "wumaFN6DN2W" - }, - { - id: "A4mupXkA7Tk" - }, - { - id: "htZ89VAlt02" - }, - { - id: "gHRFa39BQfS" - }, - { - id: "Cq9V6QqCNme" - }, - { - id: "oTNU8h07Q7x" - }, - { - id: "HUm42tSwG8f" - }, - { - id: "YkDHxJoSdxP" - }, - { - id: "jGbV0Ne53W5" - }, - { - id: "sZJBFcxVY8g" - }, - { - id: "y8urVZCHd1T" - }, - { - id: "bzazWy2jvpr" - }, - { - id: "iQ3o79B3Rte" - }, - { - id: "X9j8yAE8jR1" - }, - { - id: "pGnTV1cqwc0" - }, - { - id: "ielTPI84eJZ" - }, - { - id: "eT6EbUJF8xK" - }, - { - id: "uRNwaxhc5Tx" - }, - { - id: "RU3idIirhku" - }, - { - id: "yDeHDMclb90" - }, - { - id: "TA7D8hfDnL6" - }, - { - id: "cSqaO8XLuNi" - }, - { - id: "h3NVEPvY7io" - }, - { - id: "oKQ4Km493KI" - }, - { - id: "GAyjbdM621v" - }, - { - id: "aKXIbWkLKMT" - }, - { - id: "JY1pHQtniXy" - }, - { - id: "C5Ly52gvu3w" - }, - { - id: "cBKW7YJr4rO" - }, - { - id: "y6bDnL6k4A9" - }, - { - id: "G4eMnJNlEhT" - }, - { - id: "SAmZtKTfG80" - }, - { - id: "RTgnQw3zAy6" - }, - { - id: "x0psf8EdDge" - }, - { - id: "MHhH9Uf7Rj5" - }, - { - id: "toz6mYv2HYF" - }, - { - id: "ULrEOBUJNtC" - }, - { - id: "whL5no7kcff" - }, - { - id: "WFTrDt1MKFN" - }, - { - id: "QFaAj7RqyAm" - }, - { - id: "Pm4Jv8Hp8kE" - }, - { - id: "PP1n12Xmd4T" - }, - { - id: "bukRn9nzytv" - }, - { - id: "erOhrWyHhDY" - }, - { - id: "EvekRRBnMx4" - }, - { - id: "hK6W9ljkGqw" - }, - { - id: "zjI336whk3I" - }, - { - id: "taFo3wtW5Eg" - }, - { - id: "xyem51RudNi" - }, - { - id: "i7A3r980S0D" - }, - { - id: "BbVCIp24olr" - }, - { - id: "KeMEEipyNOm" - }, - { - id: "FbfNBXab6GY" - }, - { - id: "nh1m0TLoIh8" - }, - { - id: "cL4OmqIczsH" - }, - { - id: "sYu5WdUFxxx" - }, - { - id: "hfkGnSUY6US" - }, - { - id: "EkjCgj5oboN" - }, - { - id: "rtFuIPE4rvK" - }, - { - id: "OcaAwln2R11" - }, - { - id: "HIoE2KG4A61" - }, - { - id: "DjVJE4YFp6g" - }, - { - id: "cDIdNAHmPrE" - }, - { - id: "DwOOv26iA48" - }, - { - id: "MpAktPYMf90" - }, - { - id: "otegwIeNezj" - }, - { - id: "X9nQoyVwrsn" - }, - { - id: "ATcSjkUG9QV" - }, - { - id: "FiPEiArokkj" - }, - { - id: "rM46cgyO8rb" - }, - { - id: "kxbQFgx63UI" - }, - { - id: "PDWVapGBjI8" - }, - { - id: "tzhv86drYJH" - }, - { - id: "Gyn24NJMikB" - }, - { - id: "NBcbgJQuPq8" - }, - { - id: "g3iNcMjOKf2" - }, - { - id: "P0fL0rvUSn7" - }, - { - id: "vKiKgfvmaOs" - }, - { - id: "owGF3JqsoAA" - }, - { - id: "Ps7iJKJcqb8" - }, - { - id: "hr3HqQmzN7f" - }, - { - id: "FjYmkLvW8hG" - }, - { - id: "mxwaApcX2QJ" - }, - { - id: "QBJvSnKk1uW" - }, - { - id: "REll9OOAWVM" - }, - { - id: "UyeM42XQdUL" - }, - { - id: "XXEL9RuJPCO" - }, - { - id: "pBZQqnOre43" - }, - { - id: "j12hkmb7DHr" - }, - { - id: "kRFzU19Xd1Y" - }, - { - id: "mKpPeqR2hX2" - }, - { - id: "J88eOGKY9Na" - }, - { - id: "aOpMFzlaTp0" - }, - { - id: "ByOnLinEgi8" - }, - { - id: "H8AEpkxvjRU" - }, - { - id: "PHh2qZ7KS7X" - }, - { - id: "y0ZlulciMOf" - }, - { - id: "D82B1UTMfPL" - }, - { - id: "RN3bZeeFEbl" - }, - { - id: "UxsQKwqAuGh" - }, - { - id: "eh5c1MmXn8n" - }, - { - id: "yxRTRFzIdMC" - }, - { - id: "rdwbewfVXxn" - }, - { - id: "sEucrpuANOo" - }, - { - id: "R3xI52BxTKZ" - }, - { - id: "X1rvZAaWg66" - }, - { - id: "LsGOICl7YIw" - }, - { - id: "OaWk0B8LtgK" - }, - { - id: "vyw2jtfU39q" - }, - { - id: "WmpDHvUrndV" - }, - { - id: "aF9IHLadpWc" - }, - { - id: "IWYV2nhwswl" - }, - { - id: "H0I6K4ARBWm" - }, - { - id: "qWdvoHjEe3v" - }, - { - id: "VUldg1jCLBU" - }, - { - id: "xPe8txtq1S7" - }, - { - id: "aLAfEob7jZh" - }, - { - id: "AIx354YR3oy" - }, - { - id: "ejSCE1PrzIR" - }, - { - id: "h6dADh5Zx6g" - }, - { - id: "tFp489Mt4rO" - }, - { - id: "z6RCpgOD0ve" - }, - { - id: "boiuNkaV65n" - }, - { - id: "DcGZ6Rn7qle" - }, - { - id: "RfNF6JV3ecp" - }, - { - id: "NkdCgJPQtjw" - }, - { - id: "HN0RT0Kv1mD" - }, - { - id: "iDEdgaPkpce" - }, - { - id: "qkBlV5zXEbg" - }, - { - id: "Mm43urCbMp9" - }, - { - id: "VyBTcplZkJQ" - }, - { - id: "DOHMCSDIbCb" - }, - { - id: "odQjRlU11Fy" - }, - { - id: "MXH9qJlmiHj" - }, - { - id: "HepCKGVZOF9" - }, - { - id: "E4Ihgx3j6z1" - }, - { - id: "hOBEs8WJceb" - }, - { - id: "Rke3037hiuV" - }, - { - id: "qoefJ5oz2kr" - }, - { - id: "UPJI4u2Zpao" - }, - { - id: "aewMRLmf9a9" - }, - { - id: "NEuSYMjN31a" - }, - { - id: "evtYWLkx81g" - }, - { - id: "T6sKm7b1Iev" - }, - { - id: "aKJBQ499p7T" - }, - { - id: "So5Bmn1i2r2" - }, - { - id: "UftyLoueGB8" - }, - { - id: "eHHU7uow2mi" - }, - { - id: "oPuTQ7Y5qMi" - }, - { - id: "ywkstElBpo1" - }, - { - id: "GkfStXJBJqs" - }, - { - id: "Vz0KVAbfhRy" - }, - { - id: "WPZOE5WQJB9" - }, - { - id: "Iop94Prp34o" - }, - { - id: "q5u0ehHpFgt" - }, - { - id: "QkFFXvco1QM" - }, - { - id: "XnUtsN4s1HS" - }, - { - id: "JEYcfbIKDqM" - }, - { - id: "cMsUdHzYjEm" - }, - { - id: "Ba3mM6jHWLo" - }, - { - id: "E3kChU0S6Ty" - }, - { - id: "u6kafve6PQR" - }, - { - id: "jVvKs0pcKlP" - }, - { - id: "fTISV70dLXk" - }, - { - id: "InEQETgtfSJ" - }, - { - id: "XObEvb5qGAA" - } - ] - }, - { - code: "OpS_Skin_Classification", - created: "2016-06-08T09:04:14.700", - lastUpdated: "2021-03-19T17:24:31.617", - name: "Skin_Classification", - id: "Al6DsS3DTve", - publicAccess: "--------", - version: 23, - valueType: "TEXT", - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "NApRIgamRrj", - displayName: "SS_NTD_SKIN_LEP_Event_Entry", - id: "NApRIgamRrj" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "z06qKmTZ3OR", - displayName: "SS_NTD_SKIN_LEP_Event_View", - id: "z06qKmTZ3OR" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - } - ], - attributeValues: [], - translations: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - options: [ - { - id: "qVOty3cF2WA" - }, - { - id: "w9Ve9MgDnPI" - }, - { - id: "fHwmBRPO12f" - }, - { - id: "kj4jM9bi8MB" - } - ] - }, - { - code: "ALL_OpS_YNU", - created: "2016-05-22T22:20:55.425", - lastUpdated: "2021-06-18T17:47:14.239", - name: "YNU", - id: "vDeP0h2cO2n", - publicAccess: "r-------", - version: 32, - valueType: "TEXT", - lastUpdatedBy: { - id: "Qu9goywu6cV" - }, - user: { - id: "q9wZgtaDxWn" - }, - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "fDujq7N2i6v", - displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", - id: "fDujq7N2i6v" - }, - { - access: "r-------", - userGroupUid: "cDb6nhH0rXS", - displayName: "SS_NTD_LSH_VL_Tracker_View", - id: "cDb6nhH0rXS" - }, - { - access: "r-------", - userGroupUid: "Wx8ovUuTEEU", - displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", - id: "Wx8ovUuTEEU" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "adE2VMPwCI5", - displayName: "SS_NTD_LSH_VL_LeishManTracker_View", - id: "adE2VMPwCI5" - }, - { - access: "r-------", - userGroupUid: "UxF4jhfIylS", - displayName: "SS_NTD_LSH_CL_Tracker_Entry", - id: "UxF4jhfIylS" - }, - { - access: "r-------", - userGroupUid: "mYtjuODefO4", - displayName: "SS_NTD_LSH_VL_Tracker_Entry", - id: "mYtjuODefO4" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "GHGv3VsHn1a", - displayName: "SS_NTD_LSH_CL_LeishManTracker_View", - id: "GHGv3VsHn1a" - }, - { - access: "r-------", - userGroupUid: "SttGU3eGd4O", - displayName: "SS_NTD_LSH_CL_Tracker_View", - id: "SttGU3eGd4O" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - translations: [], - userAccesses: [], - options: [ - { - id: "PHv5RMoDR3I" - }, - { - id: "oq0sE3HHt7O" - }, - { - id: "do7Z43P6VB8" - } - ] - }, - { - code: "Result_PNPNDU", - created: "2019-05-20T09:57:45.595", - lastUpdated: "2021-04-29T19:44:45.260", - name: "Result_PNPNDU", - id: "vQBOhNnE09a", - publicAccess: "--------", - version: 12, - valueType: "TEXT", - lastUpdatedBy: { - id: "Qu9goywu6cV" - }, - user: { - id: "ilJDyuqlwDC" - }, - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "Wx8ovUuTEEU", - displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", - id: "Wx8ovUuTEEU" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "adE2VMPwCI5", - displayName: "SS_NTD_LSH_VL_LeishManTracker_View", - id: "adE2VMPwCI5" - }, - { - access: "r-------", - userGroupUid: "mYtjuODefO4", - displayName: "SS_NTD_LSH_VL_Tracker_Entry", - id: "mYtjuODefO4" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "GHGv3VsHn1a", - displayName: "SS_NTD_LSH_CL_LeishManTracker_View", - id: "GHGv3VsHn1a" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "AKCiUSICdUT", - displayName: "SS_NTD_LSH_VL_Event_Entry", - id: "AKCiUSICdUT" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "BIIJN4E57xU", - displayName: "SS_NTD_SKIN_YAWS_Event_Entry", - id: "BIIJN4E57xU" - }, - { - access: "r-------", - userGroupUid: "SttGU3eGd4O", - displayName: "SS_NTD_LSH_CL_Tracker_View", - id: "SttGU3eGd4O" - }, - { - access: "r-------", - userGroupUid: "YWgdwKzbsnN", - displayName: "SS_NTD_LSH_VL_Event_View", - id: "YWgdwKzbsnN" - }, - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "cDb6nhH0rXS", - displayName: "SS_NTD_LSH_VL_Tracker_View", - id: "cDb6nhH0rXS" - }, - { - access: "r-------", - userGroupUid: "UxF4jhfIylS", - displayName: "SS_NTD_LSH_CL_Tracker_Entry", - id: "UxF4jhfIylS" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-------", - userGroupUid: "fDujq7N2i6v", - displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", - id: "fDujq7N2i6v" - }, - { - access: "r-------", - userGroupUid: "eXn7a4TcJBj", - displayName: "SS_NTD_LSH_CL_Event_View", - id: "eXn7a4TcJBj" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "fC90V0CPRFC", - displayName: "SS_NTD_SKIN_YAWS_Event_View", - id: "fC90V0CPRFC" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - } - ], - attributeValues: [], - translations: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - options: [ - { - id: "PThinVriWjI" - }, - { - id: "ADcYKbV8BWA" - }, - { - id: "XfXIcYn2wZB" - }, - { - id: "ktd2pbc0DJl" - }, - { - id: "RG6QTAyr0lY" - } - ] - }, - { - code: "ALL_OpS_Gender", - created: "2016-05-22T22:20:55.318", - lastUpdated: "2021-04-29T19:44:45.237", - name: "Gender", - id: "apzFCMWeffA", - publicAccess: "r-------", - version: 33, - valueType: "TEXT", - lastUpdatedBy: { - id: "Qu9goywu6cV" - }, - user: { - id: "H4atNsEuKxP" - }, - userGroupAccesses: [], - attributeValues: [], - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "Genre" - }, - { - property: "NAME", - locale: "fr", - value: "Genre" - } - ], - userAccesses: [], - options: [ - { - id: "M0BoqSns1KA" - }, - { - id: "FFuAh3CgxqV" - }, - { - id: "DL8exJ3mxUX" - } - ] - }, - { - code: "OpS_BU_cat", - created: "2016-06-08T09:04:14.518", - lastUpdated: "2021-03-19T17:24:31.727", - name: "BU_cat", - id: "nF2JkM7IXth", - publicAccess: "--------", - version: 15, - valueType: "TEXT", - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - } - ], - attributeValues: [], - translations: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - options: [ - { - id: "B1dtYYHplC2" - }, - { - id: "TQIAxf467mJ" - }, - { - id: "Q9P2sPWVRfP" - }, - { - id: "JbKYZp1CAIa" - } - ] - }, - { - code: "OpS_BU_FTxO", - created: "2016-06-24T08:02:04.461", - lastUpdated: "2021-03-19T17:24:32.028", - name: "BU_FTxO", - id: "ESSQcpsmBse", - publicAccess: "--------", - version: 15, - valueType: "TEXT", - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - } - ], - attributeValues: [], - translations: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - options: [ - { - id: "Vir718Xtmot" - }, - { - id: "jtEMRBZkuHe" - }, - { - id: "FeBILAXpi53" - }, - { - id: "i2FNFG2CgtO" - } - ] - } - ], - trackedEntityTypes: [ - { - code: "Person", - created: "2018-11-29T00:00:00.000", - lastUpdated: "2021-09-21T09:19:35.653", - name: "Person", - id: "MCPQUTHX1Ze", - publicAccess: "--------", - description: "Person", - maxTeiCountToReturn: 0, - allowAuditLog: false, - featureType: "NONE", - minAttributesRequiredToSearch: 1, - lastUpdatedBy: { - id: "H4atNsEuKxP" - }, - user: { - id: "ilJDyuqlwDC" - }, - userGroupAccesses: [ - { - access: "rwrw----", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "Wx8ovUuTEEU", - displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", - id: "Wx8ovUuTEEU" - }, - { - access: "r-r-----", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "adE2VMPwCI5", - displayName: "SS_NTD_LSH_VL_LeishManTracker_View", - id: "adE2VMPwCI5" - }, - { - access: "r-rw----", - userGroupUid: "HJRKloCWNeh", - displayName: "SS_NTD_SKIN_ACD_Event_Entry", - id: "HJRKloCWNeh" - }, - { - access: "r-rw----", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-rw----", - userGroupUid: "BIIJN4E57xU", - displayName: "SS_NTD_SKIN_YAWS_Event_Entry", - id: "BIIJN4E57xU" - }, - { - access: "r-r-----", - userGroupUid: "cy0qXsDxzxe", - displayName: "SS_NTD_LSH_VL_LabLog_View", - id: "cy0qXsDxzxe" - }, - { - access: "r-------", - userGroupUid: "GHGv3VsHn1a", - displayName: "SS_NTD_LSH_CL_LeishManTracker_View", - id: "GHGv3VsHn1a" - }, - { - access: "r-r-----", - userGroupUid: "SttGU3eGd4O", - displayName: "SS_NTD_LSH_CL_Tracker_View", - id: "SttGU3eGd4O" - }, - { - access: "r-r-----", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-rw----", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-rw----", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "r-rw----", - userGroupUid: "AKCiUSICdUT", - displayName: "SS_NTD_LSH_VL_Event_Entry", - id: "AKCiUSICdUT" - }, - { - access: "r-r-----", - userGroupUid: "Ot2xz1vXELL", - displayName: "SS_NTD_CH_Healthcare_Event_View", - id: "Ot2xz1vXELL" - }, - { - access: "r-r-----", - userGroupUid: "DzvWl4E1DhF", - displayName: "SS_NTD_CH_HealthSystem_Event_View", - id: "DzvWl4E1DhF" - }, - { - access: "r-rw----", - userGroupUid: "UxF4jhfIylS", - displayName: "SS_NTD_LSH_CL_Tracker_Entry", - id: "UxF4jhfIylS" - }, - { - access: "r-r-----", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-r-----", - userGroupUid: "cDb6nhH0rXS", - displayName: "SS_NTD_LSH_VL_Tracker_View", - id: "cDb6nhH0rXS" - }, - { - access: "r-r-----", - userGroupUid: "YJ4SW7rs30P", - displayName: "SS_NTD_LSH_CPG", - id: "YJ4SW7rs30P" - }, - { - access: "r-r-----", - userGroupUid: "ODVk6IF6Dso", - displayName: "SS_NTD_SKIN_ACD_Event_View", - id: "ODVk6IF6Dso" - }, - { - access: "r-r-----", - userGroupUid: "YWgdwKzbsnN", - displayName: "SS_NTD_LSH_VL_Event_View", - id: "YWgdwKzbsnN" - }, - { - access: "r-r-----", - userGroupUid: "fC90V0CPRFC", - displayName: "SS_NTD_SKIN_YAWS_Event_View", - id: "fC90V0CPRFC" - }, - { - access: "r-rw----", - userGroupUid: "ln8nJQmOSpJ", - displayName: "SS_NTD_CH_Healthcare_Event_Entry", - id: "ln8nJQmOSpJ" - }, - { - access: "rwr-----", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "fDujq7N2i6v", - displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", - id: "fDujq7N2i6v" - }, - { - access: "r-rw----", - userGroupUid: "UnTaQrY57qi", - displayName: "NTD_LSH_Monthly_Importer", - id: "UnTaQrY57qi" - }, - { - access: "rwrw----", - userGroupUid: "r4gcKCyB5fF", - displayName: "NTD_LSH_VL_PHC", - id: "r4gcKCyB5fF" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-rw----", - userGroupUid: "TbGA9fMJpCR", - displayName: "SS_NTD_LSH_VL_LabLog_Entry", - id: "TbGA9fMJpCR" - }, - { - access: "rwr-----", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-r-----", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "r-rw----", - userGroupUid: "Qi5B1pnVvEH", - displayName: "SS_NTD_CH_HealthSystem_Event_Entry", - id: "Qi5B1pnVvEH" - }, - { - access: "r-rw----", - userGroupUid: "mYtjuODefO4", - displayName: "SS_NTD_LSH_VL_Tracker_Entry", - id: "mYtjuODefO4" - }, - { - access: "r-r-----", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - } - ], - attributeValues: [], - trackedEntityTypeAttributes: [], - translations: [], - userAccesses: [ - { - access: "r-rw----", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - }, - { - access: "rw------", - displayName: "Loretta Hardjopawiro", - id: "Ps2PMw1E7mI", - userUid: "Ps2PMw1E7mI" - }, - { - access: "rw------", - displayName: "Alexei MIKHAILOV", - id: "jrB1juLJyjJ", - userUid: "jrB1juLJyjJ" - }, - { - access: "rw------", - displayName: "Alexis Rico", - id: "s5EVHUwoFKu", - userUid: "s5EVHUwoFKu" - } - ] - } - ], - programStageSections: [ - { - created: "2016-09-06T14:39:38.414", - lastUpdated: "2021-04-22T14:59:35.599", - name: "Laboratory / Laboratoire", - id: "kmERl23mQ8R", - sortOrder: 6, - renderType: { - MOBILE: { - type: "LISTING" - }, - DESKTOP: { - type: "LISTING" - } - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - programIndicators: [], - translations: [], - dataElements: [ - { - id: "VYGsfmL36PY" - }, - { - id: "JAyZaIKj2zv" - }, - { - id: "ggwHn45jtgh" - } - ] - }, - { - created: "2016-09-13T16:50:42.097", - lastUpdated: "2021-04-22T14:59:35.599", - name: "Place of residence / Lieu de résidence", - id: "WKQvNhjIme6", - sortOrder: 1, - renderType: { - MOBILE: { - type: "LISTING" - }, - DESKTOP: { - type: "LISTING" - } - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - programIndicators: [], - translations: [], - dataElements: [ - { - id: "J19avh4dgzs" - }, - { - id: "mwIgH1XXf6p" - }, - { - id: "BYPbyk5W7SL" - }, - { - id: "bTwp4cKNjgZ" - }, - { - id: "silWE44JpaQ" - } - ] - }, - { - created: "2016-09-13T16:50:14.634", - lastUpdated: "2021-04-22T14:59:35.599", - name: "General information / Informations générales", - id: "JuoTOHBrYjD", - sortOrder: 0, - renderType: { - MOBILE: { - type: "LISTING" - }, - DESKTOP: { - type: "LISTING" - } - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - programIndicators: [], - translations: [], - dataElements: [ - { - id: "ZGCDiz5fZhb" - }, - { - id: "LJHNsKzZ8Mg" - }, - { - id: "Q7dOlqe54eh" - }, - { - id: "DAPNB0WxKMH" - }, - { - id: "Z8W89lDV4IL" - } - ] - }, - { - created: "2016-09-06T14:38:12.996", - lastUpdated: "2021-04-22T14:59:35.599", - name: "Case classification / Classification du cas", - id: "UaLdvwjiwJ4", - sortOrder: 2, - renderType: { - MOBILE: { - type: "LISTING" - }, - DESKTOP: { - type: "LISTING" - } - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - programIndicators: [], - translations: [], - dataElements: [ - { - id: "HAt5fbygnrg" - } - ] - }, - { - created: "2016-09-06T14:38:34.661", - lastUpdated: "2021-04-22T14:59:35.599", - name: "Clinical form(s) / Forme(s) clinique(s)", - id: "lA5R8jpglUg", - description: "Please tick here the type of lesion(s) identified on the patient. You can tick several boxes. //\nCochez le type de lésion(s) identidiées sur le patient. Vous pouvez cochez plusieurs cases.", - sortOrder: 3, - renderType: { - MOBILE: { - type: "LISTING" - }, - DESKTOP: { - type: "LISTING" - } - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - programIndicators: [], - translations: [], - dataElements: [ - { - id: "xkt9nkHj5CA" - }, - { - id: "RETdv2kznbH" - }, - { - id: "QzAHATV8EWv" - }, - { - id: "nidn593FWAF" - }, - { - id: "mTyzapAF9iT" - }, - { - id: "qJOXKn3wSLS" - } - ] - }, - { - created: "2016-09-06T14:38:58.156", - lastUpdated: "2021-04-22T14:59:35.599", - name: "Location(s) of lesion(s) / Localisation(s) de(s) lésion(s)", - id: "XoBIzGaZOLn", - description: "Please tick here the location(s) of the lesion(s) identified on the patient. You can tick several boxes.", - sortOrder: 4, - renderType: { - MOBILE: { - type: "LISTING" - }, - DESKTOP: { - type: "LISTING" - } - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - programIndicators: [], - translations: [], - dataElements: [ - { - id: "Sieb79556d6" - }, - { - id: "PRaonbusSOU" - }, - { - id: "UY4A4oRdvqT" - }, - { - id: "j9OfhXT92Ej" - }, - { - id: "TqqxE4hmd6Q" - }, - { - id: "UCXRQtdD8K5" - }, - { - id: "adfHPJQRI3C" - } - ] - }, - { - created: "2016-09-06T14:39:28.572", - lastUpdated: "2021-04-22T14:59:35.599", - name: "Other information about the lesion(s) / Autres informations sur la(les) lésion(s)", - id: "bfQc4NoPHD9", - sortOrder: 5, - renderType: { - MOBILE: { - type: "LISTING" - }, - DESKTOP: { - type: "LISTING" - } - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - programIndicators: [], - translations: [], - dataElements: [ - { - id: "UwC7RVH9Bwv" - }, - { - id: "DHmAP1MjEoK" - }, - { - id: "xIo6fsgpmdN" - } - ] - }, - { - created: "2016-09-06T14:39:48.484", - lastUpdated: "2021-04-22T14:59:35.599", - name: "Antibiotic treatment / Traitement antibiotique", - id: "AJDiEfldKyX", - sortOrder: 7, - renderType: { - MOBILE: { - type: "LISTING" - }, - DESKTOP: { - type: "LISTING" - } - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - programIndicators: [], - translations: [], - dataElements: [ - { - id: "gc8rKk6Hax6" - }, - { - id: "wiZbIU6sFG5" - }, - { - id: "XyGxsyiIy4p" - } - ] - } - ], - dataElements: [ - { - code: "GEN_Mobile Phone_T", - lastUpdated: "2021-03-19T17:24:32.796", - id: "silWE44JpaQ", - created: "2016-05-22T22:45:17.222", - name: "GEN_Mobile Phone_T", - shortName: "MobilePhone", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - valueType: "PHONE_NUMBER", - formName: "Mobile Phone", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "ilJDyuqlwDC" - }, - user: { - id: "q9wZgtaDxWn" - }, - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "Numero de telephone" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Numero de telephone" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "sXNyAgGyHSK", - displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", - id: "sXNyAgGyHSK" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "ZuT9b32Dhv5", - displayName: "SS_NTD_LSH_VL_KEN_Event_View", - id: "ZuT9b32Dhv5" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "BIIJN4E57xU", - displayName: "SS_NTD_SKIN_YAWS_Event_Entry", - id: "BIIJN4E57xU" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "fC90V0CPRFC", - displayName: "SS_NTD_SKIN_YAWS_Event_View", - id: "fC90V0CPRFC" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "GEN_PLACE_VillageOfResidence_Text_T", - lastUpdated: "2021-03-19T17:24:33.303", - id: "bTwp4cKNjgZ", - created: "2016-02-28T01:06:28.092", - name: "GEN_PLACE_VillageOfResidence_Text_T", - shortName: "Village of residence (Free text)", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - description: "In case you could not find the village neither in the organisation tree, nor in the when trying to capture the coordinates, please indicate the name of the village of residence as free text in this box.", - valueType: "TEXT", - formName: "Village of residence (Free text)", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "q9wZgtaDxWn" - }, - translations: [ - { - property: "DESCRIPTION", - locale: "fr", - value: "Au cas où vous ne pourriez pas trouver le lieu de résidence ni dans l'arbre d'unités d'organisation, ni lorsque vous essayez de trouver les coordonnées géographiques sur la carte, merci d'indiquer le nom du lieu de résidence comme texte libre dans cette case." - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Lieu de résidence (Texte libre)" - }, - { - property: "NAME", - locale: "fr", - value: "GEN_PLACE_VillageOfResidence_Text_T" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Lieu de résidence (Texte libre)" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "NApRIgamRrj", - displayName: "SS_NTD_SKIN_LEP_Event_Entry", - id: "NApRIgamRrj" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "AKCiUSICdUT", - displayName: "SS_NTD_LSH_VL_Event_Entry", - id: "AKCiUSICdUT" - }, - { - access: "r-------", - userGroupUid: "ZuT9b32Dhv5", - displayName: "SS_NTD_LSH_VL_KEN_Event_View", - id: "ZuT9b32Dhv5" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "BIIJN4E57xU", - displayName: "SS_NTD_SKIN_YAWS_Event_Entry", - id: "BIIJN4E57xU" - }, - { - access: "r-------", - userGroupUid: "YWgdwKzbsnN", - displayName: "SS_NTD_LSH_VL_Event_View", - id: "YWgdwKzbsnN" - }, - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "sXNyAgGyHSK", - displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", - id: "sXNyAgGyHSK" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "sVRPz2NvK37", - displayName: "NTD_AFRO", - id: "sVRPz2NvK37" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-------", - userGroupUid: "z06qKmTZ3OR", - displayName: "SS_NTD_SKIN_LEP_Event_View", - id: "z06qKmTZ3OR" - }, - { - access: "r-------", - userGroupUid: "TbGA9fMJpCR", - displayName: "SS_NTD_LSH_VL_LabLog_Entry", - id: "TbGA9fMJpCR" - }, - { - access: "r-------", - userGroupUid: "eXn7a4TcJBj", - displayName: "SS_NTD_LSH_CL_Event_View", - id: "eXn7a4TcJBj" - }, - { - access: "rw------", - userGroupUid: "r4gcKCyB5fF", - displayName: "NTD_LSH_VL_PHC", - id: "r4gcKCyB5fF" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "fC90V0CPRFC", - displayName: "SS_NTD_SKIN_YAWS_Event_View", - id: "fC90V0CPRFC" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "cy0qXsDxzxe", - displayName: "SS_NTD_LSH_VL_LabLog_View", - id: "cy0qXsDxzxe" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_TxO_AB_missed", - lastUpdated: "2021-03-19T17:24:33.527", - id: "dRoQ0J5dKuO", - created: "2016-09-04T17:41:06.131", - name: "BU_TxO_AB_missed", - shortName: "Number of days the treatment has been missed", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - description: "Please count here the number of days when the AB has not been taken.", - valueType: "INTEGER_ZERO_OR_POSITIVE", - formName: "Number of days the treatment has been missed over the total period", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "NAME", - locale: "fr", - value: "BU_TxO_AB_rate_T" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Nombre de jour où le traitement a été raté (sur la période totale de traitement)" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Nombre de jour où le traitement a été raté" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: "Veuillez compter ici le nombre de jours où le patient a raté son traitement antibiotique, sur l'ensemble de la période de traitement." - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "DET_NTD_SKIN_PIX_PreTx_PIX", - lastUpdated: "2021-03-19T17:24:33.281", - id: "xIo6fsgpmdN", - created: "2016-06-18T01:01:20.031", - name: "Skin_Pix_PreTx_Pix_T", - shortName: "Take pre-treatment picture", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - description: "If you are using the Android App, please take a photo of the lesion prior to treatment.", - valueType: "IMAGE", - formName: "Take pre-treatment picture", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "Photo pre-traitement" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Charger la photo pre-traitement" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Charger la photo pr\ufffd-traitement" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "Skin_Cl_jointLimitation_T", - lastUpdated: "2021-03-01T11:52:49.286", - id: "DHmAP1MjEoK", - created: "2016-06-08T09:14:38.961", - name: "Skin_Cl_joint limitation_T", - shortName: "Jont limitation", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - description: "Please indicate if the patient presents with limitation of movement, at any joint", - valueType: "TEXT", - formName: "Limitation of movement (at any joint)", - zeroIsSignificant: false, - optionSet: { - id: "vDeP0h2cO2n" - }, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "Limitation articulaire" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: "Indiquez si le patient présente une limitation du mouvement à n'importe quelle articulation, au moment de l'examen clinique initial." - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Limitation du mouvement (articulaire)" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "Skin_Cl_Lesion_Loc_Thorax_T", - lastUpdated: "2021-04-29T19:43:57.701", - id: "TqqxE4hmd6Q", - created: "2017-06-20T09:15:06.933", - name: "Skin_Cl_Lesion_Loc_Thorax_T", - shortName: "Thorax", - aggregationType: "COUNT", - domainType: "TRACKER", - publicAccess: "--------", - description: "Tick if lesions are present on thorax", - valueType: "TRUE_ONLY", - formName: "Thorax", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "Qu9goywu6cV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "Thorax" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Thorax (TH)" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: " Cochez cette case si le patient présente une lésion au thorax." - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "Wx8ovUuTEEU", - displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", - id: "Wx8ovUuTEEU" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "adE2VMPwCI5", - displayName: "SS_NTD_LSH_VL_LeishManTracker_View", - id: "adE2VMPwCI5" - }, - { - access: "r-------", - userGroupUid: "UxF4jhfIylS", - displayName: "SS_NTD_LSH_CL_Tracker_Entry", - id: "UxF4jhfIylS" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "GHGv3VsHn1a", - displayName: "SS_NTD_LSH_CL_LeishManTracker_View", - id: "GHGv3VsHn1a" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-------", - userGroupUid: "fDujq7N2i6v", - displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", - id: "fDujq7N2i6v" - }, - { - access: "r-------", - userGroupUid: "eXn7a4TcJBj", - displayName: "SS_NTD_LSH_CL_Event_View", - id: "eXn7a4TcJBj" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "SttGU3eGd4O", - displayName: "SS_NTD_LSH_CL_Tracker_View", - id: "SttGU3eGd4O" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "UIDreference", - lastUpdated: "2021-03-01T11:52:49.722", - id: "kzgD7nD4qLI", - created: "2018-08-24T11:47:23.237", - name: "UIDreference", - shortName: "UIDreference", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - description: "a DHIS2 UID reference", - valueType: "TEXT", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "eK26I7dRbC4" - }, - translations: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "phezIKUxlC2", - displayName: "NTD_LSH_EMRO_SOM", - id: "phezIKUxlC2" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "K40P7b1JFdc", - displayName: "NTD_EMRO", - id: "K40P7b1JFdc" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_Tx_AB_YNU_T", - lastUpdated: "2021-03-19T17:24:33.570", - id: "gc8rKk6Hax6", - created: "2019-04-01T00:19:59.400", - name: "BU_Tx_AB_YNU_T", - shortName: "AB treatment started", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - valueType: "INTEGER", - formName: "Antibiotic treatment started", - zeroIsSignificant: true, - optionSet: { - id: "mJKvd2WXQtp" - }, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "FORM_NAME", - locale: "fr", - value: "Traitement AB commence" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Traitement AB commence" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "DE_PR_GEN_UID", - lastUpdated: "2021-03-19T17:24:33.873", - id: "ZGCDiz5fZhb", - created: "2018-01-29T09:34:35.473", - name: "GEN_UID", - shortName: "UID", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - description: "Please indicate the unique identifier of the case.", - valueType: "TEXT", - formName: "Unique identifier", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "DESCRIPTION", - locale: "fr", - value: "Merci d'indiquer l'identifiant unique du cas. L'identifiant unique vous permettra de revenir consulter la fiche du cas et de faire le lien avec les outils papiers utilisés au CDTUB." - }, - { - property: "NAME", - locale: "fr", - value: "GEN_UID" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Identifiant unique" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "UID" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "NApRIgamRrj", - displayName: "SS_NTD_SKIN_LEP_Event_Entry", - id: "NApRIgamRrj" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "z06qKmTZ3OR", - displayName: "SS_NTD_SKIN_LEP_Event_View", - id: "z06qKmTZ3OR" - }, - { - access: "r-------", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-------", - userGroupUid: "eXn7a4TcJBj", - displayName: "SS_NTD_LSH_CL_Event_View", - id: "eXn7a4TcJBj" - }, - { - access: "r-------", - userGroupUid: "AKCiUSICdUT", - displayName: "SS_NTD_LSH_VL_Event_Entry", - id: "AKCiUSICdUT" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "r4gcKCyB5fF", - displayName: "NTD_LSH_VL_PHC", - id: "r4gcKCyB5fF" - }, - { - access: "r-------", - userGroupUid: "BIIJN4E57xU", - displayName: "SS_NTD_SKIN_YAWS_Event_Entry", - id: "BIIJN4E57xU" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "fC90V0CPRFC", - displayName: "SS_NTD_SKIN_YAWS_Event_View", - id: "fC90V0CPRFC" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "YWgdwKzbsnN", - displayName: "SS_NTD_LSH_VL_Event_View", - id: "YWgdwKzbsnN" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "DET_NTD_SKIN_PIX_PreTx_FILE", - lastUpdated: "2021-03-01T11:52:49.751", - id: "uNdVSTX6lSE", - created: "2020-01-08T16:27:37.687", - name: "Skin_Pix_PreTx_File_T", - shortName: "Upload pre-treatment picture", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - description: "If you are using the web-based platform, please upload a photo of the lesion prior to treatment.", - valueType: "FILE_RESOURCE", - formName: "Upload pre-treatment picture", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "GEN_PLACE_CountryOfResidence_T", - lastUpdated: "2021-03-19T17:24:34.096", - id: "J19avh4dgzs", - created: "2016-05-25T07:42:21.895", - name: "GEN_PLACE_CountryOfResidence_T", - shortName: "Country of residence", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - description: "Please select in the drop-down menu the current country of residence of the patient.", - valueType: "TEXT", - formName: "Country of residence", - zeroIsSignificant: false, - optionSet: { - id: "gUyghXvtx1M" - }, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "q9wZgtaDxWn" - }, - translations: [ - { - property: "NAME", - locale: "fr", - value: "GEN_PLACE_PaysResidence_T" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Pays de résidence" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: "Sélectionnez le pays de résidence du patient dans la liste déroulante." - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Pays de résidence" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "sXNyAgGyHSK", - displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", - id: "sXNyAgGyHSK" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "NApRIgamRrj", - displayName: "SS_NTD_SKIN_LEP_Event_Entry", - id: "NApRIgamRrj" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-------", - userGroupUid: "z06qKmTZ3OR", - displayName: "SS_NTD_SKIN_LEP_Event_View", - id: "z06qKmTZ3OR" - }, - { - access: "r-------", - userGroupUid: "eXn7a4TcJBj", - displayName: "SS_NTD_LSH_CL_Event_View", - id: "eXn7a4TcJBj" - }, - { - access: "r-------", - userGroupUid: "ZuT9b32Dhv5", - displayName: "SS_NTD_LSH_VL_KEN_Event_View", - id: "ZuT9b32Dhv5" - }, - { - access: "r-------", - userGroupUid: "AKCiUSICdUT", - displayName: "SS_NTD_LSH_VL_Event_Entry", - id: "AKCiUSICdUT" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "r4gcKCyB5fF", - displayName: "NTD_LSH_VL_PHC", - id: "r4gcKCyB5fF" - }, - { - access: "r-------", - userGroupUid: "BIIJN4E57xU", - displayName: "SS_NTD_SKIN_YAWS_Event_Entry", - id: "BIIJN4E57xU" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "fC90V0CPRFC", - displayName: "SS_NTD_SKIN_YAWS_Event_View", - id: "fC90V0CPRFC" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "YWgdwKzbsnN", - displayName: "SS_NTD_LSH_VL_Event_View", - id: "YWgdwKzbsnN" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "Skin_Cl_Lesion_Ulcer_T", - lastUpdated: "2021-03-19T17:24:34.017", - id: "mTyzapAF9iT", - created: "2016-06-08T09:14:43.396", - name: "Skin_Cl_Lesion_Ulcer_T", - shortName: "Ulcer", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - description: "An ulcer is a painless skin lesion characterized by a necrotic center, undermined edges and oedematous skin. An early ulcerative lesion has a diameter of less than 2 cm and a late ulcerative lesion has a diameter of more than 2 cm. \nTick this box if the patient presents ulcer(s). ", - valueType: "TRUE_ONLY", - formName: "Ulcer (U)", - zeroIsSignificant: false, - url: "http://apps.who.int/iris/bitstream/10665/75360/1/9789241504096_eng.pdf?ua=1", - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "Ulcere" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: " Un ulcère est une lésion cutanée indolore caractérisée par un centre nécrotique, des bords minces et une peau œdémateuse. Une lésion ulcéreuse précoce a un diamètre inférieur à 2 cm et une lésion ulcéreuse tardive a un diamètre supérieur à 2 cm. Cochez cette case si le patient présente un ou des ulcères" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Ulcere (U)" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Ulc\ufffdre" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "tEOUdu1ala4", - displayName: "NTD_EURO", - id: "tEOUdu1ala4" - }, - { - access: "r-------", - userGroupUid: "FhhAcewq9it", - displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", - id: "FhhAcewq9it" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "wwAK2yjjWQc", - displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", - id: "wwAK2yjjWQc" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "GEN_Age_atDiagnosis_T", - lastUpdated: "2021-03-19T17:24:34.207", - id: "DAPNB0WxKMH", - created: "2016-03-18T12:34:24.376", - name: "GEN_Age_atDiagnosis_T", - shortName: "Age at diagnosis", - aggregationType: "AVERAGE", - domainType: "TRACKER", - publicAccess: "--------", - description: "Age in years at the time of diagnosis", - valueType: "NUMBER", - formName: "Age (in years), at the time of diagnosis", - zeroIsSignificant: true, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "Age au diagnostic" - }, - { - property: "NAME", - locale: "fr", - value: "GEN_Age_atDiagnosis_T" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Age (en années) au moment du diagnostic" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: "Age en années au moment du diagnostic. Si l'enfant à moins d'un an, vous pouvez entrer 0 ou le nombre de mois en décimal (6 mois = 0.5 an)" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "NApRIgamRrj", - displayName: "SS_NTD_SKIN_LEP_Event_Entry", - id: "NApRIgamRrj" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "AKCiUSICdUT", - displayName: "SS_NTD_LSH_VL_Event_Entry", - id: "AKCiUSICdUT" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "BIIJN4E57xU", - displayName: "SS_NTD_SKIN_YAWS_Event_Entry", - id: "BIIJN4E57xU" - }, - { - access: "r-------", - userGroupUid: "YWgdwKzbsnN", - displayName: "SS_NTD_LSH_VL_Event_View", - id: "YWgdwKzbsnN" - }, - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "sVRPz2NvK37", - displayName: "NTD_AFRO", - id: "sVRPz2NvK37" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-------", - userGroupUid: "z06qKmTZ3OR", - displayName: "SS_NTD_SKIN_LEP_Event_View", - id: "z06qKmTZ3OR" - }, - { - access: "r-------", - userGroupUid: "eXn7a4TcJBj", - displayName: "SS_NTD_LSH_CL_Event_View", - id: "eXn7a4TcJBj" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "rw------", - userGroupUid: "r4gcKCyB5fF", - displayName: "NTD_LSH_VL_PHC", - id: "r4gcKCyB5fF" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "fC90V0CPRFC", - displayName: "SS_NTD_SKIN_YAWS_Event_View", - id: "fC90V0CPRFC" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [ - { - id: "cYxiNeJY4hJ" - } - ], - aggregationLevels: [] - }, - { - code: "Skin_Cl_Lesion_Osteomyelitis_T", - lastUpdated: "2021-03-19T17:24:34.232", - id: "QzAHATV8EWv", - created: "2016-06-08T09:14:43.030", - name: "Skin_Cl_Lesion_Osteomyelitis_T", - shortName: "Osteomyelitis", - aggregationType: "COUNT", - domainType: "TRACKER", - publicAccess: "--------", - description: "Tick this box if the patient presents osteomyelitis.", - valueType: "TRUE_ONLY", - formName: "Osteomyelitis (O)", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "Ostéomyélite" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Osteomyelite" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: "Cochez cette case si le patient présente une ostéomyélite." - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Osteomyelite (O)" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Ost\ufffdomy\ufffdlite" - }, - { - property: "NAME", - locale: "fr", - value: "Ostéomyélite" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "tEOUdu1ala4", - displayName: "NTD_EURO", - id: "tEOUdu1ala4" - }, - { - access: "r-------", - userGroupUid: "FhhAcewq9it", - displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", - id: "FhhAcewq9it" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "wwAK2yjjWQc", - displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", - id: "wwAK2yjjWQc" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_TxO_T", - lastUpdated: "2021-03-01T11:52:50.771", - id: "pUzlgt7peZT", - created: "2016-06-24T12:48:29.972", - name: "BU_TxO_T", - shortName: "Treatment outcome", - aggregationType: "COUNT", - domainType: "TRACKER", - publicAccess: "--------", - valueType: "TEXT", - formName: "Treatment outcome", - zeroIsSignificant: false, - optionSet: { - id: "ESSQcpsmBse" - }, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "GEN_FirstName_T", - lastUpdated: "2021-03-19T17:24:34.692", - id: "LJHNsKzZ8Mg", - created: "2016-09-13T16:46:09.752", - name: "GEN_FirstName_T", - shortName: "First name", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - valueType: "TEXT", - formName: "First name", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "q9wZgtaDxWn" - }, - translations: [ - { - property: "FORM_NAME", - locale: "fr", - value: "Prénom" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Prénom" - }, - { - property: "NAME", - locale: "fr", - value: "GEN_Prenom_T" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "NApRIgamRrj", - displayName: "SS_NTD_SKIN_LEP_Event_Entry", - id: "NApRIgamRrj" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "AKCiUSICdUT", - displayName: "SS_NTD_LSH_VL_Event_Entry", - id: "AKCiUSICdUT" - }, - { - access: "r-------", - userGroupUid: "ZuT9b32Dhv5", - displayName: "SS_NTD_LSH_VL_KEN_Event_View", - id: "ZuT9b32Dhv5" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "BIIJN4E57xU", - displayName: "SS_NTD_SKIN_YAWS_Event_Entry", - id: "BIIJN4E57xU" - }, - { - access: "r-------", - userGroupUid: "YWgdwKzbsnN", - displayName: "SS_NTD_LSH_VL_Event_View", - id: "YWgdwKzbsnN" - }, - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "sXNyAgGyHSK", - displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", - id: "sXNyAgGyHSK" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "sVRPz2NvK37", - displayName: "NTD_AFRO", - id: "sVRPz2NvK37" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "z06qKmTZ3OR", - displayName: "SS_NTD_SKIN_LEP_Event_View", - id: "z06qKmTZ3OR" - }, - { - access: "r-------", - userGroupUid: "TbGA9fMJpCR", - displayName: "SS_NTD_LSH_VL_LabLog_Entry", - id: "TbGA9fMJpCR" - }, - { - access: "rw------", - userGroupUid: "r4gcKCyB5fF", - displayName: "NTD_LSH_VL_PHC", - id: "r4gcKCyB5fF" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "fC90V0CPRFC", - displayName: "SS_NTD_SKIN_YAWS_Event_View", - id: "fC90V0CPRFC" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "cy0qXsDxzxe", - displayName: "SS_NTD_LSH_VL_LabLog_View", - id: "cy0qXsDxzxe" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_Tx0_dateHealing_T", - lastUpdated: "2021-03-19T17:24:34.390", - id: "e8XmDDvKCT1", - created: "2016-06-08T09:14:40.036", - name: "BU_Tx0_date complete healing_T", - shortName: "Healing Date", - aggregationType: "COUNT", - domainType: "TRACKER", - publicAccess: "--------", - description: "Definition of complete healing", - valueType: "DATE", - formName: "Date of complete healing", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "FORM_NAME", - locale: "fr", - value: "Date de guérison complete" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Date de guérison complete" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "Skin_Cl_Lesion_Loc_Abdomen_T", - lastUpdated: "2021-04-29T19:43:57.680", - id: "Sieb79556d6", - created: "2017-06-20T09:15:06.933", - name: "Skin_Cl_Lesion_Loc_Abdomen_T", - shortName: "Abdomen", - aggregationType: "COUNT", - domainType: "TRACKER", - publicAccess: "--------", - description: "Tick if lesions are present on abdomen", - valueType: "TRUE_ONLY", - formName: "Abdomen", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "Qu9goywu6cV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "Abdomen" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "Wx8ovUuTEEU", - displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", - id: "Wx8ovUuTEEU" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "adE2VMPwCI5", - displayName: "SS_NTD_LSH_VL_LeishManTracker_View", - id: "adE2VMPwCI5" - }, - { - access: "r-------", - userGroupUid: "UxF4jhfIylS", - displayName: "SS_NTD_LSH_CL_Tracker_Entry", - id: "UxF4jhfIylS" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "GHGv3VsHn1a", - displayName: "SS_NTD_LSH_CL_LeishManTracker_View", - id: "GHGv3VsHn1a" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-------", - userGroupUid: "fDujq7N2i6v", - displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", - id: "fDujq7N2i6v" - }, - { - access: "r-------", - userGroupUid: "eXn7a4TcJBj", - displayName: "SS_NTD_LSH_CL_Event_View", - id: "eXn7a4TcJBj" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "SttGU3eGd4O", - displayName: "SS_NTD_LSH_CL_Tracker_View", - id: "SttGU3eGd4O" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "GEN_PLACE_Residence_Coords_T", - lastUpdated: "2021-04-08T15:11:39.489", - id: "NzJkoIvwyCh", - created: "2020-09-30T14:15:18.845", - name: "GEN_PLACE_Residence_Coords_T", - shortName: "Place of residence (as Coord)", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - valueType: "COORDINATE", - formName: "Place of Residence Coords (DON'T FILL IT, it will be calculated from chosen Place of Residence)", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "eK26I7dRbC4" - }, - translations: [ - { - property: "FORM_NAME", - locale: "fr", - value: "Coordonnées Lieu de résidence (NE PAS REMPLIR, le système calcule automatiquement ce champ à partir de Lieu de résidence)" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Lieu de résidence" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "sCjEPgiOhP1", - displayName: "WIDP admins", - id: "sCjEPgiOhP1" - }, - { - access: "r-------", - userGroupUid: "NApRIgamRrj", - displayName: "SS_NTD_SKIN_LEP_Event_Entry", - id: "NApRIgamRrj" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "ZuT9b32Dhv5", - displayName: "SS_NTD_LSH_VL_KEN_Event_View", - id: "ZuT9b32Dhv5" - }, - { - access: "r-------", - userGroupUid: "AKCiUSICdUT", - displayName: "SS_NTD_LSH_VL_Event_Entry", - id: "AKCiUSICdUT" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "BIIJN4E57xU", - displayName: "SS_NTD_SKIN_YAWS_Event_Entry", - id: "BIIJN4E57xU" - }, - { - access: "r-------", - userGroupUid: "Nn17qA7SD5K", - displayName: "NTD_LSH_LEISHMAN", - id: "Nn17qA7SD5K" - }, - { - access: "r-------", - userGroupUid: "YWgdwKzbsnN", - displayName: "SS_NTD_LSH_VL_Event_View", - id: "YWgdwKzbsnN" - }, - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "sXNyAgGyHSK", - displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", - id: "sXNyAgGyHSK" - }, - { - access: "r-------", - userGroupUid: "Fr3SskvRRFO", - displayName: "NTD Chagas disease", - id: "Fr3SskvRRFO" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "z06qKmTZ3OR", - displayName: "SS_NTD_SKIN_LEP_Event_View", - id: "z06qKmTZ3OR" - }, - { - access: "r-------", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-------", - userGroupUid: "TbGA9fMJpCR", - displayName: "SS_NTD_LSH_VL_LabLog_Entry", - id: "TbGA9fMJpCR" - }, - { - access: "r-------", - userGroupUid: "eXn7a4TcJBj", - displayName: "SS_NTD_LSH_CL_Event_View", - id: "eXn7a4TcJBj" - }, - { - access: "rw------", - userGroupUid: "r4gcKCyB5fF", - displayName: "NTD_LSH_VL_PHC", - id: "r4gcKCyB5fF" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "fC90V0CPRFC", - displayName: "SS_NTD_SKIN_YAWS_Event_View", - id: "fC90V0CPRFC" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "cy0qXsDxzxe", - displayName: "SS_NTD_LSH_VL_LabLog_View", - id: "cy0qXsDxzxe" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "Skin_Cl_Lesion_Loc_Genitalia_T", - lastUpdated: "2021-04-29T19:43:57.695", - id: "QEFiXRZu7jY", - created: "2017-06-20T09:15:06.933", - name: "Skin_Cl_Lesion_Loc_Genitalia_T", - shortName: "Genitalia", - aggregationType: "COUNT", - domainType: "TRACKER", - publicAccess: "--------", - description: "Tick if lesions are present on genital area", - valueType: "TRUE_ONLY", - formName: "Genital area", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "Qu9goywu6cV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "FORM_NAME", - locale: "fr", - value: "Organes génitaux" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Zone g\ufffdnitale" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: "Cochez cette case si le patient présente une lésion aux organes génitaux. N'oubliez pas: les yeux, les seins et les organes génitaux sont des sites critiques pour l'ulcère de Burul" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Organes génitaux" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "Wx8ovUuTEEU", - displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", - id: "Wx8ovUuTEEU" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "adE2VMPwCI5", - displayName: "SS_NTD_LSH_VL_LeishManTracker_View", - id: "adE2VMPwCI5" - }, - { - access: "r-------", - userGroupUid: "UxF4jhfIylS", - displayName: "SS_NTD_LSH_CL_Tracker_Entry", - id: "UxF4jhfIylS" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "GHGv3VsHn1a", - displayName: "SS_NTD_LSH_CL_LeishManTracker_View", - id: "GHGv3VsHn1a" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-------", - userGroupUid: "fDujq7N2i6v", - displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", - id: "fDujq7N2i6v" - }, - { - access: "r-------", - userGroupUid: "eXn7a4TcJBj", - displayName: "SS_NTD_LSH_CL_Event_View", - id: "eXn7a4TcJBj" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "SttGU3eGd4O", - displayName: "SS_NTD_LSH_CL_Tracker_View", - id: "SttGU3eGd4O" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "Lab_Spe_YNU_T", - lastUpdated: "2021-03-19T17:24:35.058", - id: "VYGsfmL36PY", - created: "2020-01-15T00:21:47.732", - name: "Lab_Spe_YNU_T", - shortName: "Specimen(s) collected (YNU)", - aggregationType: "COUNT", - domainType: "TRACKER", - publicAccess: "--------", - valueType: "INTEGER", - formName: "Specimen(s) collected", - zeroIsSignificant: false, - optionSet: { - id: "mJKvd2WXQtp" - }, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "FORM_NAME", - locale: "fr", - value: "Echantillon(s) prélevé(s) " - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Echantillon(s) prélevé(s) " - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "FhhAcewq9it", - displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", - id: "FhhAcewq9it" - }, - { - access: "r-------", - userGroupUid: "tEOUdu1ala4", - displayName: "NTD_EURO", - id: "tEOUdu1ala4" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "QCd81cBHcad", - displayName: "SS_NTD_LSH_VL_ARM_Tracker_View", - id: "QCd81cBHcad" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "wwAK2yjjWQc", - displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", - id: "wwAK2yjjWQc" - }, - { - access: "r-------", - userGroupUid: "owXIJqhlxHy", - displayName: "SS_NTD_LSH_VL_ARM_Tracker_Entry", - id: "owXIJqhlxHy" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "Skin_Cl_Lesion_Nodule_T", - lastUpdated: "2021-03-19T17:24:34.980", - id: "xkt9nkHj5CA", - created: "2016-06-08T09:14:42.658", - name: "Skin_Cl_Lesion_Nodule_T", - shortName: "Nodule", - aggregationType: "COUNT", - domainType: "TRACKER", - publicAccess: "--------", - description: "A nodule is a lesion that extends from the skin into the subcutaneous tissue. It is 1–2 cm in diameter. It is usually painless but may be itchy and the surrounding skin may be discoloured compared to adjacent areas.\nTick this box if the patient presents a nodule.", - valueType: "TRUE_ONLY", - formName: "Nodule (N)", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "NAME", - locale: "fr", - value: "Skin_Cl_Lesion_Nodule_T" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: "Un nodule est une lésion qui s'étend depuis la peau qu'au tissu sous-cutané. Il mesure 1-2 cm de diamètre, est généralement sans douleur, mais peut gratter et la peau atour peau perdre de la couleur comparé aux zones voisines. Merci de cocher cette case si le patient présente un nodule. " - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Nodule" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Nodule (N)" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "tEOUdu1ala4", - displayName: "NTD_EURO", - id: "tEOUdu1ala4" - }, - { - access: "r-------", - userGroupUid: "FhhAcewq9it", - displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", - id: "FhhAcewq9it" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "wwAK2yjjWQc", - displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", - id: "wwAK2yjjWQc" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "GEN_PLACE_Residence_Coordinates_T", - lastUpdated: "2021-03-01T11:52:51.132", - id: "o3F666LPvuM", - created: "2016-11-08T08:32:27.031", - name: "GEN_PLACE_Residence_Coordinates_T", - shortName: "Coordinates (Residence)", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - valueType: "NUMBER", - formName: "Place of residence (Coordinates)", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "NAME", - locale: "fr", - value: "GEN_PLACE_Residence_Coordonnees_T" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Coordonnées (Résidence)" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Lieu de résidence (Coordonnées)" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-------", - userGroupUid: "eXn7a4TcJBj", - displayName: "SS_NTD_LSH_CL_Event_View", - id: "eXn7a4TcJBj" - }, - { - access: "r-------", - userGroupUid: "AKCiUSICdUT", - displayName: "SS_NTD_LSH_VL_Event_Entry", - id: "AKCiUSICdUT" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "r4gcKCyB5fF", - displayName: "NTD_LSH_VL_PHC", - id: "r4gcKCyB5fF" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "YWgdwKzbsnN", - displayName: "SS_NTD_LSH_VL_Event_View", - id: "YWgdwKzbsnN" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_Lab_Mycolactone_InitialResults_T", - lastUpdated: "2021-03-19T17:24:35.301", - id: "ggwHn45jtgh", - created: "2017-06-20T11:55:11.428", - name: "BU_Lab_Mycolactone_InitialResults_T", - shortName: "Mycolactone - Result", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - valueType: "TEXT", - formName: "Mycolactone - Result", - zeroIsSignificant: false, - optionSet: { - id: "vQBOhNnE09a" - }, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "Micolactone - Résultats" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Micolactone - Résultats" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "GEN_Family name_T", - lastUpdated: "2021-03-19T17:24:35.634", - id: "Q7dOlqe54eh", - created: "2016-09-13T16:46:09.752", - name: "GEN_Family name_T", - shortName: "Family name", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - valueType: "TEXT", - formName: "Family name", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "q9wZgtaDxWn" - }, - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "Nom de famille" - }, - { - property: "NAME", - locale: "fr", - value: "GEN_NomFamille_T" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Nom de famille" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "NApRIgamRrj", - displayName: "SS_NTD_SKIN_LEP_Event_Entry", - id: "NApRIgamRrj" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "AKCiUSICdUT", - displayName: "SS_NTD_LSH_VL_Event_Entry", - id: "AKCiUSICdUT" - }, - { - access: "r-------", - userGroupUid: "ZuT9b32Dhv5", - displayName: "SS_NTD_LSH_VL_KEN_Event_View", - id: "ZuT9b32Dhv5" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "BIIJN4E57xU", - displayName: "SS_NTD_SKIN_YAWS_Event_Entry", - id: "BIIJN4E57xU" - }, - { - access: "r-------", - userGroupUid: "YWgdwKzbsnN", - displayName: "SS_NTD_LSH_VL_Event_View", - id: "YWgdwKzbsnN" - }, - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "sXNyAgGyHSK", - displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", - id: "sXNyAgGyHSK" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "sVRPz2NvK37", - displayName: "NTD_AFRO", - id: "sVRPz2NvK37" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "z06qKmTZ3OR", - displayName: "SS_NTD_SKIN_LEP_Event_View", - id: "z06qKmTZ3OR" - }, - { - access: "r-------", - userGroupUid: "TbGA9fMJpCR", - displayName: "SS_NTD_LSH_VL_LabLog_Entry", - id: "TbGA9fMJpCR" - }, - { - access: "rw------", - userGroupUid: "r4gcKCyB5fF", - displayName: "NTD_LSH_VL_PHC", - id: "r4gcKCyB5fF" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "fC90V0CPRFC", - displayName: "SS_NTD_SKIN_YAWS_Event_View", - id: "fC90V0CPRFC" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "cy0qXsDxzxe", - displayName: "SS_NTD_LSH_VL_LabLog_View", - id: "cy0qXsDxzxe" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "Skin_Cl_Papule_Lesion_T", - lastUpdated: "2021-03-19T17:24:35.625", - id: "nidn593FWAF", - created: "2016-06-08T09:14:43.588", - name: "Skin_Cl_Lesion_Papule_T", - shortName: "Papule", - aggregationType: "COUNT", - domainType: "TRACKER", - publicAccess: "--------", - description: "A papule is defined as a painless, raised skin lesion, less than 1 cm in diameter. The surrounding skin is reddened.\nTick this box if the patient presents papule(s).", - valueType: "TRUE_ONLY", - formName: "Papule (P)", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "DESCRIPTION", - locale: "fr", - value: "Une papule est définie comme une lésion cutanée surélevée et indolore, de moins de 1 cm de diamètre. La peau environnante est rougie. Cochez cette case si le patient présente des papules." - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Papule" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Papule (P)" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "FhhAcewq9it", - displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", - id: "FhhAcewq9it" - }, - { - access: "r-------", - userGroupUid: "tEOUdu1ala4", - displayName: "NTD_EURO", - id: "tEOUdu1ala4" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "wwAK2yjjWQc", - displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", - id: "wwAK2yjjWQc" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "DET_NTD_BU_ITxO", - lastUpdated: "2021-03-19T17:24:35.586", - id: "KcYECFOPVpR", - created: "2019-06-05T07:38:23.929", - name: "BU_FTxO_T", - shortName: "BU - Final treatment outcome", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - description: "The final treatment outcome is the final assessment when the patient is completely healed. ", - valueType: "TEXT", - formName: "Final treatment outcome", - zeroIsSignificant: false, - optionSet: { - id: "ESSQcpsmBse" - }, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "UB - Résultat final du traitement" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: "Le résultat final du traitement est l'évaluation finale lors que le patient est complétement guéri." - }, - { - property: "FORM_NAME", - locale: "fr", - value: "UB - Résultat final du traitement" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "GEN_Registry Number_T", - lastUpdated: "2021-03-01T11:52:51.344", - id: "IcCc2qu4DnR", - created: "2016-05-22T22:45:15.692", - name: "GEN_Registry Number_T", - shortName: "RegistryNumber", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - description: "Please indicate the Patient number of the registry", - valueType: "TEXT", - formName: "Case No.", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "DET_NTD_SKIN_PIX_POSTx_FILE", - lastUpdated: "2021-03-01T11:52:51.559", - id: "YrSJMlEJWEC", - created: "2020-01-08T16:30:44.941", - name: "Skin_Pix_PostTx_FILE_T", - shortName: "Upload post-treatment photo", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - description: "If you are using the web-based platform, please upload a photo of the lesion(s) when assessing the treatment outcome.", - valueType: "FILE_RESOURCE", - formName: "Upload post-treatment photo of the lesion", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "GEN_PLACE_VillageOfResidence_GPS_T", - lastUpdated: "2021-03-19T17:24:35.730", - id: "BYPbyk5W7SL", - created: "2016-02-28T01:06:28.092", - name: "GEN_PLACE_VillageOfResidence_GPS_T", - shortName: "Village of residence (coordinates)", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - description: "In case you could not find the village in the organisation tree, please indicate the village of residence of the patient by 1/ indicating the latitude and longitude in the following format (X.XX.XX) or 2/ by clicking on the picture on the right and capturing the coordinates on the map directly (click right and \"set coordinates\"). If you choose the second option, you will be able to search for the village name on the search tab (up and left). ", - valueType: "COORDINATE", - formName: "Probable village of residence (coordinates)", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "FORM_NAME", - locale: "fr", - value: "Lieu de résidence (coordonées)" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: "Dans le cas où vous ne pourriez pas trouver le village dans l'arborescence, veuillez indiquer le village de résidence du patient 1/ en indiquant la latitude et la longitude dans le format suivant (X.XX.XX) ou 2/ en cliquant sur l'icone à droite et capturer les coordonnées sur la carte directement (cliquez à droite et \"définir les coordonnées\"). Si vous choisissez la deuxième option, vous pourrez rechercher le nom du village dans l'onglet de recherche (haut et gauche). vous n'avez pas pu trouver le village dans l'arborescence, veuillez indiquer le village de résidence du patient 1/ en indiquant la latitude et la longitude dans le format suivant (X.XX.XX) ou 2 / en cliquant sur l'icone à droite et capturer directement les coordonnées sur la carte (cliquer à droite et \"définir les coordonnées\"). Si vous choisissez la deuxième option, vous pourrez rechercher le nom du village dans l'onglet de recherche (haut et gauche)." - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Lieu de résidence (coordonées)" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "NApRIgamRrj", - displayName: "SS_NTD_SKIN_LEP_Event_Entry", - id: "NApRIgamRrj" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "sVRPz2NvK37", - displayName: "NTD_AFRO", - id: "sVRPz2NvK37" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "z06qKmTZ3OR", - displayName: "SS_NTD_SKIN_LEP_Event_View", - id: "z06qKmTZ3OR" - }, - { - access: "r-------", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-------", - userGroupUid: "eXn7a4TcJBj", - displayName: "SS_NTD_LSH_CL_Event_View", - id: "eXn7a4TcJBj" - }, - { - access: "r-------", - userGroupUid: "AKCiUSICdUT", - displayName: "SS_NTD_LSH_VL_Event_Entry", - id: "AKCiUSICdUT" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "r4gcKCyB5fF", - displayName: "NTD_LSH_VL_PHC", - id: "r4gcKCyB5fF" - }, - { - access: "r-------", - userGroupUid: "BIIJN4E57xU", - displayName: "SS_NTD_SKIN_YAWS_Event_Entry", - id: "BIIJN4E57xU" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "fC90V0CPRFC", - displayName: "SS_NTD_SKIN_YAWS_Event_View", - id: "fC90V0CPRFC" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "YWgdwKzbsnN", - displayName: "SS_NTD_LSH_VL_Event_View", - id: "YWgdwKzbsnN" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "DET_NTD_SKIN_PIX_POSTx_PIX", - lastUpdated: "2021-03-19T17:24:35.831", - id: "XyGxsyiIy4p", - created: "2019-06-06T03:34:05.151", - name: "Skin_Pix_PostTx_PIX_T", - shortName: "Take post-treatment photo", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - description: "If you are using the Android App, please take a photo of lesion when assessing the treatment outcome.", - valueType: "IMAGE", - formName: "Take post-treatment photo of the lesion", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "FORM_NAME", - locale: "fr", - value: "Chargez l'image post-traitement" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Image post-traitement" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "Skin_Cl_Lesion_Plaque_T", - lastUpdated: "2021-03-19T17:24:36.218", - id: "qJOXKn3wSLS", - created: "2016-06-08T09:14:43.215", - name: "Skin_Cl_Lesion_Plaque_T", - shortName: "Plaque", - aggregationType: "COUNT", - domainType: "TRACKER", - publicAccess: "--------", - description: "A plaque is a firm, painless, elevated, well-demarcated lesion more than 2 cm in diameter with irregular edges. The skin over the lesion is often reddened or otherwise discolored. \nTick this box if the patient presents plaque(s).", - valueType: "TRUE_ONLY", - formName: "Plaque (Q)", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "DESCRIPTION", - locale: "fr", - value: " Une plaque est une lésion ferme, indolore, surélevée et bien délimitée, de plus de 2 cm de diamètre et présentant des bords irréguliers. La peau recouvrant la lésion est souvent rougie ou décolorée. Cochez cette case si le patient présente des plaques." - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Plaque" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Plaque (Q)" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "tEOUdu1ala4", - displayName: "NTD_EURO", - id: "tEOUdu1ala4" - }, - { - access: "r-------", - userGroupUid: "FhhAcewq9it", - displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", - id: "FhhAcewq9it" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "wwAK2yjjWQc", - displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", - id: "wwAK2yjjWQc" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_Tx_ABType_T", - lastUpdated: "2021-03-01T11:53:03.841", - id: "rWFQhbrnfMD", - created: "2016-06-08T09:26:37.955", - name: "BU_Tx_ABType_T", - shortName: "Antibiotics", - aggregationType: "COUNT", - domainType: "TRACKER", - publicAccess: "--------", - description: "If streptomycin is contraindicated (pregnancy, previous treatment with streptomycin), please contact the national programme manager or a designated referral treatment centre.", - valueType: "TEXT", - formName: "Antibiotics type", - zeroIsSignificant: false, - optionSet: { - id: "cYVMBWrU2Pi" - }, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "Antiobiotiques" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Type d'antibiotiques" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: " Si la streptomycine est contre-indiquée (grossesse, traitement antérieur à la streptomycine), veuillez contacter le responsable du programme national ou un centre de traitement de référence désigné." - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "Skin_Cl_Lesion_Loc_Buttocks perineum_T", - lastUpdated: "2021-04-29T19:43:57.686", - id: "UY4A4oRdvqT", - created: "2017-06-20T09:15:06.933", - name: "Skin_Cl_Lesion_Loc_Buttocks perineum_T", - shortName: "Buttocks or Perineum", - aggregationType: "COUNT", - domainType: "TRACKER", - publicAccess: "--------", - description: "Tick if lesions are present on buttocks or perineum", - valueType: "TRUE_ONLY", - formName: "Buttocks or Perineum", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "Qu9goywu6cV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "Fesses et périnée" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Fesses et périnée (FE)" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: " Cochez cette case si le patient présente une lésion aux fesses ou au périnée." - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "Wx8ovUuTEEU", - displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", - id: "Wx8ovUuTEEU" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "adE2VMPwCI5", - displayName: "SS_NTD_LSH_VL_LeishManTracker_View", - id: "adE2VMPwCI5" - }, - { - access: "r-------", - userGroupUid: "UxF4jhfIylS", - displayName: "SS_NTD_LSH_CL_Tracker_Entry", - id: "UxF4jhfIylS" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "GHGv3VsHn1a", - displayName: "SS_NTD_LSH_CL_LeishManTracker_View", - id: "GHGv3VsHn1a" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-------", - userGroupUid: "fDujq7N2i6v", - displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", - id: "fDujq7N2i6v" - }, - { - access: "r-------", - userGroupUid: "eXn7a4TcJBj", - displayName: "SS_NTD_LSH_CL_Event_View", - id: "eXn7a4TcJBj" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "SttGU3eGd4O", - displayName: "SS_NTD_LSH_CL_Tracker_View", - id: "SttGU3eGd4O" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "GEN_Sexe_T", - lastUpdated: "2021-03-19T17:24:36.558", - id: "Z8W89lDV4IL", - created: "2017-08-18T16:15:07.454", - name: "GEN_Sexe_T", - shortName: "Gender", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - description: "Gender", - valueType: "TEXT", - formName: "Gender", - zeroIsSignificant: false, - optionSet: { - id: "apzFCMWeffA" - }, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "q9wZgtaDxWn" - }, - translations: [ - { - property: "DESCRIPTION", - locale: "fr", - value: "Genre" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Genre" - }, - { - property: "NAME", - locale: "fr", - value: "GEN_Genre_T" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Genre" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "r-------", - userGroupUid: "Ot2xz1vXELL", - displayName: "SS_NTD_CH_Healthcare_Event_View", - id: "Ot2xz1vXELL" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "NApRIgamRrj", - displayName: "SS_NTD_SKIN_LEP_Event_Entry", - id: "NApRIgamRrj" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "AKCiUSICdUT", - displayName: "SS_NTD_LSH_VL_Event_Entry", - id: "AKCiUSICdUT" - }, - { - access: "r-------", - userGroupUid: "ZuT9b32Dhv5", - displayName: "SS_NTD_LSH_VL_KEN_Event_View", - id: "ZuT9b32Dhv5" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "BIIJN4E57xU", - displayName: "SS_NTD_SKIN_YAWS_Event_Entry", - id: "BIIJN4E57xU" - }, - { - access: "r-------", - userGroupUid: "fth3On7vInl", - displayName: "NTD", - id: "fth3On7vInl" - }, - { - access: "r-------", - userGroupUid: "ln8nJQmOSpJ", - displayName: "SS_NTD_CH_Healthcare_Event_Entry", - id: "ln8nJQmOSpJ" - }, - { - access: "r-------", - userGroupUid: "YWgdwKzbsnN", - displayName: "SS_NTD_LSH_VL_Event_View", - id: "YWgdwKzbsnN" - }, - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "sXNyAgGyHSK", - displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", - id: "sXNyAgGyHSK" - }, - { - access: "r-------", - userGroupUid: "sVRPz2NvK37", - displayName: "NTD_AFRO", - id: "sVRPz2NvK37" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-------", - userGroupUid: "z06qKmTZ3OR", - displayName: "SS_NTD_SKIN_LEP_Event_View", - id: "z06qKmTZ3OR" - }, - { - access: "r-------", - userGroupUid: "eXn7a4TcJBj", - displayName: "SS_NTD_LSH_CL_Event_View", - id: "eXn7a4TcJBj" - }, - { - access: "r-------", - userGroupUid: "TbGA9fMJpCR", - displayName: "SS_NTD_LSH_VL_LabLog_Entry", - id: "TbGA9fMJpCR" - }, - { - access: "rw------", - userGroupUid: "r4gcKCyB5fF", - displayName: "NTD_LSH_VL_PHC", - id: "r4gcKCyB5fF" - }, - { - access: "rw------", - userGroupUid: "Fr3SskvRRFO", - displayName: "NTD Chagas disease", - id: "Fr3SskvRRFO" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "fC90V0CPRFC", - displayName: "SS_NTD_SKIN_YAWS_Event_View", - id: "fC90V0CPRFC" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "cy0qXsDxzxe", - displayName: "SS_NTD_LSH_VL_LabLog_View", - id: "cy0qXsDxzxe" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "Petar Jovanovic", - id: "q9wZgtaDxWn", - userUid: "q9wZgtaDxWn" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "Skin_Cl_Classif_T", - lastUpdated: "2021-03-19T17:24:36.345", - id: "HAt5fbygnrg", - created: "2016-06-08T09:14:38.421", - name: "Skin_Cl_Classification_T", - shortName: "Classification", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - description: "New case: a patient who is presenting the current symptoms for the first time.\nRecurrent/Relapse: a patient who has presented a previous episode for the same disease in the past. \nRe-treatment case: a patient who has already received treatment for the current episode (transfer in, defaulter, lost to follow up...) ", - valueType: "TEXT", - formName: "Classification of patient", - zeroIsSignificant: false, - optionSet: { - id: "Al6DsS3DTve" - }, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "FORM_NAME", - locale: "fr", - value: "Classification du patient" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: "Nouveau cas: un patient qui présente les symptômes actuels pour la premières fois. Recurrent/Rechute: un patient qui a déjà présenté un épisode de la même maladie dans le passé. Re-traitement: un patient qui a déjà reçu un traitement pour l'épisode actuel de la maladie (transfert, abandon du traitement précédent, perdu de vue...) " - }, - { - property: "NAME", - locale: "fr", - value: "Skin_Cl_Classification_T" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Classification" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Classification" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "NApRIgamRrj", - displayName: "SS_NTD_SKIN_LEP_Event_Entry", - id: "NApRIgamRrj" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "z06qKmTZ3OR", - displayName: "SS_NTD_SKIN_LEP_Event_View", - id: "z06qKmTZ3OR" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "Skin_Cl_Lesion_Loc_Back_T", - lastUpdated: "2021-04-29T19:43:57.682", - id: "PRaonbusSOU", - created: "2017-06-20T09:15:06.933", - name: "Skin_Cl_Lesion_Loc_Back_T", - shortName: "Back", - aggregationType: "COUNT", - domainType: "TRACKER", - publicAccess: "--------", - description: "Tick if lesions are present on back", - valueType: "TRUE_ONLY", - formName: "Back", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "Qu9goywu6cV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "Dos" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Dos (DO)" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "Wx8ovUuTEEU", - displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", - id: "Wx8ovUuTEEU" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "adE2VMPwCI5", - displayName: "SS_NTD_LSH_VL_LeishManTracker_View", - id: "adE2VMPwCI5" - }, - { - access: "r-------", - userGroupUid: "UxF4jhfIylS", - displayName: "SS_NTD_LSH_CL_Tracker_Entry", - id: "UxF4jhfIylS" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "GHGv3VsHn1a", - displayName: "SS_NTD_LSH_CL_LeishManTracker_View", - id: "GHGv3VsHn1a" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-------", - userGroupUid: "fDujq7N2i6v", - displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", - id: "fDujq7N2i6v" - }, - { - access: "r-------", - userGroupUid: "eXn7a4TcJBj", - displayName: "SS_NTD_LSH_CL_Event_View", - id: "eXn7a4TcJBj" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "SttGU3eGd4O", - displayName: "SS_NTD_LSH_CL_Tracker_View", - id: "SttGU3eGd4O" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "DET_NTD_BU_TxO", - lastUpdated: "2021-03-19T17:24:36.613", - id: "PMlpZH7wYON", - created: "2019-06-05T07:49:17.800", - name: "BU_ITxO_T", - shortName: "BU - Initial treatment outcome (D56)", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - description: "The initial treatment outcome is due at the initial assessment at the end of the 56 days of antibiotic treatment.", - valueType: "TEXT", - formName: "Initial treatment outcome on Day 56 (end of antibiotic treatment)", - zeroIsSignificant: false, - optionSet: { - id: "tGr5pbgz67Z" - }, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "UB - Résultat initial du traitement (J56)" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: " Le résultat du traitement initial est dû lors de l'évaluation initiale à la fin des 56 jours de traitement antibiotique." - }, - { - property: "FORM_NAME", - locale: "fr", - value: "UB - Résultat initial du traitement à J56 (fin du traitement antibiotique)" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "Skin_Cl_Lesion_Loc_Head Neck_T", - lastUpdated: "2021-04-29T19:43:57.697", - id: "j9OfhXT92Ej", - created: "2017-06-20T09:15:06.933", - name: "Skin_Cl_Lesion_Loc_Head Neck_T", - shortName: "HeadNeck", - aggregationType: "COUNT", - domainType: "TRACKER", - publicAccess: "--------", - description: "Tick if lesions are present on head or neck; do not tick if only on face, ears or eyes (separate categories)", - valueType: "TRUE_ONLY", - formName: "Head or Neck", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "Qu9goywu6cV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "FORM_NAME", - locale: "fr", - value: "Tete / Cou (TC)" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: " Cochez cette case si le patient présente une lésion à la tête ou au cou." - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "T\ufffdte / Cou" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Tete / Cou" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "Wx8ovUuTEEU", - displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", - id: "Wx8ovUuTEEU" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "adE2VMPwCI5", - displayName: "SS_NTD_LSH_VL_LeishManTracker_View", - id: "adE2VMPwCI5" - }, - { - access: "r-------", - userGroupUid: "UxF4jhfIylS", - displayName: "SS_NTD_LSH_CL_Tracker_Entry", - id: "UxF4jhfIylS" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "GHGv3VsHn1a", - displayName: "SS_NTD_LSH_CL_LeishManTracker_View", - id: "GHGv3VsHn1a" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-------", - userGroupUid: "fDujq7N2i6v", - displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", - id: "fDujq7N2i6v" - }, - { - access: "r-------", - userGroupUid: "eXn7a4TcJBj", - displayName: "SS_NTD_LSH_CL_Event_View", - id: "eXn7a4TcJBj" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "SttGU3eGd4O", - displayName: "SS_NTD_LSH_CL_Tracker_View", - id: "SttGU3eGd4O" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "Skin_Cl_Lesion_Loc_Lower Limb_T", - lastUpdated: "2021-04-29T19:43:57.699", - id: "adfHPJQRI3C", - created: "2017-06-20T09:15:06.933", - name: "Skin_Cl_Lesion_Loc_Lower Limb_T", - shortName: "LowerLimb", - aggregationType: "COUNT", - domainType: "TRACKER", - publicAccess: "--------", - description: "Tick if lesions are present on lower limb(s), do not tick if only on toe(s)", - valueType: "TRUE_ONLY", - formName: "Lower Limb(s)", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "Qu9goywu6cV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "DESCRIPTION", - locale: "fr", - value: " Cochez cette case si le patient présente une lésion aux membres inférieurs." - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Membre inferieur (MI)" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Membre inferieur" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Membre inf\ufffdrieur" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "Wx8ovUuTEEU", - displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", - id: "Wx8ovUuTEEU" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "adE2VMPwCI5", - displayName: "SS_NTD_LSH_VL_LeishManTracker_View", - id: "adE2VMPwCI5" - }, - { - access: "r-------", - userGroupUid: "UxF4jhfIylS", - displayName: "SS_NTD_LSH_CL_Tracker_Entry", - id: "UxF4jhfIylS" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "GHGv3VsHn1a", - displayName: "SS_NTD_LSH_CL_LeishManTracker_View", - id: "GHGv3VsHn1a" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-------", - userGroupUid: "fDujq7N2i6v", - displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", - id: "fDujq7N2i6v" - }, - { - access: "r-------", - userGroupUid: "eXn7a4TcJBj", - displayName: "SS_NTD_LSH_CL_Event_View", - id: "eXn7a4TcJBj" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "SttGU3eGd4O", - displayName: "SS_NTD_LSH_CL_Tracker_View", - id: "SttGU3eGd4O" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "Skin_Cl_Lesion_Loc_Breast_T", - lastUpdated: "2021-04-29T19:43:57.684", - id: "GqDsjatLQXl", - created: "2017-06-20T09:15:06.933", - name: "Skin_Cl_Lesion_Loc_Breast_T", - shortName: "Breast", - aggregationType: "COUNT", - domainType: "TRACKER", - publicAccess: "--------", - description: "Tick if lesions are present on chest", - valueType: "TRUE_ONLY", - formName: "Chest", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "Qu9goywu6cV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "DESCRIPTION", - locale: "fr", - value: "Cochez cette case si la patiente présente une lésion au sein. N'oubliez pas: les yeux, les seins et les organes génitaux sont des sites critiques pour l'ulcère de Buruli." - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Poitrine" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Poitrine (BR)" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "Wx8ovUuTEEU", - displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", - id: "Wx8ovUuTEEU" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "adE2VMPwCI5", - displayName: "SS_NTD_LSH_VL_LeishManTracker_View", - id: "adE2VMPwCI5" - }, - { - access: "r-------", - userGroupUid: "UxF4jhfIylS", - displayName: "SS_NTD_LSH_CL_Tracker_Entry", - id: "UxF4jhfIylS" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "GHGv3VsHn1a", - displayName: "SS_NTD_LSH_CL_LeishManTracker_View", - id: "GHGv3VsHn1a" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-------", - userGroupUid: "fDujq7N2i6v", - displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", - id: "fDujq7N2i6v" - }, - { - access: "r-------", - userGroupUid: "eXn7a4TcJBj", - displayName: "SS_NTD_LSH_CL_Event_View", - id: "eXn7a4TcJBj" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "SttGU3eGd4O", - displayName: "SS_NTD_LSH_CL_Tracker_View", - id: "SttGU3eGd4O" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_Cl_category_T", - lastUpdated: "2021-03-19T17:24:37.242", - id: "UwC7RVH9Bwv", - created: "2016-06-08T09:14:38.784", - name: "BU_Cl_category_T", - shortName: "Category", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - description: "Category I: A single lesion 5cm or less / Category II: A single lesion 5-15cm / Category III: A single lesion more than 15 cm or multiple lesions or lesions at critical sites or osteomyelitis", - valueType: "TEXT", - formName: "BU case category", - zeroIsSignificant: false, - optionSet: { - id: "nF2JkM7IXth" - }, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "Catégorie" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Catégorie du cas d'UB" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: "Catégorie I: Une seule lésion de 5 cm ou moins / Catégorie II: Une seule lésion de 5-15cm / Catégorie III: Une seule lésion de plus de 15 cm ou de multiples lésions ou lésion au niveau de sites critiques ou ostéomyélite" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_Tx_AB_Completed_T", - lastUpdated: "2021-03-19T17:24:37.240", - id: "wiZbIU6sFG5", - created: "2016-06-24T12:41:09.641", - name: "BU_Tx_AB_Completed_T", - shortName: "BU - AB completed", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - description: "The treatment with antibiotics is considered as completed if the patient has taken 49 to 56 days of antibiotics.", - valueType: "TEXT", - formName: "Antibiotic treatment completed", - zeroIsSignificant: false, - optionSet: { - id: "TqJC6mhsOv6" - }, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "FORM_NAME", - locale: "fr", - value: "Antibiotique terminé" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: "Le traitement antibiotique est considéré comme terminé si le patient a pris des antibiotiques pendant 49 à 56 jours." - }, - { - property: "DESCRIPTION", - locale: "fr", - value: "L'antibiotique est considéré comme terminé si le patient a pris des antibiotiques 56 jours." - }, - { - property: "NAME", - locale: "fr", - value: "BU_TxO_AbTerm2_T" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "AB terminé" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "Skin_Cl_Lesion_Loc_Upper limb_T", - lastUpdated: "2021-04-29T19:43:57.703", - id: "UCXRQtdD8K5", - created: "2017-06-20T09:15:06.933", - name: "Skin_Cl_Lesion_Loc_Upper limb_T", - shortName: "UpperLimb", - aggregationType: "COUNT", - domainType: "TRACKER", - publicAccess: "--------", - description: "Tick if lesions are present on upper limb(s); do not tick if only on finger(s) or thumb(s)", - valueType: "TRUE_ONLY", - formName: "Upper Limb(s)", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "Qu9goywu6cV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "DESCRIPTION", - locale: "fr", - value: " Cochez cette case si le patient présente une lésion aux membres supérieurs." - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Membre superieur (MS)" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Membre superieur" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Membre sup\ufffdrieur" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "Wx8ovUuTEEU", - displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", - id: "Wx8ovUuTEEU" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "adE2VMPwCI5", - displayName: "SS_NTD_LSH_VL_LeishManTracker_View", - id: "adE2VMPwCI5" - }, - { - access: "r-------", - userGroupUid: "UxF4jhfIylS", - displayName: "SS_NTD_LSH_CL_Tracker_Entry", - id: "UxF4jhfIylS" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "GHGv3VsHn1a", - displayName: "SS_NTD_LSH_CL_LeishManTracker_View", - id: "GHGv3VsHn1a" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-------", - userGroupUid: "fDujq7N2i6v", - displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", - id: "fDujq7N2i6v" - }, - { - access: "r-------", - userGroupUid: "eXn7a4TcJBj", - displayName: "SS_NTD_LSH_CL_Event_View", - id: "eXn7a4TcJBj" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "SttGU3eGd4O", - displayName: "SS_NTD_LSH_CL_Tracker_View", - id: "SttGU3eGd4O" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "Skin_Cl_Lesion_Oedema_T", - lastUpdated: "2021-03-19T17:24:37.334", - id: "RETdv2kznbH", - created: "2016-06-08T09:14:42.842", - name: "Skin_Cl_Lesion_Oedema_T", - shortName: "Oedema", - aggregationType: "COUNT", - domainType: "TRACKER", - publicAccess: "--------", - description: "An oedema is a diffuse, extensive, non-pitting, ill defined margin, firm, and may be painful with or without color change over the affected skin. \nTick this box if the patient presents oedema. ", - valueType: "TRUE_ONLY", - formName: "Oedema (E)", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "DESCRIPTION", - locale: "fr", - value: "Un oedème est une lésion diffuse, étendue, avec des marges mal définie, ferme et qui peut être douloureux, avec ou sans changement de couleur de la peau affectée. Merci de cocher cette case si le patient présente un oedeme." - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Oedeme" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Œdème" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Oedeme (E)" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "\ufffdd\ufffdme" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "FhhAcewq9it", - displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", - id: "FhhAcewq9it" - }, - { - access: "r-------", - userGroupUid: "tEOUdu1ala4", - displayName: "NTD_EURO", - id: "tEOUdu1ala4" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "wwAK2yjjWQc", - displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", - id: "wwAK2yjjWQc" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "GEN_PLACE_Residence_OU_T", - lastUpdated: "2021-03-19T17:24:37.665", - id: "mwIgH1XXf6p", - created: "2016-05-22T22:45:16.647", - name: "GEN_PLACE_Residence_OU_T", - shortName: "Place of residence (as OU)", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - description: "Please indicate the place of residence of the patient as finest as possible by selecting it in the organisation units tree.", - valueType: "ORGANISATION_UNIT", - formName: "Place of residence (as organization unit)", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "q9wZgtaDxWn" - }, - translations: [ - { - property: "FORM_NAME", - locale: "fr", - value: "Lieu de résidence (comme unité d'organisation)" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Lieu de résidence" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: "Veuillez indiquer le lieu de résidence de la manière la plus fine possible (idéalement le village de résidence), en le sélectionant dans l'arbre des unités d'organisation." - }, - { - property: "NAME", - locale: "fr", - value: "GEN_PlaceOU_T" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "NApRIgamRrj", - displayName: "SS_NTD_SKIN_LEP_Event_Entry", - id: "NApRIgamRrj" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "AKCiUSICdUT", - displayName: "SS_NTD_LSH_VL_Event_Entry", - id: "AKCiUSICdUT" - }, - { - access: "r-------", - userGroupUid: "ZuT9b32Dhv5", - displayName: "SS_NTD_LSH_VL_KEN_Event_View", - id: "ZuT9b32Dhv5" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "BIIJN4E57xU", - displayName: "SS_NTD_SKIN_YAWS_Event_Entry", - id: "BIIJN4E57xU" - }, - { - access: "r-------", - userGroupUid: "YWgdwKzbsnN", - displayName: "SS_NTD_LSH_VL_Event_View", - id: "YWgdwKzbsnN" - }, - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "sXNyAgGyHSK", - displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", - id: "sXNyAgGyHSK" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "sVRPz2NvK37", - displayName: "NTD_AFRO", - id: "sVRPz2NvK37" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-------", - userGroupUid: "z06qKmTZ3OR", - displayName: "SS_NTD_SKIN_LEP_Event_View", - id: "z06qKmTZ3OR" - }, - { - access: "r-------", - userGroupUid: "eXn7a4TcJBj", - displayName: "SS_NTD_LSH_CL_Event_View", - id: "eXn7a4TcJBj" - }, - { - access: "r-------", - userGroupUid: "TbGA9fMJpCR", - displayName: "SS_NTD_LSH_VL_LabLog_Entry", - id: "TbGA9fMJpCR" - }, - { - access: "rw------", - userGroupUid: "r4gcKCyB5fF", - displayName: "NTD_LSH_VL_PHC", - id: "r4gcKCyB5fF" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "fC90V0CPRFC", - displayName: "SS_NTD_SKIN_YAWS_Event_View", - id: "fC90V0CPRFC" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "cy0qXsDxzxe", - displayName: "SS_NTD_LSH_VL_LabLog_View", - id: "cy0qXsDxzxe" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "Skin_Cl_Lesion_Loc_Eye_T", - lastUpdated: "2021-04-29T19:43:57.692", - id: "qafL6BdLAkH", - created: "2017-06-20T09:15:06.933", - name: "Skin_Cl_Lesion_Loc_Eye_T", - shortName: "Eye", - aggregationType: "COUNT", - domainType: "TRACKER", - publicAccess: "--------", - description: "Tick if lesions are present on eye(s)", - valueType: "TRUE_ONLY", - formName: "Eye", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "Qu9goywu6cV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "DESCRIPTION", - locale: "fr", - value: "Cochez cette case si la patiente présente une lésion aux yeux. N'oubliez pas: les yeux, les seins et les yeux sont des sites critiques pour l'ulcère de Burul" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Oeil" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Oeil" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "\ufffdil" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "r-------", - userGroupUid: "Wx8ovUuTEEU", - displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", - id: "Wx8ovUuTEEU" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "adE2VMPwCI5", - displayName: "SS_NTD_LSH_VL_LeishManTracker_View", - id: "adE2VMPwCI5" - }, - { - access: "r-------", - userGroupUid: "UxF4jhfIylS", - displayName: "SS_NTD_LSH_CL_Tracker_Entry", - id: "UxF4jhfIylS" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "GHGv3VsHn1a", - displayName: "SS_NTD_LSH_CL_LeishManTracker_View", - id: "GHGv3VsHn1a" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "JcHpRoc6nyA", - displayName: "SS_NTD_LSH_CL_Event_Entry", - id: "JcHpRoc6nyA" - }, - { - access: "r-------", - userGroupUid: "fDujq7N2i6v", - displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", - id: "fDujq7N2i6v" - }, - { - access: "r-------", - userGroupUid: "eXn7a4TcJBj", - displayName: "SS_NTD_LSH_CL_Event_View", - id: "eXn7a4TcJBj" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "SttGU3eGd4O", - displayName: "SS_NTD_LSH_CL_Tracker_View", - id: "SttGU3eGd4O" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "GEN_Locality_T", - lastUpdated: "2021-03-01T11:54:46.660", - id: "ffvtB32AWOF", - created: "2016-02-28T01:07:52.593", - name: "GEN_Locality_T", - shortName: " Village/Town (text)", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - description: "If you were not able to find the place of residence of the patient by using the org unit tree, please type here the name of the village of residence.", - valueType: "TEXT", - formName: "Village/town of residence (as text)", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "Village/ville (texte)" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: "Si vous n'avez pas pu trouver le village de résidence du patient en utilisant l'arbre d'unités d'organisation, veuillez écrire ici le nom du village de résidence." - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Village/ville de résidence (texte)" - }, - { - property: "NAME", - locale: "fr", - value: "GEN_Localité_T" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "r4gcKCyB5fF", - displayName: "NTD_LSH_VL_PHC", - id: "r4gcKCyB5fF" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_Lab_PCR_Initial Results_T", - lastUpdated: "2021-03-19T17:24:37.498", - id: "JAyZaIKj2zv", - created: "2017-06-20T11:55:11.428", - name: "BU_Lab_PCR_Initial Results_T", - shortName: "BU PCR - Result", - aggregationType: "NONE", - domainType: "TRACKER", - publicAccess: "--------", - valueType: "TEXT", - formName: "BU PCR - Result", - zeroIsSignificant: false, - optionSet: { - id: "vQBOhNnE09a" - }, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "PCR - Résultats " - }, - { - property: "FORM_NAME", - locale: "fr", - value: "PCR - Résultats " - }, - { - property: "FORM_NAME", - locale: "fr", - value: "PCR pour UB - Résultats " - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "UB - PCR - Résultats " - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "fRlwLe1FUtr", - displayName: "SS_NTD_SKIN_BU_Lab_Event_View", - id: "fRlwLe1FUtr" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "PxfXOdDzaVo", - displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", - id: "PxfXOdDzaVo" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "bxyNjDdzxoY", - displayName: "WISCENTD - data lake extraction", - id: "bxyNjDdzxoY" - }, - { - access: "r-------", - userGroupUid: "jBKsc308Wq4", - displayName: "SS_NTD_SKIN_PatientForm_View", - id: "jBKsc308Wq4" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "rLZTilSc96A", - displayName: "SS_NTD_SKIN_PatientForm_Entry", - id: "rLZTilSc96A" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - } - ], - categories: [ - { - code: "default", - created: "2017-05-10T17:53:55.152", - lastUpdated: "2021-08-07T06:18:19.628", - name: "default", - id: "DMyxTSpvKOp", - dataDimensionType: "DISAGGREGATION", - publicAccess: "rw------", - dataDimension: false, - user: { - id: "eK26I7dRbC4" - }, - userGroupAccesses: [], - attributeValues: [], - translations: [], - userAccesses: [], - categoryOptions: [ - { - id: "Y7fcspgsU43" - } - ] - } - ], - programIndicators: [ - { - code: "PI_BU02_EPI_ageLT5years", - lastUpdated: "2021-03-01T11:52:47.237", - id: "B6EhPLOJf2y", - created: "2016-11-03T14:46:09.309", - name: "PI BU02 number of cases < 5 years", - shortName: "PI_BU02_EPI_ageLT5years", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.Xii6gy92ebp} < 5", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.512", - id: "Llq2khCZz98", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.512", - id: "G5v3Jk2pDej", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_Clin_Breast", - lastUpdated: "2021-03-01T11:52:46.981", - id: "rqqYID1h4P2", - created: "2016-11-03T15:42:43.693", - name: "PI BU02 number case with breast lesion", - shortName: "PI_BU02_Clin_Breast", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.GqDsjatLQXl} == 1", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.515", - id: "d5gyZU5X07q", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.515", - id: "e0NzQNDuo6z", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_Clin_Osteomyelitis", - lastUpdated: "2021-03-01T11:52:47.245", - id: "sWOHf2pOSSF", - created: "2016-11-03T15:30:29.969", - name: "PI BU02 number of cases with osteomyelitis", - shortName: "PI_BU02_Clin_Osteomyelitis", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.QzAHATV8EWv} == 1", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.518", - id: "BoHw1lljgdo", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.518", - id: "N1hfQcHgr0C", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_Tx_AB", - lastUpdated: "2021-03-01T11:52:47.426", - id: "OX3WVVRP6dJ", - created: "2016-11-03T16:39:37.922", - name: "PI BU02 number of cases treated with AB", - shortName: "PI_BU02_Tx_AB", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - description: "Number of cases treated with Antibiotics", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.COtqliXo7tU} == 1", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.521", - id: "BcucCztRg7F", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.521", - id: "amNH3oA62CA", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_Lab_Confirmed", - lastUpdated: "2021-03-01T11:52:47.456", - id: "hb7FMIXMtFs", - created: "2020-01-16T00:02:03.756", - name: "PI BU02 total number of lab-confirmed cases", - shortName: "PI_BU02_Lab_Confirmed", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.JAyZaIKj2zv} == 'Positive'|| #{hgpXE2JX97x.ggwHn45jtgh} == 'Positive'", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "ilJDyuqlwDC" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2020-01-16T00:25:56.927", - id: "bEYxf0xy70h", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2020-01-16T00:25:56.926", - id: "tdgzmAO02R8", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_Tx_AB_Completed", - lastUpdated: "2021-03-01T11:52:47.456", - id: "iOdLpGU9muR", - created: "2020-01-16T00:08:54.420", - name: "PI BU02 number of cases who completed AB", - shortName: "PI_BU02_Tx_AB_Completed", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - description: "Number of cases who completed full course of antibiotics", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.wiZbIU6sFG5} == 1", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "ilJDyuqlwDC" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2020-01-16T00:08:54.421", - id: "R6OuVRBuDQ7", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2020-01-16T00:08:54.422", - id: "qjqLIIhGgYN", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_Clin_Buttocks_perineum", - lastUpdated: "2021-03-01T11:52:47.690", - id: "yyKJZUWWFXH", - created: "2016-11-03T16:12:34.037", - name: "PI BU02 number of cases with lesion(s) in buttocks perineum", - shortName: "PI_BU02_Clin_Buttocks_perineum", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.UY4A4oRdvqT} == 1", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.523", - id: "RpHl28bZQg6", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.523", - id: "CNyJuTsjIbD", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_EPI_Cat_III", - lastUpdated: "2021-03-01T11:52:47.755", - id: "IqA3lx2QCb9", - created: "2016-11-03T15:12:37.853", - name: "PI BU02 number of cases from category III", - shortName: "BU02_EPI_Cat_III", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.UwC7RVH9Bwv} == 'Op_BU_Cat_III'", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.526", - id: "ykRlULCPBoP", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.526", - id: "Sj7oel80HH3", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_Clin_Papule", - lastUpdated: "2021-03-01T11:52:47.734", - id: "V2At1FLXyON", - created: "2016-11-03T15:32:11.451", - name: "PI BU02 number of cases with papule", - shortName: "PI_BU02_Clin_Papule", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.nidn593FWAF} == 1", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.528", - id: "wvNgyJoe7kG", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.529", - id: "TybnOO7M5AM", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_EPI_Cat_II", - lastUpdated: "2021-03-01T11:52:47.765", - id: "MDE3pQdkE2A", - created: "2016-11-03T15:11:27.386", - name: "PI BU02 number of cases from category II", - shortName: "PI_BU02_EPI_Cat_II", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.UwC7RVH9Bwv} == 'Op_BU_Cat_II'", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.531", - id: "oF8dvQTN4Hn", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.531", - id: "N1styYEKSg3", - created: "2018-11-02T09:34:37.034", + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "oAJpTsMsRxv", + }, + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "QHcjn7FHI2w", + }, + }, + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "2000", + }, + { + id: "2001", + }, + { + id: "2002", + }, + { + id: "2003", + }, + { + id: "2004", + }, + { + id: "2005", + }, + { + id: "2006", + }, + { + id: "2007", + }, + { + id: "2008", + }, + { + id: "2009", + }, + { + id: "2010", + }, + { + id: "2011", + }, + { + id: "2012", + }, + { + id: "2013", + }, + { + id: "2014", + }, + { + id: "2015", + }, + { + id: "2016", + }, + { + id: "2017", + }, + { + id: "2018", + }, + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["pe"], + }, + { + lastUpdated: "2020-06-02T08:10:06.948", + id: "T4eg1e5rjXE", + created: "2019-05-31T21:43:50.053", + name: "MAL - Conf cases & ABER", + showData: false, + numberType: "VALUE", + publicAccess: "--------", + userOrganisationUnitChildren: false, + legendDisplayStyle: "FILL", + type: "PIVOT_TABLE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: true, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + hideLegend: false, externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + percentStackedValues: false, + legendDisplayStrategy: "FIXED", + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_Clin_Classif_Recurrent", - lastUpdated: "2021-03-01T11:52:47.764", - id: "vjci8djDsDh", - created: "2016-11-03T16:52:40.568", - name: "PI BU02 total number of recurrent cases", - shortName: "PI_BU02_Clin_Classif_Recurrent", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.HAt5fbygnrg} == 'Recurrent'", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.534", - id: "eRP7FNiiwj7", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.534", - id: "pqM5JUfuwLG", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_EPI_Cat_I", - lastUpdated: "2021-03-01T11:52:47.989", - id: "QaZLTzTEnmG", - created: "2016-11-03T15:10:33.930", - name: "PI BU02 number of cases from category I", - shortName: "PI_BU02_EPI_Cat_I", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.UwC7RVH9Bwv} == 'Op_BU_Cat_I'", - decimals: 0, - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.536", - id: "ipWh2dEv4w6", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + user: { + id: "kD52FGwJgDF", }, - favorites: [], + dataElementGroupSetDimensions: [], translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.537", - id: "cb0LTq7NZYN", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, + yearlySeries: [], + filterDimensions: ["ou"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea", + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H", + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR", + }, + ], + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], + userAccesses: [], favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_EPI_malecases", - lastUpdated: "2021-03-01T11:52:48.016", - id: "YdBwBWfTZtz", - created: "2016-11-03T14:15:38.110", - name: "PI BU02 number of male cases", - shortName: "PI_BU02_EPI_malecases", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.Z8W89lDV4IL} == 'Male'", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.542", - id: "jPgZWG69tzZ", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.542", - id: "cXkTTJPogkh", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - lastUpdated: "2021-03-01T11:52:48.053", - id: "dogB9m0Pu26", - created: "2016-11-03T14:30:48.357", - name: "PI BU02 total number of cases", - shortName: "PI_BU02_EPI_total_number_of_cases", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.539", - id: "VUEH4IN4PX1", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.539", - id: "ptE0g1sZMV4", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_Clin_Back", - lastUpdated: "2021-03-01T11:52:48.053", - id: "rJj24z4yg9k", - created: "2016-11-03T16:10:57.629", - name: "PI BU02 number case with back lesion", - shortName: "PI_BU02_Clin_Back", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.PRaonbusSOU} == 1", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.544", - id: "ZzcCXsOHsyY", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.544", - id: "AvK62Jhokom", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_Clin_Oedema", - lastUpdated: "2021-03-01T11:52:48.475", - id: "OvnjxVRoHYr", - created: "2016-11-03T15:26:25.361", - name: "PI BU02 number of cases with oedema", - shortName: "PI_BU02_Clin_Oedema", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.RETdv2kznbH} == 1", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.551", - id: "SQt8RKDUPeF", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.551", - id: "SjhFvBJojgx", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_EPI_ageGTE15years", - lastUpdated: "2021-03-01T11:52:48.034", - id: "XlvkovvifMC", - created: "2016-11-03T14:56:38.114", - name: "PI BU02 number of cases ≥ 15 years", - shortName: "PI_BU02_EPI_ageGTE15years", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.Xii6gy92ebp} >= 15", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.547", - id: "FJnlDV0f7Nq", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.547", - id: "kkMZxJSzw3J", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_Clin_Abdomen", - lastUpdated: "2021-03-01T11:52:48.255", - id: "dBXh4OQdRA8", - created: "2016-11-03T15:46:10.948", - name: "PI BU02 number case with abdomen lesion", - shortName: "PI_BU02_Clin_Abdomen", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.Sieb79556d6} == 1", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.549", - id: "AtTn2VJgivc", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.549", - id: "ulqoKm4LZ1e", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_Clin_Lower_Limb", - lastUpdated: "2021-03-01T11:52:48.295", - id: "PXVrhxCqLw0", - created: "2016-11-03T16:18:23.434", - name: "PI BU02 number case with lower limb lesion", - shortName: "PI_BU02_Clin_Lower_Limb", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.adfHPJQRI3C} == 1", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.553", - id: "ytwkCibnutF", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.554", - id: "EgdqYIYhDUh", - created: "2018-11-02T09:34:37.034", + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "rPYLomUceL4", + }, + }, + { + dataDimensionItemType: "DATA_ELEMENT", + dataElement: { + id: "jme79pGjTuu", + }, + }, + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "2000", + }, + { + id: "2001", + }, + { + id: "2002", + }, + { + id: "2003", + }, + { + id: "2004", + }, + { + id: "2005", + }, + { + id: "2006", + }, + { + id: "2007", + }, + { + id: "2008", + }, + { + id: "2009", + }, + { + id: "2010", + }, + { + id: "2011", + }, + { + id: "2012", + }, + { + id: "2013", + }, + { + id: "2014", + }, + { + id: "2015", + }, + { + id: "2016", + }, + { + id: "2017", + }, + { + id: "2018", + }, + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["pe"], + }, + { + lastUpdated: "2020-06-02T08:10:05.762", + id: "eqbjzgCFSFs", + created: "2019-06-19T09:57:39.082", + name: "MAL - Reporting Comp", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: false, + type: "LINE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "ALL", + aggregationType: "COUNT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + title: "Reporting completeness", + hideLegend: false, externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_Clin_joint_limitation", - lastUpdated: "2021-03-01T11:52:48.287", - id: "zSvSCVa4xa2", - created: "2016-11-03T16:27:09.888", - name: "PI_BU02 number of cases with joint limitation", - shortName: "BU02_Clin_joint_limitation", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - description: "Number of cases with (+) limitation of movement at any joint", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.DHmAP1MjEoK} == 1", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.556", - id: "xcPwLythycq", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.556", - id: "gTvgDWnfD64", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_Clin_Ulcer", - lastUpdated: "2021-03-01T11:52:48.426", - id: "OZXTMVGQX60", - created: "2016-11-03T15:33:23.782", - name: "PI BU02 number of cases with ulcer", - shortName: "PI_BU02_Clin_Ulcer", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.mTyzapAF9iT} == 1", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.558", - id: "dcH2IMDZTdM", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + user: { + id: "kD52FGwJgDF", }, - favorites: [], + dataElementGroupSetDimensions: [], translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.558", - id: "Ym0O3mpAniO", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, + yearlySeries: [], + filterDimensions: ["ou"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea", + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H", + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR", + }, + ], + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], + userAccesses: [], favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_EPI_unknowngender", - lastUpdated: "2021-03-01T11:52:48.523", - id: "cAvE0gxXLTn", - created: "2016-11-03T14:19:09.065", - name: "PI BU02 number of cases of unknown gender", - shortName: "PI_BU02_EPI_unknowngender", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.Z8W89lDV4IL} == 'Gender unknown'", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.560", - id: "oeZrObBXY2J", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.560", - id: "z7r9xBGz8rL", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_EPI_age5-14years", - lastUpdated: "2021-03-01T11:52:48.532", - id: "CW2jgrNARub", - created: "2016-11-03T14:51:23.451", - name: "PI BU02 number of cases 5-14 years", - shortName: "PI_BU02_EPI_age5-14years", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.Xii6gy92ebp} >= 5 and #{hgpXE2JX97x.Xii6gy92ebp} < 15", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.563", - id: "HnJrvRNEPbZ", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.563", - id: "f3dCEJjvVLA", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_Clin_Upper_limb", - lastUpdated: "2021-03-01T11:52:48.540", - id: "D0qX6WlovHF", - created: "2016-11-03T16:17:08.019", - name: "PI BU02 number case with Upper Limb lesion", - shortName: "PI_BU02_Clin_Upper_limb", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.UCXRQtdD8K5} == 1", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.568", - id: "OlJYZmbwFwV", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.568", - id: "uvGOaJJ8Lzk", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_Clin_Thorax", - lastUpdated: "2021-03-01T11:52:48.735", - id: "if7Bfu8OVQ7", - created: "2016-11-03T16:15:43.807", - name: "PI BU02 number case with Thorax lesion", - shortName: "PI_BU02_Clin_Thorax", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.TqqxE4hmd6Q} == 1", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "ilJDyuqlwDC" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2020-01-15T23:55:50.529", - id: "DBNYsS9TAvK", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2020-01-15T23:55:50.529", - id: "jEETcjwekz3", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_Clin_Eye", - lastUpdated: "2021-03-01T11:52:48.772", - id: "YjRz8Gdlbb7", - created: "2016-11-03T15:41:52.422", - name: "PI BU02 number case with eye lesion", - shortName: "PI_BU02_Clin_Eye", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.qafL6BdLAkH} == 1", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.572", - id: "XHxInTAUzqi", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.572", - id: "Dn0JO6RPPhP", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_Clin_Genitalia", - lastUpdated: "2021-03-01T11:52:48.707", - id: "Yq1EGyBFPFd", - created: "2016-11-03T15:45:09.002", - name: "PI BU02 number case with genitalia lesion", - shortName: "PI_BU02_Clin_Genitalia", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.QEFiXRZu7jY} == 1", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.574", - id: "UWV0fRNiJoc", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.574", - id: "Q0siQ56KAy3", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_Clin_Classif_Newcases", - lastUpdated: "2021-03-01T11:52:48.807", - id: "ASUNQNX0g7g", - created: "2016-11-03T16:49:17.984", - name: "PI BU02 total number of new cases", - shortName: "PI_BU02_Clin_Classif_Newcases", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.HAt5fbygnrg} == 'New'", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.577", - id: "m2C4eE9ryNv", - created: "2018-11-02T09:34:37.034", + dataDimensionItems: [ + { + dataDimensionItemType: "DATA_ELEMENT", + dataElement: { + id: "kRasaq1REFp", + }, + }, + { + dataDimensionItemType: "DATA_ELEMENT", + dataElement: { + id: "v0WZQQ6gKAX", + }, + }, + { + dataDimensionItemType: "DATA_ELEMENT", + dataElement: { + id: "GxlrIgMyEf4", + }, + }, + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "2000", + }, + { + id: "2001", + }, + { + id: "2002", + }, + { + id: "2003", + }, + { + id: "2004", + }, + { + id: "2005", + }, + { + id: "2006", + }, + { + id: "2007", + }, + { + id: "2008", + }, + { + id: "2009", + }, + { + id: "2010", + }, + { + id: "2011", + }, + { + id: "2012", + }, + { + id: "2013", + }, + { + id: "2014", + }, + { + id: "2015", + }, + { + id: "2016", + }, + { + id: "2017", + }, + { + id: "2018", + }, + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["pe"], + }, + { + lastUpdated: "2020-06-02T08:10:05.765", + id: "QqZNdTABzsZ", + created: "2019-04-06T11:56:54.936", + name: "MAL - Testing", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: false, + type: "LINE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "ALL", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + title: "Microscopy and RDT Testing", + hideLegend: false, externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.577", - id: "ByFvuwLSeFC", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_Clin_Nodule", - lastUpdated: "2021-03-01T11:52:48.790", - id: "l9MNtlVNYkd", - created: "2016-11-03T15:24:04.048", - name: "PI BU02 number of cases with nodule", - shortName: "PI_BU02_Clin_Nodule", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.xkt9nkHj5CA} == 1", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.579", - id: "I1S8R0bahPH", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.579", - id: "l2M0bq4CLBM", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + user: { + id: "kD52FGwJgDF", }, - favorites: [], + dataElementGroupSetDimensions: [], translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_Clin_Head_Neck", - lastUpdated: "2021-03-01T11:52:48.848", - id: "CbuU9UDY9Ll", - created: "2016-11-03T16:14:39.938", - name: "PI BU02 number case with head and neck lesion", - shortName: "PI_BU02_Clin_Head_Neck", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.j9OfhXT92Ej} == 1", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.581", - id: "eGGmJcOMmGt", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, + yearlySeries: [], + filterDimensions: ["ou"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea", + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H", + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR", + }, + ], + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], + userAccesses: [], favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.582", - id: "YDOhsqOc48c", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_EPI_Cat_unkown", - lastUpdated: "2021-03-01T11:52:48.930", - id: "ewyVtLavgu8", - created: "2016-11-03T15:13:44.838", - name: "PI BU02 number of cases from category unkown", - shortName: "PI_BU02_EPI_Cat_unkown", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.UwC7RVH9Bwv} == \" Op_BU_Cat_unknown \"", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.584", - id: "DBUO6rxHCW5", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.584", - id: "wzcyZZJZsrw", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "PI_BU02_EPI_femalecases", - lastUpdated: "2021-03-01T11:52:48.959", - id: "yi3JBIhx081", - created: "2016-11-03T13:18:37.422", - name: "PI BU02 number of female cases", - shortName: "PI_BU02_EPI_femalecases", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.Z8W89lDV4IL} == 'Female'", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.587", - id: "PRUWZ0O6MBs", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.587", - id: "FtJxPsl5btM", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - lastUpdated: "2021-03-01T11:52:48.928", - id: "QzEuFzKGzm4", - created: "2016-11-03T15:34:05.522", - name: "PI BU02 number of cases with plaque", - shortName: "PI_BU02_Clin_Plaque", - aggregationType: "COUNT", - displayInForm: false, - publicAccess: "--------", - expression: "V{event_count}", - filter: "#{hgpXE2JX97x.qJOXKn3wSLS} == 1", - analyticsType: "EVENT", - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [], - analyticsPeriodBoundaries: [ - { - lastUpdated: "2019-05-25T18:45:24.589", - id: "b6JmLeeQuUV", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2019-05-25T18:45:24.590", - id: "XoxuJSDOoBt", - created: "2018-11-02T09:34:37.034", - externalAccess: false, - analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", - boundaryTarget: "EVENT_DATE", - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - } - ], - programStageDataElements: [ - { - created: "2016-06-08T13:43:40.080", - lastUpdated: "2021-03-01T11:32:51.933", - id: "SS8ELfQ7k8Q", - displayInReports: true, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 3, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "HAt5fbygnrg" - } - }, - { - created: "2016-06-08T13:43:40.221", - lastUpdated: "2021-03-01T11:32:51.934", - id: "CRNrasJPwQn", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 14, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "PRaonbusSOU" - } - }, - { - created: "2016-06-08T13:43:40.105", - lastUpdated: "2021-03-01T11:32:51.936", - id: "ikP103Fn9Sm", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 5, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "RETdv2kznbH" - } - }, - { - created: "2016-11-10T21:03:54.212", - lastUpdated: "2021-03-01T11:32:51.935", - id: "SrbZNYPXNB7", - displayInReports: true, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 31, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "rWFQhbrnfMD" - } - }, - { - created: "2016-06-08T13:43:40.179", - lastUpdated: "2021-03-01T11:32:51.938", - id: "wyoMSLO3Yth", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 11, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "GqDsjatLQXl" - } - }, - { - created: "2020-01-14T21:28:13.551", - lastUpdated: "2021-03-01T11:32:51.933", - id: "S8raF2aCPal", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 36, - allowFutureDate: false, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "LJHNsKzZ8Mg" - } - }, - { - created: "2020-01-14T21:28:13.551", - lastUpdated: "2021-03-01T11:32:51.937", - id: "E66yBUG6gTG", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 38, - allowFutureDate: false, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "gc8rKk6Hax6" - } - }, - { - created: "2016-06-08T13:43:40.234", - lastUpdated: "2021-03-01T11:32:51.934", - id: "bab7K5xD28E", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 15, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "UY4A4oRdvqT" - } - }, - { - created: "2016-06-08T13:43:40.011", - lastUpdated: "2021-03-01T11:32:51.937", - id: "X0M4oNWjsTH", - displayInReports: true, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 0, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "mwIgH1XXf6p" - } - }, - { - created: "2016-06-08T13:43:40.263", - lastUpdated: "2021-03-01T11:32:51.936", - id: "sHKURVMWYuK", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 17, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "TqqxE4hmd6Q" - } - }, - { - created: "2016-06-08T13:43:40.247", - lastUpdated: "2021-03-01T11:32:51.937", - id: "oWiZUXFOL0K", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 16, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "j9OfhXT92Ej" - } - }, - { - created: "2016-06-08T13:43:40.167", - lastUpdated: "2021-03-01T11:32:51.934", - id: "aOPTA1pWe9Q", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 10, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "qafL6BdLAkH" - } - }, - { - created: "2016-06-08T13:43:40.152", - lastUpdated: "2021-03-01T11:32:51.937", - id: "KWGF449seo2", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 9, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "qJOXKn3wSLS" - } - }, - { - created: "2016-06-08T13:43:40.290", - lastUpdated: "2021-03-01T11:32:51.935", - id: "jEkBHzTLrbh", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 19, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "UwC7RVH9Bwv" - } - }, - { - created: "2016-11-10T21:00:24.060", - lastUpdated: "2021-03-01T11:32:51.934", - id: "rPHoXZ87SHA", - displayInReports: true, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 30, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "JAyZaIKj2zv" - } - }, - { - created: "2016-11-10T21:00:24.035", - lastUpdated: "2021-03-01T11:32:51.934", - id: "DUy9Sosd4t0", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 28, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "dRoQ0J5dKuO" - } - }, - { - created: "2020-01-14T21:28:13.553", - lastUpdated: "2021-03-01T11:32:51.937", - id: "AFGlVbgoLHS", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 45, - allowFutureDate: false, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "xIo6fsgpmdN" - } - }, - { - created: "2020-01-14T21:28:13.552", - lastUpdated: "2021-03-01T11:32:51.935", - id: "N3nkAIkavnF", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 43, - allowFutureDate: false, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "XyGxsyiIy4p" - } - }, - { - created: "2016-09-13T16:48:18.132", - lastUpdated: "2021-03-01T11:32:51.937", - id: "HF4KB6yBSBu", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 25, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "ffvtB32AWOF" - } - }, - { - created: "2016-06-08T13:43:40.305", - lastUpdated: "2021-03-01T11:32:51.937", - id: "secyJOzy4J4", - displayInReports: true, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 20, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "DHmAP1MjEoK" - } - }, - { - created: "2016-06-08T13:43:40.207", - lastUpdated: "2021-03-01T11:32:51.935", - id: "fFRvBwrKPbL", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 13, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "Sieb79556d6" - } - }, - { - created: "2016-11-10T21:00:23.945", - lastUpdated: "2021-03-01T11:32:51.937", - id: "I7uqIgj34yA", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 27, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "wiZbIU6sFG5" - } - }, - { - created: "2016-06-08T13:43:40.128", - lastUpdated: "2021-03-01T11:32:51.938", - id: "SoMCsw5q49F", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 7, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "nidn593FWAF" - } - }, - { - created: "2016-06-08T13:43:40.276", - lastUpdated: "2021-03-01T11:32:51.934", - id: "MHgGCjWZytP", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 18, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "UCXRQtdD8K5" - } - }, - { - created: "2018-05-14T21:47:54.944", - lastUpdated: "2021-03-01T11:32:51.935", - id: "f1OrYy2hEuL", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 33, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "DAPNB0WxKMH" - } - }, - { - created: "2020-01-15T01:14:08.815", - lastUpdated: "2021-03-01T11:32:51.935", - id: "zI45THkcblV", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 47, - allowFutureDate: false, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "silWE44JpaQ" - } - }, - { - created: "2018-10-01T16:30:29.283", - lastUpdated: "2021-03-01T11:32:51.934", - id: "IOnR5EK74dX", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 34, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "kzgD7nD4qLI" - } - }, - { - created: "2020-01-14T21:28:13.553", - lastUpdated: "2021-03-01T11:32:51.934", - id: "A1ouDbnrJ2K", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 38, - allowFutureDate: false, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "bTwp4cKNjgZ" - } - }, - { - created: "2016-11-02T23:17:46.433", - lastUpdated: "2021-03-01T11:32:51.936", - id: "ZbGhzG2pAxz", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 26, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "adfHPJQRI3C" - } - }, - { - created: "2018-05-14T12:40:54.197", - lastUpdated: "2021-03-01T11:32:51.936", - id: "BlmMBSUevF0", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 32, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "ZGCDiz5fZhb" - } - }, - { - created: "2020-01-14T21:28:13.553", - lastUpdated: "2021-03-01T11:32:51.937", - id: "NtXysyvaAJZ", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 44, - allowFutureDate: false, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "uNdVSTX6lSE" - } - }, - { - created: "2016-06-08T13:43:40.141", - lastUpdated: "2021-03-01T11:32:51.935", - id: "uiXy4u4OWjX", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 8, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "mTyzapAF9iT" - } - }, - { - created: "2016-06-08T13:43:40.046", - lastUpdated: "2021-03-01T11:32:51.938", - id: "Oic1IVxpgq9", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 1, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "J19avh4dgzs" - } - }, - { - created: "2020-01-16T00:22:51.423", - lastUpdated: "2021-03-01T11:32:51.936", - id: "rq4keDCBetL", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 48, - allowFutureDate: false, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "ggwHn45jtgh" - } - }, - { - created: "2016-09-13T16:48:18.116", - lastUpdated: "2021-03-01T11:32:51.937", - id: "VhzvUNRlsZR", - displayInReports: true, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 24, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "IcCc2qu4DnR" - } - }, - { - created: "2016-06-08T13:43:40.069", - lastUpdated: "2021-03-01T11:32:51.935", - id: "ik9ISTmQ2Gf", - displayInReports: true, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 2, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "Z8W89lDV4IL" - } - }, - { - created: "2016-11-30T01:47:34.226", - lastUpdated: "2021-03-01T11:32:51.937", - id: "K4wQtB3HmdB", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 23, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "o3F666LPvuM" - } - }, - { - created: "2020-01-14T21:28:13.552", - lastUpdated: "2021-03-01T11:32:51.936", - id: "wljGO43myNe", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 39, - allowFutureDate: false, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "PMlpZH7wYON" - } - }, - { - created: "2020-01-14T21:28:13.554", - lastUpdated: "2021-03-01T11:32:51.935", - id: "haxC12SZsvs", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 40, - allowFutureDate: false, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "KcYECFOPVpR" - } - }, - { - created: "2021-03-01T11:32:51.938", - lastUpdated: "2021-03-01T11:32:51.938", - id: "uY2T46apQBY", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 49, - allowFutureDate: false, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "NzJkoIvwyCh" - } - }, - { - created: "2016-06-08T13:43:40.117", - lastUpdated: "2021-03-01T11:32:51.933", - id: "xiLmnCvUPdf", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 6, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "QzAHATV8EWv" - } - }, - { - created: "2016-11-10T21:00:24.048", - lastUpdated: "2021-03-01T11:32:51.936", - id: "SIZDdeAClue", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 29, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "pUzlgt7peZT" - } - }, - { - created: "2020-01-15T00:22:45.728", - lastUpdated: "2021-03-01T11:32:51.936", - id: "p8M6Bz8SPDH", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 46, - allowFutureDate: false, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "VYGsfmL36PY" - } - }, - { - created: "2016-06-08T13:43:40.090", - lastUpdated: "2021-03-01T11:32:51.934", - id: "tI9OLIqrPrq", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 4, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "xkt9nkHj5CA" - } - }, - { - created: "2016-06-08T13:43:40.194", - lastUpdated: "2021-03-01T11:32:51.936", - id: "VlNK0nFtRoW", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 12, - allowFutureDate: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "QEFiXRZu7jY" - } - }, - { - created: "2020-01-14T21:28:13.553", - lastUpdated: "2021-03-01T11:32:51.936", - id: "D6GevHoIeUZ", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 41, - allowFutureDate: false, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "e8XmDDvKCT1" - } - }, - { - created: "2020-01-14T21:28:13.550", - lastUpdated: "2021-03-01T11:32:51.934", - id: "AHdDAWvCDhC", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 42, - allowFutureDate: false, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "YrSJMlEJWEC" - } - }, - { - created: "2020-01-14T23:53:14.411", - lastUpdated: "2021-03-01T11:32:51.935", - id: "GT8JlUaUein", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 46, - allowFutureDate: false, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "BYPbyk5W7SL" - } - }, - { - created: "2020-01-14T21:28:13.553", - lastUpdated: "2021-03-01T11:32:51.938", - id: "XfbM7NmxzRh", - displayInReports: false, - skipSynchronization: false, - renderOptionsAsRadio: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 37, - allowFutureDate: false, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "Q7dOlqe54eh" - } - } - ], - categoryCombos: [ - { - code: "default", - created: "2017-05-10T17:53:55.156", - lastUpdated: "2019-02-20T16:22:55.336", - name: "default", - id: "JzvGfLYkX17", - dataDimensionType: "DISAGGREGATION", - publicAccess: "rw------", - skipTotal: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "eK26I7dRbC4" - }, - userGroupAccesses: [], - translations: [], - userAccesses: [], - categories: [ - { - id: "DMyxTSpvKOp" - } - ] - } - ], - programs: [ - { - code: "PRE_NTD_BU02", - lastUpdated: "2021-03-01T11:52:46.467", - id: "lAu94BiaY5s", - created: "2016-06-08T13:38:09.769", - name: "BU02 - Register", - shortName: "BU02", - publicAccess: "--------", - completeEventsExpiryDays: 0, - description: "This program enables to capture individual data for all suspected Buruli ulcer (BU) cases. ", - ignoreOverdueEvents: false, - skipOffline: false, - featureType: "NONE", - minAttributesRequiredToSearch: 1, - displayFrontPageList: false, - enrollmentDateLabel: "Enrollment Date", - onlyEnrollOnce: false, - programType: "WITHOUT_REGISTRATION", - accessLevel: "OPEN", - version: 18, - maxTeiCountToReturn: 0, - selectIncidentDatesInFuture: false, - incidentDateLabel: "Incident Date", - displayIncidentDate: false, - selectEnrollmentDatesInFuture: false, - expiryDays: 0, - useFirstStageDuringRegistration: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - trackedEntityType: { - id: "MCPQUTHX1Ze" - }, - user: { - id: "eK26I7dRbC4" - }, - programTrackedEntityAttributes: [], - notificationTemplates: [], - translations: [ - { - property: "DESCRIPTION", - locale: "fr", - value: "Ce programme permet de capturer des données individuelles pour tous les cas suspects d'ulcère de Buruli (UB)." - }, - { - property: "NAME", - locale: "fr", - value: "UB02 - Registre" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "UN02" - } - ], - organisationUnits: [ - { - id: "Gyv4pyey2Ai" - }, - { - id: "UowpDiy4cqO" - }, - { - id: "pOxc8gmDhtS" - }, - { - id: "kbPmt60yi0L" - }, - { - id: "GV9B39jEWVn" - }, - { - id: "r2IqzLpdj5t" - }, - { - id: "sWQ2zpzI5gt" - }, - { - id: "Rw5SNBBSQxJ" - }, - { - id: "rub0EoVhPIM" - }, - { - id: "dqwksMwpW4w" - }, - { - id: "YhivUg6odUM" - }, - { - id: "aU3YGAY4qb7" - }, - { - id: "InQWjSe6k2f" - }, - { - id: "WUoRxmYqtfU" - }, - { - id: "LNai4fzhvGN" - }, - { - id: "VZOzoYaVRlL" - }, - { - id: "g7BLyiBb0ET" - }, - { - id: "Tc3zugEWdTm" - }, - { - id: "x5ZxMDvEQUb" - }, - { - id: "GvFqTavdpGE" - }, - { - id: "lr9J6r6tv6h" - }, - { - id: "NTrXihaptMH" - }, - { - id: "t4xNpQTV1sg" - }, - { - id: "j4AU8yO4ErF" - }, - { - id: "YldSFPxB6WH" - }, - { - id: "pMH8t5RymJl" - }, - { - id: "tyJBtAXHLoo" - }, - { - id: "AhnK8hb3JWm" - }, - { - id: "pzjcGGGjRgt" - }, - { - id: "yEgGKG5iLLL" - }, - { - id: "OIgQ06HZUBB" - }, - { - id: "EvMZz5gSPy5" - }, - { - id: "oMLtZFTZ8po" - }, - { - id: "LWlh25dfvEA" - }, - { - id: "P4upLKrpkHP" - }, - { - id: "zrAoRNoLXxo" - }, - { - id: "tgtdjZmwqo2" - }, - { - id: "ZhEUDUqyOWy" - }, - { - id: "QzaNItkFO7s" - }, - { - id: "s4c425prOLU" - }, - { - id: "uQdUFufJm74" - }, - { - id: "dbkGcznIkUu" - }, - { - id: "uczMdDZXdtl" - }, - { - id: "lFTTvjwF0Vv" - }, - { - id: "BXxhy9rHsKk" - }, - { - id: "b09gf2vvZDb" - }, - { - id: "xvexU43nCYd" - }, - { - id: "qmBcWhcZPSz" - }, - { - id: "rvCCyZdpdML" - }, - { - id: "K6NEOQsE6lB" - }, - { - id: "ueuQlqb8ccl" - }, - { - id: "OI0BQUurVFS" - }, - { - id: "TiwP8S8SNZQ" - }, - { - id: "bsraL8Psnsm" - }, - { - id: "S9sXNagA6v3" - }, - { - id: "U02o1QAm6cC" - }, - { - id: "qczavgAw4FY" - }, - { - id: "ULsug66wkkS" - }, - { - id: "DwSlvPKzyeB" - }, - { - id: "OISw3MLShrO" - }, - { - id: "aSYnMm9sNmA" - }, - { - id: "sYJCxNdKHxR" - }, - { - id: "q5kAX5MyPB6" - }, - { - id: "yMbOiVGIpdq" - }, - { - id: "mfBtyDcG3Sl" - }, - { - id: "cgqkFdShPzg" - }, - { - id: "bHOCOudYF7n" - }, - { - id: "VP92GYbmXk1" - }, - { - id: "Hf75zeSkQXb" - }, - { - id: "ggainP3wKRX" - }, - { - id: "IaLymjcVyIe" - }, - { - id: "QHFNpH0NjcE" - }, - { - id: "KQFAul3T9xz" - }, - { - id: "ZX0qwn83NmC" - }, - { - id: "kgan6qV2qu5" - }, - { - id: "xe5ZKv3Df1Q" - }, - { - id: "TWH05Rjz6oT" - }, - { - id: "M4JuAlTLJnD" - }, - { - id: "XwLGW11h9Z4" - }, - { - id: "qhj5M5kjGEB" - }, - { - id: "k92yudERPlv" - }, - { - id: "u335jxe0ao2" - }, - { - id: "qhizkAySKwC" - }, - { - id: "MnfykVk3zin" - }, - { - id: "fQchTMt926s" - }, - { - id: "bL4ooGhyHRQ" - }, - { - id: "mW8yNi34XW3" - }, - { - id: "y5hLlID8ihI" - }, - { - id: "DkMgspqqI6G" - }, - { - id: "oRncQGhLYNE" - }, - { - id: "u1eQDDtKqm7" - }, - { - id: "nlxWdsB82Wv" - }, - { - id: "uT8s6B3DZKX" - }, - { - id: "EywuypYUmLP" - }, - { - id: "GWTIxJO9pRo" - }, - { - id: "TYq1YW7qs7k" - }, - { - id: "SCYNkV42cBs" - }, - { - id: "K61Q6gOCVXG" - }, - { - id: "prNiMdHuaaU" - }, - { - id: "er7MPiN3tdH" - }, - { - id: "PosOJo9dFA8" - }, - { - id: "GLfgZFkBeYm" - }, - { - id: "at0T4OYLtIe" - }, - { - id: "VelvbJZb0zU" - }, - { - id: "wWIUOHiRTCc" - }, - { - id: "yeHprSCMWsf" - }, - { - id: "U514Dz4v9pv" - }, - { - id: "e2UKsuSL1Pc" - }, - { - id: "jGcjLhlSzi2" - }, - { - id: "wzYWAIsRBLm" - }, - { - id: "ZXtZesiPjWJ" - }, - { - id: "i1ZVIMcpNw2" - }, - { - id: "fSODnfnThKt" - }, - { - id: "ChC54GwyfRn" - }, - { - id: "YmLZ4NiNIR2" - }, - { - id: "xjEmxqQPX9l" - }, - { - id: "vz6JTv2M04f" - }, - { - id: "ACFbys3Kper" - }, - { - id: "MM1ztjfUBvZ" - }, - { - id: "tWQFMVoGfmu" - }, - { - id: "kdH0vAzJEI0" - }, - { - id: "kO9xe2HCovK" - }, - { - id: "zuXW98AEbE7" - }, - { - id: "rhyKLZCNtYC" - }, - { - id: "vsbP959ijI2" - }, - { - id: "LcrCmRvc2dY" - }, - { - id: "XEWcNAr2QZN" - }, - { - id: "CKJ9YS2AbWy" - }, - { - id: "ZA6OckFMH8y" - }, - { - id: "GA1TM835gJW" - }, - { - id: "RfF7aXcrDwI" - }, - { - id: "gyHR69ayCpd" - }, - { - id: "MRsOEFFCxgk" - }, - { - id: "geldAQlGhIy" - }, - { - id: "ghc21GH29F0" - }, - { - id: "G1JxzBEMux1" - }, - { - id: "TZEWnCuG4nJ" - }, - { - id: "qMsCsPGzBI2" - }, - { - id: "acNdHzSn9oI" - }, - { - id: "oZR2s7eM3Fk" - }, - { - id: "hIRkjkhZgIg" - }, - { - id: "t0zZ6S8DeZB" - }, - { - id: "UoLtRvXxNaB" - }, - { - id: "dQuw2YGs3rQ" - }, - { - id: "MiYhwDprCCA" - }, - { - id: "zmE99HmGYpv" - }, - { - id: "mSJSkkmA4Wl" - }, - { - id: "iqd7BiRHor0" - }, - { - id: "NMcx2jmra3c" - }, - { - id: "gROaNI9lqxf" - }, - { - id: "qRwecomj6jo" - }, - { - id: "E497Rk80ivZ" - }, - { - id: "cd3U2Tp0qR2" - }, - { - id: "tUq8wo2Om4V" - }, - { - id: "ACHk6MdWWpp" - }, - { - id: "MmRKAIfG1xy" - }, - { - id: "qusWt6sESRU" - }, - { - id: "f8GtuEKYs8q" - }, - { - id: "scc4QyxenJd" - }, - { - id: "GAOOSDQWVx3" - }, - { - id: "hvp3geX4FVn" - }, - { - id: "Rx8bpoJfLuC" - }, - { - id: "dOVJYohE0Vn" - }, - { - id: "uROAmk9ymNE" - }, - { - id: "rGrWkuJQrqp" - }, - { - id: "Bsn4QIPFdib" - }, - { - id: "kHvk1gj2dfR" - }, - { - id: "UGVLYrO63mR" - }, - { - id: "FU4DdzThwiC" - }, - { - id: "l3TJVDTaogL" - }, - { - id: "VwQmJUCHGhp" - }, - { - id: "FJoPuR9oVHR" - }, - { - id: "M9q1wOOsrXp" - }, - { - id: "wZkPF2bK90m" - }, - { - id: "ZgqwIR8aZNk" - }, - { - id: "FLjwMPWLrL2" - }, - { - id: "Poe3qeiGn8z" - }, - { - id: "V7SItxKNIgx" - }, - { - id: "M8QmuXwtccx" - }, - { - id: "U8tyWV7WmIB" - }, - { - id: "FCpwW3KOxtf" - }, - { - id: "DbH64RnSJVN" - }, - { - id: "kBP1UvZpsNj" - }, - { - id: "M2qEv692lS6" - }, - { - id: "xtyqCSvxQJ8" - }, - { - id: "HsB3ex0EMbb" - }, - { - id: "Fj3FwFtVPtU" - }, - { - id: "wlIdIU2y5Gk" - }, - { - id: "uzgT5Eu82WO" - }, - { - id: "kfmSovze9UV" - }, - { - id: "BtvPB9xE1Jr" - }, - { - id: "KKG8s3Z5EPH" - }, - { - id: "debyJkjed8G" - }, - { - id: "rspjJHg4WY1" - }, - { - id: "gttsaXD4n1u" - }, - { - id: "v9daBMxUxHH" - }, - { - id: "flJbtXOQ4ha" - }, - { - id: "g7Ii3FVB1bY" - }, - { - id: "BYbsMc3zE9G" - }, - { - id: "nWm6OHAdTcy" - }, - { - id: "TSyzvBiovKh" - }, - { - id: "kGkYLF1FvpB" - }, - { - id: "tblsKaWX5Sm" - }, - { - id: "GXVaMFxqDME" - }, - { - id: "iOA3z6Y3cq5" - }, - { - id: "AfP9MlA55Qi" - }, - { - id: "h8V5zVkBgic" - }, - { - id: "Zav7juzGmEo" - }, - { - id: "XwtpHXCx8sX" - }, - { - id: "jjc8SBrvpDO" - }, - { - id: "U0KpeSx4UIB" - }, - { - id: "wG1a3Ns5V1N" - }, - { - id: "NpI6EFhEAhM" - }, - { - id: "VgOvDtece3p" - }, - { - id: "H0OkaM4ReRK" - }, - { - id: "gloKYzVT67e" - }, - { - id: "lX812rGiMPZ" - }, - { - id: "Ioxjc2KBjWd" - }, - { - id: "gBKZtuOfCaj" - }, - { - id: "Ic6DsSpn2Wj" - }, - { - id: "bJ0VSATHwO2" - }, - { - id: "frORonslTLE" - }, - { - id: "Efmr3Xo36DR" - }, - { - id: "IzX2rV8a8Ho" - }, - { - id: "vrSr04hB7ED" - }, - { - id: "jaWCWLbhdv7" - }, - { - id: "Qel3jU50F6K" - }, - { - id: "UgZ7AP6L1mh" - }, - { - id: "UeOctqIWUkP" - }, - { - id: "fcTsRLFtufh" - }, - { - id: "coFxhWxOark" - }, - { - id: "ulyoJV0q6cJ" - }, - { - id: "YUUg4jQpZAy" - }, - { - id: "RII2uiUJqKD" - }, - { - id: "QMnoFLTLpkY" - }, - { - id: "VCUjA71GZ2d" - }, - { - id: "jj1MhWhHqta" - }, - { - id: "fRLX08WHWpL" - }, - { - id: "zM4czlmCz24" - }, - { - id: "G27Vr01Gifm" - }, - { - id: "NWhroKYPn1A" - }, - { - id: "G5NCnFJ3bbV" - }, - { - id: "W2w1rZI5kZz" - }, - { - id: "N4j31jvwW0Y" - }, - { - id: "mRNfATVxa3m" - }, - { - id: "JUa5Fs0Qvao" - }, - { - id: "zpEPGogIr6q" - }, - { - id: "Xzxy8NuVsLp" - }, - { - id: "oOH7qqNuiD1" - }, - { - id: "rbCicUS2uMY" - }, - { - id: "PPC5QtOsmEC" - }, - { - id: "YpL6dr19hH6" - }, - { - id: "wc3V4xFj2MO" - }, - { - id: "V6QWyB0KqvP" - }, - { - id: "mXec4ntz7OW" - }, - { - id: "wWkO5e8tkrs" - }, - { - id: "Pb1L8dflx2j" - }, - { - id: "E9oBVjyEaCe" - }, - { - id: "dyH3ppkE2sh" - }, - { - id: "DA2BEQMhv9B" - }, - { - id: "OyoED7OBJGk" - }, - { - id: "QGBXfiWmO2v" - }, - { - id: "aD10lUENwys" - }, - { - id: "PvDzSeyMO4W" - }, - { - id: "r1RUyfVBkLp" - }, - { - id: "sWjrdaLOoak" - }, - { - id: "FO1Tq8vUa62" - }, - { - id: "QRuCpHn1ZVZ" - }, - { - id: "vgOQ7fWmMyZ" - }, - { - id: "QWO08Ebwtl3" - }, - { - id: "Ys009lKpDVz" - }, - { - id: "bMkXh7mq57A" - }, - { - id: "HPg74Rr7UWp" - }, - { - id: "IHHUhdtZZRb" - }, - { - id: "CTOMXJg41hz" - }, - { - id: "WxMmxNU6Gla" - }, - { - id: "GKrklllwmbU" - }, - { - id: "pXDcgDRz8Od" - }, - { - id: "kiNoY2KN2sT" - }, - { - id: "Er6yp9aXl9a" - }, - { - id: "yR699TwEKDs" - }, - { - id: "hy9w3qQrUfu" - }, - { - id: "duNANknQO4l" - }, - { - id: "YGz2xhQkUru" - }, - { - id: "CDX81h7sQvQ" - }, - { - id: "KeCI1gfDHzn" - }, - { - id: "t1MFxLm43vC" - }, - { - id: "RxmgoSlw9YF" - }, - { - id: "eXuHiCpHQJP" - }, - { - id: "ICRqMuuHNxp" - }, - { - id: "EjnIQNVAXGp" - }, - { - id: "DBRcWnYrjj7" - }, - { - id: "jUb8gELQApl" - }, - { - id: "o5eA4rxjaEA" - }, - { - id: "obour8gYJL1" - }, - { - id: "ui12Hyvn6jR" - }, - { - id: "MPUiud3BYRq" - }, - { - id: "zOQ8bMRRM0R" - }, - { - id: "KR0jLuFOB3d" - }, - { - id: "VU1Tjizg9Eq" - }, - { - id: "cXOR7vSMBKO" - }, - { - id: "kGtrBXfoOxW" - }, - { - id: "PfZXxl6Wp3F" - }, - { - id: "GBrBjaxhBNU" - }, - { - id: "becp7lZeV95" - }, - { - id: "tlvNeDXXrS7" - }, - { - id: "wxQnl60vRWE" - }, - { - id: "yklBRnDdCBU" - }, - { - id: "EuoA3Crpqts" - }, - { - id: "cag6vQQ9SQk" - }, - { - id: "BfvEUlDh5WZ" - }, - { - id: "HchLHu47dIl" - }, - { - id: "KuHtoElOeWo" - }, - { - id: "Bf9R1R91mw4" - }, - { - id: "XVERVdHqg31" - }, - { - id: "fCaInQelsZ5" - }, - { - id: "EIBeOE4ZZDQ" - }, - { - id: "m0PiiU5BteW" - }, - { - id: "r6jCtKrDg4L" - }, - { - id: "t52CJEyLhch" - }, - { - id: "QQxEwS2zA1P" - }, - { - id: "F7oVR22kQ5J" - }, - { - id: "nKjg50Y5aFs" - }, - { - id: "agM0BKQlTh3" - }, - { - id: "q6FsDtTCP3r" - }, - { - id: "UROUHAfDSMJ" - }, - { - id: "qJhsAz9XxKf" - }, - { - id: "AfTYmAMYSEY" - }, - { - id: "aBfyTU5Wgds" - }, - { - id: "KJPWIdXAkVS" - }, - { - id: "WozxVvaR0rR" - }, - { - id: "Cc9kMNFpGmC" - }, - { - id: "xG4ElM2rILq" - }, - { - id: "sGWwGDi933f" - }, - { - id: "dkLFjVtoVud" - }, - { - id: "Tx1JYLIv3Fj" - }, - { - id: "ulI6WS7SMcf" - }, - { - id: "eYYyZUvr6ep" - }, - { - id: "qXHYtmiJRVs" - }, - { - id: "erDyqQMhRQN" - }, - { - id: "X5xh5uS3bIB" - }, - { - id: "R9v9Mb2Z3KB" - }, - { - id: "f7yRhIeFn1k" - }, - { - id: "xN1n1dpwj8N" - }, - { - id: "QQKZBppQ1Yg" - }, - { - id: "Dto395fHIvK" - }, - { - id: "K0d08d3sUOv" - }, - { - id: "WRSQSgwTvme" - }, - { - id: "lBMmM0HBp4s" - }, - { - id: "lvxIJAb2QJo" - }, - { - id: "obxZFOcDYGS" - }, - { - id: "xaEdKlRK7l4" - }, - { - id: "SpD4gm27lKj" - }, - { - id: "pjHCs8KvtSx" - }, - { - id: "V7nzgao1pCE" - }, - { - id: "aLrkBHnMhxF" - }, - { - id: "vYkCMt5WbX0" - }, - { - id: "WBo7nt0kp1g" - }, - { - id: "MHAWZr2Caxw" - }, - { - id: "QvHBTmOd2qO" - }, - { - id: "LgiBWb1OeyW" - }, - { - id: "TunPTFo0keR" - }, - { - id: "bG7AXd1o35Y" - }, - { - id: "aIxHjKERuzQ" - }, - { - id: "OQuRu1ytLMF" - }, - { - id: "wQ71REGAMet" - }, - { - id: "u0SlCNJnK3K" - }, - { - id: "pmxZm7klXBy" - }, - { - id: "mqMPMFvpTue" - }, - { - id: "dY2F6bpC4hO" - }, - { - id: "p9ZtyC3LQ9f" - }, - { - id: "FsunWIQLXoF" - }, - { - id: "caif2tNAS0n" - }, - { - id: "yUakh5JVYAK" - }, - { - id: "g031LbUPMmh" - }, - { - id: "LZS1Y7MyGPN" - }, - { - id: "U4FzUXMvbI8" - }, - { - id: "cdmkMyYv04T" - }, - { - id: "tABzAmJe44u" - }, - { - id: "hLioF4sBlne" - }, - { - id: "IWb1hstfROc" - }, - { - id: "CEoD9uQVIZB" - }, - { - id: "Zp8mxkuN2C8" - }, - { - id: "IcVHzEm0b6Z" - }, - { - id: "Cc8tVexrtgp" - }, - { - id: "GxSIHJvaffT" - }, - { - id: "oql97puM3kA" - }, - { - id: "lpxM2SDN1Zi" - }, - { - id: "okUPxUNA394" - }, - { - id: "vmRJoTiw23W" - }, - { - id: "tcJvK3MDFpA" - }, - { - id: "Xcm7moozDAL" - }, - { - id: "A5gTawRhFE2" - }, - { - id: "CF243RPvNY7" - }, - { - id: "rhD0OvRUIdg" - }, - { - id: "xwFiVFCqZrX" - }, - { - id: "bPigB5HPVIs" - }, - { - id: "pf6hbxz673J" - }, - { - id: "uUK3LeeI2JI" - }, - { - id: "HY4OVlUx7bq" - }, - { - id: "CzNGYnubEbl" - }, - { - id: "yKvqXttwwzr" - }, - { - id: "hI3aOAKqCtW" - }, - { - id: "rWuCEfxJbjo" - }, - { - id: "lrNXVeRKb9K" - }, - { - id: "yTMrs5kClCv" - }, - { - id: "xPO1tJtoAjF" - }, - { - id: "bk4Y99gJJ4o" - }, - { - id: "LvOFvYNDLBT" - }, - { - id: "xeQgqgxZMF0" - }, - { - id: "MXdbul7bBqV" - }, - { - id: "DtG84cHnM7X" - }, - { - id: "LZjIqL6eWP9" - }, - { - id: "PIcVTr8OrZv" - }, - { - id: "X8RKmI5bBgv" - }, - { - id: "QmgjREs8ugj" - }, - { - id: "NYPqLUFwzW7" - }, - { - id: "RmYxH0uwXiB" - }, - { - id: "UYcpSrv6mYJ" - }, - { - id: "PAGzK2IHcNH" - }, - { - id: "mt47bcb0Rcj" - }, - { - id: "oviXGMoL0mp" - }, - { - id: "IIeNrOrnhH0" - }, - { - id: "NGdZX8qX6BK" - }, - { - id: "CfpGKfDlCZU" - }, - { - id: "smoyi1iYNK6" - }, - { - id: "NHhA3BioKkX" - }, - { - id: "aGKLVxj8Wl2" - }, - { - id: "fOQjN1X4mAQ" - }, - { - id: "mOynHvhg6n9" - }, - { - id: "imjr9QsUqc0" - }, - { - id: "zMljBpDbSPw" - }, - { - id: "CL2RI9EJrqd" - }, - { - id: "UCwtaCrNUls" - }, - { - id: "eiJQajBCtvS" - }, - { - id: "q56l8XAU0Qq" - }, - { - id: "nImgPWDVQIa" - }, - { - id: "KtEDJZX6RrJ" - }, - { - id: "magDgRpsonr" - }, - { - id: "sznCEDMABa2" - }, - { - id: "Sp11Dlm8EC7" - }, - { - id: "kh2XrvZ07R9" - }, - { - id: "aihxTHAvuEx" - }, - { - id: "CTR6caNEKMV" - }, - { - id: "REtQE1gstTf" - }, - { - id: "tt9XZYR5avl" - }, - { - id: "RMpA2SCMyGo" - }, - { - id: "ZRxBNGxdKBv" - }, - { - id: "M3dL6ZAIZ3I" - }, - { - id: "Zpo04q79JlW" - }, - { - id: "MXDfZwbBmxs" - }, - { - id: "sAijOguUgyU" - }, - { - id: "CsD5XPjUkjO" - }, - { - id: "s2eG8iQfoo2" - }, - { - id: "CVFtTLoGf0v" - }, - { - id: "hZyvi6hEuTc" - }, - { - id: "fC5IZTforou" - }, - { - id: "QnCRGLHHe6N" - }, - { - id: "OwHjzJEVEUN" - }, - { - id: "oWNF4d3PK8C" - }, - { - id: "g5oijWNlrTp" - }, - { - id: "jjCwHWEyPua" - }, - { - id: "hTGeTrwzrPi" - }, - { - id: "q3naTQd3vk4" - }, - { - id: "Uv15pOAstzX" - }, - { - id: "D7UVRRE9iUC" - }, - { - id: "DALypRddlXt" - }, - { - id: "eC7OZaHy9Er" - }, - { - id: "qaFmuVdsiOq" - }, - { - id: "PZjAPpF9mmx" - }, - { - id: "k7afkzmXJVn" - }, - { - id: "BGHCa9pShBq" - }, - { - id: "YGZxwG1vxCi" - }, - { - id: "uPshwz3B3Uu" - }, - { - id: "uBl0VyuwO4p" - }, - { - id: "Hu31NCRjZlj" - }, - { - id: "DQ25ZfyqLiX" - }, - { - id: "JCsD1tr2Mda" - }, - { - id: "pNN0BsLqQYg" - }, - { - id: "X5PsCWO83bV" - }, - { - id: "zO5hgxxfU4T" - }, - { - id: "PaNv9VyD06n" - }, - { - id: "UYdZqFEhbDg" - }, - { - id: "KCPRVsLEVaU" - }, - { - id: "lwEjClqwUML" - }, - { - id: "BLA8608lxND" - }, - { - id: "rTrOVvZqITY" - }, - { - id: "Gm7YUjhVi9Q" - }, - { - id: "BJuvp2RES62" - }, - { - id: "OePlArRCE8r" - }, - { - id: "F256pn456tL" - }, - { - id: "haH40EF3fbM" - }, - { - id: "BhFnxVBcm4E" - }, - { - id: "hTGfkdOpNbh" - }, - { - id: "a5pYBBYuBV2" - }, - { - id: "IRi3oH3og8c" - }, - { - id: "t0DLywkw6O1" - }, - { - id: "gSe2VsLMeAK" - }, - { - id: "QJX6K9FlNbG" - }, - { - id: "jjtzkzrmG7s" - }, - { - id: "BXQS8lmTXX6" - }, - { - id: "RyH5SDDXeEU" - }, - { - id: "kdnEImiak51" - }, - { - id: "z9KGMrElTYS" - }, - { - id: "eN0GNgGYDLY" - }, - { - id: "bRjZlOSpfCi" - }, - { - id: "e4P2zTzM7gQ" - }, - { - id: "H0vusW98jk7" - }, - { - id: "GHHvGp7tgtZ" - }, - { - id: "ZpE2POxvl9P" - }, - { - id: "Pae8DR7VmcL" - }, - { - id: "bPqLhzvOIJb" - }, - { - id: "oxWlJAvF8XY" - }, - { - id: "VFF7f43dJv4" - }, - { - id: "zJOO4X9NRby" - }, - { - id: "XJ6DqDkMlPv" - }, - { - id: "ctMepV9p92I" - }, - { - id: "jl5cOwjP5PO" - }, - { - id: "g2EeoUScEzu" - }, - { - id: "jzQqP2juEy6" - }, - { - id: "zGSjJCRzww1" - }, - { - id: "Hix39LJIRc8" - }, - { - id: "qK81IFiClRk" - }, - { - id: "nv41sOz8IVM" - }, - { - id: "yHIV3DzYjPL" - }, - { - id: "JIigpdhC4tR" - }, - { - id: "I7uFKlcFAya" - }, - { - id: "G6q8HBJathN" - }, - { - id: "DINXUs8QZWg" - }, - { - id: "mAl0KfsyXVM" - }, - { - id: "Qmxmomz94es" - }, - { - id: "yLiODvcJC0x" - }, - { - id: "vAdMjyOspGL" - }, - { - id: "xuGd4VFZev5" - }, - { - id: "xt08cuqf1ys" - }, - { - id: "mkhlowm5D7O" - }, - { - id: "kUzpbgPCwVA" - }, - { - id: "YxtipXA59uX" - }, - { - id: "bLkn2FnUmR3" - }, - { - id: "gptsRw8TEao" - }, - { - id: "XvqLmn4kZXy" - }, - { - id: "I2UW55qvn82" - }, - { - id: "Pcpc2wQ6NxU" - }, - { - id: "DUPj1wDFL76" - }, - { - id: "HNRYDxjvAQQ" - }, - { - id: "MwfWgjMRgId" - }, - { - id: "PIPiBUGXRS6" - }, - { - id: "H3YmgmVA9zr" - }, - { - id: "SkkFlVzmvUq" - }, - { - id: "ZJ1fINtWZaV" - }, - { - id: "HIQCz6wJx4k" - }, - { - id: "ALnjmvcRSxU" - }, - { - id: "nbMpoRiVRWd" - }, - { - id: "MIwZRBfOxUx" - }, - { - id: "sSgOnY1Xqd9" - }, - { - id: "kuqKh33SPgg" - }, - { - id: "OwhZQEPw1u6" - }, - { - id: "GU90uRWJ5au" - }, - { - id: "hRnFyAxbVSu" - }, - { - id: "wHZsdEzyGqi" - }, - { - id: "TWMVxJANJeU" - }, - { - id: "GftPJlsXYya" - }, - { - id: "eKp8fW6cOCZ" - }, - { - id: "BzSVeXl2ipw" - }, - { - id: "hpXXBtRXXSd" - }, - { - id: "o4HjmsKgUBy" - }, - { - id: "ZvX8lXd1tYs" - }, - { - id: "RgeDYKt0AhZ" - }, - { - id: "xv2x3ViwyFX" - }, - { - id: "pqXsrHKRpRS" - }, - { - id: "ZrmM51S7ySE" - }, - { - id: "zEsMdeJOty4" - }, - { - id: "k8Sov0ujnvB" - }, - { - id: "XRXBoBfK14N" - }, - { - id: "qzP5oF7seEt" - }, - { - id: "DwpbWkiqjMy" - }, - { - id: "JNJIPX9DfaW" - }, - { - id: "P2y3TysVYtO" - }, - { - id: "lQIe6vtSe1P" - }, - { - id: "eH9a0MLYJCP" - }, - { - id: "fw4OoFDD8ik" - }, - { - id: "nX05QLraDhO" - }, - { - id: "VPesUmegQpP" - }, - { - id: "T9kp3DLvP4W" - }, - { - id: "ZlvXUWvIMks" - }, - { - id: "iJ1VH3XU5ic" - }, - { - id: "CgunjDKbM45" - }, - { - id: "KkYL8M005ju" - }, - { - id: "pWEIn4w0Esh" - }, - { - id: "Z6wIsiN1L79" - }, - { - id: "ciFzSZosO1k" - }, - { - id: "OyBpWd2oAiS" - }, - { - id: "yTNDFFhsxi6" - }, - { - id: "ZPD1n8jJoJ0" - }, - { - id: "oTnsv8nF2xg" - }, - { - id: "VysM8vs5q7z" - }, - { - id: "W7ekX3gi0ut" - }, - { - id: "AOwa6JKBQAo" - }, - { - id: "bUEvuix2Cn6" - }, - { - id: "mW20aiZHqwE" - }, - { - id: "LstymRRzibj" - }, - { - id: "OZ1olxsTyNa" - }, - { - id: "sGAxzRAVyhF" - }, - { - id: "WAM62JleVQx" - }, - { - id: "SlNw6FxElY9" - }, - { - id: "zCB6jqb11v5" - }, - { - id: "tj6zlzsd5kd" - }, - { - id: "mClZSQwnmQq" - }, - { - id: "YFlZA0y0Vi6" - }, - { - id: "V377T5btopb" - }, - { - id: "AQQCxQqDxLe" - }, - { - id: "wzvDhS0TkAF" - }, - { - id: "gcsKpK1l9eZ" - }, - { - id: "wtdBuXDwZYQ" - }, - { - id: "MADPPE6B27k" - }, - { - id: "o9J1ar4hM1L" - }, - { - id: "OM0adkTeys8" - }, - { - id: "oEMXXHA5aGx" - }, - { - id: "VWCTysWfbpy" - }, - { - id: "K8W0P4ZLchk" - }, - { - id: "jPidqyo7cpF" - }, - { - id: "vcPtDIrU9d7" - }, - { - id: "z0jGRBxKc0e" - }, - { - id: "KrYEOKqlhe4" - }, - { - id: "rZxk3S0qN63" - }, - { - id: "bQiBfA2j5cw" - }, - { - id: "OXHE08rPXm1" - }, - { - id: "Dgta1RAuskb" - }, - { - id: "kOvoflxqkGw" - }, - { - id: "cBi3y4lGhDd" - }, - { - id: "K1r3uF6eZ8n" - }, - { - id: "nAr2xbOf5iT" - }, - { - id: "RWvG1aFrr0r" - }, - { - id: "WerHl8SDtRU" - }, - { - id: "cTU2WmWcJKx" - }, - { - id: "M7qT4kiEcXU" - }, - { - id: "NJBVmZBrVhQ" - }, - { - id: "HenrD4pNEqN" - }, - { - id: "iAcSJjvEa2I" - }, - { - id: "E1Uc8UcMExN" - }, - { - id: "bKiJzk8ZZbS" - }, - { - id: "jFlcEy3FKjh" - }, - { - id: "vkXlj7ZPkGi" - }, - { - id: "H2fn9ca2z8d" - }, - { - id: "qer4ip8bZ4P" - }, - { - id: "DUAYSNquClV" - }, - { - id: "mdnaPN9m7ZT" - }, - { - id: "U9klfqqGlRa" - }, - { - id: "rEIzKmGpSMM" - }, - { - id: "MeeOir63Hyy" - }, - { - id: "h3u3nQFe4sS" - }, - { - id: "Tk0DwBsjaOu" - }, - { - id: "YWXXO0XMkQe" - }, - { - id: "b2CDIRmO95E" - }, - { - id: "ZiOVcrSjSYe" - }, - { - id: "YU7eItZxn2Z" - }, - { - id: "gg0fYvR9D86" - }, - { - id: "BY5exykvTzc" - }, - { - id: "IW3guWF3uvF" - }, - { - id: "nFW78RdRUdf" - }, - { - id: "KXATggvXUzZ" - }, - { - id: "gmen7SXL9CU" - }, - { - id: "rVVzK9G44L9" - }, - { - id: "S36Gm1R5ghI" - }, - { - id: "z7qXX5LXkE9" - }, - { - id: "dQggcljEImF" - }, - { - id: "jHcrJYEa3NN" - }, - { - id: "yh1PrRTboyg" - }, - { - id: "aLQZuhm870a" - }, - { - id: "fbVs9uAce8L" - }, - { - id: "isVEay1dGbq" - }, - { - id: "D1YdCIodO3V" - }, - { - id: "cRyZDRZ6j36" - }, - { - id: "hXyqdN20E7o" - }, - { - id: "ulYrdhGl6VQ" - }, - { - id: "I6HZcwgJqUL" - }, - { - id: "fnn7xBTE0sO" - }, - { - id: "hN8TzNcsqEa" - }, - { - id: "WL7lM3Rz6dy" - }, - { - id: "V3q3EMiUhGB" - }, - { - id: "gg0biK4FD2k" - }, - { - id: "uRQj8WRK0Py" - }, - { - id: "cITgoKuibLC" - }, - { - id: "kzhPa9dd2R8" - }, - { - id: "iLUfUFx4mEF" - }, - { - id: "k8jnz66xV0f" - }, - { - id: "y4FCAVfR0tC" - }, - { - id: "sZtV68WjwpG" - }, - { - id: "ZxuSbAmsLCn" - }, - { - id: "cJVM4ckY8ZD" - }, - { - id: "ytHbYMerm2b" - }, - { - id: "aQJQ5mijJmH" - }, - { - id: "ynLghP3PuKg" - }, - { - id: "DHAq6pR0Ely" - }, - { - id: "SSm0v9lZnh8" - }, - { - id: "IXJg79fclDm" - }, - { - id: "JsxnA2IywRo" - }, - { - id: "H7sKcZvP9T6" - }, - { - id: "eyfrdOUUkXO" - }, - { - id: "UUZoBCSn245" - }, - { - id: "qbee4sKpkXO" - }, - { - id: "OFIrbJOCa8t" - }, - { - id: "rTSsEeazs6w" - }, - { - id: "uyQdDdGn2g9" - }, - { - id: "jr5hIZcJBXB" - }, - { - id: "UMq2wfDGS6l" - }, - { - id: "rYCSMnjWKv0" - }, - { - id: "iec44xK5xUI" - }, - { - id: "VYoxnjg9wiW" - }, - { - id: "cgF4WfEpzSl" - }, - { - id: "PtHKgFNIita" - }, - { - id: "VfMiAKpB8kr" - }, - { - id: "M1bWQKGXnBQ" - }, - { - id: "rozv5QUSE7a" - }, - { - id: "BCNlNkJ01k2" - }, - { - id: "v9olqjLu9Al" - }, - { - id: "utDRE0huZNl" - }, - { - id: "mEUUK7MHLSF" - }, - { - id: "QTt3cJKjwRl" - }, - { - id: "pL1FAfipkQj" - }, - { - id: "EqL0DLB2o4W" - }, - { - id: "CkZ1c0c2MR4" - }, - { - id: "u9oUaeuEJvg" - }, - { - id: "f8MTDp21nuX" - }, - { - id: "ep88w1ZbCNE" - }, - { - id: "Wm1IrYlngRU" - }, - { - id: "A9jizoxe857" - }, - { - id: "WhCQNekdIwM" - }, - { - id: "RPSMI3gQe8M" - }, - { - id: "a1dP5m3Clw4" - }, - { - id: "SOk5LKU75uW" - }, - { - id: "LbWpsX1FJcC" - }, - { - id: "mhpV1p8k0uC" - }, - { - id: "Sglj9VCoQmc" - }, - { - id: "KvE0PYQzXMM" - }, - { - id: "vLkRhIzRRak" - }, - { - id: "Clj75gZgt6I" - }, - { - id: "E0sWxp1enqW" - }, - { - id: "DhYZLciYDi4" - }, - { - id: "hwOAP8MEMW1" - }, - { - id: "aXhRnbAPtzB" - }, - { - id: "mYIJtiORZSw" - }, - { - id: "uCgPXAve9O8" - }, - { - id: "pRC8FuysKff" - }, - { - id: "FRX63UWciyO" - }, - { - id: "WDH4AkfaZQA" - }, - { - id: "VS74omZuDxN" - }, - { - id: "ejW14chBpNX" - }, - { - id: "Q23tMsKOoO6" - }, - { - id: "dc5oUFoQRCQ" - }, - { - id: "x8jclPd0nnx" - }, - { - id: "yEAmMv0CG6n" - }, - { - id: "TsglzO6wCoE" - }, - { - id: "bqSIIRuZ1qj" - }, - { - id: "ulDaqfxOLxS" - }, - { - id: "N2BMifTXTJW" - }, - { - id: "ZuQGBuEbAqe" - }, - { - id: "qSkkzO25Oed" - }, - { - id: "kjwlT8flhle" - }, - { - id: "noK22y2hRdJ" - }, - { - id: "ZCBhvGpapJT" - }, - { - id: "ADeZNq1pKsu" - }, - { - id: "FY2qVVrSdRW" - }, - { - id: "EGLpIMSAWhx" - }, - { - id: "n061bwGWIsK" - }, - { - id: "dx4NOnoGtE7" - }, - { - id: "funzKZ2xYgf" - }, - { - id: "PccFqCgeqxM" - }, - { - id: "AbkK1MwJsQm" - }, - { - id: "fHqBRE3LTiQ" - }, - { - id: "Y0OxS2QV1qT" - }, - { - id: "SjCRGrCugU9" - }, - { - id: "hRsy4L78Rht" - }, - { - id: "qHBTf9A89xW" - }, - { - id: "brocZmp2YYU" - }, - { - id: "OV4Y0FsVdgp" - }, - { - id: "BUjEJkpYDTG" - }, - { - id: "BpiGzPxG6FQ" - }, - { - id: "GQcGWobVYc4" - }, - { - id: "KRfE2ZKe9j8" - }, - { - id: "WC5rU5fLMzY" - }, - { - id: "pvTYrkG1d6f" - }, - { - id: "wvj0ietfz87" - }, - { - id: "ROIfJgdJuQC" - }, - { - id: "X79FDd4EAgo" - }, - { - id: "TSMmkUDHWhG" - }, - { - id: "f5QU0kJCwCo" - }, - { - id: "TVULMaEbowK" - }, - { - id: "jjvCGBwKlSI" - }, - { - id: "sesv0eXljBq" - }, - { - id: "xeXGnIyiKcR" - }, - { - id: "mkFoaAdosuY" - }, - { - id: "ajMlj9noqdq" - }, - { - id: "nV3OkyzF4US" - }, - { - id: "gaVjKyJCbMl" - }, - { - id: "u7WP90CqSw0" - }, - { - id: "bENQwMR9RPU" - }, - { - id: "KY7PY6Oek9l" - }, - { - id: "ozq3zNYAieB" - }, - { - id: "lUYT12uBl46" - }, - { - id: "MQHszd6K6V5" - }, - { - id: "tmxPSZifesq" - }, - { - id: "ovGHR2PP2xt" - }, - { - id: "t1aAdpBbDB3" - }, - { - id: "NKDZzjtND1V" - }, - { - id: "vLHMYIzKb98" - }, - { - id: "HWXk4EBHUyk" - }, - { - id: "QaeQJJCmnTS" - }, - { - id: "fP2jksq3TLU" - }, - { - id: "SmhR2aaKLjw" - }, - { - id: "a0XCAVyWAVi" - }, - { - id: "g9DMxXZouBw" - }, - { - id: "Rdp08RsSQnc" - }, - { - id: "OsKMbQMp54Z" - }, - { - id: "fAzFH9HX5Ml" - }, - { - id: "gDnYtoObXau" - }, - { - id: "nVThjMrvuIt" - }, - { - id: "OzjRQLn3G24" - }, - { - id: "sNCD46nc2m5" - }, - { - id: "RrYUzgL9K0x" - }, - { - id: "GimGENrZ4yG" - }, - { - id: "z9lFsLb6Tnu" - }, - { - id: "GRc9WXp9gSy" - }, - { - id: "QTUW4sUrBWE" - }, - { - id: "S1ThhGKWsvb" - }, - { - id: "oua9bZ7xkfS" - }, - { - id: "sDTodaygv5u" - }, - { - id: "E991s19hH6l" - }, - { - id: "TIMdGB8AbUm" - }, - { - id: "au8x2aRUVjb" - }, - { - id: "FyCdn8kgKTc" - }, - { - id: "q56204kKXgZ" - }, - { - id: "Aouf3UUWxo3" - }, - { - id: "akbfKGJAYt1" - }, - { - id: "I3Q4c9e1bFg" - }, - { - id: "YqhXLZvknUO" - }, - { - id: "FsiZ3vyKiAU" - }, - { - id: "PriwTqVreMn" - }, - { - id: "ubUisS0sH7Y" - }, - { - id: "iSQTZRaYval" - }, - { - id: "Xxf0q3cFaiX" - }, - { - id: "MErVkzdbsP5" - }, - { - id: "qxbsDd9QYv6" - }, - { - id: "ovruC9wzRBW" - }, - { - id: "PvUAAGiEqKH" - }, - { - id: "k5K7JG1bOYa" - }, - { - id: "hCm2Nh7C8BW" - }, - { - id: "cHqboEGRUiY" - }, - { - id: "ABM75Q1UfoP" - }, - { - id: "vqzLMEA9PHM" - }, - { - id: "KnU2XHRvyiX" - }, - { - id: "OCi4115nFsX" - }, - { - id: "L3OQoPOwSFy" - }, - { - id: "KuGO75X47Gk" - }, - { - id: "HB2pdBL12sG" - }, - { - id: "hA63ZnXDOcZ" - }, - { - id: "C1zlHePEQe6" - }, - { - id: "fFuBunxNene" - }, - { - id: "bO2AHSkUIcS" - }, - { - id: "YlzcywV2ekX" - }, - { - id: "FWFtgkFuk92" - }, - { - id: "NoNEdV7IyKU" - }, - { - id: "YMkMpzQEaE1" - }, - { - id: "YyxzpZpB2s7" - }, - { - id: "y4F4FPooV3W" - }, - { - id: "COtzHwwf7GF" - }, - { - id: "FC0dyKxD2mL" - }, - { - id: "h9Dt8E8VyMq" - }, - { - id: "MYr9oYNh5eH" - }, - { - id: "PqlNXedmh7u" - }, - { - id: "Bv3ZzMtRSrU" - }, - { - id: "meHOjeLJ4jz" - }, - { - id: "mTNOoGXuC39" - }, - { - id: "T96WRiSvhaU" - }, - { - id: "F3fnO1wHREz" - }, - { - id: "IGtLoNYu3m3" - }, - { - id: "kLbIhl5e2Ol" - }, - { - id: "JCXEtUDYyp9" - }, - { - id: "MQWubt4niuo" - }, - { - id: "qZEdl8gjHk4" - }, - { - id: "n7wN9gMFfZ5" - }, - { - id: "W6il9wTkvwu" - }, - { - id: "kf6JG4xPtQu" - }, - { - id: "ZOyEYFBKVTa" - }, - { - id: "DPSUCbGtwEH" - }, - { - id: "vbyQ4eEyjbA" - }, - { - id: "IseiqOIac7j" - }, - { - id: "WjO2puYKysP" - }, - { - id: "u9ZsXt4oCpE" - }, - { - id: "PMsF64R6OJX" - }, - { - id: "Nu969mIacpF" - }, - { - id: "c4kQIsUMRVs" - }, - { - id: "I57wpcgmcQS" - }, - { - id: "oLuhRyYPxRO" - }, - { - id: "VINXmSq6WlM" - }, - { - id: "U0QkZ5HLcBh" - }, - { - id: "kedYKTsv95j" - }, - { - id: "pASsPn2WpS1" - }, - { - id: "vnzwDjsYYNe" - }, - { - id: "XfVYz6l2rzg" - }, - { - id: "GHPuYdLcVN5" - }, - { - id: "ZSBnWFBpPPJ" - }, - { - id: "EDDCLGSo9hx" - }, - { - id: "brZKu3A7dSz" - }, - { - id: "SIxGTeya5lN" - }, - { - id: "TiAxSIV1WsW" - }, - { - id: "pVkDnI2J6Wi" - }, - { - id: "dIRsACrjJvU" - }, - { - id: "SCc0TNTDJED" - }, - { - id: "ckZUwoiRNQS" - }, - { - id: "Rp268JB6Ne4" - }, - { - id: "EchnBdJ4aHp" - }, - { - id: "WbVAZdvcYJa" - }, - { - id: "XyDPJxjjbfD" - }, - { - id: "k2iv6kfHUeW" - }, - { - id: "lELJZCBxz7H" - }, - { - id: "A6GTmXMdS8x" - }, - { - id: "M5XBSLvivg7" - }, - { - id: "mNCrqGaPhc2" - }, - { - id: "L8cz2leP7zh" - }, - { - id: "AvGz949akv4" - }, - { - id: "lXMPIg74RGG" - }, - { - id: "IBy5Yw1ZCVi" - }, - { - id: "qWdVYZP8NGe" - }, - { - id: "lvWcISmT3Pd" - }, - { - id: "aEUfFsvT1eI" - }, - { - id: "onldO7gfdSw" - }, - { - id: "DxAPPqXvwLy" - }, - { - id: "jU9c5lpUpa6" - }, - { - id: "ITyHkdtNsld" - }, - { - id: "U0uqzA98Ubq" - }, - { - id: "IaDoA7xVKzG" - }, - { - id: "D2rB1GRuh8C" - }, - { - id: "sqNoCTQg7w7" - }, - { - id: "Jn4CNjcrPZJ" - }, - { - id: "VjVYaKZ9t4K" - }, - { - id: "q3wEzr3bE4s" - }, - { - id: "KC2kfmP6Ym5" - }, - { - id: "Fu6V7CVnikU" - }, - { - id: "n277YIC9U2q" - }, - { - id: "SttgPxp0UuS" - }, - { - id: "NDqR2cWlVy3" - }, - { - id: "pYr0Kcy93M2" - }, - { - id: "kVjJlyikPxp" - }, - { - id: "Fa4U0rDYIlJ" - }, - { - id: "TdoNdBa6i4A" - }, - { - id: "OcRCVRy2M7X" - }, - { - id: "k7IkH9U9lZP" - }, - { - id: "mj5lBkGeqVd" - }, - { - id: "X9zzzyPZViR" - }, - { - id: "Ni2W87QqMWA" - }, - { - id: "gyNCiFp8sWX" - }, - { - id: "keZ1b2AHgsI" - }, - { - id: "shRXArPWh8H" - }, - { - id: "cUltUneFSan" - }, - { - id: "TluyVYBlmEI" - }, - { - id: "KLEIeni3XAw" - }, - { - id: "cDRQOxX1wHO" - }, - { - id: "tZxqVn3xNrA" - }, - { - id: "XYyMoILYXQC" - }, - { - id: "Qwgy9ucLlL5" - }, - { - id: "oc7tqtQov95" - }, - { - id: "AF8jvAOAWox" - }, - { - id: "zsqxu7ZZRpO" - }, - { - id: "wjFsUXI1MlO" - }, - { - id: "v2vi8UaIYlo" - }, - { - id: "QuIDecovcIX" - }, - { - id: "eVkjSAXyz3T" - }, - { - id: "d9mih4hlTLF" - }, - { - id: "Xoruy9OQVDn" - }, - { - id: "gjRqy9UoeQM" - }, - { - id: "vn9KJsLyP5f" - }, - { - id: "J13NOXEYIjY" - }, - { - id: "Xcq3e4TeBc9" - }, - { - id: "DwlFKzDSuQU" - }, - { - id: "doQq5EAf7vq" - }, - { - id: "wmW6SjWfH5B" - }, - { - id: "imvGVxzf1N9" - }, - { - id: "W7HR0cCgVt6" - }, - { - id: "CbIWQQoWcLc" - }, - { - id: "zrO4npQ018X" - }, - { - id: "NPhhXuDhbMX" - }, - { - id: "hBPtNXkQ3mP" - }, - { - id: "qzm5ww3U0vz" - }, - { - id: "IpA5FViU8tk" - }, - { - id: "O6uvpzGd5pu" - }, - { - id: "PnMPARoMhWW" - }, - { - id: "yjxkvIB90uc" - }, - { - id: "lOEIIgnccF2" - }, - { - id: "Yt1ctIEdE6P" - }, - { - id: "MkXOec5tfT1" - }, - { - id: "C9uduqDZr9d" - }, - { - id: "PEZNsGbZaVJ" - }, - { - id: "IgtXqhgIJVI" - }, - { - id: "Wbk6cHV6L2n" - }, - { - id: "uDzWmUDHKeR" - }, - { - id: "FoAz5tmFdt0" - }, - { - id: "PbXfxMxsMpw" - }, - { - id: "fFXEYa60KJs" - }, - { - id: "GYpd8O6nqQi" - }, - { - id: "J42QfNe0GJZ" - }, - { - id: "Zyi7lDEFXEV" - }, - { - id: "WGX1v9umWCm" - }, - { - id: "t2YFCWNaAtx" - }, - { - id: "Ozw43SfVIqw" - }, - { - id: "zQ2pFkzGtIg" - }, - { - id: "DfUfwjM9am5" - }, - { - id: "hmZE3mVAZFf" - }, - { - id: "z72Le3wcqyG" - }, - { - id: "gupMEWNKQkY" - }, - { - id: "VkEBjujtKen" - }, - { - id: "WSn6ylmgPcZ" - }, - { - id: "MI0iP5jfVeg" - }, - { - id: "u8PjuAqplGy" - }, - { - id: "u8lMFspZ968" - }, - { - id: "gqEGIDiISfS" - }, - { - id: "k1o0PL2BOP5" - }, - { - id: "qoZyfoQVyTD" - }, - { - id: "tAjzJmzmwK3" - }, - { - id: "KcCbIDzRcui" - }, - { - id: "K6JzYLJqF8x" - }, - { - id: "QqkbVLsixrY" - }, - { - id: "mYMJHVqdBKt" - }, - { - id: "pJj2r2HElLE" - }, - { - id: "s5w5VgDpqxj" - }, - { - id: "Jd7G0NYBTx1" - }, - { - id: "M9MBisTQQSe" - }, - { - id: "w3gDMjMLr32" - }, - { - id: "wZZORQPgn75" - }, - { - id: "BYXDipVSVn2" - }, - { - id: "OS3sXR5nkqM" - }, - { - id: "IJ2XzGcz1rh" - }, - { - id: "AiGBODidxPw" - }, - { - id: "SKJoPDgjELa" - }, - { - id: "LT5Erj2vDC6" - }, - { - id: "eCfxBe1lnxb" - }, - { - id: "HDOnfLXKkYs" - }, - { - id: "F0uVXCVvOPO" - }, - { - id: "cXMQtUId06K" - }, - { - id: "D9fzIxg5Nzz" - }, - { - id: "xAEfZFmflnp" - }, - { - id: "mG8adrrysc3" - }, - { - id: "Fbq6Vxa4MIx" - }, - { - id: "fYozk8EEYoJ" - }, - { - id: "eQJpYIDxGnN" - }, - { - id: "aVycEyoSBJx" - }, - { - id: "PYaPgbz8NlV" - }, - { - id: "Ck4TOMhszUb" - }, - { - id: "tlMeFk8C4CG" - }, - { - id: "H2LR1frzCo4" - }, - { - id: "BkXKLmM4SSe" - }, - { - id: "TxvZGvbZt2c" - }, - { - id: "PQZJPIpTepd" - }, - { - id: "r3xkvyHGZlY" - }, - { - id: "Ykx8Ovui7g0" - }, - { - id: "UZKttAHwQ3O" - }, - { - id: "YIjjlejd5fh" - }, - { - id: "wsHnzH0FiHu" - }, - { - id: "NAJaX88KJVs" - }, - { - id: "AFi1GjbeejL" - }, - { - id: "jaQTP2Jg3nj" - }, - { - id: "MUnd4KWox8m" - }, - { - id: "T1lTKu6zkHN" - }, - { - id: "w8ojPvnfjFU" - }, - { - id: "XmfqaErvQ2T" - }, - { - id: "oph70zH8JB2" - }, - { - id: "e89DjHAQkI7" - }, - { - id: "FVflWKHD6Ma" - }, - { - id: "zAyK28LLaez" - }, - { - id: "pRVReNCGtQX" - }, - { - id: "Zrq4LESheJZ" - }, - { - id: "rHNuReOeE6w" - }, - { - id: "TQkG0sX9nca" - }, - { - id: "xou1koq6X5Z" - }, - { - id: "oXOpq3xFqoa" - }, - { - id: "jCl2uN4KmkU" - }, - { - id: "daNrEWZCt7v" - }, - { - id: "LA2eqVd2UWw" - }, - { - id: "Z6bKbQFioAO" - }, - { - id: "yiIDLBWoovd" - }, - { - id: "DZaJmtlaBMl" - }, - { - id: "gZhwUZWynkd" - }, - { - id: "w5eAbH241Dp" - }, - { - id: "MjVr7jCutMQ" - }, - { - id: "AbNXiErdYYU" - }, - { - id: "DplgrYeRIZ1" - }, - { - id: "iWrCCRCqMTg" - }, - { - id: "GE25DpSrqpB" - }, - { - id: "My9TXwq4e3a" - }, - { - id: "sbbhhFgmNYo" - }, - { - id: "pNPmNeqyrim" - }, - { - id: "CaEVOrjbGZ8" - }, - { - id: "HAqUY00X9N5" - }, - { - id: "wg24GOkUqnM" - }, - { - id: "zmSzEw8GF2l" - }, - { - id: "HfM0x6fWUKW" - }, - { - id: "ZTK1Y2ZftV2" - }, - { - id: "B85qBFn0wBr" - }, - { - id: "ZJ6u61HhRVX" - }, - { - id: "Urk55T8KgpT" - }, - { - id: "EA4HtsQhkuQ" - }, - { - id: "HfXPzR1TukO" - }, - { - id: "eKcJJYxM5bZ" - }, - { - id: "v9lv6CYT69K" - }, - { - id: "MH1O2stu3Xk" - }, - { - id: "vNiekb7USFA" - }, - { - id: "BpWJ3cRsO6g" - }, - { - id: "GQr1SE7MPQp" - }, - { - id: "Vnc2qIRLbyw" - }, - { - id: "EE7ns6c8dR2" - }, - { - id: "iylpDxy3WMX" - }, - { - id: "tEgxbwwrwUd" - }, - { - id: "ei21lW7hFPX" - }, - { - id: "omf6FfS4ysx" - }, - { - id: "SZrG4yHGV4x" - }, - { - id: "DF76ZjQtFSg" - }, - { - id: "yAjUZ8itV2O" - }, - { - id: "Zo8SxVm8zzF" - }, - { - id: "froW8QOIDrm" - }, - { - id: "aEkkJNOW4NE" - }, - { - id: "fsJoSyVUFrL" - }, - { - id: "zyRTQBUnmHN" - }, - { - id: "c242hOcj0je" - }, - { - id: "Q7yTPmEVjGX" - }, - { - id: "DKZnUSfwjKx" - }, - { - id: "sNI8ZYGhosn" - }, - { - id: "YQYgz8exK9S" - }, - { - id: "lJ2cyJubvva" - }, - { - id: "GjJjES51GvK" - }, - { - id: "jNb63DIHuwU" - }, - { - id: "zgYDcAtX11n" - }, - { - id: "wZtcSVBwPk3" - }, - { - id: "jMfZnbGavPR" - }, - { - id: "DVjewuIdgMN" - }, - { - id: "OYu4rNy6BoX" - }, - { - id: "sX5KLZH61Bm" - }, - { - id: "mFyhkjQGryn" - }, - { - id: "H4YKbNXLTWR" - }, - { - id: "ipT3QbzIeyX" - }, - { - id: "Bpvug2zxHEZ" - }, - { - id: "BBBVY5bEPaV" - }, - { - id: "pVuRAzSstbn" - }, - { - id: "zw5ppT2dwZy" - }, - { - id: "spMBota7EJV" - }, - { - id: "Esi4BTsQPkI" - }, - { - id: "WBPidqcBN9I" - }, - { - id: "MPXjAuCEZbc" - }, - { - id: "U8gw2VESkMh" - }, - { - id: "bYvOB1fPNfS" - }, - { - id: "nbi5dTY4uJi" - }, - { - id: "PMa2VCrupOd" - }, - { - id: "QtKtTpKw7up" - }, - { - id: "m3VnSQbE8CD" - }, - { - id: "Xb8cGAjh70K" - }, - { - id: "UaLmb77kIEs" - }, - { - id: "aWsqwiwekso" - }, - { - id: "XIPfXr7M5hD" - }, - { - id: "RzgSFJ9E46G" - }, - { - id: "dGZbEZroAWr" - }, - { - id: "vt0Qgs3TSwf" - }, - { - id: "m04piiZQr7k" - }, - { - id: "dpCPH6CtfGM" - }, - { - id: "Ub2wH3CNEd7" - }, - { - id: "A1VVFDJWmMr" - }, - { - id: "RAPB2F35Ekj" - }, - { - id: "mLrrvPLjGiu" - }, - { - id: "mlwFz6XY7RD" - }, - { - id: "Dwg8bjQ95v5" - }, - { - id: "GIRLSZ1tB00" - }, - { - id: "zqiGf0gpDg1" - }, - { - id: "aWCGMEdIzi4" - }, - { - id: "k7Jz0QWEzJ8" - }, - { - id: "iWtgKW5yizV" - }, - { - id: "gufu2RqUmuS" - }, - { - id: "ThFWblIv3Xs" - }, - { - id: "fdloYAmU6Yj" - }, - { - id: "hSKG7zZ4ULB" - }, - { - id: "FkAEqvG9vKo" - }, - { - id: "TvPS2BxFsSC" - }, - { - id: "cQZ9So8eFID" - }, - { - id: "fiWcdY4wnjJ" - }, - { - id: "mfFOBmX4xEc" - }, - { - id: "dt7ptFUh3go" - }, - { - id: "dkmpOuVhBba" - }, - { - id: "FnLNrHP86sm" - }, - { - id: "wTHNIU9ea61" - }, - { - id: "zeKQE1sXgtP" - }, - { - id: "mFAF53qZpec" - }, - { - id: "LGR5WethiEH" - }, - { - id: "wpUXsfc50gu" - }, - { - id: "roQ2l7TX0eZ" - }, - { - id: "guWeClpAZ5t" - }, - { - id: "rZkUcho9Z65" - }, - { - id: "x3ti3t9eOuX" - }, - { - id: "JdrmEWlkpdM" - }, - { - id: "rdk2EQRUsrc" - }, - { - id: "M1WhdeTf5Pm" - }, - { - id: "CYWLqcwm9GX" - }, - { - id: "PNfvBIHIZI3" - }, - { - id: "afjyi5oHmrU" - }, - { - id: "SptGAcmbgPz" - }, - { - id: "zw7QKjueLpj" - }, - { - id: "olur2SZdQqC" - }, - { - id: "fKsdOUVTFup" - }, - { - id: "SdW7AIxQjzw" - }, - { - id: "rkJneAaZLlW" - }, - { - id: "KkHPtkgzKgt" - }, - { - id: "K7EUxhmIXoJ" - }, - { - id: "tJsgNjCb8b2" - }, - { - id: "wrQtiRVpMsV" - }, - { - id: "F0Up1u0BFFh" - }, - { - id: "IsEkYRf1MR1" - }, - { - id: "YIUBOkoQ3O4" - }, - { - id: "qaJ9GkmDG5S" - }, - { - id: "kBLwaiZSrRe" - }, - { - id: "RHJram03Rlm" - }, - { - id: "Ar4tSGSNxgk" - }, - { - id: "pnwgTcQLlIY" - }, - { - id: "ceA5XIhBuVq" - }, - { - id: "uRkeVypjduI" - }, - { - id: "pTVZ1Zz3DT6" - }, - { - id: "jhj2snTXQsO" - }, - { - id: "HRY7W2xFn7C" - }, - { - id: "c1bVC7ZKpXk" - }, - { - id: "qGhphtoDuF9" - }, - { - id: "gunXNgz60Vv" - }, - { - id: "gzSlLQ5bfFt" - }, - { - id: "ztlhMo0ZNhV" - }, - { - id: "P3MOVHqxd31" - }, - { - id: "VpT2s67diaS" - }, - { - id: "INA8czfW02J" - }, - { - id: "ZxQ4QMmwXNU" - }, - { - id: "VdXuxcNkiad" - }, - { - id: "DI5b3fbKeSZ" - }, - { - id: "UCgjym9Y5PL" - }, - { - id: "yvLPBoBydjF" - }, - { - id: "ko1lSrBATHX" - }, - { - id: "uNEhNuBUr0i" - }, - { - id: "VaoXm4lICCc" - }, - { - id: "Jiymtq0A01x" - }, - { - id: "oEgAw6YDyaZ" - }, - { - id: "dkcxja9eLmk" - }, - { - id: "g4l0cfvxBGR" - }, - { - id: "qj340arkHO6" - }, - { - id: "Umh4HKqqFp6" - }, - { - id: "AmVDB1jxL0V" - }, - { - id: "UYwlYm8PmUz" - }, - { - id: "RUj7Pm5nov7" - }, - { - id: "UqXSUMp19FB" - }, - { - id: "rxc497GUdDt" - }, - { - id: "quQpOfBIDFC" - }, - { - id: "D0iakqyTknH" - }, - { - id: "qOD07vxwbqz" - }, - { - id: "An8DTG2vyvR" - }, - { - id: "krNhKiOv76z" - }, - { - id: "SnYHrnchKjL" - }, - { - id: "rWaylf9zbJv" - }, - { - id: "bDK6cIausGI" - }, - { - id: "biAtcKrijjh" - }, - { - id: "TDJg50OCqnU" - }, - { - id: "k4NWA5Eecy7" - }, - { - id: "yZPsWcZC9WA" - }, - { - id: "mI6TumlhMsY" - }, - { - id: "YkjabQMwWSY" - }, - { - id: "Pr2stbkaSX3" - }, - { - id: "PzHggKApNEp" - }, - { - id: "c8hrVadlHaA" - }, - { - id: "vELaJEPLOPF" - }, - { - id: "tSBcgrTDdB8" - }, - { - id: "TrIXhUR4sDQ" - }, - { - id: "khWi4K8GC45" - }, - { - id: "INYdf2ZGJt4" - }, - { - id: "AzhfEjaa0iK" - }, - { - id: "LaxJ6CD2DHq" - }, - { - id: "inpc5QsFRTm" - }, - { - id: "jYPY8mT8gn6" - }, - { - id: "uzf88cNoiV6" - }, - { - id: "dU3vTbLRLHy" - }, - { - id: "c2EuZe9y4aM" - }, - { - id: "Wg8iDulhfOB" - }, - { - id: "dQbMXhfqs80" - }, - { - id: "ErEzlkXJb1r" - }, - { - id: "as1dnmlXLzG" - }, - { - id: "kFur7xPhpH9" - }, - { - id: "LiFStmSg6tU" - }, - { - id: "QFLpt9GLt7O" - }, - { - id: "Oo7N8aa4rqP" - }, - { - id: "whi8VZxQsLV" - }, - { - id: "t5OYn8b8EOk" - }, - { - id: "MMrdfNDfBIi" - }, - { - id: "QobI6tJAfj0" - }, - { - id: "m3oymufTfBh" - }, - { - id: "qxyUoF6NXkJ" - }, - { - id: "EzGbJniGiWl" - }, - { - id: "AIkmEEPvveh" - }, - { - id: "wRBibz76XHJ" - }, - { - id: "BTX4C42ybhE" - }, - { - id: "hv3AKXi9b2R" - }, - { - id: "BX8Rg0c8odq" - }, - { - id: "ChCeM6tH0rs" - }, - { - id: "xrzcm1FWvBF" - }, - { - id: "aUGI0fWqfym" - }, - { - id: "PKVE5CI8J31" - }, - { - id: "QZ5rmKrVleg" - }, - { - id: "zI7AWPJuHvs" - }, - { - id: "rmAS9Xy0KHQ" - }, - { - id: "eAFPQ6h5OVP" - }, - { - id: "BGyqawjqzGI" - }, - { - id: "qWBNBtlvo5n" - }, - { - id: "EmTN0L4EAVi" - }, - { - id: "lBeVyNgAorJ" - }, - { - id: "JttXgTlQAGE" - }, - { - id: "vIhGAp5N5vW" - }, - { - id: "WYLKzigewr9" - }, - { - id: "xvE8BZtT54o" - }, - { - id: "BXJnMD2eJAx" - }, - { - id: "oSXTrK6WYEO" - }, - { - id: "iBMgR8OJeDe" - }, - { - id: "UdnjL5aIJvP" - }, - { - id: "DlLBIHdpaTy" - }, - { - id: "VH7hLUaypel" - }, - { - id: "F8jA2OYicnT" - }, - { - id: "pMnWaF5RXg0" - }, - { - id: "YoPOL3tx0bb" - }, - { - id: "Y51kIJqEM02" - }, - { - id: "U7yKrx2QVet" - }, - { - id: "P3YSk7IN2eq" - }, - { - id: "R9PlP6Kps5z" - }, - { - id: "VSDIc0g3p33" - }, - { - id: "QII5GqfDfO3" - }, - { - id: "oZcCjwrbIKz" - }, - { - id: "O6y6WbAghnl" - }, - { - id: "PnNOuZdHIqG" - }, - { - id: "zgtSMt1VSVZ" - }, - { - id: "f6OiPBaI2eo" - }, - { - id: "W2KnxOMvmgE" - }, - { - id: "wuSwlbsk0im" - }, - { - id: "xynHvIgIgFw" - }, - { - id: "Y2uuyvKsbuR" - }, - { - id: "wuUqf1wueRZ" - }, - { - id: "RCzjHTTKtel" - }, - { - id: "zDuzwnbQOFT" - }, - { - id: "Ea3j0kUvyWg" - }, - { - id: "TWfHeGfGcWP" - }, - { - id: "GbWwMrFFYRt" - }, - { - id: "QsAwd531Cpd" - }, - { - id: "S7KwVLbFlss" - }, - { - id: "FBwh9zPFfou" - }, - { - id: "jVLn4RkYjo9" - }, - { - id: "C1tAqIpKB9k" - }, - { - id: "RANPcUxINhm" - }, - { - id: "hyLU8ivDJDi" - }, - { - id: "g7fSaXpPVc5" - }, - { - id: "B9RxRfRUi2R" - }, - { - id: "Si95KVfq81a" - }, - { - id: "hFanN2VKvCH" - }, - { - id: "AqvFmYsBVST" - }, - { - id: "uQQsAenwHZG" - }, - { - id: "LsCxV7cfiM1" - }, - { - id: "QLRuHeOqMsm" - }, - { - id: "Xcn3E6zk8Lu" - }, - { - id: "TeclkKWZ29A" - }, - { - id: "Xytauldn2QJ" - }, - { - id: "K4ypDWd8E2q" - }, - { - id: "hiqIAG8oG1b" - }, - { - id: "nq7F0t1Pz6t" - }, - { - id: "sHbLRZLmS4w" - }, - { - id: "XctPvvWIIcF" - }, - { - id: "bTKlyo7Gjx2" - }, - { - id: "YuFTTihVtOq" - }, - { - id: "wDrSPKn78dA" - }, - { - id: "WKLDzbD3xJ4" - }, - { - id: "vBXALSmjbvy" - }, - { - id: "n1ZtfmV5iXo" - }, - { - id: "cEGuHON3j3L" - }, - { - id: "OkEP0F800rb" - }, - { - id: "feGolnd9TUy" - }, - { - id: "RG6MGu5nUlI" - }, - { - id: "JEHwU064LAj" - }, - { - id: "RBkn3orPjiz" - }, - { - id: "KhVaRQpkxlO" - }, - { - id: "DEi9ozjiEPt" - }, - { - id: "oUM54gQRb63" - }, - { - id: "ju0MjL9fEGJ" - }, - { - id: "wB4R3E1X6pC" - }, - { - id: "DErmFP7bri7" - }, - { - id: "ZCFOvxRtTNa" - }, - { - id: "xMAhumLWbUj" - }, - { - id: "IDqnDXlk0i5" - }, - { - id: "ozb3tZ57TMc" - }, - { - id: "M2YKyPjsAYm" - }, - { - id: "DMk6LpMtUDz" - }, - { - id: "LqghfxcOSTN" - }, - { - id: "mP8GlE1ElQD" - }, - { - id: "NYDEsmbOovd" - }, - { - id: "JqpJN6ahuvo" - }, - { - id: "teRtPCqDgE6" - }, - { - id: "OpfZq5fSKDi" - }, - { - id: "n8UsOkSp3IJ" - }, - { - id: "pUZIL5xBsve" - }, - { - id: "bLYNonGzr0Y" - }, - { - id: "rebbn0ooFSO" - }, - { - id: "bkcLEIcXpDz" - }, - { - id: "mS6gjCre79w" - }, - { - id: "zobViLy7lWs" - }, - { - id: "yWgDMAeUum4" - }, - { - id: "pWutAn5p2Jc" - }, - { - id: "iMAqmLCM7pW" - }, - { - id: "GrhQXT38WfX" - }, - { - id: "C0aisGO8lgW" - }, - { - id: "z3GifKe9KnP" - }, - { - id: "jyukkJUmdng" - }, - { - id: "HgHlx5HTSiC" - }, - { - id: "CF05qjwGLtu" - }, - { - id: "iYDPhF4aS3Q" - }, - { - id: "uuIl8JqlsaW" - }, - { - id: "at6UHUQatSo" - }, - { - id: "HKopou9pAB6" - }, - { - id: "LMHQ2bwqVZb" - }, - { - id: "EjGlx5pUdAx" - }, - { - id: "ZWNfo2odfQB" - }, - { - id: "oheJlv56lNV" - }, - { - id: "qEQFWnKh4gs" - }, - { - id: "aXVvHwJXuzR" - }, - { - id: "GZwSA9KjcIL" - }, - { - id: "jrNABUMwWYU" - }, - { - id: "hih7BfD0mPe" - }, - { - id: "mMvt6zhCclb" - }, - { - id: "XGUOQaRUPjO" - }, - { - id: "ua3kNk4uraZ" - }, - { - id: "sZevo7lN0IZ" - }, - { - id: "hg3ypAkahoO" - }, - { - id: "F7u30K5OIpi" - }, - { - id: "ZW3XCXXiLcO" - }, - { - id: "iHQdnkj8ysv" - }, - { - id: "KtlCnh9ADLM" - }, - { - id: "YVVUHC0nsIT" - }, - { - id: "RwO0bsY4Qdy" - }, - { - id: "Ah2yYLjfXw5" - }, - { - id: "nhCwBn41HbZ" - }, - { - id: "ukJgi8P5Ozz" - }, - { - id: "tcEjL7gmFJL" - }, - { - id: "jZ99yOEvnFx" - }, - { - id: "QZtMuEEV9Vv" - }, - { - id: "N7mHLD3ljYc" - }, - { - id: "AAwPuBgINt5" - }, - { - id: "RXeDDKU26rB" - }, - { - id: "TMyRgQFgKi4" - }, - { - id: "KGN2jvZ0GJy" - }, - { - id: "axFuKtrQrz9" - }, - { - id: "udM6JqUcsiM" - }, - { - id: "LeE0YLhfYX4" - }, - { - id: "UtD5MsMyTrK" - }, - { - id: "zNBwz36UuyW" - }, - { - id: "VEfEyWiXDRm" - }, - { - id: "hgLfYL5bHiG" - }, - { - id: "xhmtefAZlNo" - }, - { - id: "WoqN1oUBX2R" - }, - { - id: "aw9nzUavZ2C" - }, - { - id: "cshDrVzDvA2" - }, - { - id: "ZcrjvJaYQb7" - }, - { - id: "QiDR0FAe3RM" - }, - { - id: "pITu8PZZwAX" - }, - { - id: "yai7m3X6xXL" - }, - { - id: "p1egLEARcZy" - }, - { - id: "rFYvWx4oMKa" - }, - { - id: "Mita3yG7aXx" - }, - { - id: "A6BVmKnCG9z" - }, - { - id: "KSRCzL2dHHo" - }, - { - id: "PkXxoEKbMYH" - }, - { - id: "Z7UAnjpK74g" - }, - { - id: "ZAGlASWwLnR" - }, - { - id: "kgrgx9lUOLL" - }, - { - id: "ZZmMpGIE7pD" - }, - { - id: "nFasRhFdGJr" - }, - { - id: "K8fyOKeq1my" - }, - { - id: "EuRxm058jNp" - }, - { - id: "SLus3WmxuP6" - }, - { - id: "X8DYqJWe7N2" - }, - { - id: "jhtj3eQa1pM" - }, - { - id: "qgQ49DH9a0v" - }, - { - id: "tUhIo8WWEp6" - }, - { - id: "s5aXfzOL456" - }, - { - id: "F4uBQ4jyAcX" - }, - { - id: "o9OLbcHWOS6" - }, - { - id: "g5lonXJ9ndA" - }, - { - id: "GvstqlRRnpV" - }, - { - id: "CTnuuI55SOj" - }, - { - id: "kbGqmM6ZWWV" - }, - { - id: "cKXicCOquXe" - }, - { - id: "wO4z5Aqo0hf" - }, - { - id: "C1kyEVrvVsR" - }, - { - id: "KjYGHFJP1EF" - }, - { - id: "X2C7qiFrnPc" - }, - { - id: "hqjyNM9rNFN" - }, - { - id: "m8qnxndRDR6" - }, - { - id: "XQeimQfReBQ" - }, - { - id: "O9Y65fwz0EZ" - }, - { - id: "PEZBhrM3olb" - }, - { - id: "hEjuxgJhaZD" - }, - { - id: "GyH8bjdOTsD" - }, - { - id: "FGfBgfSgtU1" - }, - { - id: "HCoggZyFGoF" - }, - { - id: "RUFLNSV96B9" - }, - { - id: "oxAoPoePpqy" - }, - { - id: "YpVol7asWvd" - }, - { - id: "VAL6bt6qZLW" - }, - { - id: "v20GQtLPipd" - }, - { - id: "tNNRPq9amd8" - }, - { - id: "XrF5AvaGcuw" - }, - { - id: "NU1xhBcfulk" - }, - { - id: "FJ67YZFK0BF" - }, - { - id: "FJFaJS52uJ4" - }, - { - id: "P18APgInH6h" - }, - { - id: "uD2UxwkzUZe" - }, - { - id: "w3vRmEz3J7t" - }, - { - id: "r0TCGeLkQKI" - }, - { - id: "kLTirjixtfx" - }, - { - id: "ZoHdXy2ueVn" - }, - { - id: "zn2a0SJnkFB" - }, - { - id: "s6IV3hOSft6" - }, - { - id: "jZQT732PZv7" - }, - { - id: "A4nMoLOGfBM" - }, - { - id: "ALZ2qr5u0X0" - }, - { - id: "YYf9h9gIwpW" - }, - { - id: "Jabrtlrhfg2" - }, - { - id: "fVXspSayPsp" - }, - { - id: "OlCQ3YdtfK9" - }, - { - id: "xiLDCJuhg0q" - }, - { - id: "IyCZTOLXUUy" - }, - { - id: "buVaSl3Fvs8" - }, - { - id: "neXhiINUSiH" - }, - { - id: "rYIkxCJFtTX" - }, - { - id: "gthKGm1k54k" - }, - { - id: "GkHpMSo5K60" - }, - { - id: "SebN7UV2WNg" - }, - { - id: "tWSCB8p6o3r" - }, - { - id: "hHbkFHHnGLL" - }, - { - id: "B2MYGHjDy4H" - }, - { - id: "NWgpyqNloqS" - }, - { - id: "ZEDKoJgFXPz" - }, - { - id: "EiARCmBCUyS" - }, - { - id: "zx3sP6ASgop" - }, - { - id: "NfE9gvFwLIF" - }, - { - id: "TbbjHIxGtTb" - }, - { - id: "Q59JcLOfIxn" - }, - { - id: "OwhDCucf4Ue" - }, - { - id: "vyOSHNNlu3t" - }, - { - id: "wcKAgJ6QvbI" - }, - { - id: "NGKCNTwKPQJ" - }, - { - id: "tF9sVDQ3v7n" - }, - { - id: "wUmVUKhnPuy" - }, - { - id: "exfs4Ituxk3" - }, - { - id: "aBIWEQRBLq6" - }, - { - id: "fjUeqXHcZM1" - }, - { - id: "At4rxDgjJRZ" - }, - { - id: "p3d71rTkD2z" - }, - { - id: "S98SPWCofg0" - }, - { - id: "qyMGuZ2UvEl" - }, - { - id: "KNMhaaSOKoJ" - }, - { - id: "yfk8mxlj5DF" - }, - { - id: "FbD5Z8z22Yb" - }, - { - id: "jIkxZKctVhB" - }, - { - id: "SkeA4IL72Ld" - }, - { - id: "Qpznxy9AOyt" - }, - { - id: "suFG8zx4bU3" - }, - { - id: "YTQRSW91PxO" - }, - { - id: "RAsstekPRco" - }, - { - id: "VnuFt8agQiq" - }, - { - id: "LPgtwcQsI3l" - }, - { - id: "b2n80jcLAAA" - }, - { - id: "QbodNMbKvx2" - }, - { - id: "ZCQTLSxANIq" - }, - { - id: "QmWe2rNcVo7" - }, - { - id: "IM9BKg9HTeC" - }, - { - id: "Kmu7ox2MiiU" - }, - { - id: "pR5hw6zSvkq" - }, - { - id: "ZquS8tb9amg" - }, - { - id: "YplgNARP2v9" - }, - { - id: "n2qFnUIhbq3" - }, - { - id: "fMyczldheOH" - }, - { - id: "xGY839b4oss" - }, - { - id: "MuZJ8lprGqK" - }, - { - id: "RwkdG4Pku2x" - }, - { - id: "otkxeFxVkzj" - }, - { - id: "c5b2mDxuc0l" - }, - { - id: "aLEI0weyyz3" - }, - { - id: "us7yjPh5iGX" - }, - { - id: "oUR5HPmim7E" - }, - { - id: "pcB6FLnqkJF" - }, - { - id: "VZ6Cocesljy" - }, - { - id: "AzecJfMwgEV" - }, - { - id: "IHa6fsNWsOZ" - }, - { - id: "GX6LzCzznCy" - }, - { - id: "Aly9adBnVU1" - }, - { - id: "jbfISeV6Wdu" - }, - { - id: "cUNdCErxl9g" - }, - { - id: "UqHuR4IYvTY" - }, - { - id: "BH2qZesoAeO" - }, - { - id: "xXhKbgwL39t" - }, - { - id: "yK4oZOB7EiG" - }, - { - id: "WsH059ZpmAs" - }, - { - id: "W43B6GUM2Tl" - }, - { - id: "r6QphTbnehw" - }, - { - id: "ogyO28fADpX" - }, - { - id: "YgZ4Z3kBRNl" - }, - { - id: "sNIfmLpAU19" - }, - { - id: "m0waywPx7OL" - }, - { - id: "ABEKZr3QWov" - }, - { - id: "DG5aYrAHXwK" - }, - { - id: "jIFemD5Wzt2" - }, - { - id: "Y76dJfBzES2" - }, - { - id: "MyCjnty1IsQ" - }, - { - id: "qKSq8mDlNy8" - }, - { - id: "Ur0muigzMHo" - }, - { - id: "QRnF3HksUMu" - }, - { - id: "bHcw141PTsE" - }, - { - id: "ylYQyiLa1nT" - }, - { - id: "jNDnGEHcwZP" - }, - { - id: "sKxtxvhr8KW" - }, - { - id: "McPuk9dcK0B" - }, - { - id: "xa4F6gesVJm" - }, - { - id: "D9rRHP0lKr8" - }, - { - id: "zajjkmuN1Ok" - }, - { - id: "roGdTjEqLZQ" - }, - { - id: "Ra2UWBS4gjX" - }, - { - id: "LBNgzOuABXB" - }, - { - id: "qa9Y0ezvop7" - }, - { - id: "g6y7PS0UQR4" - }, - { - id: "CWOTtvCDJYa" - }, - { - id: "U4lvyiEwooh" - }, - { - id: "XJGrj2dUvzx" - }, - { - id: "dQhvafG6jux" - }, - { - id: "PsNeguUSaVD" - }, - { - id: "NW2JvC6z5JS" - }, - { - id: "KKoPh1lDd9j" - }, - { - id: "dQ2QtHODZaO" - }, - { - id: "w9grWvUGdHu" - }, - { - id: "B4NHNb1Bm7A" - }, - { - id: "mr7OwDuAP4z" - }, - { - id: "QnX2a3zZOZ2" - }, - { - id: "PwgoRuWEDvJ" - }, - { - id: "tGf942oWszb" - }, - { - id: "jrfHAAMETHf" - }, - { - id: "cAEx4dZD2T2" - }, - { - id: "bIIZYa9z58q" - }, - { - id: "xMn4Wki9doK" - }, - { - id: "ulHTuGou4LR" - }, - { - id: "OzVuFaZgm5U" - }, - { - id: "AovmOHadayb" - }, - { - id: "xO7pyQJM2FV" - }, - { - id: "E4jn4059Y1x" - }, - { - id: "WMj6mBDw76A" - }, - { - id: "uH6gR3CtE3R" - }, - { - id: "Ls2ESQONh9S" - }, - { - id: "KaevAHPgkA8" - }, - { - id: "d9zRBAoM8OC" - }, - { - id: "y0tqazrZIlh" - }, - { - id: "ED3mZ9GQIKP" - }, - { - id: "HnttTTAMIt0" - }, - { - id: "V7r7FZmkoNj" - }, - { - id: "cerLzXA6f8o" - }, - { - id: "uoPC2z9r7Cc" - }, - { - id: "o3ZSHOjwZCT" - }, - { - id: "NjyJYiIuKIG" - }, - { - id: "OGOHhA2JITt" - }, - { - id: "NiBSqfOJTK9" - }, - { - id: "DuhEJ25cEfO" - }, - { - id: "GDpPwohmZR5" - }, - { - id: "EO6ghLtWv4W" - }, - { - id: "yCu3XEgT2YA" - }, - { - id: "N233eZJZ1bh" - }, - { - id: "tJ9NWrFQYIn" - }, - { - id: "RhvU7OcROij" - }, - { - id: "iohLy51Wucq" - }, - { - id: "DaX2xXnwnqR" - }, - { - id: "LXCVfc8Hq16" - }, - { - id: "Sg9hxZ10WLH" - }, - { - id: "rwTsaX9vYzs" - }, - { - id: "grqb8xgLgHX" - }, - { - id: "y8NVrM0dCbB" - }, - { - id: "MSjsRmnDHDU" - }, - { - id: "qmHCJU9rGxZ" - }, - { - id: "CibN8DH2dfX" - }, - { - id: "rQpKw6phGnI" - }, - { - id: "e45Eq2Bc9DN" - }, - { - id: "uMmRh1eO5Oi" - }, - { - id: "BDBXHeASwHl" - }, - { - id: "gv6r4BroPVG" - }, - { - id: "Lt8U7GVWvSR" - }, - { - id: "PXt5ELPbAgk" - }, - { - id: "lwHs72tP6Kh" - }, - { - id: "gO8VFUEuL8I" - }, - { - id: "Dp6XolEi9ka" - }, - { - id: "egjrZ1PHNtT" - }, - { - id: "OsiWXsujNmv" - }, - { - id: "tGw5maoBEKa" - }, - { - id: "JV9GsxSCUTD" - }, - { - id: "ZUPlEAO5sFR" - }, - { - id: "l8MAIijr4wE" - }, - { - id: "a9kwuVFl3qX" - }, - { - id: "IJAqv78eBQU" - }, - { - id: "SO8snoI3Klj" - }, - { - id: "JuqK6gPFZCa" - }, - { - id: "MJyiVDpQhtG" - }, - { - id: "XmHZS0AVSgH" - }, - { - id: "L2ZAOf3Ky6C" - }, - { - id: "xCozoBLImmX" - }, - { - id: "WKjhvY9SHet" - }, - { - id: "YryMezGzLlZ" - }, - { - id: "FV03hgATQ2H" - }, - { - id: "PQEpIeuSTCN" - }, - { - id: "LsSc30wIhtV" - }, - { - id: "Lvw2QTPcsJD" - }, - { - id: "E95jvXVcqLx" - }, - { - id: "vg68gZDgmsi" - }, - { - id: "vntT8vdy3Ww" - }, - { - id: "HVQ6gJE8R24" - }, - { - id: "q3vst3dBga3" - }, - { - id: "twKXygtEm9J" - }, - { - id: "o27TbVFUwdC" - }, - { - id: "DCsHuHs7KfX" - }, - { - id: "UE59KfabGJR" - }, - { - id: "Tby6SvmBySY" - }, - { - id: "AB6uIPosqgo" - }, - { - id: "ji9q5dX0h4v" - }, - { - id: "J0V9vIHbrdd" - }, - { - id: "mRtFgk14qta" - }, - { - id: "rvSZ34dc495" - }, - { - id: "VCtF1DbspR5" - }, - { - id: "y5EcobmRqlf" - }, - { - id: "gei3Sqw8do7" - }, - { - id: "KHLhO97w6II" - }, - { - id: "SQ44Hah4iK9" - }, - { - id: "QedXVQoxvRd" - }, - { - id: "a1JeE2czB2f" - }, - { - id: "w8JeMzShT3n" - }, - { - id: "ci68N9dQOfR" - }, - { - id: "kMTHqMgenme" - }, - { - id: "D6B4jrCpCwu" - }, - { - id: "KMYrKBgTklI" - }, - { - id: "jfs8iMB7kSh" - }, - { - id: "FPIeTw3A4Oh" - }, - { - id: "jaLbq15YhsN" - }, - { - id: "RpjUEvgWSNO" - }, - { - id: "zRoVj3nwHaf" - }, - { - id: "MrME31scKA1" - }, - { - id: "Kp4Q9nxrsH5" - }, - { - id: "mgEzZMPoVsM" - }, - { - id: "RjEISbzOwGa" - }, - { - id: "Eg9rjaJj9Zw" - }, - { - id: "eLLMnNjuluX" - }, - { - id: "rJ25bHbIujw" - }, - { - id: "hwntxYzze39" - }, - { - id: "TY1yPBvyMhT" - }, - { - id: "ee7ESKPY0SK" - }, - { - id: "LsYpCyYxSLY" - }, - { - id: "JOS7BDReyj7" - }, - { - id: "YXdC9hjYPqQ" - }, - { - id: "BedE3DKQDFf" - }, - { - id: "C7Ds3G2S2SI" - }, - { - id: "VTtyiYcc6TE" - }, - { - id: "w6naSlwGh2J" - }, - { - id: "nCh5dBoJVNw" - }, - { - id: "syXNwTNhT7P" - }, - { - id: "MmlCujRndkp" - }, - { - id: "DIQl5jJ17IE" - }, - { - id: "cMFi8lYbXHY" - }, - { - id: "nUuqLgn8Qc3" - }, - { - id: "SAxkZwvavKT" - }, - { - id: "Gp5aAebaSNK" - }, - { - id: "simyC07XwnS" - }, - { - id: "rTgtQxrvEPQ" - }, - { - id: "XbyObqerCya" - }, - { - id: "zXPBoSc4KyM" - }, - { - id: "xPtDHrAuPoA" - }, - { - id: "zBKIqG1R5g9" - }, - { - id: "NqWaKXcg01b" - }, - { - id: "iAj7Ewxdwa3" - }, - { - id: "krq8BqQbbmI" - }, - { - id: "ApLCxUmnT6q" - }, - { - id: "NqwvaQC1ni4" - }, - { - id: "QZzRkqdGjlm" - }, - { - id: "KBzvfYH2IA1" - }, - { - id: "uZsR1LdSFJB" - }, - { - id: "K3GDDEXSMQB" - }, - { - id: "kyATsd6uKiq" - }, - { - id: "NKiBpnUwO9p" - }, - { - id: "gPAjoiB5SX9" - }, - { - id: "tCKAurGbpq0" - }, - { - id: "TJGlQpCVTBe" - }, - { - id: "wsgR0GAzkyz" - }, - { - id: "cidLBZ9xWgf" - }, - { - id: "jyK8oiPuNMz" - }, - { - id: "SoTBFNQ4G14" - }, - { - id: "Vmsnp5hQl90" - }, - { - id: "ZKJnsGv2sWe" - }, - { - id: "FgHoAGcmrkX" - }, - { - id: "gJqN4yvssis" - }, - { - id: "eCXOR0L7v0X" - }, - { - id: "O2TL7mWlZ2b" - }, - { - id: "AHocmOz2L53" - }, - { - id: "wQBORtz3T9t" - }, - { - id: "fC4jfBrd5CT" - }, - { - id: "w7zPyExdAWn" - }, - { - id: "QFpqLHH7rCF" - }, - { - id: "v0HMlSxlH7l" - }, - { - id: "OTlKtnhvEm1" - }, - { - id: "OjXNuYyLaCJ" - }, - { - id: "Tp1KANrrTOJ" - }, - { - id: "Mi0QgAZ7jEG" - }, - { - id: "oztnomFGksy" - }, - { - id: "aq39jUFDoHX" - }, - { - id: "QN4te5Z5svQ" - }, - { - id: "TljiT6C5D0J" - }, - { - id: "o3PDrJRu66e" - }, - { - id: "gAOWmDrXMFh" - }, - { - id: "sWJnnEz3q2x" - }, - { - id: "AXZq6q7Dr6E" - }, - { - id: "PiXUQ8HA4d4" - }, - { - id: "dj6vtuKX6vj" - }, - { - id: "upteAwMwusK" - }, - { - id: "DxPNV7VHauJ" - }, - { - id: "RD5DzigDjiz" - }, - { - id: "PN5hDOhIIF1" - }, - { - id: "IGGWbCC8eF3" - }, - { - id: "I9JczYK377Z" - }, - { - id: "zKBGP6TDea4" - }, - { - id: "GWgBkEZXC02" - }, - { - id: "lyUQCDYniai" - }, - { - id: "CyAC5WEzrYz" - }, - { - id: "CENwKO2lr4x" - }, - { - id: "dwsSyf9njUn" - }, - { - id: "GUAyHWU9cCu" - }, - { - id: "Fhko00f3hXT" - }, - { - id: "bP3VpniJUYY" - }, - { - id: "a1E6QWBTEwX" - }, - { - id: "FdsFbCaN7Ja" - }, - { - id: "uGOpFqowOkm" - }, - { - id: "VassSilAL7I" - }, - { - id: "siaq8Je7jX1" - }, - { - id: "gfnaoSt0egS" - }, - { - id: "Tr6UmlJiq41" - }, - { - id: "Iq76Ca75nnj" - }, - { - id: "Jzh4P7p8Hbr" - }, - { - id: "zKC8EatPme1" - }, - { - id: "goGBnsehByC" - }, - { - id: "CKkE4GBJekz" - }, - { - id: "OXebNorOqcu" - }, - { - id: "DIHScLaWhLJ" - }, - { - id: "i0U0m9xZ57l" - }, - { - id: "zSNUViKdkk3" - }, - { - id: "RhDiD8ImCB0" - }, - { - id: "jOAIXvpGADD" - }, - { - id: "EwtpoSnkpxW" - }, - { - id: "BPxrc4Fl8nz" - }, - { - id: "O0Q3UNvaQEW" - }, - { - id: "Tm648BJovO9" - }, - { - id: "UrzvinLKbfv" - }, - { - id: "aRuJKmomHMG" - }, - { - id: "j57JudVQJtn" - }, - { - id: "mGMDZwsc7Le" - }, - { - id: "XRUD3Ij0OmQ" - }, - { - id: "jmIPBj66vD6" - }, - { - id: "YDDOlgRBEAA" - }, - { - id: "TGcwut79OuV" - }, - { - id: "GhDwjKv07iC" - }, - { - id: "S3eReuYVOb0" - }, - { - id: "ERmBhYkhV6Y" - }, - { - id: "jk1TtiBM5hz" - }, - { - id: "PMfipWHYbGl" - }, - { - id: "Zbp8TbiMKVc" - }, - { - id: "XLiqwElsFHO" - }, - { - id: "PrJQHI6q7w2" - }, - { - id: "HBhABfmZYjs" - }, - { - id: "GqgJjc3pRIM" - }, - { - id: "BNNSMEtV3Ip" - }, - { - id: "zKvDNHKAmFD" - }, - { - id: "T00ogLw26zJ" - }, - { - id: "Ep5iWL1UKvF" - }, - { - id: "rjABuELB5qH" - }, - { - id: "rm60vuHyQXj" - }, - { - id: "mZgIWuhdl7S" - }, - { - id: "tYM3Q7fGt2t" - }, - { - id: "WLcmiv8HoZg" - }, - { - id: "FTqS0LRJt5Q" - }, - { - id: "L05Bfpu7AcZ" - }, - { - id: "KIkeI99O52y" - }, - { - id: "XL745P4ETSL" - }, - { - id: "YuQRtpLP10I" - }, - { - id: "c7qin6VKPwa" - }, - { - id: "Jiyc4ekaMMh" - }, - { - id: "fnomliaZ2e6" - }, - { - id: "l0WRLZlEgB1" - }, - { - id: "svCLFkT99Yx" - }, - { - id: "vpNGJvZ0ljF" - }, - { - id: "jA0YloRLb1y" - }, - { - id: "LViiiQsryn1" - }, - { - id: "XQerhSrmhfi" - }, - { - id: "HT5fvEbXC77" - }, - { - id: "Gn7XMx9P7E8" - }, - { - id: "dC9cewXMORF" - }, - { - id: "MA15a0RFnXL" - }, - { - id: "SxrME3D8E0L" - }, - { - id: "j8QuHSoarWG" - }, - { - id: "RubFlO3k9HS" - }, - { - id: "I3NxIqG7bD4" - }, - { - id: "w43AtSki36B" - }, - { - id: "nDoybVJLD74" - }, - { - id: "VAvUYzmqjpN" - }, - { - id: "wXFl8kl4kIP" - }, - { - id: "DLVjfSI99Zy" - }, - { - id: "qgNo8tg3Di7" - }, - { - id: "ew7dnqz26G8" - }, - { - id: "QO9PT4p9cY8" - }, - { - id: "RaQGHRti7JM" - }, - { - id: "XHtkQoLWndu" - }, - { - id: "BG2fC2mRFOL" - }, - { - id: "hjqgB6hEdl3" - }, - { - id: "L1LgIDIrH2u" - }, - { - id: "gUrxduvyA88" - }, - { - id: "XXlzHWzhf5d" - }, - { - id: "vRMRu0aQ9jT" - }, - { - id: "BeyXziaxVq9" - }, - { - id: "ktYn8eqdPH0" - }, - { - id: "ovxTi8n3w10" - }, - { - id: "hPL3DXfnJQs" - }, - { - id: "IEX2ujGUPko" - }, - { - id: "FIS26MNECtG" - }, - { - id: "L4k4a0dpH2S" - }, - { - id: "tXL6C7P0ObJ" - }, - { - id: "vxExu6yOYLg" - }, - { - id: "mi4TEVsuCdU" - }, - { - id: "wN4d1O1bl70" - }, - { - id: "M6hljPzblFr" - }, - { - id: "OrWDfEktbpc" - }, - { - id: "LhScwLDVbWc" - }, - { - id: "wbd2RfvEdPO" - }, - { - id: "NylLchFHmmd" - }, - { - id: "vj0HUVazItT" - }, - { - id: "ItmNFu3zpe2" - }, - { - id: "YUjh5T11T8J" - }, - { - id: "s15Y0I2u3n9" - }, - { - id: "HZS30werfQI" - }, - { - id: "QkczRcSeNck" - }, - { - id: "tWjUy6MCx8q" - }, - { - id: "ynCknLU4yp0" - }, - { - id: "ev8vNoUt06h" - }, - { - id: "xmZNDeO0qCR" - }, - { - id: "jJLJVTp94ik" - }, - { - id: "SdfJMQNOHWR" - }, - { - id: "LqH7ZGU9KAx" - }, - { - id: "rIgJX4N0DGZ" - }, - { - id: "A0HKWFS2bXq" - }, - { - id: "BYQmclDY0kG" - }, - { - id: "ZE830mSvJIj" - }, - { - id: "STv4PP4Hiyl" - }, - { - id: "E7IDb3nNiW7" - }, - { - id: "u8JTnS25d14" - }, - { - id: "ikmWWl1lYQe" - }, - { - id: "GcwGqLqyi1M" - }, - { - id: "MpzW5fnjKm0" - }, - { - id: "WgpmqsXjMky" - }, - { - id: "nYiOoF2nXIr" - }, - { - id: "ZDq48uzhwgp" - }, - { - id: "ozJtldnzVci" - }, - { - id: "FFU3PJ3pY7s" - }, - { - id: "ou8aaIZ5JQG" - }, - { - id: "aWQTfvgPA5v" - }, - { - id: "aBFWK4fkCSp" - }, - { - id: "rQABSQJOmEl" - }, - { - id: "u6ZGNI8yUmt" - }, - { - id: "OuwX8H2CcRO" - }, - { - id: "QNKhE87p99N" - }, - { - id: "zXOXq5Z5k9Y" - }, - { - id: "AZ5X2CeTNsk" - }, - { - id: "xKQ2Len7DZW" - }, - { - id: "EBH26h8xEHS" - }, - { - id: "caJG6iqRw8v" - }, - { - id: "jXkJuHLkCUx" - }, - { - id: "Ti2u39leAyB" - }, - { - id: "RUCp6OaTSAD" - }, - { - id: "a6qzvruj6Yo" - }, - { - id: "wqbyzbQ78oI" - }, - { - id: "HtBpfusot9i" - }, - { - id: "DVBOvb8FN28" - }, - { - id: "KeRTMfobqNd" - }, - { - id: "DdbASCOt7vn" - }, - { - id: "cZtKKa9eJZ3" - }, - { - id: "aXnGiQGhOAj" - }, - { - id: "dEJMwPIUL9F" - }, - { - id: "EoCCYm3pwM5" - }, - { - id: "WVsJxenqmLu" - }, - { - id: "eNyv1VGkor6" - }, - { - id: "AJ2V28fscgu" - }, - { - id: "BkHC3TJjcHi" - }, - { - id: "Qu0QOykPdcD" - }, - { - id: "Q0HywoaWOcM" - }, - { - id: "kbwwO4MVVkF" - }, - { - id: "yN30LZEqji8" - }, - { - id: "vwvDblM3MNX" - }, - { - id: "Y0xDhcMWpZM" - }, - { - id: "o7qvXc3AcU0" - }, - { - id: "SFQMGHMYS1S" - }, - { - id: "NaVzm59XKGf" - }, - { - id: "XKFPtFUoQOw" - }, - { - id: "lf7FRlrchg3" - }, - { - id: "i7DUixndVFU" - }, - { - id: "u3rHGQGLLP7" - }, - { - id: "v7OOl5MQJ9P" - }, - { - id: "LkkRfdgIMHO" - }, - { - id: "bOqF2CguxWH" - }, - { - id: "yXBtSoD0IRS" - }, - { - id: "eNtRuQrrZeo" - }, - { - id: "pJv8NJlJNhU" - }, - { - id: "eWLJjzD9ICx" - }, - { - id: "So2b8zJfcMa" - }, - { - id: "oNrKKmm2dlf" - }, - { - id: "Q9DHKhuA5V9" - }, - { - id: "DUGVViJ74xV" - }, - { - id: "HMl96pTVhtF" - }, - { - id: "sT6f9A7siDE" - }, - { - id: "Zoy23SSHCPs" - }, - { - id: "lmNWdmeOYmV" - }, - { - id: "m21WB5iqHAb" - }, - { - id: "KLaXSsAgfZq" - }, - { - id: "iXSmKsku3Ne" - }, - { - id: "jtELMZtnJ8u" - }, - { - id: "Nc2ZV8p3kMc" - }, - { - id: "b2ejUUjMpSH" - }, - { - id: "EoxAZrVuKdk" - }, - { - id: "AqABf7CnBml" - }, - { - id: "sLKHXoBIqSs" - }, - { - id: "mUuCjQWMaOc" - }, - { - id: "PRpG2JzN6Bw" - }, - { - id: "QzPf0qKBU4n" - }, - { - id: "U8uqyDAu5bH" - }, - { - id: "JIXvu2GKUD0" - }, - { - id: "wONYHO8OqW0" - }, - { - id: "VVh6daodwip" - }, - { - id: "ADTKPTQYHYW" - }, - { - id: "PybxeRWVSrI" - }, - { - id: "G037PAPU5dO" - }, - { - id: "hzf90qz08AW" - }, - { - id: "ErnMNYzf4pG" - }, - { - id: "KLQ6EjYJtSs" - }, - { - id: "BhJwyLVNfcA" - }, - { - id: "TpqDscbLmkO" - }, - { - id: "z1hFWNXaAgG" - }, - { - id: "GTm8GEXKOsw" - }, - { - id: "oNqqmKD0zXj" - }, - { - id: "xcYd2l3lTt7" - }, - { - id: "vWXhyPAuad6" - }, - { - id: "vTx4EOyrchY" - }, - { - id: "bG0PlyD0iP3" - }, - { - id: "ekFsAHd8Vvc" - }, - { - id: "HQZrTUPppNA" - }, - { - id: "h5SRqGqzQFf" - }, - { - id: "vbc9y77gd3D" - }, - { - id: "C9c7ljhs5jQ" - }, - { - id: "uIiuIBInEE4" - }, - { - id: "b9tzz3V6E8C" - }, - { - id: "pafASdCcD3F" - }, - { - id: "C4IEy6sOsFF" - }, - { - id: "nyXKHCD6RyM" - }, - { - id: "fpoiR6W8HJD" - }, - { - id: "OTxN3Xr6RQr" - }, - { - id: "eigafNrAUJ2" - }, - { - id: "sEnmPtYa6Y1" - }, - { - id: "y77LiPqLMoq" - }, - { - id: "WBKkXqtW4jM" - }, - { - id: "FMTLXYK8vto" - }, - { - id: "qcjMMl3kRJi" - }, - { - id: "h0yeqL8UG60" - }, - { - id: "zarirFTbETw" - }, - { - id: "ujcXJx1wyma" - }, - { - id: "PLoeN9CaL7z" - }, - { - id: "TG80sobijni" - }, - { - id: "L4sGrTCjq5v" - }, - { - id: "c41XRVOYNJm" - }, - { - id: "m5BX6CvJ6Ex" - }, - { - id: "EknS8OEyuHh" - }, - { - id: "zo4GCx08IiQ" - }, - { - id: "tO01bqIipeD" - }, - { - id: "kDxbU1uSBFh" - }, - { - id: "d5TCI3X2KNe" - }, - { - id: "OtlPAL0mwS4" - }, - { - id: "c9wCIfbcyVo" - }, - { - id: "refSvcczxVN" - }, - { - id: "fXT1scbEObM" - }, - { - id: "kf6epm5PjDR" - }, - { - id: "flQBQV8eyHc" - }, - { - id: "xNc3QnURji6" - }, - { - id: "QFWdVc2gsOR" - }, - { - id: "ENhKQxBgy4x" - }, - { - id: "TyE10DGhTZt" - }, - { - id: "ajILkI0cfxn" - }, - { - id: "irs6pqxITRk" - }, - { - id: "RQgXBKxgvHf" - }, - { - id: "GbEIMKrTTuA" - }, - { - id: "iacIJtmOmZr" - }, - { - id: "IPpdr6vYRpp" - }, - { - id: "NnQpISrLYWZ" - }, - { - id: "xvJvLvwuYJf" - }, - { - id: "XkA2vbJAWHG" - }, - { - id: "ApJm3DbaVgj" - }, - { - id: "xpask7jp6zD" - }, - { - id: "gopPki3Td91" - }, - { - id: "XEY4IGqp1iZ" - }, - { - id: "KRAZiaejzfy" - }, - { - id: "SMNAb0b3wg4" - }, - { - id: "IOQJteT7lV3" - }, - { - id: "jgk0Lu2dHR4" - }, - { - id: "t3ZBEjKR5Fe" - }, - { - id: "p8I1jCARIlk" - }, - { - id: "QUPnbGNDxUf" - }, - { - id: "aZqXw77QmKa" - }, - { - id: "Vw6CNyFUeh9" - }, - { - id: "eJ9HKHJru29" - }, - { - id: "tNQw4owjQGF" - }, - { - id: "M6BCVT7IxBs" - }, - { - id: "KwjPvt4rggS" - }, - { - id: "J2KlzUHregx" - }, - { - id: "iGHlidSFdpu" - }, - { - id: "h2qqrkjSXo9" - }, - { - id: "qVvitxEF2ck" - }, - { - id: "Yrr7m6PaoOe" - }, - { - id: "taY1S1zmTQw" - }, - { - id: "JvG2cMIlEOo" - }, - { - id: "iglTBRgztSf" - }, - { - id: "LIOrpC8YMct" - }, - { - id: "wXwH5qm2qZa" - }, - { - id: "sF0bS2qEFSy" - }, - { - id: "KuKq7mafedt" - }, - { - id: "E72VbXF1fE1" - }, - { - id: "YtcaGQr8yyX" - }, - { - id: "qGMnda3wdGC" - }, - { - id: "S0IXhwQq5cE" - }, - { - id: "uedNhvYPMNu" - }, - { - id: "FxqBJWy8Pce" - }, - { - id: "Vth0fbpFcsO" - }, - { - id: "D1Iehj3CfaK" - }, - { - id: "cC03EwJLBiO" - }, - { - id: "PqTBRQeXkyH" - }, - { - id: "qKQWsqXzkfE" - }, - { - id: "zYUGiHTVY9I" - }, - { - id: "m0OUXDF73W4" - }, - { - id: "oCSkhmS12o7" - }, - { - id: "PYGrWaQUBDW" - }, - { - id: "iRPjJh7TaRw" - }, - { - id: "tyQJarXmdLc" - }, - { - id: "taKiTcaf05H" - }, - { - id: "Gyb5SWn4tsH" - }, - { - id: "qbqrFLCJewu" - }, - { - id: "KYXbIQBQgP1" - }, - { - id: "je00dYb0Fjt" - }, - { - id: "B3ysOUhhP50" - }, - { - id: "LnToY3ExKxL" - }, - { - id: "UdgnuDRXHKa" - }, - { - id: "kkM3AHiTZRy" - }, - { - id: "RarwVaP1miS" - }, - { - id: "Gtnbmf4LkOz" - }, - { - id: "AIM09vwxjoN" - }, - { - id: "xRd0xHrcIZZ" - }, - { - id: "KAUSOoBq5Ft" - }, - { - id: "cbzlO79fN3p" - }, - { - id: "ctN0WgIvfke" - }, - { - id: "FcQzzW6U8Y8" - }, - { - id: "MPqsNozhesT" - }, - { - id: "GelVgpRfBP0" - }, - { - id: "GM9ddjXIO5b" - }, - { - id: "tHm1GsDYnuz" - }, - { - id: "yZgW4ocTGgY" - }, - { - id: "kFScvrF3wPo" - }, - { - id: "nnCPMNv5lyk" - }, - { - id: "Q69n0EBG8qQ" - }, - { - id: "Qr41Mw2MSjo" - }, - { - id: "YQlYe58mcvr" - }, - { - id: "jkPHBqdn9SA" - }, - { - id: "ovqx1s4UvwX" - }, - { - id: "UBgShK573vu" - }, - { - id: "LUGqPutql0P" - }, - { - id: "TsS7lrq8T4E" - }, - { - id: "S04Pzo6A3PB" - }, - { - id: "ZNrY0pWI2OA" - }, - { - id: "H627AlofZ7M" - }, - { - id: "hSQTa9g0tAX" - }, - { - id: "PsaScwbmuZB" - }, - { - id: "DScDxDlwPah" - }, - { - id: "zUpyRGmtWRt" - }, - { - id: "B3BUoiHBUlm" - }, - { - id: "nodhR6M8qae" - }, - { - id: "E392epw5IwM" - }, - { - id: "ZKL5hlVG6F6" - }, - { - id: "tHn4CznxJ68" - }, - { - id: "XtSEz4PutDi" - }, - { - id: "G5FuODAbH6X" - }, - { - id: "hx5eqrPvIfz" - }, - { - id: "KPCzoj1FCus" - }, - { - id: "irVdYBmHBxs" - }, - { - id: "OfWmQyZmCxO" - }, - { - id: "GtJoxCaM2zg" - }, - { - id: "PyLBGdbzdEo" - }, - { - id: "jIrb5XckcU6" - }, - { - id: "culzJxfj21F" - }, - { - id: "olMCPYWjb7g" - }, - { - id: "g10jm7jPdzf" - }, - { - id: "GrwBI6ePkhI" - }, - { - id: "WdgS1JcBL2g" - }, - { - id: "P9mWsLb1iuy" - }, - { - id: "aR6wsq6SonE" - }, - { - id: "V1v67tAA0K3" - }, - { - id: "yPJ4Te5qM1h" - }, - { - id: "h0MSld1fn2I" - }, - { - id: "GGBRXgVQRdo" - }, - { - id: "jFAUfrT5Pfv" - }, - { - id: "RDhmsV3lHAN" - }, - { - id: "nurO6U9bOLi" - }, - { - id: "cZZG5BMDLps" - }, - { - id: "Lo5u78zjVmI" - }, - { - id: "HfVjCurKxh2" - }, - { - id: "mrBndhiKqjA" - }, - { - id: "ledzgtUphJj" - }, - { - id: "XB3Qj0kYF0f" - }, - { - id: "xKQXnxlPxU8" - }, - { - id: "bqAXudPlvhj" - }, - { - id: "yiHWwU1GwoZ" - }, - { - id: "tBZtbB7hx47" - }, - { - id: "YVub7QjM6T0" - }, - { - id: "VuKoJ8XY4rO" - }, - { - id: "XsVnQFeFyox" - }, - { - id: "wy6tbexg2nu" - }, - { - id: "uFp0ztDOFbI" - }, - { - id: "kqsWemfdGOQ" - }, - { - id: "vRC0stJ5y9Q" - }, - { - id: "FmdWGryL7z1" - }, - { - id: "KRY1k9epXli" - }, - { - id: "aF6iPGbrcRk" - }, - { - id: "mKOOL4LhZvt" - }, - { - id: "vlNXjc2lk9y" - }, - { - id: "oJTyrmGWHZh" - }, - { - id: "dyn5pihalrJ" - }, - { - id: "IxeN8shmAZ7" - }, - { - id: "b5EAvdBwDHG" - }, - { - id: "zv7j9KieSrq" - }, - { - id: "gZaCpLQkpeW" - }, - { - id: "uswM5xorTS7" - }, - { - id: "deJPfc9oLY5" - }, - { - id: "FllWYav6pG0" - }, - { - id: "gWSjWbnFlwI" - }, - { - id: "rx9ubw0UCqj" - }, - { - id: "hPFZ1G3jGm0" - }, - { - id: "aXsLBCzwYWW" - }, - { - id: "TOQP5dsGHqU" - }, - { - id: "xkeKLJUvGIc" - }, - { - id: "u5fdPkBPojq" - }, - { - id: "gAGXJVwvwme" - }, - { - id: "Ulwamw8vARR" - }, - { - id: "M9zdJTQx5tE" - }, - { - id: "Du1YtKyhrxi" - }, - { - id: "NR8ALkGErVJ" - }, - { - id: "G9InxHZh8GW" - }, - { - id: "XwJIW9a0fC8" - }, - { - id: "cKJCh06mzRd" - }, - { - id: "vjBQNAtngKg" - }, - { - id: "SxVc2y8PcxV" - }, - { - id: "Z4ta9ElJxxI" - }, - { - id: "OG3I3fdFo08" - }, - { - id: "FQ5CCuUKNLf" - }, - { - id: "iaiMSWX94Ml" - }, - { - id: "VfZnZ6UKyn8" - }, - { - id: "ZarzH6dbVZh" - }, - { - id: "wcHRDp21Lw1" - }, - { - id: "CSDGDOa7wHd" - }, - { - id: "KepKNYEgaCD" - }, - { - id: "jEy7oGUCFtW" - }, - { - id: "si34vmovtgR" - }, - { - id: "oiSllOTiHNx" - }, - { - id: "hh225P9zLrX" - }, - { - id: "Ieg2xum6dhc" - }, - { - id: "HXyVf1JN6NV" - }, - { - id: "tFSJeNF6qKT" - }, - { - id: "wkYbuEwNWyf" - }, - { - id: "bFx03Fvvd88" - }, - { - id: "JVe2ltng871" - }, - { - id: "Sc4OR4lxFfo" - }, - { - id: "GAbOhTpoEMC" - }, - { - id: "OKucwkQqPiR" - }, - { - id: "i0rpgbre6tW" - }, - { - id: "Eyj2kiEJ7M3" - }, - { - id: "lnbeMIB22aM" - }, - { - id: "zV1GjNSVQ0v" - }, - { - id: "YBZcWphXQ99" - }, - { - id: "WOk7efLlLSj" - }, - { - id: "zl33o8ENvDJ" - }, - { - id: "P8XdTqEDM6U" - }, - { - id: "GEbBu8ALs5H" - }, - { - id: "VSwnkMSAdp7" - }, - { - id: "qS9NEpGEhlr" - }, - { - id: "r06ohri9wA9" - }, - { - id: "GGDHb8xd8jc" - }, - { - id: "iQ99IjaXfIk" - }, - { - id: "UPTEK1slgAh" - }, - { - id: "vTbjX1lqHTW" - }, - { - id: "YvwYw7GilkP" - }, - { - id: "Zr7pgiajIo9" - }, - { - id: "IbYAr9jOADV" - }, - { - id: "I342IKVFy5C" - }, - { - id: "zEYrsiNUGIo" - }, - { - id: "T0CJY0T0doC" - }, - { - id: "UQFN0GRVfhY" - }, - { - id: "k1m6se9uYnI" - }, - { - id: "C7HvUkkFvye" - }, - { - id: "qcYG2Id7GS8" - }, - { - id: "vPKxHJ1og0r" - }, - { - id: "sfNljBgVKmV" - }, - { - id: "VbpwW3LqigE" - }, - { - id: "sm1kxCD7b6u" - }, - { - id: "eYWgLczvTCl" - }, - { - id: "kJq2mPyFEHo" - }, - { - id: "yGuL49Ynjd7" - }, - { - id: "ym42ZOlfZ1P" - }, - { - id: "wjP03y8OY5k" - }, - { - id: "CndfQLqrzwX" - }, - { - id: "cZxP4NE5O9z" - }, - { - id: "O6pfAFbVAAR" - }, - { - id: "JISSmwdk4NU" - }, - { - id: "ewh5SKxcCAl" - }, - { - id: "OXroFdR3EyB" - }, - { - id: "UXMQr8fupj6" - }, - { - id: "UgUcwzbEv2C" - }, - { - id: "ygDJ5pVQuUl" - }, - { - id: "EZPwuUTeIIG" - }, - { - id: "Fj2cWwnW67W" - }, - { - id: "Z2NT1Ymafhj" - }, - { - id: "z7ZpVK1KJqZ" - }, - { - id: "ohbMquuL4GQ" - }, - { - id: "ZVUYL1CCEru" - }, - { - id: "EVKYztE3n2q" - }, - { - id: "amgb83zVxp5" - }, - { - id: "wwn3ShjN7DW" - }, - { - id: "bSj2UnYhTFb" - }, - { - id: "Z7l1EF8BwqQ" - }, - { - id: "ky3niGS9snt" - }, - { - id: "kNv1M4eAZrW" - }, - { - id: "gicflGogPyB" - }, - { - id: "Aci4ywnNbGC" - }, - { - id: "va2lE4FiVVb" - }, - { - id: "q9dZvVjALQk" - }, - { - id: "sM4FFe8Ff9L" - }, - { - id: "kwvcZO19qQM" - }, - { - id: "duEzYSpwtQY" - }, - { - id: "S0q0jDkRS5v" - }, - { - id: "GpbNBF6zLVo" - }, - { - id: "I48Qu6R0sGm" - }, - { - id: "Tht0fnjagHi" - }, - { - id: "GUnP2Zi69UR" - }, - { - id: "BNFrspDBKel" - }, - { - id: "wfGRNqXqf92" - }, - { - id: "Jyv7sjpl9bA" - }, - { - id: "zLqJOW4aqN0" - }, - { - id: "GjWQK6UA4FO" - }, - { - id: "HTDuY3uxj6u" - }, - { - id: "Gba5bTc8NIg" - }, - { - id: "nKQkEAU9xQD" - }, - { - id: "fb3ZeWLrTRk" - }, - { - id: "Zwnfm4rnzbZ" - }, - { - id: "S1XGnpgsTkr" - }, - { - id: "jKZ0U8Og5aV" - }, - { - id: "wNiuQzpiKDE" - }, - { - id: "fkt6HkdVOIF" - }, - { - id: "N2HQSQCZlnp" - }, - { - id: "WycI6zp89Ao" - }, - { - id: "cfsA89Juy4o" - }, - { - id: "EC4YxFnP9zR" - }, - { - id: "wkYrcxc83vZ" - }, - { - id: "ffbwAzHSqa2" - }, - { - id: "HsvbqRnMox0" - }, - { - id: "qO108QL4ZRE" - }, - { - id: "sjujLORMIR6" - }, - { - id: "kr1iiFwbA2t" - }, - { - id: "TAB1ghnZRfd" - }, - { - id: "Jkp2ouJS4ud" - }, - { - id: "eRg3KZyWUSJ" - }, - { - id: "TA7NvKjsn4A" - }, - { - id: "Dod7Dy3zqTo" - }, - { - id: "fzBpuujglTY" - }, - { - id: "l4avWQJzaUD" - }, - { - id: "HRHahg3o1yJ" - }, - { - id: "JDvlTlYg9F5" - }, - { - id: "J7zgCvxwFJ1" - }, - { - id: "SsRIE10f1Ri" - }, - { - id: "cmsYbFLffFJ" - }, - { - id: "T05ZfxCpWml" - }, - { - id: "Nb7W7hkZMzF" - }, - { - id: "BET8jGOHdQk" - }, - { - id: "iFMlCv54LBA" - }, - { - id: "uAk40nFigUK" - }, - { - id: "L5gENbBNNup" - }, - { - id: "vkS4KwKghyc" - }, - { - id: "d9m5Z1gxxYf" - }, - { - id: "sx1q4RAWv3H" - }, - { - id: "ocLbXmLEv4X" - }, - { - id: "JJXqKSd1Q4F" - }, - { - id: "EK0LkzCzhFa" - }, - { - id: "iUFqF1BrehL" - }, - { - id: "t37BpImJzB4" - }, - { - id: "VkPhr6tHLbO" - }, - { - id: "AB92erHutCs" - }, - { - id: "qkN8w4WuGyL" - }, - { - id: "nRjIP2ZbFsE" - }, - { - id: "nhtrMy1GkC9" - }, - { - id: "FqGa96f9nrc" - }, - { - id: "XBvhfgIFhUH" - }, - { - id: "b4pMSkFyzNy" - }, - { - id: "SIjjJdXltXN" - }, - { - id: "ZW4Krr5ekhP" - }, - { - id: "JgAwun6NSKP" - }, - { - id: "zl0n5dVPAao" - }, - { - id: "Z8gNliJqFvQ" - }, - { - id: "WKCXKaymSfs" - }, - { - id: "DTA0hz0UVBT" - }, - { - id: "qx9Yd8Pzp6R" - }, - { - id: "jfV49JGnYKF" - }, - { - id: "tSGRiTiPmOb" - }, - { - id: "FNnj3jKGS7i" - }, - { - id: "kzzwX4uXz8u" - }, - { - id: "YR05MtmIsHc" - }, - { - id: "KxtLZtVmpur" - }, - { - id: "ZdPkczYqeIY" - }, - { - id: "eysrXX8Kz1H" - }, - { - id: "tZv3bARJ6Xx" - }, - { - id: "RJpiHpefEUw" - }, - { - id: "Ahh47q8AkId" - }, - { - id: "a8Vpk8kN25K" - }, - { - id: "MrWkmyh3Xa9" - }, - { - id: "zzbdqmpvTcI" - }, - { - id: "Pbl6opXm4qo" - }, - { - id: "p2SDZZGQnVn" - }, - { - id: "qhLg0XbN0kP" - }, - { - id: "ZU75pFfcxo0" - }, - { - id: "qBpVj3rOZ7N" - }, - { - id: "EshTcZgf2BM" - }, - { - id: "N4e23km7SaF" - }, - { - id: "G5R2dIcBCoi" - }, - { - id: "VUtTrc7utP1" - }, - { - id: "NHMs8vyPvz8" - }, - { - id: "G4zxaAFPFPy" - }, - { - id: "WtzbG2IRmsY" - }, - { - id: "tJf2E5dEvtX" - }, - { - id: "UaKn5BQ08fx" - }, - { - id: "dp5l9GiIJsi" - }, - { - id: "z2wbCSXk3cW" - }, - { - id: "kvkDWg42lHR" - }, - { - id: "zGNoSkzl7SA" - }, - { - id: "RDtWan9S5gP" - }, - { - id: "nmCNUOcr4mK" - }, - { - id: "l0Kf39kXCZ6" - }, - { - id: "R6fdoaVxlUn" - }, - { - id: "wsDfgp9cBd9" - }, - { - id: "uSZzbOgvLTj" - }, - { - id: "ZsjXrmZS59z" - }, - { - id: "AKhsislJnGf" - }, - { - id: "hwb4jbz5M6H" - }, - { - id: "RzeY1JckTlc" - }, - { - id: "Pc3JTyqnsmL" - }, - { - id: "ximj2aqLENv" - }, - { - id: "R9Uqa93ORxP" - }, - { - id: "Kb3255GCA3F" - }, - { - id: "kEkU53NrFmy" - }, - { - id: "gB4GSDPFSJJ" - }, - { - id: "yeGdf2Cdq4E" - }, - { - id: "WgOIxH2kYvX" - }, - { - id: "Bxd8IG5OQ4G" - }, - { - id: "cdWumlEJG5f" - }, - { - id: "zx8fvisx0SV" - }, - { - id: "UUgajyaViT7" - }, - { - id: "lG3ArWHewzy" - }, - { - id: "U2QkKSeyL5r" - }, - { - id: "bPHn9IgjKLC" - }, - { - id: "UWhv0MQOqoB" - }, - { - id: "kRWIof0qPJj" - }, - { - id: "en0j7qFnySQ" - }, - { - id: "XsB16iHtwLL" - }, - { - id: "OL2fM4ILLcX" - }, - { - id: "vc30HT4KC9H" - }, - { - id: "cg7ofS2cTgt" - }, - { - id: "VJ90d5AiL0j" - }, - { - id: "yg7uxUol97F" - }, - { - id: "D0rle7eePwK" - }, - { - id: "Fi5lLVwe1Th" - }, - { - id: "jukHQ4vGVon" - }, - { - id: "z4silfLpw2G" - }, - { - id: "Le6eLgfvOov" - }, - { - id: "g3AMPfZ7ZiD" - }, - { - id: "o0b4oNnXXNW" - }, - { - id: "bwJ8ZQRpz4c" - }, - { - id: "K6F3xMVCHZp" - }, - { - id: "KUZC2aERr27" - }, - { - id: "Wji6WkDisms" - }, - { - id: "bALwzGFMAQl" - }, - { - id: "u5KQNgeikiR" - }, - { - id: "weFldB8B2D7" - }, - { - id: "nDwbwJZQUYU" - }, - { - id: "z6v73gowbuM" - }, - { - id: "MX7QIZEGv1z" - }, - { - id: "GhXvo3BpCvo" - }, - { - id: "V0mxRyW7KdJ" - }, - { - id: "G6LbealddgU" - }, - { - id: "fDlx5LjHpYH" - }, - { - id: "uAmU0nbvA3o" - }, - { - id: "NLw9vq9pKvi" - }, - { - id: "afbJECZuqfP" - }, - { - id: "hDW65lFySeF" - }, - { - id: "ifw5aLygJEi" - }, - { - id: "g5A3hiJlwmI" - }, - { - id: "kntMUzl7Vt6" - }, - { - id: "cv4u66ALDFg" - }, - { - id: "XePkcmza9e8" - }, - { - id: "I2UpLHvMjgR" - }, - { - id: "szjf2SK42nL" - }, - { - id: "LJ8DtpJ4flg" - }, - { - id: "nKxeEfrnSdL" - }, - { - id: "yH1yrBlrr4R" - }, - { - id: "L4Tw4NlaMjn" - }, - { - id: "c3HzjfRfKiX" - }, - { - id: "OqBiNJjKQAu" - }, - { - id: "HlDMbDWUmTy" - }, - { - id: "AKvgfYx5WZq" - }, - { - id: "F483XRce1m9" - }, - { - id: "iJRE2BLh6sn" - }, - { - id: "FRaFNpjPG9b" - }, - { - id: "W9YGhDZ2FQ2" - }, - { - id: "EQUwHqZOb5L" - }, - { - id: "DxguTiXvIJu" - }, - { - id: "bHovE9LWbFd" - }, - { - id: "KuyxbV2Nqze" - }, - { - id: "HHz1kAG1LKn" - }, - { - id: "lEbejEUGi4U" - }, - { - id: "EZjyDAWzP5k" - }, - { - id: "L7hcovFqWhT" - }, - { - id: "zmYjMV1SwZs" - }, - { - id: "oOsDr78Hdlf" - }, - { - id: "hLGkoHmvBgI" - }, - { - id: "zfXBjurB08n" - }, - { - id: "yuycMF2PWDJ" - }, - { - id: "YpItyNr3TsM" - }, - { - id: "p5jIluxTBMQ" - }, - { - id: "o5QrJea3hop" - }, - { - id: "Xlibk6iuB0u" - }, - { - id: "PWc7FMcubFU" - }, - { - id: "RZ7wUXHfYj1" - }, - { - id: "AtZJOoQiGHd" - }, - { - id: "saaJmLlRp5l" - }, - { - id: "b5mAfoSIZjm" - }, - { - id: "R0CmUlFULXg" - }, - { - id: "i7Oh2tlkToJ" - }, - { - id: "jEew49Qso1Y" - }, - { - id: "nP6xqXEYoCI" - }, - { - id: "C9Hi4oLNbPT" - }, - { - id: "gNGMFC7HN1m" - }, - { - id: "w85lBgd8Ozk" - }, - { - id: "hKD6hpZUh9v" - }, - { - id: "YuXgvmUPQUM" - }, - { - id: "Ui2ZbWdaqQE" - }, - { - id: "yr4NhYRVa7I" - }, - { - id: "HTRE697c9L2" - }, - { - id: "FxuIRbiZ4hV" - }, - { - id: "yu4N82FFeLm" - }, - { - id: "RCGR1XLGfbP" - }, - { - id: "ltF8BmYAXpQ" - }, - { - id: "tiwFczgRiKS" - }, - { - id: "Zdv5VuPLcR6" - }, - { - id: "D0K3aQm4rCO" - }, - { - id: "tvL0wgcPNy2" - }, - { - id: "pmJPelI2gxt" - }, - { - id: "fYmE4ymzZSe" - }, - { - id: "rnjZOlisxNt" - }, - { - id: "ULAUNMsiNs6" - }, - { - id: "D54yChgQMHB" - }, - { - id: "cgOy0hRMGu9" - }, - { - id: "L3GgannGGKl" - }, - { - id: "uL6zylR3jlr" - }, - { - id: "g9xUM1x1f1i" - }, - { - id: "oBsvwwpprx9" - }, - { - id: "tzM2SYWNgqg" - }, - { - id: "koa3hwZZ2i7" - }, - { - id: "SC0nM3cbGHy" - }, - { - id: "Hoau0myphXO" - }, - { - id: "PdGktj8bAML" - }, - { - id: "vBe0u2ntm8E" - }, - { - id: "WPn76QAx02O" - }, - { - id: "HITLGuItseV" - }, - { - id: "Ep0VIcbxVYT" - }, - { - id: "zfaQmyZq12J" - }, - { - id: "dnolPQXGK0k" - }, - { - id: "YPSCWmJ3TyN" - }, - { - id: "vCNpM1fW28X" - }, - { - id: "ce3lpBZywaI" - }, - { - id: "w9XjBMJYL9R" - }, - { - id: "ipQBfevLRNY" - }, - { - id: "nI970DZUP2S" - }, - { - id: "m02LNOH0FnO" - }, - { - id: "jIFkAK9dkZc" - }, - { - id: "VZQiAPpGmc4" - }, - { - id: "yets9NmUcRS" - }, - { - id: "Y07XSHsIn0H" - }, - { - id: "PZmGrpH45To" - }, - { - id: "LlqR6cEoPLM" - }, - { - id: "e5sGsWLEn3k" - }, - { - id: "YR2phiIQG7W" - }, - { - id: "iQFooH7gLBu" - }, - { - id: "gjCk9nZSTFV" - }, - { - id: "GA7eQkgK5mX" - }, - { - id: "fmLRqcL9sWF" - }, - { - id: "sK498nBOLfQ" - }, - { - id: "zLiMZ1WrxdG" - }, - { - id: "etrIik4vsBQ" - }, - { - id: "OY7mYDATra3" - }, - { - id: "Enrtq0TAZbT" - }, - { - id: "eROJsBwxQHt" - }, - { - id: "eqPIdr5yD1Q" - }, - { - id: "ABflOZ825sR" - }, - { - id: "fRl8y3brzNs" - }, - { - id: "GacrQPaotcj" - }, - { - id: "jsCAWo4H2XY" - }, - { - id: "demQ6f1RIE7" - }, - { - id: "DbodMW8etVz" - }, - { - id: "O1KFJmM6HUx" - }, - { - id: "LX4dQpxRDQP" - }, - { - id: "rm6NgPbM6Ld" - }, - { - id: "DP7ul57BXfV" - }, - { - id: "V5PJCNBvOMI" - }, - { - id: "WDPpQ1veOTU" - }, - { - id: "SZA2xr3mtXX" - }, - { - id: "RB7Wk3Bkanr" - }, - { - id: "a29woOvBRyS" - }, - { - id: "RhJbg8UD75Q" - }, - { - id: "QabXL5zE6QT" - }, - { - id: "uclR4O1hgHm" - }, - { - id: "eKoXODABUJe" - }, - { - id: "J3wTSn87RP2" - }, - { - id: "BW4LeuJsVkK" - }, - { - id: "TNrbPsHN7SS" - }, - { - id: "MWqU4PC8cHf" - }, - { - id: "f5F2h5nQYpt" - }, - { - id: "GWj3b4sQLMX" - }, - { - id: "gP0YJiWbpx4" - }, - { - id: "JNvzwIsghFp" - }, - { - id: "xru21GTUWem" - }, - { - id: "egv5Es0QlQP" - }, - { - id: "UUWwmlKT7LF" - }, - { - id: "KgmZAfCkn0V" - }, - { - id: "L22BgG63Gdh" - }, - { - id: "Kjxd0EoIRDA" - }, - { - id: "GfF4Fs6WVHR" - }, - { - id: "eUYbyc0u76K" - }, - { - id: "kd2Aqw5S07V" - }, - { - id: "iaYwKUBe3tK" - }, - { - id: "SnCrOCRrxGX" - }, - { - id: "YmgS6GmnIow" - }, - { - id: "CFPrsD3dNeb" - }, - { - id: "JIGSt2z7z3B" - }, - { - id: "nbxNm1xJwCJ" - }, - { - id: "Nvdzxsib4Sw" - }, - { - id: "lBob31rp6l4" - }, - { - id: "Ax5rnzMMkvb" - }, - { - id: "ptc0SQi05E4" - }, - { - id: "ZLrE3dtwW1D" - }, - { - id: "R9gZAoI9aQM" - }, - { - id: "VjygCFzqcYu" - }, - { - id: "zMD9L7M0ud9" - }, - { - id: "bkMlhoccaVw" - }, - { - id: "IUpt00CkPmE" - }, - { - id: "KTr5koWXh9q" - }, - { - id: "ydKxDNkNAsU" - }, - { - id: "kS7pHZXopzA" - }, - { - id: "SharriCAkMQ" - }, - { - id: "VkqppzZLNLL" - }, - { - id: "RVAkLOVWSWc" - }, - { - id: "eBNqiLJ3sfJ" - }, - { - id: "YAuJ3fyoEuI" - }, - { - id: "v7e9KpbgmkI" - }, - { - id: "CobDmkiSe4h" - }, - { - id: "PhzcPiLjrrH" - }, - { - id: "HqhPgCS65Jh" - }, - { - id: "lkD3naG4ax6" - }, - { - id: "dWOAzMcK2Wt" - }, - { - id: "Wx0dXFfo1wR" - }, - { - id: "T62lSjsZe9n" - }, - { - id: "qh6q9I3acm3" - }, - { - id: "lAzsBmrrM1l" - }, - { - id: "HF2U1YQy3NS" - }, - { - id: "srBycbBSULq" - }, - { - id: "oiatYnkC0xR" - }, - { - id: "eSemCdQu2XS" - }, - { - id: "Yj2ni275yPJ" - }, - { - id: "UugO8xDeLQD" - }, - { - id: "hHehz7IW76W" - }, - { - id: "mQhJcEMG9y3" - }, - { - id: "Mkw9avwLBSZ" - }, - { - id: "Sr2fIwM4HAq" - }, - { - id: "HopqwnIwX8o" - }, - { - id: "MJD5N9louMg" - }, - { - id: "HqsTYTI4rwv" - }, - { - id: "UMgJ65eiOqd" - }, - { - id: "KHhOtoYiDOG" - }, - { - id: "aeLpS2dryoy" - }, - { - id: "RNuxv7YMzqB" - }, - { - id: "epvBZQq6CTi" - }, - { - id: "AHCKpHfBkoZ" - }, - { - id: "fNL2oehab2Q" - }, - { - id: "NE66StZ5Dt1" - }, - { - id: "TFvs004qHpM" - }, - { - id: "tr7lSKvLsL0" - }, - { - id: "hI1JTqpFoAw" - }, - { - id: "Wn6ZujgHttw" - }, - { - id: "w49gjOzrk5j" - }, - { - id: "qvHMAxtWWK6" - }, - { - id: "I8WZerBPhaQ" - }, - { - id: "MTcLzAqlOiw" - }, - { - id: "Rx6eKV1BSms" - }, - { - id: "F950Ll646Sk" - }, - { - id: "cJkZLwhL8RP" - }, - { - id: "CBqTcGLxusm" - }, - { - id: "CAJoIz40pbi" - }, - { - id: "W58U2NOn1UX" - }, - { - id: "Vo0l8SzUoOP" - }, - { - id: "aiuVvr2t649" - }, - { - id: "yGYdZBnuQY7" - }, - { - id: "Fvvv5R07GuP" - }, - { - id: "lurs9MeHo7D" - }, - { - id: "UqCHLYd6ZJW" - }, - { - id: "a6oBDolElj8" - }, - { - id: "vcY0lzBz6fU" - }, - { - id: "VwdFP03ucy2" - }, - { - id: "W2T8KfAgliR" - }, - { - id: "mGVQk2qGJ5h" - }, - { - id: "Q458LafO4aP" - }, - { - id: "bf6PXrSNMKK" - }, - { - id: "S9QckzKX6Lg" - }, - { - id: "i5YydYSv5bE" - }, - { - id: "mVvEwzoFutG" - }, - { - id: "HXxIkJo4UlH" - }, - { - id: "LEdm5rQP8ZG" - }, - { - id: "lKgrhFd77kC" - }, - { - id: "gcxxMvTpZGH" - }, - { - id: "tOSpBijyuSP" - }, - { - id: "PJyOAcjJqJY" - }, - { - id: "Rih8A7n4vMm" - }, - { - id: "zrFMzXTGW5t" - }, - { - id: "OjRCvy71kAL" - }, - { - id: "s7xmBrwbJ1H" - }, - { - id: "Bq5nb7UAEGd" - }, - { - id: "fdsRQbuuAuh" - }, - { - id: "RpKHc77sF9a" - }, - { - id: "yzg6w2Z0VP5" - }, - { - id: "EV7ppor0EwT" - }, - { - id: "yJ1xkKha5oE" - }, - { - id: "rtfBP41ZBm9" - }, - { - id: "qIpBLa1SCZt" - }, - { - id: "AAGsliLEzJX" - }, - { - id: "n3hEjfVRaS4" - }, - { - id: "HJEIIyE9GdO" - }, - { - id: "m9gDV2tgz0z" - }, - { - id: "G3TTx3HOIZu" - }, - { - id: "vyIl6s0lhKc" - }, - { - id: "OkxtrUIb1DQ" - }, - { - id: "fCgDm4aOcYI" - }, - { - id: "rBhEExYM6Vq" - }, - { - id: "qTlNI1m2sgI" - }, - { - id: "fqFVu2C1enW" - }, - { - id: "SoXpnYO84eZ" - }, - { - id: "iLMeoliS2AN" - }, - { - id: "McPfpt6KwJz" - }, - { - id: "ZzhFJdCxxSv" - }, - { - id: "DmaLM8WYmWv" - }, - { - id: "LyHInhcvcNy" - }, - { - id: "qqF8jshIs66" - }, - { - id: "IYGzwEzZ2fr" - }, - { - id: "aEZSG5x3mgb" - }, - { - id: "jqleTIQFNSd" - }, - { - id: "kKRNvJxeLch" - }, - { - id: "zOkSIyUWV3U" - }, - { - id: "QMQ1klif7av" - }, - { - id: "BTXwf2gl7av" - }, - { - id: "TpmPAwLDcLa" - }, - { - id: "CqARw68kXbB" - }, - { - id: "Pw9SihGDbZ5" - }, - { - id: "bD3kFBgrqMC" - }, - { - id: "XzmWizbR343" - }, - { - id: "NO7y7D7asHz" - }, - { - id: "wI9xZxHt1jj" - }, - { - id: "tMr3QrpNqyQ" - }, - { - id: "HNv1aLPdMYb" - }, - { - id: "IFXdzAk7hKi" - }, - { - id: "LAjmEPLQ9PC" - }, - { - id: "GM1OUpqchFe" - }, - { - id: "QDoO5r6Sae7" - }, - { - id: "UmJqV09CEWJ" - }, - { - id: "h6ZoU1gQKYP" - }, - { - id: "kBrq7i12aan" - }, - { - id: "YxDztbZTXq4" - }, - { - id: "xGMGhjA3y6J" - }, - { - id: "oxFD0KlrZtd" - }, - { - id: "KWfPakpFjLS" - }, - { - id: "WZ8PTx8qQlE" - }, - { - id: "FoalpnNhJW0" - }, - { - id: "tFvHbTHJgoB" - }, - { - id: "IQ19zVGMMwQ" - }, - { - id: "kVx7sKWnHRj" - }, - { - id: "EoIjKXqXxi2" - }, - { - id: "ZgiFBCF62hK" - }, - { - id: "PFZbQjwty2n" - }, - { - id: "WBHoS2ZAOIv" - }, - { - id: "KidcrTwhAKk" - }, - { - id: "YBs36SYidWh" - }, - { - id: "NwvNHaSq9wv" - }, - { - id: "ZanaTGoZue7" - }, - { - id: "QiClm2MWlj7" - }, - { - id: "PeHqCOu4cZP" - }, - { - id: "pKFHJ9TSt4P" - }, - { - id: "Luv2kmWWgoG" - }, - { - id: "d7hw1ababST" - }, - { - id: "ptsLFDDd6IX" - }, - { - id: "SPrA2zIBGja" - }, - { - id: "YVsbNJVobsS" - }, - { - id: "WbLB35N55WC" - }, - { - id: "Ugke7jbtPOy" - }, - { - id: "Prk2JLLN5i8" - }, - { - id: "HrzvYz8IOSC" - }, - { - id: "RPglyG8hqw5" - }, - { - id: "bmnv38d1IEK" - }, - { - id: "AoBGuzSTk0U" - }, - { - id: "cmPSxhmRYJW" - }, - { - id: "HeMdaG5s8nC" - }, - { - id: "yqS64vl7G1P" - }, - { - id: "Y8foq27WLti" - }, - { - id: "d9uZeZ5fMUo" - }, - { - id: "RJZZqHxP2ne" - }, - { - id: "Z4wpKievfTL" - }, - { - id: "mokUyyg3olJ" - }, - { - id: "qKcFZgrlhQt" - }, - { - id: "a5glgtnXJRG" - }, - { - id: "Wz4mt8VSO0m" - }, - { - id: "AekX8HBymng" - }, - { - id: "Q2p7krv0RMc" - }, - { - id: "piVtV8f412q" - }, - { - id: "aV9VVijeVB2" - }, - { - id: "BZhEn1RnSbD" - }, - { - id: "Y8k1IRo1Ln5" - }, - { - id: "ThyalKpbY0u" - }, - { - id: "Eg6BoufFtHv" - }, - { - id: "ObJjzhhBkfy" - }, - { - id: "TQ5DSmdliN7" - }, - { - id: "sYjp3h6amhA" - }, - { - id: "TEVtOFKcLAP" - }, - { - id: "LpBLQU5LUSc" - }, - { - id: "zHucVTWtUXj" - }, - { - id: "vPmz1XHxrdk" - }, - { - id: "pcRcnsa538F" - }, - { - id: "oqYCnVBaPJz" - }, - { - id: "djMCTPYvltl" - }, - { - id: "y5X4mP5XylL" - }, - { - id: "Em3Y3RuqPRL" - }, - { - id: "Q8oWscr9rlQ" - }, - { - id: "YtF7b5wZF9X" - }, - { - id: "LTH71qT4stu" - }, - { - id: "DqfiI6NVnB1" - }, - { - id: "QZCn0Ev62ts" - }, - { - id: "sz31bqLUP8N" - }, - { - id: "wO1L42u0DmW" - }, - { - id: "sTOXJA2KcY2" - }, - { - id: "MMoJe0cogFt" - }, - { - id: "p25EP2o81O5" - }, - { - id: "PD1fqyvJssC" - }, - { - id: "EK23juOVAl6" - }, - { - id: "AQzqUmyk77a" - }, - { - id: "us0xxLxntBg" - }, - { - id: "Brre03pQkKB" - }, - { - id: "ijOphJBiTaU" - }, - { - id: "tOApd6i1Bez" - }, - { - id: "keuLmDzEcvi" - }, - { - id: "IfR5RgZniUI" - }, - { - id: "avjYELHgGc1" - }, - { - id: "HSW6jjRtxPc" - }, - { - id: "QqXojKlexg4" - }, - { - id: "LzvoPaeLPsb" - }, - { - id: "MXTyJNDmm1c" - }, - { - id: "TiwqHog5Pm9" - }, - { - id: "EDxXfB4iVpY" - }, - { - id: "G8yK9Bepw42" - }, - { - id: "DaX05AyqXFn" - }, - { - id: "NVzgUowrSOa" - }, - { - id: "R97fheuFiA8" - }, - { - id: "d7aKeaLtl5H" - }, - { - id: "DcsBPtco15x" - }, - { - id: "tNs4E0JcMKe" - }, - { - id: "Pyj4rmNYykK" - }, - { - id: "sb7yo6CqPRc" - }, - { - id: "iIQENGb7za6" - }, - { - id: "ob0kaztYBdv" - }, - { - id: "QDBOBWKfXbA" - }, - { - id: "kV9Go9PIhNb" - }, - { - id: "is8feDhNqPX" - }, - { - id: "aicErb8rwn5" - }, - { - id: "awasdlCzJWN" - }, - { - id: "etAuK2ZAq1q" - }, - { - id: "b329FbO30R8" - }, - { - id: "nornKUJmQqn" - }, - { - id: "DR1ylsfwlou" - }, - { - id: "gPKC3fPPvf4" - }, - { - id: "VrDA0Hn4Xc6" - }, - { - id: "EH0dXLB4nZg" - }, - { - id: "tj62LBuY8T9" - }, - { - id: "Ikly4Z4FGzc" - }, - { - id: "QxBGpnmD55Y" - }, - { - id: "qYcajvL5vz5" - }, - { - id: "KBQJ21UsPon" - }, - { - id: "waNtxFbPjrI" - }, - { - id: "NNE0YMCDZkO" - }, - { - id: "sZJtRKtOgnJ" - }, - { - id: "LZclRdyVk1t" - }, - { - id: "Zr8devCnbIm" - }, - { - id: "s5Ci64rMR3d" - }, - { - id: "E2hb6s3lH64" - }, - { - id: "W49R7xMagRD" - }, - { - id: "SHLY5rkOFTQ" - }, - { - id: "FGbXmz7gTTl" - }, - { - id: "eEHJ4Dc5JWi" - }, - { - id: "NVm0zU0mvFp" - }, - { - id: "PB8FMGbn19r" - }, - { - id: "q23bFLr2E5D" - }, - { - id: "Exb5pgDiOAj" - }, - { - id: "m7ldr30TdVZ" - }, - { - id: "rhOji0GMfUj" - }, - { - id: "SekXdHQ6aKK" - }, - { - id: "Vcq8JVz8poZ" - }, - { - id: "wixrC3wAJA6" - }, - { - id: "vzvDeLsGsrw" - }, - { - id: "HtwlAiuRCzl" - }, - { - id: "z955P3cCmvA" - }, - { - id: "RuU0jXOLbe1" - }, - { - id: "g3O1pGAfgK1" - }, - { - id: "T2Cn45nBY0u" - }, - { - id: "Y1R97EeU06Y" - }, - { - id: "oF2TYKnfIWj" - }, - { - id: "XDo0i4HYDIK" - }, - { - id: "UjusePB4jmP" - }, - { - id: "VpYAl8dXs6m" - }, - { - id: "ANFOu7p0SGg" - }, - { - id: "aZeWNYkaVxL" - }, - { - id: "aM2d2D4BjzN" - }, - { - id: "ntQSuMb7J21" - }, - { - id: "d6MiRxVntQg" - }, - { - id: "jPLZRD86QwZ" - }, - { - id: "zsk7VH8ScI7" - }, - { - id: "rFelzKE3SEp" - }, - { - id: "G33Onfnan3c" - }, - { - id: "Bj6odIpPxqi" - }, - { - id: "I5UASyYTwW0" - }, - { - id: "nfOS8g8FtgQ" - }, - { - id: "PA1spYiNZfv" - }, - { - id: "fmJxz7vlEUw" - }, - { - id: "kNrVcNQ6qsI" - }, - { - id: "vSbt6cezomG" - }, - { - id: "DBhK2m4GMoM" - }, - { - id: "Crgx572DnXR" - }, - { - id: "BV4IomHvri4" - }, - { - id: "kSo9KSpHUPL" - }, - { - id: "kdCagzp8uMv" - }, - { - id: "FxosHxc7t87" - }, - { - id: "xEYNPdAGuwC" - }, - { - id: "jnDICAPS4q0" - }, - { - id: "bsnhEsnfD76" - }, - { - id: "lCEeiuv4NaB" - }, - { - id: "BhgdWzcplAh" - }, - { - id: "iMcanJLDED2" - }, - { - id: "ih77LC7LE1p" - }, - { - id: "fRV3Fhz1IP8" - }, - { - id: "jjUzdoQXtbE" - }, - { - id: "qO2JLjYrg91" - }, - { - id: "eWbOakzx0Q8" - }, - { - id: "wByqtWCCuDJ" - }, - { - id: "mC6RjftvQhz" - }, - { - id: "BURToloAWXS" - }, - { - id: "pICEZv79HeG" - }, - { - id: "XZnHggpP3SR" - }, - { - id: "gy8rmvYT4cj" - }, - { - id: "dCvUVvKnhMe" - }, - { - id: "J2R6QOcUAQR" - }, - { - id: "vpPDQ6CEGyu" - }, - { - id: "xT6gvoymbUO" - }, - { - id: "vpzCfUzeeP0" - }, - { - id: "LwiKtagwE8O" - }, - { - id: "DemWLYbM93Y" - }, - { - id: "Mavey9h4406" - }, - { - id: "vQ2TmL9rgCS" - }, - { - id: "EURoFVjowXs" - }, - { - id: "tMItDhNh4ro" - }, - { - id: "LhaAPLxdSFH" - }, - { - id: "dBARCog0xcp" - }, - { - id: "J8mn3SbuwWq" - }, - { - id: "yOHjReVbym3" - }, - { - id: "kqyeoWyfDmQ" - }, - { - id: "rb0VeLD7nl5" - }, - { - id: "ua5GXy2uhBR" - }, - { - id: "rR5trwf0mzT" - }, - { - id: "D6yiaX1K5sO" - }, - { - id: "BXd3TqaAxkK" - }, - { - id: "mGmu0GJ5neg" - }, - { - id: "kEgoAqyw74n" - }, - { - id: "pSWEnB9ljoU" - }, - { - id: "azRICFoILuh" - }, - { - id: "V09meXsQV80" - }, - { - id: "yTromKIC9FM" - }, - { - id: "xZiPfIy11Zu" - }, - { - id: "IakBJpJ6ZDk" - }, - { - id: "DYYAwRBoYG2" - }, - { - id: "AtJqbc0Zszr" - }, - { - id: "GJ5FftKqk3D" - }, - { - id: "iH79WhpsByj" - }, - { - id: "EYt6ThQDagn" - }, - { - id: "mhJQYk2Jwym" - }, - { - id: "LOpWauwwghf" - }, - { - id: "qlTTJxZeVif" - }, - { - id: "ZYujNWJGn5B" - }, - { - id: "hvzlCxhEjrm" - }, - { - id: "myQ4q1W6B4y" - }, - { - id: "hoJ0Do9loZl" - }, - { - id: "XMolxZe0muS" - }, - { - id: "CYQCkGDwRYo" - }, - { - id: "ScqmhWxlFKJ" - }, - { - id: "ARAZtL7Bdpy" - }, - { - id: "dnWRXzgCyMq" - }, - { - id: "M9JyYBZTqR7" - }, - { - id: "LfTkc0S4b5k" - }, - { - id: "nxxeV8NmQpg" - }, - { - id: "wNfup47fRLd" - }, - { - id: "koPeSBICmrp" - }, - { - id: "LxAgA2Bm0pT" - }, - { - id: "ZddwSsiUgZ8" - }, - { - id: "Yl8UKSTO67F" - }, - { - id: "MtfWCbwa642" - }, - { - id: "zsXEXZmu6Yw" - }, - { - id: "Zq9ATbrmKIa" - }, - { - id: "DJr17K6RWzO" - }, - { - id: "EVkm2xYcf6Z" - }, - { - id: "ztBrg9qunbt" - }, - { - id: "BguNKdpxjhm" - }, - { - id: "SVT9bPZYGIP" - }, - { - id: "JOwgBUshZbD" - }, - { - id: "qK93EXF2leZ" - }, - { - id: "YQoiLO0wW9c" - }, - { - id: "g7lwEV8YnDI" - }, - { - id: "x9Yha6Bh3RA" - }, - { - id: "ewEGG99XfMp" - }, - { - id: "CahLNSzbBpq" - }, - { - id: "jd6BGbckMLk" - }, - { - id: "m0XorV4WWg0" - }, - { - id: "EXbPGmEUdnc" - }, - { - id: "nsu5qQPSbmC" - }, - { - id: "VC76hlMJ8Sn" - }, - { - id: "E19k4iMWltN" - }, - { - id: "lYIM1MXbSYS" - }, - { - id: "dmdYffw2I0F" - }, - { - id: "f8iguhYJHxi" - }, - { - id: "HHc5HDPFlXy" - }, - { - id: "jRSMyGwWpgG" - }, - { - id: "HQoxFu4lYPS" - }, - { - id: "zCSWBz2pyMd" - }, - { - id: "JiEz2VDLwHY" - }, - { - id: "DaYbnmWAdej" - }, - { - id: "aLA5KT9vmcO" - }, - { - id: "Mqh89YdVBta" - }, - { - id: "jjVHfP0FWJM" - }, - { - id: "QYNZAoEMnXz" - }, - { - id: "nmuJUIvCOD7" - }, - { - id: "PuZOFApTSeo" - }, - { - id: "d9DswmF2WMr" - }, - { - id: "JZraNIfZ5JM" - }, - { - id: "KSdZwrU7Hh6" - }, - { - id: "R5Lb5QQGX7h" - }, - { - id: "aNcQexQPIkM" - }, - { - id: "CZuxmHjqpGK" - }, - { - id: "yG6fyAnQWCu" - }, - { - id: "GfSPTQGs3kE" - }, - { - id: "n0WeUOPcAwp" - }, - { - id: "NadEpHzevJj" - }, - { - id: "gtsQXHLGam2" - }, - { - id: "cwdAq1qSfEc" - }, - { - id: "p4JXdGK2NxW" - }, - { - id: "EMD1WemnCBW" - }, - { - id: "lpQvlm9czYE" - }, - { - id: "BgOhMcH9bxq" - }, - { - id: "wVK6JEUa3dg" - }, - { - id: "i7qaYfmGVDr" - }, - { - id: "qthyWVbotQC" - }, - { - id: "SpXVXzLd4J7" - }, - { - id: "VNwopsb7kn9" - }, - { - id: "RAm8A7loeoh" - }, - { - id: "NLN0MvWv9tl" - }, - { - id: "Xu0K6Z3qNO2" - }, - { - id: "FRr5D0NPON7" - }, - { - id: "M721NHGtdZV" - }, - { - id: "R2JKPCa46HW" - }, - { - id: "WgRFdBTdfQi" - }, - { - id: "K6oyIMh7Lee" - }, - { - id: "eoYV2p74eVz" - }, - { - id: "MU5VPuk3rW5" - }, - { - id: "PYMvB4nTFST" - }, - { - id: "Mv8OFlBpIPu" - }, - { - id: "V7Pjg9rw6N0" - }, - { - id: "OtWItoNqhys" - }, - { - id: "Q0n5FKoUS6l" - }, - { - id: "K3jhn3TXF3a" - }, - { - id: "QLFj5cZQWLj" - }, - { - id: "VH8vOjm0l8w" - }, - { - id: "Sgwptmcdflt" - }, - { - id: "yY8WLY9gRhm" - }, - { - id: "huf8ceU9WYg" - }, - { - id: "p9TMrt2mad3" - }, - { - id: "e1kLtVA3TED" - }, - { - id: "q6r94UZtgFo" - }, - { - id: "bM4Ky73uMao" - }, - { - id: "uYTq3TEO2a9" - }, - { - id: "Cjm8qD18Tr6" - }, - { - id: "nR7quusz3YP" - }, - { - id: "ZVsFK9S7iCz" - }, - { - id: "t8FylEz1hCS" - }, - { - id: "HZj9UP8uBXt" - }, - { - id: "RNGpZqutw3Y" - }, - { - id: "bT61pZ5HhoC" - }, - { - id: "rCKWdLr4B8K" - }, - { - id: "Vd1VRROd6Yy" - }, - { - id: "XiORvSsxn6s" - }, - { - id: "KcfIT29zGR7" - }, - { - id: "PhYZwGdtc6z" - }, - { - id: "wbtk73Zwhj9" - }, - { - id: "z5f0B6XGCmu" - }, - { - id: "AbLXaU1VKr2" - }, - { - id: "aKS2NUuvDBI" - }, - { - id: "xIKjidMrico" - }, - { - id: "mmpRXEalGoK" - }, - { - id: "IgtkLK0QFdh" - }, - { - id: "FvlL9KrAuYY" - }, - { - id: "YIxNlLm0yes" - }, - { - id: "rMLOSHsF0Yr" - }, - { - id: "GAvxcmr5jB1" - }, - { - id: "FAiKX1Jusu1" - }, - { - id: "h9q3qixffZT" - }, - { - id: "lemiKyVbgZn" - }, - { - id: "Hw1gDxNAYDL" - }, - { - id: "XtuhRhmbrJM" - }, - { - id: "QaPiKeYunF8" - }, - { - id: "PHo0IV7Vk50" - }, - { - id: "SFQblJrFblm" - }, - { - id: "pzbyaPNmCq6" - }, - { - id: "vPz4Irz7sxR" - }, - { - id: "LQHcC0TpbgQ" - }, - { - id: "m8aR0OQcDHv" - }, - { - id: "xd7F2Vnojzu" - }, - { - id: "lJTycmnbJIZ" - }, - { - id: "lKyrJXUZ7YS" - }, - { - id: "Z3mlfLeGQKp" - }, - { - id: "fNWPolZ9PMP" - }, - { - id: "DXegteybeb5" - }, - { - id: "Lci2Z5GKzx0" - }, - { - id: "a7doBBQzhJO" - }, - { - id: "l0ccv2yzfF3" - }, - { - id: "KMM6ALhQajz" - }, - { - id: "b7cYhnrFPUE" - }, - { - id: "MrfgzMnTIIW" - }, - { - id: "d6U5WUIGdJ7" - }, - { - id: "U1Y7swBzvRH" - }, - { - id: "qAFXoNjlZCB" - }, - { - id: "ejHozNnIdYG" - }, - { - id: "i6TCJEwssdE" - }, - { - id: "gtz3H5ccKZp" - }, - { - id: "lBkL9Poo7Xi" - }, - { - id: "RzfY7S4ALSH" - }, - { - id: "BqgmdYb2XTD" - }, - { - id: "fCFdj2T0Bq1" - }, - { - id: "S6KDC0jVhmD" - }, - { - id: "lscAsvBERtm" - }, - { - id: "PC3Ag91n82e" - }, - { - id: "ukvQBoBpWC1" - }, - { - id: "DMnt8N2ad3d" - }, - { - id: "DFNIFugTNcZ" - }, - { - id: "erqWTArTsyJ" - }, - { - id: "RFbtLkjhCUO" - }, - { - id: "mwN7QuEfT8m" - }, - { - id: "MBtmOhLs7y1" - }, - { - id: "E7LyAixSNEK" - }, - { - id: "p5vBB8iIOOy" - }, - { - id: "rXLor9Knq6l" - }, - { - id: "i6ZbkohHBsj" - }, - { - id: "Vcj6JJPBiSt" - }, - { - id: "M5gKSBoxeep" - }, - { - id: "iB2ZwGB842F" - }, - { - id: "pD8vik52aMk" - }, - { - id: "fvytjjnlQlK" - }, - { - id: "q3IbFJqsrvz" - }, - { - id: "lekPjgUm0o2" - }, - { - id: "ZALwM386w0T" - }, - { - id: "GTOQ2d0t0do" - }, - { - id: "SXWM1Q8m1GN" - }, - { - id: "dndTPmwDGyL" - }, - { - id: "rDfBWRlOOzD" - }, - { - id: "HFyjUvMjQ8H" - }, - { - id: "AVIZ5ZmCfA9" - }, - { - id: "sNBBf6HAaH7" - }, - { - id: "aVrmuhgPS9w" - }, - { - id: "Xu84rwlxASh" - }, - { - id: "QwMiPiME3bA" - }, - { - id: "zUdyiCV4CIs" - }, - { - id: "BVbil8QSUb3" - }, - { - id: "JQgs5AHDtid" - }, - { - id: "c7zBrtqOsf1" - }, - { - id: "XWRW9uHOlji" - }, - { - id: "Dw9I1vovUKY" - }, - { - id: "s2B7yvIFWwN" - }, - { - id: "rZa6Gr64Xq8" - }, - { - id: "dQgml7fcQXX" - }, - { - id: "rNaQEFRINbd" - }, - { - id: "r93q83kZoR9" - }, - { - id: "KCKsJOVndMZ" - }, - { - id: "L7gCR3dZF7x" - }, - { - id: "xE0XNP4e8vw" - }, - { - id: "F8uETYHaq9b" - }, - { - id: "TVII8EAwRTK" - }, - { - id: "yeuwqWrKjmt" - }, - { - id: "jHxL0gO9f2c" - }, - { - id: "sWZc9LfyOVb" - }, - { - id: "Z9QaI6sxTwW" - }, - { - id: "W6WHgzudBLK" - }, - { - id: "BnVjTzwis3o" - }, - { - id: "AlLmKZIIIT4" - }, - { - id: "V4ryZDSqFEK" - }, - { - id: "pJtnoiKxxMK" - }, - { - id: "AGrsLyKWrVX" - }, - { - id: "WoXiD46mGLe" - }, - { - id: "TkhwySsXC5V" - }, - { - id: "Csfn91puNQJ" - }, - { - id: "MppeufK8EIn" - }, - { - id: "vHkm3AJs1fm" - }, - { - id: "isppoCyGeei" - }, - { - id: "WJOMQq7KDBR" - }, - { - id: "JVnOe8yAq8N" - }, - { - id: "iTdfO09Pzko" - }, - { - id: "OgkR7quvLp7" - }, - { - id: "KFhJrkqnrnb" - }, - { - id: "ywHRE9TZ7CG" - }, - { - id: "esMAQ4vs4kM" - }, - { - id: "RN4xlSim6P3" - }, - { - id: "oXhpGsnm8Al" - }, - { - id: "tpeEG9eMRs5" - }, - { - id: "YnuwSqXPx9H" - }, - { - id: "NGJpKYKBer0" - }, - { - id: "OptJ7lOSfhV" - }, - { - id: "j0Dh90jG7Bj" - }, - { - id: "yDFM5J6WeKU" - }, - { - id: "EQc3n1juPFn" - }, - { - id: "vJ5mIf3sMgQ" - }, - { - id: "Nc0Jyfl41Fh" - }, - { - id: "VwOK4c13bDS" - }, - { - id: "YVdXYdu7Nqd" - }, - { - id: "M1qT3oCDwLF" - }, - { - id: "cyWSuKy2Kxx" - }, - { - id: "QuzM0smriDe" - }, - { - id: "awrM2eC2drd" - }, - { - id: "HluzDcVACRb" - }, - { - id: "oKwe9PMQhgo" - }, - { - id: "SQz3xtx1Sgr" - }, - { - id: "xIMxph4NMP1" - }, - { - id: "QCnJDmNjQy0" - }, - { - id: "Mi4Ax9suQmB" - }, - { - id: "LmRTf03IFkA" - }, - { - id: "EDHO4qOyY88" - }, - { - id: "WAjjFMDJKcx" - }, - { - id: "wcMOF23a1iw" - }, - { - id: "EeCYRgueWay" - }, - { - id: "IdXZ8KjGdlh" - }, - { - id: "JQr6TJx5KE3" - }, - { - id: "XQNCmYG6Whk" - }, - { - id: "iIpPPnnzDo6" - }, - { - id: "xLcBMDfJA1C" - }, - { - id: "iKAl5SWJrSK" - }, - { - id: "aiMSdypuNTg" - }, - { - id: "nc6vPP1N00J" - }, - { - id: "AjElim7bJSx" - }, - { - id: "msH78gZ7Fe6" - }, - { - id: "nuzj6P2AUM4" - }, - { - id: "Wg3UgsYrKlq" - }, - { - id: "Ucvn27dv6BC" - }, - { - id: "oIgBLlEo6eH" - }, - { - id: "mhb7WAKFGyQ" - }, - { - id: "duGLGssecoD" - }, - { - id: "e9iwTgr6lYJ" - }, - { - id: "rqG9HUvb3R9" - }, - { - id: "APf6lrzVwj2" - }, - { - id: "AkxQa6jQIJg" - }, - { - id: "xqd3HhbaMtp" - }, - { - id: "W5uwdNcVITg" - }, - { - id: "pcA1rkwOxbI" - }, - { - id: "qIwuQ4oLKC1" - }, - { - id: "VQ3bsgV1rc5" - }, - { - id: "q8uq6vpnjFi" - }, - { - id: "b3EU6KFCkub" - }, - { - id: "KzwP3CMWKGJ" - }, - { - id: "wP35CkKPKyv" - }, - { - id: "slWlW8NVuhi" - }, - { - id: "TzaGNKPDcuZ" - }, - { - id: "mKy8F58RNxW" - }, - { - id: "ke2gwHKHP3z" - }, - { - id: "wJhMpTNkoiO" - }, - { - id: "aSxNNRxPuBP" - }, - { - id: "O4B6S4LdiV5" - }, - { - id: "wg1JmqwahUh" - }, - { - id: "KHwOdsjEU9x" - }, - { - id: "sXZDTI7A8V8" - }, - { - id: "HRBg9rjmgNb" - }, - { - id: "DzJDJTl7xia" - }, - { - id: "uitVbo06tpi" - }, - { - id: "ZJPxnDs9bfO" - }, - { - id: "ygWPaPAngpd" - }, - { - id: "xRsoZIRmnt4" - }, - { - id: "sAO5hEWo4z5" - }, - { - id: "NqLYdlnK8sc" - }, - { - id: "MpcMjLmbATv" - }, - { - id: "eAI9ceJBSjl" - }, - { - id: "n3MRjKtwr3O" - }, - { - id: "Wc4vEGMjCjY" - }, - { - id: "ls4mOkNLjL9" - }, - { - id: "LNGluubHKwQ" - }, - { - id: "Id3FvX3GrwV" - }, - { - id: "nwK9gdlYTIP" - }, - { - id: "gP6hn503KUX" - }, - { - id: "acSIjDxIu3C" - }, - { - id: "hwzx6HWLaub" - }, - { - id: "hhF9Nwg2oy3" - }, - { - id: "IeAjqsC1ku7" - }, - { - id: "iHQVo7h7KOQ" - }, - { - id: "aq5knOnYVtW" - }, - { - id: "qtr8GGlm4gg" - }, - { - id: "aVlSMMvgVzf" - }, - { - id: "LS7fn234S9g" - }, - { - id: "n2CzrOFHflh" - }, - { - id: "iwAJl0kv6En" - }, - { - id: "ELzMcGisGqi" - }, - { - id: "Jm2z9TI6awk" - }, - { - id: "ciYRn4vdo2r" - }, - { - id: "vXuHPgzMVXa" - }, - { - id: "NdNNYcak8px" - }, - { - id: "Enl6oNeQkbF" - }, - { - id: "rbQkVTX1cAj" - }, - { - id: "Jxs1MKUjhxL" - }, - { - id: "P69SId31eDp" - }, - { - id: "qVWBrtcaEpc" - }, - { - id: "rvyM1Po98LX" - }, - { - id: "SCY3falEcJD" - }, - { - id: "MLQzJUNXkGb" - }, - { - id: "wP1zsnNxbSE" - }, - { - id: "mhWSEv79IJW" - }, - { - id: "rLpWq6vu7RP" - }, - { - id: "sFgNRYS5pBo" - }, - { - id: "G9whWBxuzKi" - }, - { - id: "lmjC0XitRfk" - }, - { - id: "gUPhNWkSXvD" - }, - { - id: "SVEfwJ0BGeD" - }, - { - id: "Z3qExYRw8yt" - }, - { - id: "B2obDRMclXM" - }, - { - id: "AZhwISa6QHW" - }, - { - id: "EfnAboGQLxc" - }, - { - id: "Z9ny6QeqsgX" - }, - { - id: "lAYbqGWZLhe" - }, - { - id: "VYwQVvXceME" - }, - { - id: "JUa8VsCXNoT" - }, - { - id: "CAK6tMitZah" - }, - { - id: "cfOROU83UtC" - }, - { - id: "yBAbJkEabiq" - }, - { - id: "SzZZCMKE6bR" - }, - { - id: "gE3gEGZbQMi" - }, - { - id: "qY69kbmJszK" - }, - { - id: "K2QJ8GHOTdn" - }, - { - id: "nlfUpdDWfry" - }, - { - id: "ZlUc0Xg8DBQ" - }, - { - id: "QYE5xUAhLdU" - }, - { - id: "jdZWJAMCoJf" - }, - { - id: "iPfENtZjvw5" - }, - { - id: "rCqFv1rEWDj" - }, - { - id: "TcQ6elHuhF4" - }, - { - id: "GhlGy3E9062" - }, - { - id: "xATvj8pdYoT" - }, - { - id: "TgsSBveFya6" - }, - { - id: "CIzmzfVIRil" - }, - { - id: "gQjEW99U7uP" - }, - { - id: "BH7rDkWjUqc" - }, - { - id: "lQ4xBMNlNo7" - }, - { - id: "W3t0pSZLtrC" - }, - { - id: "pk7bUK5c1Uf" - }, - { - id: "s7SLtx8wmRA" - }, - { - id: "y0lVBOxZ8rg" - }, - { - id: "KerdFMEvudA" - }, - { - id: "DWRblnjr7iu" - }, - { - id: "NwX8noGxLoz" - }, - { - id: "rnTuDT0QWRN" - }, - { - id: "is3w3HROKVc" - }, - { - id: "JKdMirJ02nv" - }, - { - id: "qoDNCkXepGV" - }, - { - id: "ZOaH2Sa9XVO" - }, - { - id: "UCEjSQB7b3h" - }, - { - id: "iRdLdLA0uNu" - }, - { - id: "LFoc1dglD7m" - }, - { - id: "qKaOljktnHq" - }, - { - id: "sqjgmc0RlQk" - }, - { - id: "w0QDch3dyPH" - }, - { - id: "BhmUfafilAA" - }, - { - id: "EvvMi4UlwMc" - }, - { - id: "zm9breCeT1m" - }, - { - id: "q3fs3NVlOEN" - }, - { - id: "hkaZh4A0WBo" - }, - { - id: "J8SpkWBy3wp" - }, - { - id: "DYSYH4fblSk" - }, - { - id: "ovOUo5jrC22" - }, - { - id: "YakeBgSsbOx" - }, - { - id: "vE0Sx9doaLj" - }, - { - id: "JemZqD90S44" - }, - { - id: "jVDUkOBCjDy" - }, - { - id: "sqRXIm3ZRAD" - }, - { - id: "D2MlHBjMK26" - }, - { - id: "LclKnZUAXJ1" - }, - { - id: "XBHuMdmlExu" - }, - { - id: "qghfVf1FWx2" - }, - { - id: "WIS2aSxaHKM" - }, - { - id: "HJ6XPsddD52" - }, - { - id: "MBi07H0IQKo" - }, - { - id: "eQy2FJ9EtXL" - }, - { - id: "fAsj6a4nudH" - }, - { - id: "IOznsQPh0eT" - }, - { - id: "hHkDZW9AaeC" - }, - { - id: "yzpBZ6WONMz" - }, - { - id: "ZgrJfynih78" - }, - { - id: "u1LpzuLP79U" - }, - { - id: "dOSiQNrW1BE" - }, - { - id: "Bift1B4gjru" - }, - { - id: "cDw53Ej8rju" - }, - { - id: "n7P2cG72iAQ" - }, - { - id: "mfy7Wbj9Shf" - }, - { - id: "a1hPfxRBAt4" - }, - { - id: "RX6B2wUWPrC" - }, - { - id: "WxMIZC6Cxqs" - }, - { - id: "CoGS2rMy5EO" - }, - { - id: "mE3HjykT1B8" - }, - { - id: "WcFNj1xjROd" - }, - { - id: "YNO3ZNvnk5q" - }, - { - id: "mEoJIrcgrA4" - }, - { - id: "H9ayxSSXG0x" - }, - { - id: "jVqoXv7rFns" - }, - { - id: "CihQ0kL7YI0" - }, - { - id: "Eb9RE5pv3ow" - }, - { - id: "C0f0alOlbpX" - }, - { - id: "dnAY9Xcx1Rq" - }, - { - id: "hLGRTw9HMzk" - }, - { - id: "RuZFg0DMg0e" - }, - { - id: "jTKaRAjxpnr" - }, - { - id: "R95g2g0ShvJ" - }, - { - id: "zw8HAdV98ZC" - }, - { - id: "hIpcmjLrDDW" - }, - { - id: "AEEhBQXfAJs" - }, - { - id: "VWJfRi9TVeu" - }, - { - id: "KctpIIucige" - }, - { - id: "FrmnHp1CyjR" - }, - { - id: "l4bBkadoPEJ" - }, - { - id: "wd0F1779Aj9" - }, - { - id: "IoLWBXJDOn1" - }, - { - id: "L4r7HZMiUnM" - }, - { - id: "FRxcUEwktoV" - }, - { - id: "g7NtNMbOQl3" - }, - { - id: "G7eJd6nSghG" - }, - { - id: "cWJ7hzzHdTV" - }, - { - id: "oCY8DaRvfZf" - }, - { - id: "Zwws5CQatMx" - }, - { - id: "iP4fRh8EHmF" - }, - { - id: "cnvDuTQ2CJL" - }, - { - id: "kMsHZRoNDNv" - }, - { - id: "qx8ozr7t7nB" - }, - { - id: "PKaC6hSkP7a" - }, - { - id: "IWM4eKPJJSc" - }, - { - id: "EZIMUaUD8AJ" - }, - { - id: "J1x66stNjk2" - }, - { - id: "HgQCFkML87Y" - }, - { - id: "aS2x3vkYvGp" - }, - { - id: "sAZZwifAr7z" - }, - { - id: "TNbHYOuQi8s" - }, - { - id: "wqb1glTqOuN" - }, - { - id: "TbiRD4Bsz4Z" - }, - { - id: "KnwLGQlW0iw" - }, - { - id: "Nv8dtry2e6e" - }, - { - id: "BJ3DJFBKwBR" - }, - { - id: "kyVsWxM5xpz" - }, - { - id: "poXLW7j5eUG" - }, - { - id: "ceQRFYQJ7Lg" - }, - { - id: "pw5wPMjAv96" - }, - { - id: "tePTZNauNtp" - }, - { - id: "ZzdTFqWrlDa" - }, - { - id: "BD9gU0GKlr2" - }, - { - id: "iZ6tzScHrd7" - }, - { - id: "h2D4Pc8AtLL" - }, - { - id: "XjpmsLNjyrz" - }, - { - id: "N9cKNnintUD" - }, - { - id: "tR6e8k99ODA" - }, - { - id: "CebtBqqp1fp" - }, - { - id: "TG841V5TUjf" - }, - { - id: "c497ZoB22oT" - }, - { - id: "AwflfVNpl2E" - }, - { - id: "BmTVMvJHVBO" - }, - { - id: "xO9WbCvFq5k" - }, - { - id: "RTixJpRqS4C" - }, - { - id: "EgDDvkPK3Sr" - }, - { - id: "Sw9P7yocbIE" - }, - { - id: "hCRqN3S7mvi" - }, - { - id: "oolcy5HBlMy" - }, - { - id: "pzpiH6wt7b7" - }, - { - id: "wNYYRm2c9EK" - }, - { - id: "dcCQqqorPO9" - }, - { - id: "D74c9A9m4Hq" - }, - { - id: "ALs1TcrrsDS" - }, - { - id: "wSHfjjFqUay" - }, - { - id: "fQkfMcFH0Xk" - }, - { - id: "xlDvsb6kxze" - }, - { - id: "DcmSvQd5N8c" - }, - { - id: "YUVOLvd05AE" - }, - { - id: "rUoqnP86L2E" - }, - { - id: "xPU0osaqkZX" - }, - { - id: "Ln9YDxpUyga" - }, - { - id: "PysJIi3VIol" - }, - { - id: "ZOZ4s2gTPj7" - }, - { - id: "poFeGPc400T" - }, - { - id: "srY0AxIpIVk" - }, - { - id: "tMk3Djk2RPh" - }, - { - id: "Z8Cm76B2726" - }, - { - id: "Vh1fsWOYcv1" - }, - { - id: "j0Mtr3xTMjM" - }, - { - id: "gfk1TNPI4wN" - }, - { - id: "CG4QD1HC3h4" - }, - { - id: "xQIU41mR69s" - }, - { - id: "WUQrS4Yqmoy" - }, - { - id: "CvXrokTtZh6" - }, - { - id: "dEnVMT8KigA" - }, - { - id: "hD90OKY1eqC" - }, - { - id: "m00wB3h3vPb" - }, - { - id: "iMSTuCsVerx" - }, - { - id: "SFQigiC2ISS" - }, - { - id: "lsUHC2VPbZP" - }, - { - id: "ivSrurTYLbk" - }, - { - id: "AHwKo0BrVSX" - }, - { - id: "vQYIk5G9NxP" - }, - { - id: "yxWgtnhFyMO" - }, - { - id: "cmWTK3wgzXQ" - }, - { - id: "QZVlKun3NjS" - }, - { - id: "VfxUdTtVcAL" - }, - { - id: "yP2nhllbQPh" - }, - { - id: "FHwmVcGuIQk" - }, - { - id: "nxvO0IkxI2B" - }, - { - id: "qRY6vngpkET" - }, - { - id: "gOgqOCQYdaC" - }, - { - id: "f6xGA6BZBLO" - }, - { - id: "QywkxFudXrC" - }, - { - id: "K5wBtEzE2qJ" - }, - { - id: "lL2LBkhlsmV" - }, - { - id: "z2X1vurdKjs" - }, - { - id: "CwxzbQzzHll" - }, - { - id: "PVvkHnLCRub" - }, - { - id: "XuGfiry96Bg" - }, - { - id: "mgDNpSYDR2i" - }, - { - id: "emXfKpymvVL" - }, - { - id: "Gt9rJxzdcdE" - }, - { - id: "EMLsRKB3O9g" - }, - { - id: "lzz1UhTzO4E" - }, - { - id: "xLL8E42eDho" - }, - { - id: "fspUWQx17AT" - }, - { - id: "QIp6DHlMGfb" - }, - { - id: "nGb94wPdcqx" - }, - { - id: "DpyDh5wQoGh" - }, - { - id: "SQTPktns35S" - }, - { - id: "fUxVOkpX3yi" - }, - { - id: "zbz3PIscPzD" - }, - { - id: "aQoqXL4cZaF" - }, - { - id: "vBQzLWajd2g" - }, - { - id: "KjguLUoJs8E" - }, - { - id: "yWhxXlPgUTM" - }, - { - id: "o1k9rQb9g2z" - }, - { - id: "cMNl5fYidCg" - }, - { - id: "bVZTNrnfn9G" - }, - { - id: "K3k64jslIlL" - }, - { - id: "x8SUTSsJoeO" - }, - { - id: "ELrilIB7yIR" - }, - { - id: "G6UMfezPqze" - }, - { - id: "jkyBvNzcTLl" - }, - { - id: "voQXVNftP4W" - }, - { - id: "ET2dJL1qVHh" - }, - { - id: "upKuGnxhxJA" - }, - { - id: "yMCshbaVExv" - }, - { - id: "up9gjdODKXE" - }, - { - id: "m5wSq1tCwhN" - }, - { - id: "HMEN3AsXCdJ" - }, - { - id: "TrmusBXxLm3" - }, - { - id: "S8vC8eUPHNj" - }, - { - id: "MNJReCDqWEz" - }, - { - id: "pvZTcaKK9C6" - }, - { - id: "fwxkctgmffZ" - }, - { - id: "g5UC62FBloI" - }, - { - id: "TJA0eGRoRpc" - }, - { - id: "KVn5fnK1y8t" - }, - { - id: "EUUkKEDoNsf" - }, - { - id: "YQ3csPLAlrn" - }, - { - id: "PwoQgMJNWbR" - }, - { - id: "ePuy1RNXaFU" - }, - { - id: "VP397wRvePm" - }, - { - id: "zerKCK3Ncn3" - }, - { - id: "aHs9PLxIdbr" - }, - { - id: "N3tpEjZcPm9" - }, - { - id: "uC8SoUvGjuF" - }, - { - id: "QuMiCgDs8cB" - }, - { - id: "guDOChjSGvN" - }, - { - id: "cDvT5D5ptAO" - }, - { - id: "FgYDmGwmpEU" - }, - { - id: "SbJs5cqXDlv" - }, - { - id: "sgcHQEaB40Y" - }, - { - id: "yf1TrU7Vfhk" - }, - { - id: "JLmpmvulte0" - }, - { - id: "DPKaN8PGYzf" - }, - { - id: "Zp2Yi4j2AAH" - }, - { - id: "K1fAArHJZFj" - }, - { - id: "eIQbndfxQMb" - }, - { - id: "ZGHtM1ou2fs" - }, - { - id: "jGDeUfXtmX7" - }, - { - id: "Jo8r6czq32Z" - }, - { - id: "BbXyAY49f5A" - }, - { - id: "NRPCjDljVtu" - }, - { - id: "fQxnuYyALNR" - }, - { - id: "jeRid8cKf3H" - }, - { - id: "a0MqrrOwWiu" - }, - { - id: "AWbvdyGIjLW" - }, - { - id: "bPqP6eRfkyn" - }, - { - id: "g704qWV3hEo" - }, - { - id: "tdXFMATR7Xu" - }, - { - id: "EcklTgiE7vX" - }, - { - id: "ShdRyzuLKA2" - }, - { - id: "sqgxmk27Zec" - }, - { - id: "qDSjVCb94M1" - }, - { - id: "D21JqRLIRMK" - }, - { - id: "Q4j2vs04v7h" - }, - { - id: "bX4VGIuPe0i" - }, - { - id: "EQnfnY03sRp" - }, - { - id: "t7bcrWLjL1m" - }, - { - id: "WdFFVSdqPmU" - }, - { - id: "Rr71mI9GJ0K" - }, - { - id: "VhnAWBJphc4" - }, - { - id: "dRigs62u5z1" - }, - { - id: "kqXJc3f9lTL" - }, - { - id: "pRHGAROvuyI" - }, - { - id: "HmT4gudRgSw" - }, - { - id: "pvwB2y1fXO3" - }, - { - id: "EfWCa0Cc8WW" - }, - { - id: "m3QGt8fY3L0" - }, - { - id: "wYTBPsNSraj" - }, - { - id: "fkggXsPoBkP" - }, - { - id: "nnilAOaSqli" - }, - { - id: "Yc8Cmr5XS4B" - }, - { - id: "FlBemv1NfEC" - }, - { - id: "KiheEgvUZ0i" - }, - { - id: "Wa6t6xbPoMh" - }, - { - id: "XglyerJlvLj" - }, - { - id: "xVaAo6qUVZe" - }, - { - id: "UxpUYgdb4oU" - }, - { - id: "dOuvjKSD6Hn" - }, - { - id: "IGCNbKZeeY5" - }, - { - id: "eXxcXRbu9cE" - }, - { - id: "pdF4XIHIGPx" - }, - { - id: "JZQk3w8sldD" - }, - { - id: "U4rDX9YlXys" - }, - { - id: "g4rWlg3FKUP" - }, - { - id: "NAxk1atfa7V" - }, - { - id: "kI0SufQ7aHj" - }, - { - id: "lxxASQqPUqd" - }, - { - id: "ny5xGrgFbt4" - }, - { - id: "ReaYfNwZ3Ri" - }, - { - id: "mryxrsqoTOf" - }, - { - id: "wc87kBLKL9E" - }, - { - id: "NNzcAXJIFrW" - }, - { - id: "dDSgv7NDUHv" - }, - { - id: "Qqed2D85sDL" - }, - { - id: "pqqtwJyy4km" - }, - { - id: "bnP1bAemxy1" - }, - { - id: "Zc5gvyjaSUb" - }, - { - id: "I9Du5dDmb5c" - }, - { - id: "P2WqNppWhpH" - }, - { - id: "W5fN3G6y1VI" - }, - { - id: "VF7LfO19vxS" - }, - { - id: "duINhdt3Yay" - }, - { - id: "Eyqyhztf8G1" - }, - { - id: "fA43H8Ds0Ja" - }, - { - id: "epAXoMcUZ7Z" - }, - { - id: "OUPkxfQld8y" - }, - { - id: "ldXIdLNUNEn" - }, - { - id: "r2TlHQ3PA6b" - }, - { - id: "KuR0y0h0mOM" - }, - { - id: "QYTlBnbOQc2" - }, - { - id: "f90eISKFm7P" - }, - { - id: "DlGaPAUaOvW" - }, - { - id: "rwgK8TkRwHl" - }, - { - id: "w0woO8XTlaW" - }, - { - id: "plnHVbJR6p4" - }, - { - id: "XQudzejlhJZ" - }, - { - id: "oCC1QKfF35y" - }, - { - id: "jCnyQOKQBFX" - }, - { - id: "n9HIySyR00g" - }, - { - id: "F2TAF765q1b" - }, - { - id: "CF0cFke6jiS" - }, - { - id: "FZxJ0KST9jn" - }, - { - id: "iaTSPSIVkSY" - }, - { - id: "DzAOqCf0ots" - }, - { - id: "lrnUABSHIFZ" - }, - { - id: "m7fBMpmVpSM" - }, - { - id: "c2NsG9JYWke" - }, - { - id: "BPzLs44ahIt" - }, - { - id: "oRiPgfOl9lq" - }, - { - id: "vHxNPlpdGpt" - }, - { - id: "cgP9X69GJQG" - }, - { - id: "caUqmDQjhe3" - }, - { - id: "QjsT50Xvf0Z" - }, - { - id: "q1O6MvgFZxp" - }, - { - id: "pg4MKQIQ2Jo" - }, - { - id: "sARzegYzuRQ" - }, - { - id: "SAhwDYs1RSD" - }, - { - id: "RTZPIa5HdU4" - }, - { - id: "KijawwvGExH" - }, - { - id: "K4y5pfOzlUO" - }, - { - id: "u6ZBka0T5wh" - }, - { - id: "Xy6Uu2lOc5h" - }, - { - id: "zpJovpBBfKM" - }, - { - id: "USQdmvrHh1Q" - }, - { - id: "Kq1uajqoUFk" - }, - { - id: "CwSv8Hsi7g8" - }, - { - id: "mCsrHgInpyg" - }, - { - id: "fmkqsEx6MRo" - }, - { - id: "Snb7KcCPUbh" - }, - { - id: "xzhG4p5lZnH" - }, - { - id: "AYdCrKEbzUu" - }, - { - id: "brnL0W3Fbsj" - }, - { - id: "p2cHs4bwern" - }, - { - id: "n32Do23x95z" - }, - { - id: "hnAcBh8UTrz" - }, - { - id: "h6EBpyeYXQX" - }, - { - id: "fwOsBKgfVi7" - }, - { - id: "cNAp6CJeLxk" - }, - { - id: "NeNJgIg8uHE" - }, - { - id: "rUTnT6Q9FYl" - }, - { - id: "EYzPUgNX3VC" - }, - { - id: "Q6Lhtm8s3Lv" - }, - { - id: "Bqzf3zcPFRk" - }, - { - id: "Jw2cH3eKRyl" - }, - { - id: "Jw4MoZMn7ts" - }, - { - id: "RfuZfAgIWmu" - }, - { - id: "geVF87N7qTw" - }, - { - id: "PduUQmdt0pB" - }, - { - id: "Xx2UQbqVvvo" - }, - { - id: "hbRI6YtqRhR" - }, - { - id: "nlt6j60tCHF" - }, - { - id: "ObV5AR1NECl" - }, - { - id: "OpTjTojwTW4" - }, - { - id: "JzhBBw5KHNs" - }, - { - id: "CvBAqD6RzLZ" - }, - { - id: "gAAkigtY7Cp" - }, - { - id: "wysrzjjmlFV" - }, - { - id: "m73lWmo5BDG" - }, - { - id: "mDvggfOIXuy" - }, - { - id: "L5QegIyR0Jd" - }, - { - id: "vBZeqBsk4t8" - }, - { - id: "AztUK2qVbeo" - }, - { - id: "UdQeIZ9knyI" - }, - { - id: "BrymZB4Qrpm" - }, - { - id: "h7diHExBH9j" - }, - { - id: "ERwZBXlsbiX" - }, - { - id: "HcB2W6Fgp7i" - }, - { - id: "YMczwSLMzYy" - }, - { - id: "AuPFYAbG4CX" - }, - { - id: "uiLQhUgOlq5" - }, - { - id: "nVecYeuwXRF" - }, - { - id: "zrRnmB6gD18" - }, - { - id: "isTUxyVIfgc" - }, - { - id: "uXr25l4RTvw" - }, - { - id: "YO3cRz8LjQB" - }, - { - id: "AlG0apJE5cm" - }, - { - id: "EDJw2gYz0kM" - }, - { - id: "I2DzylqJa2i" - }, - { - id: "mgiXuaxaqvA" - }, - { - id: "ufEHhOGhjYe" - }, - { - id: "n64rIxNP3AG" - }, - { - id: "ldJltwJ3lJL" - }, - { - id: "Jw4lCv7xDGf" - }, - { - id: "mIbcTJvfdkl" - }, - { - id: "t66taqSF1mW" - }, - { - id: "ncGs9vXS36w" - }, - { - id: "VeXU3mndzri" - }, - { - id: "o2uR8KOdB1E" - }, - { - id: "oWFhMuTIIts" - }, - { - id: "rhr20eCsvtx" - }, - { - id: "eQT6PwZmFTy" - }, - { - id: "fGp4OcovQpa" - }, - { - id: "qOapebUavrO" - }, - { - id: "CvYsZipdHMN" - }, - { - id: "WvQbZzvzfGt" - }, - { - id: "Em1q3YcXORk" - }, - { - id: "EBWhrVyXPDJ" - }, - { - id: "GHMuykRYMYS" - }, - { - id: "c1PIzYM0pWO" - }, - { - id: "b8AdvPWYM2S" - }, - { - id: "T3wZvkH6nj6" - }, - { - id: "rDfwvqhOjEu" - }, - { - id: "tqs6r11O0Bc" - }, - { - id: "Ed2Y8qbg78R" - }, - { - id: "qWslk59QHkK" - }, - { - id: "mS4S4e5S9Ik" - }, - { - id: "ndan8zClk4E" - }, - { - id: "T3on7ZuRmEL" - }, - { - id: "UCj7SppzG83" - }, - { - id: "qisBi5ksxNW" - }, - { - id: "uGa5JtIMfRx" - }, - { - id: "WbSOPMUSIjq" - }, - { - id: "NqTZjfTIsxC" - }, - { - id: "TWKYuqVgH7m" - }, - { - id: "eFSB0KRDeXq" - }, - { - id: "JOrJQHKng8y" - }, - { - id: "DHbXXPpMgPm" - }, - { - id: "DE9QyykBO1Q" - }, - { - id: "DCn4ijMbf3H" - }, - { - id: "jSPLEMDwXN4" - }, - { - id: "WG0oLS9FrZu" - }, - { - id: "NLaVvvZ7h9a" - }, - { - id: "kMqgc7WLKM2" - }, - { - id: "rvl7h2TZpHu" - }, - { - id: "a4BeuPBNXnG" - }, - { - id: "vv1QJFONsT6" - }, - { - id: "YYWlNyNPPdZ" - }, - { - id: "H8RixfF8ugH" - }, - { - id: "TveoRAM7hSi" - }, - { - id: "OZHQ1puF7s4" - }, - { - id: "Hy9kbfZLbEu" - }, - { - id: "KvxbnHd7y84" - }, - { - id: "JSVVdczqZzV" - }, - { - id: "ZMrYua0m4nJ" - }, - { - id: "NHXpG74NWB7" - }, - { - id: "dS1yFsbOQHe" - }, - { - id: "BQ8OEJc9l11" - }, - { - id: "Kxtv3KavBA1" - }, - { - id: "iMDr2FG7i8Q" - }, - { - id: "zohdJWi6RFq" - }, - { - id: "qZNNDXDCF8K" - }, - { - id: "Uji6Ds4aqnF" - }, - { - id: "JVeWBag2e9y" - }, - { - id: "swcD9FvQp4j" - }, - { - id: "pb62QK3itU5" - }, - { - id: "xWIyicUgscN" - }, - { - id: "zdXSYH2Yc8D" - }, - { - id: "D8uoK8m9Bfi" - }, - { - id: "fLJQCVqUZTS" - }, - { - id: "ZUwoAwYI5VL" - }, - { - id: "XJI24bY3AN7" - }, - { - id: "OTn9VMNEkdo" - }, - { - id: "hZpaU5uFSDm" - }, - { - id: "g8DdBm7EmUt" - }, - { - id: "Rvmh5Y2ZCk5" - }, - { - id: "UXhPdIDuqsv" - }, - { - id: "DMxw0SASFih" - }, - { - id: "j1AYf7vKU55" - }, - { - id: "FclfbEFMcf3" - }, - { - id: "iqIB5RZL6eh" - }, - { - id: "qvKYtvSWzfW" - }, - { - id: "dlBDyABLexm" - }, - { - id: "gIJls1GgxI7" - }, - { - id: "OGaAWQD6SYs" - }, - { - id: "dqHvtpUqLwB" - }, - { - id: "EQVdDszrAXa" - }, - { - id: "JKhjdiwoQZu" - }, - { - id: "mHxwn8ncOJw" - }, - { - id: "tVNVfLo33lW" - }, - { - id: "yzlfbdvi3wz" - }, - { - id: "GCxQySHWl0s" - }, - { - id: "ubsjwFFBaJM" - }, - { - id: "QFkzkfSYmpX" - }, - { - id: "TEQlaapDQoK" - }, - { - id: "rH0VineUPKN" - }, - { - id: "yAqrRMyFbIn" - }, - { - id: "UtDSIYVwEND" - }, - { - id: "sK3Vu1aTikL" - }, - { - id: "I0NavaepNgA" - }, - { - id: "CXpI8mc7ULB" - }, - { - id: "sfFAasecThR" - }, - { - id: "l9K5iESJ5xr" - }, - { - id: "sw9k3FkcfSX" - }, - { - id: "gqtzCpBxN3w" - }, - { - id: "vyDPazinp6j" - }, - { - id: "o0BgK1dLhF8" - }, - { - id: "z01qogI8qS0" - }, - { - id: "Xnif5imKLlT" - }, - { - id: "GCbYmPqcOOP" - }, - { - id: "YBoWCLKBgAh" - }, - { - id: "MN9tytgcXBx" - }, - { - id: "TjZwphhxCuV" - }, - { - id: "yDkjEd6exF9" - }, - { - id: "nE01sGNCY5P" - }, - { - id: "hqvkeW5QBOJ" - }, - { - id: "t6S2MopeRaM" - }, - { - id: "NnGUNkc5Zq8" - }, - { - id: "ByxqoYgfaTc" - }, - { - id: "JopfwdVI9PM" - }, - { - id: "JzGRvFgl6XX" - }, - { - id: "R4ph8PWKReI" - }, - { - id: "PhR1PdMTzhW" - }, - { - id: "VIVevZf6pQ2" - }, - { - id: "eP4F9eB76B0" - }, - { - id: "G0ywuTVnvoj" - }, - { - id: "gh0ybckORun" - }, - { - id: "faWnwnREAkq" - }, - { - id: "PaqugoqjRIj" - }, - { - id: "tBRDdxfKbMx" - }, - { - id: "k1Y0oNqPlmy" - }, - { - id: "LkfEuHBjru3" - }, - { - id: "ReolvhEKnQ7" - }, - { - id: "guhl24YzVdM" - }, - { - id: "z234PZ30yaw" - }, - { - id: "MRePckvSGyw" - }, - { - id: "EFTcruJcNmZ" - }, - { - id: "e2M7aiZQE4e" - }, - { - id: "Vz7RM29OOsG" - }, - { - id: "kpDoH80fwdX" - }, - { - id: "dNT8lAL4zGo" - }, - { - id: "i9RXBEa9GoU" - }, - { - id: "ME2ZBDsuhqU" - }, - { - id: "JnV7u3yyjJD" - }, - { - id: "FiD5fxH9zRE" - }, - { - id: "jWDvj4X61DN" - }, - { - id: "qgi2SfJgoq1" - }, - { - id: "cWIiusmHULW" - }, - { - id: "weoL19nwuVZ" - }, - { - id: "YUPqnxcM7Nw" - }, - { - id: "DSBXsRQSXUW" - }, - { - id: "JQJjsXvHE5M" - }, - { - id: "gYkBwYHWcFb" - }, - { - id: "PWqwcBdRGIH" - }, - { - id: "fPmlxsOal96" - }, - { - id: "VImHQqBejjf" - }, - { - id: "UBZ4ww4Re1b" - }, - { - id: "al4GkB6X2X3" - }, - { - id: "RkO3q22RKYT" - }, - { - id: "e0RGds86ow6" - }, - { - id: "c78POlfGgBH" - }, - { - id: "g5ptsn0SFX8" - }, - { - id: "iE2MrXb0KHO" - }, - { - id: "JMts1T5U4D9" - }, - { - id: "c9CWZXvG3Xx" - }, - { - id: "EIV6tvzGBHw" - }, - { - id: "ThQSMOIT9Iw" - }, - { - id: "Fhzyc2hDVPT" - }, - { - id: "JYBHeUA6iMj" - }, - { - id: "hMBotMwWnU1" - }, - { - id: "X00V3yPaJ8X" - }, - { - id: "mOchMUVJPbo" - }, - { - id: "qwmh84DV65K" - }, - { - id: "IyxiFteC8xx" - }, - { - id: "h5SFcZt5G1I" - }, - { - id: "lPeZdUm9fD7" - }, - { - id: "hskJrToJM6X" - }, - { - id: "spPxq7tMKMC" - }, - { - id: "tHUYjt9cU6h" - }, - { - id: "IR1NJ1FJ5GU" - }, - { - id: "k8ZPul89UDm" - }, - { - id: "yOsdnlPvpxf" - }, - { - id: "MR9LHv3e9I3" - }, - { - id: "K00jR5dmoFZ" - }, - { - id: "hdQYFKD7y2Q" - }, - { - id: "xXYv82KlBUh" - }, - { - id: "Xk2fvz4aTBU" - }, - { - id: "ZjlSWouBQCf" - }, - { - id: "wByywkNKJ26" - }, - { - id: "C7FI0F7aHvG" - }, - { - id: "hxHaqqMaIjO" - }, - { - id: "u1zgw8xV6sX" - }, - { - id: "WT6JLfyR9lL" - }, - { - id: "yvDKjcRRQsR" - }, - { - id: "Srnpwq8jKbp" - }, - { - id: "tfreCWQXBNA" - }, - { - id: "NpHsnQ2L1oY" - }, - { - id: "DvzKyuC0G4w" - }, - { - id: "UjdFTwnem0s" - }, - { - id: "hdlaTX6GNBB" - }, - { - id: "KP40aOgSHtr" - }, - { - id: "PcADvhvcaI2" - }, - { - id: "bfuI6iKIEC5" - }, - { - id: "dczh6Jfd4no" - }, - { - id: "EjsItGPbyn0" - }, - { - id: "CMVTl4aVnhu" - }, - { - id: "hy4y80DxUAZ" - }, - { - id: "bSbZ4v2bkh4" - }, - { - id: "FGV6TAbL0eN" - }, - { - id: "xpmIgxXB50B" - }, - { - id: "O5HZTrdAIy1" - }, - { - id: "HmeNsFNJHJv" - }, - { - id: "sJ2rOC42ck6" - }, - { - id: "l8Cj9yzytP5" - }, - { - id: "ahMLVbF8Jcl" - }, - { - id: "BbZ6cIgfJOO" - }, - { - id: "WvJmBdtUGPB" - }, - { - id: "C6r62Sn2N7B" - }, - { - id: "CpZpUPY6f2O" - }, - { - id: "Fdu706gYYLa" - }, - { - id: "mXivK01oPF2" - }, - { - id: "KOExHsBref6" - }, - { - id: "l2kZRcJjomr" - }, - { - id: "pknpU6PgUEc" - }, - { - id: "df5zH1E38K6" - }, - { - id: "LJWGHj5pj2Y" - }, - { - id: "TaLIhbdFuQz" - }, - { - id: "ECadFFezuoX" - }, - { - id: "PdfmwEAa7xp" - }, - { - id: "agM9Fh6Hgpu" - }, - { - id: "v2FoTjues3L" - }, - { - id: "F13tWZ5wwDT" - }, - { - id: "TK1WrNNwWjA" - }, - { - id: "mkIugjeYSjE" - }, - { - id: "CrzNIFHpOFf" - }, - { - id: "TWdFaF5MarN" - }, - { - id: "mc3jvzpzSi4" - }, - { - id: "rwfuVQHnZJ5" - }, - { - id: "e4ySYmFeqwO" - }, - { - id: "zb00vTMZ06a" - }, - { - id: "yEU926iVAJJ" - }, - { - id: "bne6tOoPaWn" - }, - { - id: "pxY7o1Z4iRz" - }, - { - id: "Zpg7xK5Dp9V" - }, - { - id: "PPTOBEeEYho" - }, - { - id: "POtQRvBjEyX" - }, - { - id: "aJ2GlNejzg4" - }, - { - id: "xEip3dtU8bp" - }, - { - id: "X3NOrmGT8qW" - }, - { - id: "UOJlcpPnBat" - }, - { - id: "YhBJbiD5N1z" - }, - { - id: "omFDCDDd3C9" - }, - { - id: "xrSqLKQb7pT" - }, - { - id: "IN2dOk0gY1G" - }, - { - id: "RTC6vFWnDjE" - }, - { - id: "X7ZVgRPt31q" - }, - { - id: "XiJOONviAv9" - }, - { - id: "TuUmXovlC0v" - }, - { - id: "lCvWPVeh3bi" - }, - { - id: "sLlD1iFlTVA" - }, - { - id: "hQ572oBgJMj" - }, - { - id: "SgVNzw10vvi" - }, - { - id: "yTx6l9Cm6f3" - }, - { - id: "mAlVEzog6VX" - }, - { - id: "CY8cV5khn7e" - }, - { - id: "m3eyTINTgmc" - }, - { - id: "fWzvQtKZThS" - }, - { - id: "T8dxbX2PRJZ" - }, - { - id: "QvMExiAJhu6" - }, - { - id: "OZHhNP5X4q7" - }, - { - id: "nlSZ7WHPsKZ" - }, - { - id: "p97QGsi0RrM" - }, - { - id: "kLNQT4KQ9hT" - }, - { - id: "a04CZxe0PSe" - }, - { - id: "anlv4Oq9s3x" - }, - { - id: "LSt7ymrwfQX" - }, - { - id: "H97XE5Ea089" - }, - { - id: "IrTjw1nmSsU" - }, - { - id: "BugoCRnfVKz" - }, - { - id: "baGvbrgFnV4" - }, - { - id: "SzEmaH63Qe8" - }, - { - id: "Fu9vow7WzeY" - }, - { - id: "N7qnHXK5FGb" - }, - { - id: "PbN5cqV5Fut" - }, - { - id: "S2NaydvPENH" - }, - { - id: "JBU18etaAp5" - }, - { - id: "Mw1VdFy0Y1F" - }, - { - id: "qAEsKR6PbsZ" - }, - { - id: "INkmICN0I2u" - }, - { - id: "moAlVM6Y6nD" - }, - { - id: "VXHhYWYQT4f" - }, - { - id: "bPJABq7F5Iy" - }, - { - id: "oJLOlJSjBj1" - }, - { - id: "fz3mmw8l3nP" - }, - { - id: "EArqQGjNegL" - }, - { - id: "TYgzUZx9Z3r" - }, - { - id: "yGTq3sKtveY" - }, - { - id: "hgIfb6cXD79" - }, - { - id: "BtpiBwHsnpq" - }, - { - id: "lBrkUwNpNa4" - }, - { - id: "UKDrGV0OsTM" - }, - { - id: "lyONqUkY1Bq" - }, - { - id: "ApJSynsKXZO" - }, - { - id: "wj7iV08dvFq" - }, - { - id: "PeyblWrhOwL" - }, - { - id: "kHhYmHVGSPZ" - }, - { - id: "gbQ6moBp9qw" - }, - { - id: "TQ45TWWIH3t" - }, - { - id: "Vw4Uv6UPIPC" - }, - { - id: "Xybm3mlz5A5" - }, - { - id: "eJ1NCIbKFeL" - }, - { - id: "n6ttgbYwKrn" - }, - { - id: "ecZBOCaQGz6" - }, - { - id: "zv1CHdVuXXS" - }, - { - id: "YAIfiMG7VTP" - }, - { - id: "Jkn1s1tI4mN" - }, - { - id: "YCTSlOlEeEi" - }, - { - id: "rwjqr2sflz7" - }, - { - id: "Z0q0Y3GRugt" - }, - { - id: "KynKCypNiZC" - }, - { - id: "zpTlA0mecnK" - }, - { - id: "aqFXzQJiD51" - }, - { - id: "UlF2nn4N0HD" - }, - { - id: "m9zkLiqFNrV" - }, - { - id: "CMyGBztoNjM" - }, - { - id: "j17OTOxKboa" - }, - { - id: "pSvSzOPYgAL" - }, - { - id: "qiKQveJF54d" - }, - { - id: "JdqfYTIFZXN" - }, - { - id: "SSXpxYhQsqQ" - }, - { - id: "uFO5tHtFUcM" - }, - { - id: "jK5RFcBSmlU" - }, - { - id: "hKhN7mvx5qu" - }, - { - id: "jXJNr6xpVtP" - }, - { - id: "mmQ3IGBKExL" - }, - { - id: "NoTCS7xBSx5" - }, - { - id: "CYSXNa08Fj0" - }, - { - id: "D4J8YGRsVws" - }, - { - id: "LemXsoRIQwH" - }, - { - id: "DQHGtTGOP6b" - }, - { - id: "jGYT5U5qJP6" - }, - { - id: "qMABUusqGNJ" - }, - { - id: "JW3Z34Xdue4" - }, - { - id: "hZOk3ACtAsk" - }, - { - id: "nOYt1LtFSyU" - }, - { - id: "KP7MT2E1mhZ" - }, - { - id: "aCoFVWBqEP4" - }, - { - id: "QcOla8xILGP" - }, - { - id: "eRlN9uGZpGg" - }, - { - id: "GB9GcIP0RIf" - }, - { - id: "szbAJSWOXjT" - }, - { - id: "sO0s5WLpWuH" - }, - { - id: "JBhJiwqBCUa" - }, - { - id: "w92ah6dK8rd" - }, - { - id: "IWMIqLqELNm" - }, - { - id: "am6EFqHGKeU" - }, - { - id: "f1glFBoLk1L" - }, - { - id: "nKOoyTkUQV0" - }, - { - id: "Og4IrbfB6B4" - }, - { - id: "BZ6vit8Ixkc" - }, - { - id: "dyqtigUT60R" - }, - { - id: "cw0Wm1QTHRq" - }, - { - id: "zgDKc8tteWj" - }, - { - id: "hJXKU5DTju0" - }, - { - id: "ae2WPaK2mRy" - }, - { - id: "BJMWTGwuGiw" - }, - { - id: "bey7zJmGM3q" - }, - { - id: "ETRqfu74kge" - }, - { - id: "kvzdkXBxHoN" - }, - { - id: "EQQPyoukut9" - }, - { - id: "sCkFpAVwSHz" - }, - { - id: "n0HT5ZSO7yJ" - }, - { - id: "DBs6e2Oxaj1" - }, - { - id: "WQC4U29qPvk" - }, - { - id: "GMOl74xzmAE" - }, - { - id: "QpRIPul20Sb" - }, - { - id: "ix2wsUzRgWa" - }, - { - id: "abW8F723ggS" - }, - { - id: "HpFEce6vxFX" - }, - { - id: "agEKP19IUKI" - }, - { - id: "FQs34xcmpUK" - }, - { - id: "nF3UQGBmFd7" - }, - { - id: "GKbl7tNClTE" - }, - { - id: "xhyjU2SVewz" - }, - { - id: "F4HLTxnnM3I" - }, - { - id: "oV9P0VvL9Jh" - }, - { - id: "ACpurvqPMtf" - }, - { - id: "TAN6Q7vjvuk" - }, - { - id: "QPyg4am8tzw" - }, - { - id: "n4wETNZkfSr" - }, - { - id: "zY9ds4oNZxw" - }, - { - id: "ejdLY4RhIFZ" - }, - { - id: "vxa2YQRGV7I" - }, - { - id: "QltoMhOG84t" - }, - { - id: "wqr0vnmvUMj" - }, - { - id: "C3vF099iBl0" - }, - { - id: "BKVQi8fxIum" - }, - { - id: "AIJm6oHGjTi" - }, - { - id: "QFcMulIoEii" - }, - { - id: "wSCTKjMRg3K" - }, - { - id: "O3mmGiJpEiP" - }, - { - id: "wk77FIbcJnx" - }, - { - id: "z1ielwdLtPl" - }, - { - id: "a7i7UlS9t1D" - }, - { - id: "nZblzPvJ5UW" - }, - { - id: "Fnndvk0hBPM" - }, - { - id: "Dxv9BsvEZLh" - }, - { - id: "XU0jdKgql5X" - }, - { - id: "oCGj37yqeHW" - }, - { - id: "pf2M0IZNu4Q" - }, - { - id: "rpAgG9XCWhO" - }, - { - id: "xaLjxxNKGBu" - }, - { - id: "IoD93AqFTed" - }, - { - id: "GEzcv3kfDOM" - }, - { - id: "gvxZ9YpmK1v" - }, - { - id: "ORkFbgtCEh1" - }, - { - id: "fjsXLEIXfim" - }, - { - id: "T3iVyvrCpZ0" - }, - { - id: "byOPfWkK6M6" - }, - { - id: "mhs9W9luxFt" - }, - { - id: "qMbxFg9McOF" - }, - { - id: "EZduybPx6eC" - }, - { - id: "QBRQnWPRO3V" - }, - { - id: "b1F5bfb7WUR" - }, - { - id: "ZxRA0U655yW" - }, - { - id: "el8sgzyHuEe" - }, - { - id: "MNzhtYGWLVY" - }, - { - id: "HljBY2QVY53" - }, - { - id: "wEU4djGp72e" - }, - { - id: "gPfUHBl1o6J" - }, - { - id: "WVVhjx3AObr" - }, - { - id: "D0FK08nsi0g" - }, - { - id: "dTGxA9DSdEX" - }, - { - id: "EoLrHZ9URks" - }, - { - id: "o0J1lAtfZqk" - }, - { - id: "FwKJ7gYEv8U" - }, - { - id: "QpJSF4IQTAL" - }, - { - id: "Af29qBHoHHA" - }, - { - id: "pGw8wH1qJeD" - }, - { - id: "rs87nYgwbKv" - }, - { - id: "aPCH8nWJJMT" - }, - { - id: "QqAzWHtJ8VC" - }, - { - id: "nNfWAu8J87O" - }, - { - id: "O41R77wEUfv" - }, - { - id: "HMltAwIjIIe" - }, - { - id: "gsypzntLahf" - }, - { - id: "aCLUGk6eLfv" - }, - { - id: "lZdR6a6gXza" - }, - { - id: "zIJBpRLfC4n" - }, - { - id: "Ly2yY7nlRjH" - }, - { - id: "lZecPzbOsbr" - }, - { - id: "Knsr5wP8GYI" - }, - { - id: "kBpMc3uWbhN" - }, - { - id: "ojmNKvb4jAf" - }, - { - id: "FMirgBvrEAq" - }, - { - id: "rFywUKFHZxr" - }, - { - id: "KFowGOhmuSL" - }, - { - id: "nkFBms3luru" - }, - { - id: "RpRJUDOPtt7" - }, - { - id: "TGRCfJEnXJr" - }, - { - id: "hOErLhq0tXw" - }, - { - id: "GKs8hLomBsy" - }, - { - id: "XEyIRFd9pct" - }, - { - id: "XdCoH1YKZBw" - }, - { - id: "zZ8z7D3wSNM" - }, - { - id: "HcAJuXJgLTb" - }, - { - id: "VGAFxBXz16y" - }, - { - id: "dxUk7h1GyIt" - }, - { - id: "j93R5zDcuzU" - }, - { - id: "I4jWcnFmgEC" - }, - { - id: "d9iMR1MpuIO" - }, - { - id: "MKQDyajwc0E" - }, - { - id: "RndxKqQGzUl" - }, - { - id: "dgzl5jBFSk6" - }, - { - id: "dtuiqEXYa7z" - }, - { - id: "ofHgE75zePD" - }, - { - id: "xmJQN1v5LiE" - }, - { - id: "AhJfrUZqpRA" - }, - { - id: "SUb63WbnG7h" - }, - { - id: "F0jbbkyQBuj" - }, - { - id: "hjpHnHZIniP" - }, - { - id: "EkrbBkjmsbC" - }, - { - id: "Och1Y2SQiyU" - }, - { - id: "rDIJySp9eE8" - }, - { - id: "fbqAiSsFLUV" - }, - { - id: "gaoFOXYLfIJ" - }, - { - id: "XDRRlz2vVbX" - }, - { - id: "ri7jVJXey9A" - }, - { - id: "qlB3VFc4UMH" - }, - { - id: "iuMX7cC1bK0" - }, - { - id: "V38G1q5B1t8" - }, - { - id: "L2pNGjAdjJB" - }, - { - id: "m8pRTzESbRL" - }, - { - id: "Rll4VmTDRiE" - }, - { - id: "dLblgrfLscW" - }, - { - id: "ZGLUWWvIzZE" - }, - { - id: "C3ZpWdpHuDG" - }, - { - id: "bQ1KQyVyuvv" - }, - { - id: "Wy8ad1wjlfd" - }, - { - id: "Dbn6fyCgMBV" - }, - { - id: "iPcreOldeV9" - }, - { - id: "vE6c1Y3nYnw" - }, - { - id: "Q2USZSJmcNK" - }, - { - id: "vnKb3BLUoyp" - }, - { - id: "Wr8kmywwseZ" - }, - { - id: "ARy2GG6qKx0" - }, - { - id: "ZNEXRG9L02p" - }, - { - id: "i0hJ7wfNKCR" - }, - { - id: "TV4y3CtOJ3s" - }, - { - id: "wwM3YPvBKu2" - }, - { - id: "TYEiJ6ZIHqW" - }, - { - id: "jNxOkbkY455" - }, - { - id: "vkmFz7JMhfw" - }, - { - id: "TaQ7kfd2hQs" - }, - { - id: "PIvggX3ALdP" - }, - { - id: "gowgzHWc8FT" - }, - { - id: "DZi1LydHCtD" - }, - { - id: "WIn2BE8tm0P" - }, - { - id: "lsqa3EEGHxv" - }, - { - id: "UJ80rknbJtm" - }, - { - id: "foPGXhwhlqp" - }, - { - id: "X2iNKYFI26W" - }, - { - id: "BLVKubgVxkF" - }, - { - id: "q5RI3DC3u1b" - }, - { - id: "VPWHSJjpyJj" - }, - { - id: "NvsbcAMSQxF" - }, - { - id: "dpcvWc01CeN" - }, - { - id: "DYFBf6MwWFL" - }, - { - id: "F9zWBqG5Pmi" - }, - { - id: "fPe1l06MurL" - }, - { - id: "S4eCMCTJPBj" - }, - { - id: "dbQSMpjKZZV" - }, - { - id: "S5GVdD2d3Bf" - }, - { - id: "TmCsvdJLHoX" - }, - { - id: "c5kEPNDpFdx" - }, - { - id: "VQKz6bjkd50" - }, - { - id: "SkmTDNoVzIz" - }, - { - id: "YYhpaiyEsmd" - }, - { - id: "tuOQTWUH1ax" - }, - { - id: "G4TOy4yGuFa" - }, - { - id: "wWpPWJ7tlo7" - }, - { - id: "Lbfg4szGfyn" - }, - { - id: "AzIoHy2idQw" - }, - { - id: "w7a4l3XHIgi" - }, - { - id: "calzWl8FrK5" - }, - { - id: "DLC5BmKgFCL" - }, - { - id: "IPvrsWbm0EM" - }, - { - id: "NsdUpcVYozo" - }, - { - id: "mFkrU0bpyJI" - }, - { - id: "EihevoTWn2i" - }, - { - id: "uuuqWJhEpIp" - }, - { - id: "rtF9slZoSZr" - }, - { - id: "klvjKLLdGno" - }, - { - id: "WfNSb6FE2nb" - }, - { - id: "nAKvEswLh5C" - }, - { - id: "F8W53IkegIL" - }, - { - id: "qELjt3LRkSD" - }, - { - id: "er9S4CQ9QOn" - }, - { - id: "p0wkjMFKy4r" - }, - { - id: "JsCnEwJV3jQ" - }, - { - id: "UF6K94f0zFM" - }, - { - id: "DUDHgE5DECu" - }, - { - id: "U0Rwx5aTWEQ" - }, - { - id: "E6kvtMFCIYa" - }, - { - id: "UCpFs9Ve8aU" - }, - { - id: "uXfAcKF2L3E" - }, - { - id: "VmP7a5p4Zqc" - }, - { - id: "l3dWbXKlY9e" - }, - { - id: "xLuvmLCd9RR" - }, - { - id: "D3SI8fLzweN" - }, - { - id: "sZtDiRPeUYj" - }, - { - id: "I8pqrvjpJIj" - }, - { - id: "LV2b3vaLRl1" - }, - { - id: "VshFFac9uYG" - }, - { - id: "AnXoUM1tfNT" - }, - { - id: "X2gchOnaDRc" - }, - { - id: "wZTSgnydP5I" - }, - { - id: "gWUVw8ARDEq" - }, - { - id: "dq0DcnVFNGR" - }, - { - id: "xX4lIVqF4yb" - }, - { - id: "RzFAUpfhxhb" - }, - { - id: "AWLFlPWPf2t" - }, - { - id: "cHGivPbe1rV" - }, - { - id: "UAtEKSd5QTf" - }, - { - id: "oygTu90sWvA" - }, - { - id: "HtaEyk8HLgQ" - }, - { - id: "wYLjA4vN6Y9" - }, - { - id: "VlfXTyi4gsp" - }, - { - id: "t3a8Jgy1c9R" - }, - { - id: "els7som2jwm" - }, - { - id: "lZxQjgqInzr" - }, - { - id: "dhMoBTZNcoW" - }, - { - id: "CnW6jhYnh1O" - }, - { - id: "vH5rOm0P0ut" - }, - { - id: "Pmj0jWhE4KE" - }, - { - id: "ZFvOc6I47s9" - }, - { - id: "tqWQn0wU9l4" - }, - { - id: "dr7PV4gaqyK" - }, - { - id: "pQ7ezTjaaik" - }, - { - id: "LGdq6IxjmRL" - }, - { - id: "uYG1rUdsJJi" - }, - { - id: "W9RHzTyBZDQ" - }, - { - id: "v1m7SA0NNuH" - }, - { - id: "jmrkDwROsPW" - }, - { - id: "uxWHRgYxZeh" - }, - { - id: "h7ARR5vhSLF" - }, - { - id: "J8EiZ36T6fV" - }, - { - id: "GQcsUZf81vP" - }, - { - id: "iMZihUMzH92" - }, - { - id: "ii2KMnWMx2L" - }, - { - id: "vfYblw5LxdL" - }, - { - id: "gxLOLoHyHcl" - }, - { - id: "uKNyTj9O0Oe" - }, - { - id: "ZqeYgCpP2VM" - }, - { - id: "NwGeMu9DUv2" - }, - { - id: "OQLDqdxxgX6" - }, - { - id: "Vc36hi7PkoP" - }, - { - id: "VhRX5JDVo7R" - }, - { - id: "nIXOdAExhVP" - }, - { - id: "g0MpCfAFokB" - }, - { - id: "rLaGvUnv2BF" - }, - { - id: "e2WgqiasKnD" - }, - { - id: "sY1WN6LjmAx" - }, - { - id: "pmzk0ho80aA" - }, - { - id: "yOr4gLFxp2p" - }, - { - id: "OjTS752GbZE" - }, - { - id: "ywNG86IY4Ve" - }, - { - id: "oLdmDr8baLT" - }, - { - id: "mepHuAA9l51" - }, - { - id: "xWjiTeok0Sr" - }, - { - id: "Oy39dnEWOK2" - }, - { - id: "k6lOze3vTzP" - }, - { - id: "Ro0zTlehHpg" - }, - { - id: "kIbcKauMdlW" - }, - { - id: "fyrVG90gRSN" - }, - { - id: "ML4nIEJMkHm" - }, - { - id: "JU4dWUv0Pmd" - }, - { - id: "VXrJKs8hic4" - }, - { - id: "qurlLuBdUw2" - }, - { - id: "Oa8I45tlQB3" - }, - { - id: "wxMmC45UyNw" - }, - { - id: "PIGufMYeGrZ" - }, - { - id: "HC2NlwpoXfb" - }, - { - id: "nhxC7Mph8M9" - }, - { - id: "rjNWdlvZQhg" - }, - { - id: "N6Yva6Ga2ob" - }, - { - id: "YaMjtfKVSCk" - }, - { - id: "FsPHdw5CkZI" - }, - { - id: "QkaisroplQb" - }, - { - id: "i4zWyzPSMrh" - }, - { - id: "jeasS04VBBQ" - }, - { - id: "GQpxsB7tekR" - }, - { - id: "uBKLA06Ey0t" - }, - { - id: "Zf2v0kbI7ah" - }, - { - id: "sELnI7fwEKO" - }, - { - id: "hHKKi9WNoBG" - }, - { - id: "jKOEimI0OIb" - }, - { - id: "UgYg0YW7ZIh" - }, - { - id: "KcfW8NK2Z7Y" - }, - { - id: "k6DIO9LIEk9" - }, - { - id: "vsH94z9yzVM" - }, - { - id: "BqRElDluXGa" - }, - { - id: "GfjNCGYbhNY" - }, - { - id: "FYknVPR8kUy" - }, - { - id: "USJTnOZow1K" - }, - { - id: "BzEwqabuW19" - }, - { - id: "bW22Wc00b4S" - }, - { - id: "lGqIDvuelR8" - }, - { - id: "wEGaCHYF2R4" - }, - { - id: "ElF7UA6vc7t" - }, - { - id: "RzKeCma9qb1" - }, - { - id: "YQwB39NwRW1" - }, - { - id: "f3dAOiFiysx" - }, - { - id: "IlMQTFvcq9r" - }, - { - id: "I3vRP5Bni5b" - }, - { - id: "Vszj4vZDyUs" - }, - { - id: "cjvCZFoi2Dr" - }, - { - id: "OTIM7YYULO8" - }, - { - id: "rx2jPcgpSCz" - }, - { - id: "qEAo0RFI8BB" - }, - { - id: "ZoTFLp2zdOW" - }, - { - id: "BdbhfPGpTGA" - }, - { - id: "I2xsJugrbwE" - }, - { - id: "JI5lagoUJR4" - }, - { - id: "GLppjdUQswj" - }, - { - id: "dOqQZ6trynI" - }, - { - id: "DlDuNku1b66" - }, - { - id: "mshIal30ffW" - }, - { - id: "dmd7ZqYOz46" - }, - { - id: "YE8bEIV793k" - }, - { - id: "byp7w6Xd9Df" - }, - { - id: "QoROdPmIdY1" - }, - { - id: "kKMSAINBBoh" - }, - { - id: "bW5BaqrBM4K" - }, - { - id: "vlh9UgShYdg" - }, - { - id: "mzU18N69g2X" - }, - { - id: "gLpZOjx1xOd" - }, - { - id: "c9kiQJVCeuT" - }, - { - id: "Ox0ri02ccXu" - }, - { - id: "ZR6YVkSqGp4" - }, - { - id: "lOv6IFgr6Fs" - }, - { - id: "XzJyHqWngAw" - }, - { - id: "zQpYVEyAM2t" - }, - { - id: "dZszFGdGfXk" - }, - { - id: "kcpaOwiXcpI" - }, - { - id: "KkARfEGrujF" - }, - { - id: "czlLWO6ZiMW" - }, - { - id: "YSMY6ReKm1O" - }, - { - id: "NKdsYuW27kb" - }, - { - id: "HFLrPC4Nf6q" - }, - { - id: "bPRybdN20Xm" - }, - { - id: "jMGyFA7m1Ob" - }, - { - id: "BmYyh9bZ0sr" - }, - { - id: "xVqfScSbEJM" - }, - { - id: "cxZuOFAsQBI" - }, - { - id: "EJoI3HArJ2W" - }, - { - id: "r4W2vzlmPhm" - }, - { - id: "dBD9OHJFN8u" - }, - { - id: "oiYONDJ6qz7" - }, - { - id: "WUnOTGhfQRe" - }, - { - id: "PSjKMcPGUvA" - }, - { - id: "xczhpx28kNO" - }, - { - id: "Mod8hYpQ3Ma" - }, - { - id: "gPR1x4RGbru" - }, - { - id: "eYeaOXVt039" - }, - { - id: "DxixRJsjTRR" - }, - { - id: "oTYEEpgxtgX" - }, - { - id: "sM0Us0NkSez" - }, - { - id: "p310xqwAJge" - }, - { - id: "Iu8GKS6jET3" - }, - { - id: "kzmwOrwmzbW" - }, - { - id: "m5Oezf4608z" - }, - { - id: "tyw435fDg96" - }, - { - id: "vULnao2hV5v" - }, - { - id: "y1QDBoy4iCH" - }, - { - id: "ycKFsbs3gYy" - }, - { - id: "eHGj3TIsp1l" - }, - { - id: "xKaB8tfbTzm" - }, - { - id: "Wmtbcwvb9JE" - }, - { - id: "x0aAcsVjGVG" - }, - { - id: "ciuLlgCMd5n" - }, - { - id: "uUSZoQB21WW" - }, - { - id: "Kt4ixaGIniH" - }, - { - id: "kxj58cIaKGk" - }, - { - id: "f2RU8QWiEdJ" - }, - { - id: "sIVFEyNfOg4" - }, - { - id: "rn1Njd6WQ7e" - }, - { - id: "Uc0gGJh4WdQ" - }, - { - id: "a2CrEOAsZwS" - }, - { - id: "QVIjVnhdadP" - }, - { - id: "b66n8RyCrE7" - }, - { - id: "vELbGdEphPd" - }, - { - id: "BIlBi8ZUqXU" - }, - { - id: "J6zFMI7V6xJ" - }, - { - id: "lpAPY3QOY2D" - }, - { - id: "shwrbTUmrAx" - }, - { - id: "Eey5ShuFdu2" - }, - { - id: "XPYS5UmG78a" - }, - { - id: "NAnOQYpT2v3" - }, - { - id: "KMD1hlO3JFE" - }, - { - id: "DiszpKrYNg8" - }, - { - id: "M4hyYfnb21I" - }, - { - id: "mhrDYMwGych" - }, - { - id: "SDKI1oF3nj9" - }, - { - id: "ilHa4I89d7i" - }, - { - id: "dYHcR6J7Abc" - }, - { - id: "cZI3AWM7bIa" - }, - { - id: "cFrEPBbo327" - }, - { - id: "FSzvKuWP4eS" - }, - { - id: "t40pWlXlLX9" - }, - { - id: "pYFPHYbVbvx" - }, - { - id: "jKsytwVp8OS" - }, - { - id: "p9wTDnu3tEx" - }, - { - id: "dP5TQmTvcRZ" - }, - { - id: "bqtZrXoryDF" - }, - { - id: "CNlLL1booGy" - }, - { - id: "X3D19LoA2Ij" - }, - { - id: "coPUdvGUGP3" - }, - { - id: "SHni2YastC5" - }, - { - id: "aSfF9kuNINJ" - }, - { - id: "oDAoqMWcsJQ" - }, - { - id: "kDmM5jEmXK0" - }, - { - id: "OM5nuJkMj7n" - }, - { - id: "iECNVrw4d6L" - }, - { - id: "oWkwN01B6Nf" - }, - { - id: "wGsBlwh6Zzt" - }, - { - id: "yb9pJOYyLzp" - }, - { - id: "xFHN76GRabJ" - }, - { - id: "Yo4ctSutDX0" - }, - { - id: "aIsnJuZbmVA" - }, - { - id: "l3jnkNNpoD8" - }, - { - id: "j4ldsmvrjTE" - }, - { - id: "NJolnlvYgLr" - }, - { - id: "mzsOsz0NwNY" - }, - { - id: "tEnFVk1BBEv" - }, - { - id: "tEnHQCXABkG" - }, - { - id: "Dluer5aKZmd" - }, - { - id: "xjfCBow0pdh" - }, - { - id: "Qwzs1iinAI7" - }, - { - id: "w12PJJwhEkK" - }, - { - id: "ut6pZJE1b10" - }, - { - id: "zNWXUETn6ce" - }, - { - id: "v0dXACseLuB" - }, - { - id: "CVuDPfH9adP" - }, - { - id: "Yjuj2YSbzuO" - }, - { - id: "jH1un8fVjmr" - }, - { - id: "eiyQhIiq6B8" - }, - { - id: "QSDkMI3ZHVb" - }, - { - id: "fRjipab4tIQ" - }, - { - id: "kGUxyt8hzpF" - }, - { - id: "p1117dugcct" - }, - { - id: "SvadRExYvpx" - }, - { - id: "OO10hddb0SE" - }, - { - id: "WHJeeko8o9N" - }, - { - id: "LNyTm9Nwni5" - }, - { - id: "Os6Lfw4QNcT" - }, - { - id: "PIsHZpHEzn9" - }, - { - id: "weLTzWrLXCO" - }, - { - id: "OJnbpJANbHh" - }, - { - id: "n5r4IdR25JQ" - }, - { - id: "j6Zl2qpZhgd" - }, - { - id: "Gsnp20ValtV" - }, - { - id: "Fja9YiCxaGn" - }, - { - id: "JLKGG67z7oj" - }, - { - id: "tm90emjVcPi" - }, - { - id: "GPR07SjIMNl" - }, - { - id: "DwEfz1MN7Z5" - }, - { - id: "qjboFI0irVu" - }, - { - id: "IlnqGuxfQAw" - }, - { - id: "u3B5RqJuDAP" - }, - { - id: "zztUpkj96gc" - }, - { - id: "Osmj7KfUlrZ" - }, - { - id: "IiC3TA08F8V" - }, - { - id: "meaUCG7XimL" - }, - { - id: "AI85d4oFRyK" - }, - { - id: "jHtXQo5UYtL" - }, - { - id: "yLLgphtsgMa" - }, - { - id: "ho26229Td1I" - }, - { - id: "S9BZ2FDmhpH" - }, - { - id: "cr0hjPlp4QE" - }, - { - id: "D3oZZXtXjNk" - }, - { - id: "w3mBVfrWhXl" - }, - { - id: "PNdayccdNqs" - }, - { - id: "u9wACZdnnNn" - }, - { - id: "vuWtipcge5e" - }, - { - id: "LdCzrlFXSZ6" - }, - { - id: "wfhTwCcGWfz" - }, - { - id: "lnAYMiASnj7" - }, - { - id: "b7YDjQ6DBzt" - }, - { - id: "qiI48uDJtzq" - }, - { - id: "lMhlxJL0DIn" - }, - { - id: "xuk02oLk12O" - }, - { - id: "yuEsMxPps5z" - }, - { - id: "w9FJ9oAdFys" - }, - { - id: "gXAbBadYQSQ" - }, - { - id: "VTFUHIKkEKt" - }, - { - id: "bljCgu8PfV9" - }, - { - id: "d5TeV3FtYB3" - }, - { - id: "KH7LkPHm5k5" - }, - { - id: "g8upMTyEZGZ" - }, - { - id: "mCfmHR3PQzc" - }, - { - id: "HWjrSuoNPte" - }, - { - id: "m4suCjvR0Hy" - }, - { - id: "HV8RTzgcFH3" - }, - { - id: "CTIjpYuOfto" - }, - { - id: "JrSIoCOdTH2" - }, - { - id: "c17T6PNyIqX" - }, - { - id: "BoOqUEdaztk" - }, - { - id: "SUQ79lxHpDv" - }, - { - id: "fvbZsIWC5PZ" - }, - { - id: "Mi4dWRtfIOC" - }, - { - id: "q1qhDrIElrR" - }, - { - id: "ueUTpWZE3IC" - }, - { - id: "hGalwSiElh2" - }, - { - id: "vGV0p4gP5on" - }, - { - id: "JiCwXiLnQ1w" - }, - { - id: "p9KfD6eaRvu" - }, - { - id: "xw4Bzx4bLqh" - }, - { - id: "UQAZucrwwmm" - }, - { - id: "PzribgWYmPy" - }, - { - id: "KfUCAQoOIae" - }, - { - id: "ctfiYW0ePJ8" - }, - { - id: "pMEnu7BjqMz" - }, - { - id: "qTd47nsMoQn" - }, - { - id: "z10oLuMLhng" - }, - { - id: "XJ9CPEET8nz" - }, - { - id: "FRkITWYb9oD" - }, - { - id: "cJ7omISg7gG" - }, - { - id: "AMmRrk24PME" - }, - { - id: "J30SIG4ROT8" - }, - { - id: "pB1wIv0ih9M" - }, - { - id: "H5kqKK3bZMJ" - }, - { - id: "vjVkzYeSzpG" - }, - { - id: "nAH0uNc3b5f" - }, - { - id: "mL3UjzzQN5D" - }, - { - id: "r1I94XfbSBX" - }, - { - id: "B0IIlxDym76" - }, - { - id: "AWEzRXCSmYp" - }, - { - id: "FupvWBUFXr7" - }, - { - id: "Qc9lf4VM9bD" - }, - { - id: "Ltgs94mfeWq" - }, - { - id: "pc9pwq4cSNF" - }, - { - id: "OzrLhULKTvy" - }, - { - id: "aRXfvyonenP" - }, - { - id: "FqKVs7kYJg7" - }, - { - id: "yzyTRoBQBtr" - }, - { - id: "wB4tSXlryyO" - }, - { - id: "nv65aTD6Qzg" - }, - { - id: "tPEwONuAeAc" - }, - { - id: "gaOSAjPM07w" - }, - { - id: "VruuGsc1oVh" - }, - { - id: "lwmXBt6k0JT" - }, - { - id: "M7phBZQCjQc" - }, - { - id: "TbmzGYnMAsP" - }, - { - id: "HzN8AhyCR1V" - }, - { - id: "NYvIHCSOFaz" - }, - { - id: "kIZcDOtYRbO" - }, - { - id: "ae2K7lJ7hA2" - }, - { - id: "YLSb0oR14M8" - }, - { - id: "cJwpswYfRkt" - }, - { - id: "baxbG2rMvaI" - }, - { - id: "vlmZCCRuUxh" - }, - { - id: "RJEZLKOrp4e" - }, - { - id: "YOC7ohJ3HUg" - }, - { - id: "r5WWF9WDzoa" - }, - { - id: "ScBZT01BDyw" - }, - { - id: "QlCIp2S9NHs" - }, - { - id: "KtwEaQjnQ9z" - }, - { - id: "UlgEReuUPM4" - }, - { - id: "HOgWkpYH3KB" - }, - { - id: "hJrRl1znK7u" - }, - { - id: "LFpl1falVZi" - }, - { - id: "BPUf7eVuS1v" - }, - { - id: "nAy0YQmzZ1D" - }, - { - id: "uymjACQV8J7" - }, - { - id: "Zz4Vmg1i7mN" - }, - { - id: "ts1QGabzcYw" - }, - { - id: "uQhGaLpMMoh" - }, - { - id: "jv1xvOC4VcU" - }, - { - id: "WxtkBmuVGTX" - }, - { - id: "Uo4cyJwAhTW" - }, - { - id: "avwP02MD1P4" - }, - { - id: "hPHBEamfR9r" - }, - { - id: "qIRCo0MfuGb" - }, - { - id: "KXSqt7jv6DU" - }, - { - id: "pRg7dkjqNPc" - }, - { - id: "spz1nZ1VIYX" - }, - { - id: "ESghrfHAgQ0" - }, - { - id: "cM2BKSrj9F9" - }, - { - id: "zrX32H9sf55" - }, - { - id: "qHM0SCRfeKu" - }, - { - id: "rohYGuO7b2I" - }, - { - id: "jsW3dmtjV8M" - }, - { - id: "F3LMRR29sKE" - }, - { - id: "IQHQNoqd4nx" - }, - { - id: "Qw7c6Ckb0XC" - }, - { - id: "XE9k2CrZlS2" - }, - { - id: "Q5pPVaZBdF0" - }, - { - id: "KbO0JnhiMwl" - }, - { - id: "HxTPIXpHK2J" - }, - { - id: "lfA2tW7PLt6" - }, - { - id: "VBsTsEbzGPI" - }, - { - id: "cEYYXIWidyb" - }, - { - id: "O63vIA5MVn6" - }, - { - id: "M17B9ve1RUv" - }, - { - id: "aSnKB1sWaz4" - }, - { - id: "oNhx6y8wjOL" - }, - { - id: "YnWHcyaUx1U" - }, - { - id: "Wd4Apo7jsQX" - }, - { - id: "UMR5Y436O0F" - }, - { - id: "lRjySFLPOvV" - }, - { - id: "kSb9WbodZd7" - }, - { - id: "wyq4M1nzdh5" - }, - { - id: "A5Cb4E3bwzS" - }, - { - id: "ZZYbPIT34Xp" - }, - { - id: "ojHQOYnQp5f" - }, - { - id: "XJcrabyKTPv" - }, - { - id: "uSdfZnGdrrP" - }, - { - id: "cg52sYUwBf0" - }, - { - id: "kWjl2ct0ELu" - }, - { - id: "KwSj4DlRWAm" - }, - { - id: "fXOca0kyjxj" - }, - { - id: "Uwcj0mz78BV" - }, - { - id: "aZDsMrQFXbC" - }, - { - id: "yuTyqZbSguv" - }, - { - id: "NWOvvlkEQAr" - }, - { - id: "V8KusxnqYbH" - }, - { - id: "dpde2Qfmr9A" - }, - { - id: "MThDfZ8kLrW" - }, - { - id: "TgeZ5TBh38t" - }, - { - id: "lLyWhh4v6XJ" - }, - { - id: "BiSz8ng2H4N" - }, - { - id: "gGv9ATEs68L" - }, - { - id: "NXTfAHdVqXj" - }, - { - id: "cHYqyMzoZqF" - }, - { - id: "bqaUcGiZTDI" - }, - { - id: "lNVfti2VHOX" - }, - { - id: "KVcTmvHWZtq" - }, - { - id: "tRuRgsBkMBC" - }, - { - id: "OynYyQiFu82" - }, - { - id: "tdhB1JXYBx2" - }, - { - id: "yE9HDrKG67N" - }, - { - id: "iq8oNsM9ra5" - }, - { - id: "mVIHzvqRIyv" - }, - { - id: "axzvT9Ilziq" - }, - { - id: "syDzCfKOGBE" - }, - { - id: "Fj9jDQMcBqf" - }, - { - id: "QybF2Ku5Ozu" - }, - { - id: "XLq4SbnoBHy" - }, - { - id: "GixhLOGj4xL" - }, - { - id: "WCPMuBOvpVT" - }, - { - id: "Fp7mrXIFhKM" - }, - { - id: "qo9G4Mee6fh" - }, - { - id: "FAZVf4rx0QR" - }, - { - id: "gfWvbbgdjoS" - }, - { - id: "PRSH45Enj2c" - }, - { - id: "wicmjKI3xiP" - }, - { - id: "JAv2gkP4MJT" - }, - { - id: "j62ikvjGr2n" - }, - { - id: "VNAPHh6SyJJ" - } - ], - userGroupAccesses: [ - { - access: "rwr-----", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-r-----", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-r-----", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-rw----", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-r-----", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - } - ], - programSections: [], - attributeValues: [], - programStages: [ - { - id: "hgpXE2JX97x" - } - ], - userAccesses: [ - { - access: "r-rw----", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-r-----", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ] - } - ], - categoryOptionCombos: [ - { - lastUpdated: "2017-05-10T17:53:55.158", - code: "default", - created: "2017-05-10T17:53:55.157", - name: "default", - id: "Xr12mI7VPn3", - ignoreApproval: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "Y7fcspgsU43" - } - ] - } - ], - programStages: [ - { - lastUpdated: "2021-03-01T11:52:49.333", - id: "hgpXE2JX97x", - created: "2016-06-08T13:38:09.797", - name: "BU02 - Register", - allowGenerateNextVisit: false, - executionDateLabel: "Date of initial clinical examination / Date d'examen clinique initial", - preGenerateUID: false, - publicAccess: "--------", - openAfterEnrollment: false, - repeatable: false, - featureType: "NONE", - remindCompleted: false, - displayGenerateEventBox: false, - generatedByEnrollmentDate: false, - validationStrategy: "ON_UPDATE_AND_INSERT", - autoGenerateEvent: true, - sortOrder: 1, - hideDueDate: false, - blockEntryForm: false, - enableUserAssignment: false, - minDaysFromStart: 0, - program: { - id: "lAu94BiaY5s" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "eK26I7dRbC4" - }, - notificationTemplates: [], - programStageDataElements: [ - { - lastUpdated: "2021-03-01T11:32:51.937", - id: "X0M4oNWjsTH", - created: "2016-06-08T13:43:40.011", - displayInReports: true, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "KnoBf1YCOe2", + }, + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "l0TE4LdzE8j", + }, + }, + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "1997", + }, + { + id: "1998", + }, + { + id: "1999", + }, + { + id: "2000", + }, + { + id: "2001", + }, + { + id: "2002", + }, + { + id: "2003", + }, + { + id: "2004", + }, + { + id: "2005", + }, + { + id: "2006", + }, + { + id: "2007", + }, + { + id: "2009", + }, + { + id: "2010", + }, + { + id: "2011", + }, + { + id: "2012", + }, + { + id: "2013", + }, + { + id: "2014", + }, + { + id: "2015", + }, + { + id: "2016", + }, + { + id: "2017", + }, + { + id: "2018", + }, + { + id: "2019", + }, + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["pe"], + }, + { + lastUpdated: "2020-06-02T08:10:06.956", + id: "GmqjzU8Crmi", + created: "2019-05-31T21:42:26.625", + name: "MAL - IPD", + showData: false, + numberType: "VALUE", + publicAccess: "--------", + userOrganisationUnitChildren: false, + legendDisplayStyle: "FILL", + type: "PIVOT_TABLE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: true, sortOrder: 0, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "mwIgH1XXf6p" - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.938", - id: "Oic1IVxpgq9", - created: "2016-06-08T13:43:40.046", - displayInReports: false, - skipSynchronization: false, + fontSize: "NORMAL", + topLimit: 0, + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + description: "", + hideLegend: false, externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 1, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, + percentStackedValues: false, + legendDisplayStrategy: "FIXED", + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "J19avh4dgzs" - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.935", - id: "ik9ISTmQ2Gf", - created: "2016-06-08T13:43:40.069", - displayInReports: true, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 2, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + id: "kD52FGwJgDF", }, - lastUpdatedBy: { - id: "eK26I7dRbC4" + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, }, - programStage: { - id: "hgpXE2JX97x" + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, }, - dataElement: { - id: "Z8W89lDV4IL" + user: { + id: "kD52FGwJgDF", }, - favorites: [], + dataElementGroupSetDimensions: [], translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.933", - id: "SS8ELfQ7k8Q", - created: "2016-06-08T13:43:40.080", - displayInReports: true, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 3, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "HAt5fbygnrg" - }, + yearlySeries: [], + filterDimensions: ["ou"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea", + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H", + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR", + }, + ], + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], + userAccesses: [], favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.934", - id: "tI9OLIqrPrq", - created: "2016-06-08T13:43:40.090", - displayInReports: false, - skipSynchronization: false, + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "BhoZ0XenErj", + }, + }, + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "2000", + }, + { + id: "2001", + }, + { + id: "2002", + }, + { + id: "2003", + }, + { + id: "2004", + }, + { + id: "2005", + }, + { + id: "2006", + }, + { + id: "2007", + }, + { + id: "2008", + }, + { + id: "2009", + }, + { + id: "2010", + }, + { + id: "2011", + }, + { + id: "2012", + }, + { + id: "2013", + }, + { + id: "2014", + }, + { + id: "2015", + }, + { + id: "2016", + }, + { + id: "2017", + }, + { + id: "2018", + }, + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["pe"], + }, + { + lastUpdated: "2020-06-02T08:10:06.962", + id: "uZ03Z5GgJJ0", + created: "2019-05-31T21:42:54.097", + name: "MAL - Proportion", + showData: false, + numberType: "VALUE", + publicAccess: "--------", + userOrganisationUnitChildren: false, + legendDisplayStyle: "FILL", + type: "PIVOT_TABLE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: true, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + hideLegend: false, externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 4, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, + percentStackedValues: false, + legendDisplayStrategy: "FIXED", + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "xkt9nkHj5CA" - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.936", - id: "ikP103Fn9Sm", - created: "2016-06-08T13:43:40.105", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 5, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + id: "kD52FGwJgDF", }, - lastUpdatedBy: { - id: "eK26I7dRbC4" + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, }, - programStage: { - id: "hgpXE2JX97x" + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, }, - dataElement: { - id: "RETdv2kznbH" + user: { + id: "kD52FGwJgDF", }, - favorites: [], + dataElementGroupSetDimensions: [], translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.933", - id: "xiLmnCvUPdf", - created: "2016-06-08T13:43:40.117", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 6, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "QzAHATV8EWv" - }, + yearlySeries: [], + filterDimensions: ["ou"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea", + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H", + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR", + }, + ], + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], + userAccesses: [], favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.938", - id: "SoMCsw5q49F", - created: "2016-06-08T13:43:40.128", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 7, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "nidn593FWAF" - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.935", - id: "uiXy4u4OWjX", - created: "2016-06-08T13:43:40.141", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 8, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "mTyzapAF9iT" - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.937", - id: "KWGF449seo2", - created: "2016-06-08T13:43:40.152", - displayInReports: false, - skipSynchronization: false, + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "EiWBxnS9wmk", + }, + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "AF99VXqV5Fe", + }, + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "JzWUCTqpITC", + }, + }, + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "2000", + }, + { + id: "2001", + }, + { + id: "2002", + }, + { + id: "2003", + }, + { + id: "2004", + }, + { + id: "2005", + }, + { + id: "2006", + }, + { + id: "2007", + }, + { + id: "2008", + }, + { + id: "2009", + }, + { + id: "2010", + }, + { + id: "2011", + }, + { + id: "2012", + }, + { + id: "2013", + }, + { + id: "2014", + }, + { + id: "2015", + }, + { + id: "2016", + }, + { + id: "2017", + }, + { + id: "2018", + }, + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["pe"], + }, + { + lastUpdated: "2020-06-02T08:10:05.748", + id: "wSudey0Yc2R", + created: "2019-04-06T11:47:33.624", + name: "MAL - OPD", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: false, + type: "LINE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "NONE", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + title: "OPD malaria vs Non-malaria OPD", + hideLegend: false, externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 9, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "qJOXKn3wSLS" - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.934", - id: "aOPTA1pWe9Q", - created: "2016-06-08T13:43:40.167", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 10, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + id: "kD52FGwJgDF", }, - lastUpdatedBy: { - id: "eK26I7dRbC4" + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, }, - programStage: { - id: "hgpXE2JX97x" + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, }, - dataElement: { - id: "qafL6BdLAkH" + user: { + id: "kD52FGwJgDF", }, - favorites: [], + dataElementGroupSetDimensions: [], translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.938", - id: "wyoMSLO3Yth", - created: "2016-06-08T13:43:40.179", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 11, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "GqDsjatLQXl" - }, + yearlySeries: [], + filterDimensions: ["ou"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea", + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H", + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR", + }, + ], + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], + userAccesses: [], favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.936", - id: "VlNK0nFtRoW", - created: "2016-06-08T13:43:40.194", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 12, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "QEFiXRZu7jY" - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.935", - id: "fFRvBwrKPbL", - created: "2016-06-08T13:43:40.207", - displayInReports: false, - skipSynchronization: false, + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "rOt4BctnRqS", + }, + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "J06o672aumY", + }, + }, + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "1997", + }, + { + id: "1998", + }, + { + id: "1999", + }, + { + id: "2000", + }, + { + id: "2001", + }, + { + id: "2002", + }, + { + id: "2003", + }, + { + id: "2004", + }, + { + id: "2005", + }, + { + id: "2006", + }, + { + id: "2007", + }, + { + id: "2008", + }, + { + id: "2009", + }, + { + id: "2010", + }, + { + id: "2011", + }, + { + id: "2012", + }, + { + id: "2013", + }, + { + id: "2014", + }, + { + id: "2015", + }, + { + id: "2016", + }, + { + id: "2017", + }, + { + id: "2018", + }, + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["pe"], + }, + { + lastUpdated: "2020-06-02T08:10:06.958", + id: "qo7xD7OTGcF", + created: "2019-05-31T21:41:45.698", + name: "MAL - Microscopy", + showData: false, + numberType: "VALUE", + publicAccess: "--------", + userOrganisationUnitChildren: false, + legendDisplayStyle: "FILL", + type: "PIVOT_TABLE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: true, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + hideLegend: false, externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 13, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, + percentStackedValues: false, + legendDisplayStrategy: "FIXED", + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "Sieb79556d6" - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.934", - id: "CRNrasJPwQn", - created: "2016-06-08T13:43:40.221", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 14, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + id: "kD52FGwJgDF", }, - lastUpdatedBy: { - id: "eK26I7dRbC4" + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, }, - programStage: { - id: "hgpXE2JX97x" + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, }, - dataElement: { - id: "PRaonbusSOU" + user: { + id: "kD52FGwJgDF", }, - favorites: [], + dataElementGroupSetDimensions: [], translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.934", - id: "bab7K5xD28E", - created: "2016-06-08T13:43:40.234", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 15, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "UY4A4oRdvqT" - }, + yearlySeries: [], + filterDimensions: ["ou"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea", + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H", + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR", + }, + ], + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], + userAccesses: [], favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.937", - id: "oWiZUXFOL0K", - created: "2016-06-08T13:43:40.247", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 16, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "j9OfhXT92Ej" - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.936", - id: "sHKURVMWYuK", - created: "2016-06-08T13:43:40.263", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 17, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "TqqxE4hmd6Q" - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.934", - id: "MHgGCjWZytP", - created: "2016-06-08T13:43:40.276", - displayInReports: false, - skipSynchronization: false, + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "KnoBf1YCOe2", + }, + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "w44M511O2yp", + }, + }, + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "2009", + }, + { + id: "2010", + }, + { + id: "2011", + }, + { + id: "2012", + }, + { + id: "2013", + }, + { + id: "2014", + }, + { + id: "2015", + }, + { + id: "2016", + }, + { + id: "2017", + }, + { + id: "2018", + }, + { + id: "2002", + }, + { + id: "2003", + }, + { + id: "2004", + }, + { + id: "2005", + }, + { + id: "2006", + }, + { + id: "2007", + }, + { + id: "2008", + }, + { + id: "2000", + }, + { + id: "2001", + }, + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["pe"], + }, + { + lastUpdated: "2020-06-02T08:10:05.744", + id: "tq6l6xuECZo", + created: "2019-04-06T11:45:42.916", + name: "MAL - Deaths", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: false, + type: "LINE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "ALL", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + title: "Malaria and Non-malaria deaths", + hideLegend: false, externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 18, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "UCXRQtdD8K5" - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.935", - id: "jEkBHzTLrbh", - created: "2016-06-08T13:43:40.290", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 19, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + id: "kD52FGwJgDF", }, - lastUpdatedBy: { - id: "eK26I7dRbC4" + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, }, - programStage: { - id: "hgpXE2JX97x" + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, }, - dataElement: { - id: "UwC7RVH9Bwv" + user: { + id: "kD52FGwJgDF", }, - favorites: [], + dataElementGroupSetDimensions: [], translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.937", - id: "secyJOzy4J4", - created: "2016-06-08T13:43:40.305", - displayInReports: true, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 20, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "DHmAP1MjEoK" - }, + yearlySeries: [], + filterDimensions: ["ou"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea", + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H", + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR", + }, + ], + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], + userAccesses: [], favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.937", - id: "K4wQtB3HmdB", - created: "2016-11-30T01:47:34.226", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 23, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "o3F666LPvuM" - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.937", - id: "VhzvUNRlsZR", - created: "2016-09-13T16:48:18.116", - displayInReports: true, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 24, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "IcCc2qu4DnR" - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.937", - id: "HF4KB6yBSBu", - created: "2016-09-13T16:48:18.132", - displayInReports: false, - skipSynchronization: false, + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "FdfpxYmcsC3", + }, + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "FHm610XVh02", + }, + }, + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "1997", + }, + { + id: "1998", + }, + { + id: "1999", + }, + { + id: "2000", + }, + { + id: "2001", + }, + { + id: "2002", + }, + { + id: "2003", + }, + { + id: "2004", + }, + { + id: "2005", + }, + { + id: "2006", + }, + { + id: "2007", + }, + { + id: "2008", + }, + { + id: "2009", + }, + { + id: "2010", + }, + { + id: "2011", + }, + { + id: "2012", + }, + { + id: "2013", + }, + { + id: "2014", + }, + { + id: "2015", + }, + { + id: "2016", + }, + { + id: "2017", + }, + { + id: "2018", + }, + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["pe"], + }, + { + lastUpdated: "2020-06-02T08:10:06.954", + id: "Cyy6FR0wEGe", + created: "2019-05-31T21:42:05.989", + name: "MAL - Deaths", + showData: false, + numberType: "VALUE", + publicAccess: "--------", + userOrganisationUnitChildren: false, + legendDisplayStyle: "FILL", + type: "PIVOT_TABLE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + hideLegend: false, externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 25, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, + percentStackedValues: false, + legendDisplayStrategy: "FIXED", + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "ffvtB32AWOF" - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.936", - id: "ZbGhzG2pAxz", - created: "2016-11-02T23:17:46.433", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 26, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + id: "kD52FGwJgDF", }, - lastUpdatedBy: { - id: "eK26I7dRbC4" + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, }, - programStage: { - id: "hgpXE2JX97x" + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, }, - dataElement: { - id: "adfHPJQRI3C" + user: { + id: "kD52FGwJgDF", }, - favorites: [], + dataElementGroupSetDimensions: [], translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.937", - id: "I7uqIgj34yA", - created: "2016-11-10T21:00:23.945", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 27, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "wiZbIU6sFG5" - }, + yearlySeries: [], + filterDimensions: ["ou"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea", + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H", + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR", + }, + ], + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], + userAccesses: [], favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.934", - id: "DUy9Sosd4t0", - created: "2016-11-10T21:00:24.035", - displayInReports: false, - skipSynchronization: false, + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "FdfpxYmcsC3", + }, + }, + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "2000", + }, + { + id: "2001", + }, + { + id: "2002", + }, + { + id: "2003", + }, + { + id: "2004", + }, + { + id: "2005", + }, + { + id: "2006", + }, + { + id: "2007", + }, + { + id: "2008", + }, + { + id: "2009", + }, + { + id: "2010", + }, + { + id: "2011", + }, + { + id: "2012", + }, + { + id: "2013", + }, + { + id: "2014", + }, + { + id: "2015", + }, + { + id: "2016", + }, + { + id: "2017", + }, + { + id: "2018", + }, + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["pe"], + }, + { + lastUpdated: "2020-06-02T08:10:05.764", + id: "bIwPfcT9JVN", + created: "2018-01-16T10:31:41.996", + name: "MAL - Surveillance (cases and threshold) - last 12 months", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: false, + type: "LINE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "NONE", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + title: "Malaria surveillance", + hideLegend: false, externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 28, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "dRoQ0J5dKuO" - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.936", - id: "SIZDdeAClue", - created: "2016-11-10T21:00:24.048", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 29, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + id: "kD52FGwJgDF", }, - lastUpdatedBy: { - id: "eK26I7dRbC4" + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: true, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, }, - programStage: { - id: "hgpXE2JX97x" + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, }, - dataElement: { - id: "pUzlgt7peZT" + user: { + id: "kD52FGwJgDF", }, - favorites: [], + dataElementGroupSetDimensions: [], translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.934", - id: "rPHoXZ87SHA", - created: "2016-11-10T21:00:24.060", - displayInReports: true, - skipSynchronization: false, + yearlySeries: [], + filterDimensions: ["ou"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea", + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H", + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR", + }, + ], + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "rPYLomUceL4", + }, + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "tIWGvDkU6lb", + }, + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "bA6kgEyRkg0", + }, + }, + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["pe"], + }, + { + lastUpdated: "2020-06-02T08:10:05.752", + id: "SKJkOTlS8vN", + created: "2019-04-06T11:50:13.171", + name: "MAL - Positivity", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: false, + type: "LINE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "ALL", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + title: "Test Positivity", + hideLegend: false, externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 30, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, lastUpdatedBy: { - id: "eK26I7dRbC4" + id: "kD52FGwJgDF", }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "JAyZaIKj2zv" - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.935", - id: "SrbZNYPXNB7", - created: "2016-11-10T21:03:54.212", - displayInReports: true, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 31, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, }, - programStage: { - id: "hgpXE2JX97x" + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, }, - dataElement: { - id: "rWFQhbrnfMD" + user: { + id: "kD52FGwJgDF", }, - favorites: [], + dataElementGroupSetDimensions: [], translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.936", - id: "BlmMBSUevF0", - created: "2018-05-14T12:40:54.197", - displayInReports: false, - skipSynchronization: false, + yearlySeries: [], + filterDimensions: ["ou"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea", + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H", + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR", + }, + ], + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], + userAccesses: [], + favorites: [], + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "oAJpTsMsRxv", + }, + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "QHcjn7FHI2w", + }, + }, + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "1997", + }, + { + id: "1998", + }, + { + id: "1999", + }, + { + id: "2000", + }, + { + id: "2001", + }, + { + id: "2002", + }, + { + id: "2003", + }, + { + id: "2004", + }, + { + id: "2005", + }, + { + id: "2006", + }, + { + id: "2007", + }, + { + id: "2008", + }, + { + id: "2009", + }, + { + id: "2010", + }, + { + id: "2011", + }, + { + id: "2012", + }, + { + id: "2013", + }, + { + id: "2014", + }, + { + id: "2015", + }, + { + id: "2016", + }, + { + id: "2017", + }, + { + id: "2018", + }, + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["pe"], + }, + { + lastUpdated: "2020-06-02T08:10:05.755", + id: "pnEMZYfUAZt", + created: "2019-04-06T11:50:40.531", + name: "MAL - Proportion", + showData: true, + publicAccess: "--------", + userOrganisationUnitChildren: false, + type: "LINE", + hideEmptyColumns: false, + hideEmptyRows: false, + userOrganisationUnit: true, + rowSubTotals: false, + displayDensity: "NORMAL", + regressionType: "NONE", + cumulativeValues: false, + completedOnly: false, + colTotals: false, + showDimensionLabels: false, + sortOrder: 0, + fontSize: "NORMAL", + topLimit: 0, + hideEmptyRowItems: "ALL", + aggregationType: "DEFAULT", + userOrganisationUnitGrandChildren: false, + hideSubtitle: false, + title: "Proportions (OPD,IPD, Deaths)", + hideLegend: false, externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 32, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, + percentStackedValues: false, + colSubTotals: false, + noSpaceBetweenColumns: false, + showHierarchy: false, + rowTotals: false, + digitGroupSeparator: "SPACE", + hideTitle: false, + regression: false, + skipRounding: false, lastUpdatedBy: { - id: "eK26I7dRbC4" + id: "kD52FGwJgDF", }, - programStage: { - id: "hgpXE2JX97x" + relativePeriods: { + thisYear: false, + quartersLastYear: false, + last52Weeks: false, + thisWeek: false, + lastMonth: false, + last14Days: false, + biMonthsThisYear: false, + monthsThisYear: false, + last2SixMonths: false, + yesterday: false, + thisQuarter: false, + last12Months: false, + last5FinancialYears: false, + thisSixMonth: false, + lastQuarter: false, + thisFinancialYear: false, + last4Weeks: false, + last3Months: false, + thisDay: false, + thisMonth: false, + last5Years: false, + last6BiMonths: false, + last4BiWeeks: false, + lastFinancialYear: false, + lastBiWeek: false, + weeksThisYear: false, + last6Months: false, + last3Days: false, + quartersThisYear: false, + monthsLastYear: false, + lastWeek: false, + last7Days: false, + thisBimonth: false, + lastBimonth: false, + lastSixMonth: false, + thisBiWeek: false, + lastYear: false, + last12Weeks: false, + last4Quarters: false, }, - dataElement: { - id: "ZGCDiz5fZhb" + reportingParams: { + parentOrganisationUnit: false, + reportingPeriod: false, + organisationUnit: false, + grandParentOrganisationUnit: false, }, - favorites: [], + user: { + id: "kD52FGwJgDF", + }, + dataElementGroupSetDimensions: [], translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.935", - id: "f1OrYy2hEuL", - created: "2018-05-14T21:47:54.944", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 33, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "DAPNB0WxKMH" - }, + yearlySeries: [], + filterDimensions: ["ou"], + itemOrganisationUnitGroups: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "ZXEVDM9XRea", + displayName: "MAL_Malaria access", + id: "ZXEVDM9XRea", + }, + { + access: "rw------", + userGroupUid: "OviFXqdot0H", + displayName: "MAL_Malaria users", + id: "OviFXqdot0H", + }, + { + access: "rw------", + userGroupUid: "suMb19wGXPR", + displayName: "MAL_Malaria admin", + id: "suMb19wGXPR", + }, + ], + subscribers: [], + columnDimensions: ["dx"], + optionalAxes: [], + userAccesses: [], favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.934", - id: "IOnR5EK74dX", - created: "2018-10-01T16:30:29.283", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: true, - sortOrder: 34, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, + dataDimensionItems: [ + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "EiWBxnS9wmk", + }, + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "AF99VXqV5Fe", + }, + }, + { + dataDimensionItemType: "INDICATOR", + indicator: { + id: "JzWUCTqpITC", + }, + }, + ], + categoryOptionGroupSetDimensions: [], + organisationUnitGroupSetDimensions: [], + organisationUnitLevels: [], + periods: [ + { + id: "1997", + }, + { + id: "1998", + }, + { + id: "1999", + }, + { + id: "2000", + }, + { + id: "2001", + }, + { + id: "2002", + }, + { + id: "2003", + }, + { + id: "2004", + }, + { + id: "2005", + }, + { + id: "2006", + }, + { + id: "2007", + }, + { + id: "2008", + }, + { + id: "2009", + }, + { + id: "2010", + }, + { + id: "2011", + }, + { + id: "2012", + }, + { + id: "2013", + }, + { + id: "2014", + }, + { + id: "2015", + }, + { + id: "2016", + }, + { + id: "2017", + }, + { + id: "2018", + }, + ], + organisationUnits: [], + categoryDimensions: [], + rowDimensions: ["pe"], + }, + ], + }, + program1: { + categoryCombos: [ + { + code: "default", + created: "2017-05-10T17:53:55.156", + lastUpdated: "2019-02-20T16:22:55.336", + name: "default", + id: "JzvGfLYkX17", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + skipTotal: false, lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - programStage: { - id: "hgpXE2JX97x" + id: "eK26I7dRbC4", }, - dataElement: { - id: "kzgD7nD4qLI" + user: { + id: "eK26I7dRbC4", }, - favorites: [], - translations: [], userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.933", - id: "S8raF2aCPal", - created: "2020-01-14T21:28:13.551", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 36, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + translations: [], + userAccesses: [], + categories: [ + { + id: "DMyxTSpvKOp", + }, + ], + }, + ], + programs: [ + { + lastUpdated: "2020-06-04T17:17:44.859", + id: "yx6VLBFBlrK", + created: "2019-08-21T11:19:35.553", + name: "ADMIN_Analytics_Check(Event)", + shortName: "ADMIN_Analytics_Check(Event)", + publicAccess: "--------", + completeEventsExpiryDays: 0, + ignoreOverdueEvents: false, + skipOffline: false, + featureType: "NONE", + minAttributesRequiredToSearch: 1, + displayFrontPageList: false, + onlyEnrollOnce: false, + programType: "WITHOUT_REGISTRATION", + accessLevel: "OPEN", + version: 1, + maxTeiCountToReturn: 0, + selectIncidentDatesInFuture: false, + displayIncidentDate: true, + selectEnrollmentDatesInFuture: false, + expiryDays: 0, + useFirstStageDuringRegistration: false, + categoryCombo: { + id: "JzvGfLYkX17", }, - programStage: { - id: "hgpXE2JX97x" + lastUpdatedBy: { + id: "H4atNsEuKxP", }, - dataElement: { - id: "LJHNsKzZ8Mg" + user: { + id: "kD52FGwJgDF", }, - favorites: [], + programTrackedEntityAttributes: [], + notificationTemplates: [], translations: [], - userGroupAccesses: [], + organisationUnits: [ + { + id: "H8RixfF8ugH", + }, + ], + userGroupAccesses: [ + { + access: "r-r-----", + userGroupUid: "sCjEPgiOhP1", + displayName: "WIDP admins", + id: "sCjEPgiOhP1", + }, + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + programSections: [], attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.938", - id: "XfbM7NmxzRh", - created: "2020-01-14T21:28:13.553", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 37, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "Q7dOlqe54eh" + programStages: [ + { + id: "EGA9fqLFtxM", + }, + ], + userAccesses: [], + }, + ], + categoryOptionCombos: [ + { + lastUpdated: "2017-05-10T17:53:55.158", + code: "default", + created: "2017-05-10T17:53:55.157", + name: "default", + id: "Xr12mI7VPn3", + ignoreApproval: false, + categoryCombo: { + id: "JzvGfLYkX17", }, - favorites: [], translations: [], - userGroupAccesses: [], attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.934", - id: "A1ouDbnrJ2K", - created: "2020-01-14T21:28:13.553", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 38, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + categoryOptions: [ + { + id: "Y7fcspgsU43", + }, + ], + }, + ], + programStages: [ + { + lastUpdated: "2020-06-04T17:17:44.805", + id: "EGA9fqLFtxM", + created: "2019-08-21T11:19:35.521", + name: "ADMIN_Analytics_Check(Event)", + allowGenerateNextVisit: false, + preGenerateUID: false, + publicAccess: "--------", + openAfterEnrollment: false, + repeatable: false, + featureType: "NONE", + remindCompleted: false, + displayGenerateEventBox: true, + generatedByEnrollmentDate: false, + validationStrategy: "ON_UPDATE_AND_INSERT", + autoGenerateEvent: true, + sortOrder: 1, + hideDueDate: false, + blockEntryForm: false, + enableUserAssignment: false, + minDaysFromStart: 0, + program: { + id: "yx6VLBFBlrK", }, - programStage: { - id: "hgpXE2JX97x" + lastUpdatedBy: { + id: "H4atNsEuKxP", }, - dataElement: { - id: "bTwp4cKNjgZ" + user: { + id: "kD52FGwJgDF", }, - favorites: [], + notificationTemplates: [], + programStageDataElements: [ + { + lastUpdated: "2020-06-04T17:17:44.806", + id: "QxkWkYWHGhS", + created: "2019-09-10T17:17:31.872", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 1, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "EGA9fqLFtxM", + }, + dataElement: { + id: "JKmrptCJjQN", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2020-06-04T17:17:44.806", + id: "lggWjTVxKXg", + created: "2019-09-10T17:17:44.152", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 2, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "EGA9fqLFtxM", + }, + dataElement: { + id: "KfhTiPYwKPm", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], translations: [], - userGroupAccesses: [], + userGroupAccesses: [ + { + access: "r-r-----", + userGroupUid: "sCjEPgiOhP1", + displayName: "WIDP admins", + id: "sCjEPgiOhP1", + }, + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.937", - id: "E66yBUG6gTG", - created: "2020-01-14T21:28:13.551", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 38, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "gc8rKk6Hax6" + userAccesses: [], + programStageSections: [], + }, + ], + categoryOptions: [ + { + code: "default", + created: "2017-05-10T17:53:55.138", + lastUpdated: "2018-07-27T16:09:07.425", + name: "default", + id: "Y7fcspgsU43", + shortName: "default", + publicAccess: "rwrw----", + user: { + id: "eK26I7dRbC4", }, - favorites: [], - translations: [], userGroupAccesses: [], attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.936", - id: "wljGO43myNe", - created: "2020-01-14T21:28:13.552", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 39, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + translations: [], + userAccesses: [], + organisationUnits: [], + }, + ], + dataElements: [ + { + lastUpdated: "2020-06-05T11:13:45.280", + id: "JKmrptCJjQN", + created: "2019-09-10T17:16:59.679", + name: "ADMIN_Analytics_Execution_1_Events", + shortName: "ADMIN_Analytics_Execution_1_Events", + aggregationType: "SUM", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Analytics run at 0h", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17", }, - programStage: { - id: "hgpXE2JX97x" + lastUpdatedBy: { + id: "eK26I7dRbC4", }, - dataElement: { - id: "PMlpZH7wYON" + user: { + id: "H4atNsEuKxP", }, - favorites: [], translations: [], - userGroupAccesses: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "sCjEPgiOhP1", + displayName: "WIDP admins", + id: "sCjEPgiOhP1", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.935", - id: "haxC12SZsvs", - created: "2020-01-14T21:28:13.554", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 40, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + lastUpdated: "2020-06-05T11:13:56.574", + id: "KfhTiPYwKPm", + created: "2019-09-10T17:17:18.194", + name: "ADMIN_Analytics_Execution_2_Events", + shortName: "ADMIN_Analytics_Execution_2_Events", + aggregationType: "SUM", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Analytics run at 12h", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17", }, - programStage: { - id: "hgpXE2JX97x" + lastUpdatedBy: { + id: "eK26I7dRbC4", }, - dataElement: { - id: "KcYECFOPVpR" + user: { + id: "H4atNsEuKxP", }, - favorites: [], translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.936", - id: "D6GevHoIeUZ", - created: "2020-01-14T21:28:13.553", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 41, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "e8XmDDvKCT1" - }, - favorites: [], - translations: [], - userGroupAccesses: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "sCjEPgiOhP1", + displayName: "WIDP admins", + id: "sCjEPgiOhP1", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.934", - id: "AHdDAWvCDhC", - created: "2020-01-14T21:28:13.550", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 42, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "YrSJMlEJWEC" + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + ], + categories: [ + { + code: "default", + created: "2017-05-10T17:53:55.152", + lastUpdated: "2021-08-07T06:18:19.628", + name: "default", + id: "DMyxTSpvKOp", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + dataDimension: false, + user: { + id: "eK26I7dRbC4", }, - favorites: [], - translations: [], userGroupAccesses: [], attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.935", - id: "N3nkAIkavnF", - created: "2020-01-14T21:28:13.552", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 43, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "XyGxsyiIy4p" - }, - favorites: [], translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.937", - id: "NtXysyvaAJZ", - created: "2020-01-14T21:28:13.553", + userAccesses: [], + categoryOptions: [ + { + id: "Y7fcspgsU43", + }, + ], + }, + ], + programStageDataElements: [ + { + created: "2019-09-10T17:17:31.872", + lastUpdated: "2020-06-04T17:17:44.806", + id: "QxkWkYWHGhS", displayInReports: false, skipSynchronization: false, - externalAccess: false, renderOptionsAsRadio: false, - allowFutureDate: false, compulsory: false, allowProvidedElsewhere: false, - sortOrder: 44, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "uNdVSTX6lSE" - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.937", - id: "AFGlVbgoLHS", - created: "2020-01-14T21:28:13.553", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, + sortOrder: 1, allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 45, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, programStage: { - id: "hgpXE2JX97x" + id: "EGA9fqLFtxM", }, dataElement: { - id: "xIo6fsgpmdN" + id: "JKmrptCJjQN", }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.935", - id: "GT8JlUaUein", - created: "2020-01-14T23:53:14.411", + }, + { + created: "2019-09-10T17:17:44.152", + lastUpdated: "2020-06-04T17:17:44.806", + id: "lggWjTVxKXg", displayInReports: false, skipSynchronization: false, - externalAccess: false, renderOptionsAsRadio: false, - allowFutureDate: false, compulsory: false, allowProvidedElsewhere: false, - sortOrder: 46, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "BYPbyk5W7SL" - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.936", - id: "p8M6Bz8SPDH", - created: "2020-01-15T00:22:45.728", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, + sortOrder: 2, allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 46, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, programStage: { - id: "hgpXE2JX97x" + id: "EGA9fqLFtxM", }, dataElement: { - id: "VYGsfmL36PY" - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.935", - id: "zI45THkcblV", - created: "2020-01-15T01:14:08.815", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 47, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + id: "KfhTiPYwKPm", }, - programStage: { - id: "hgpXE2JX97x" + }, + ], + }, + program2: { + categoryCombos: [ + { + code: "default", + created: "2017-05-10T17:53:55.156", + lastUpdated: "2019-02-20T16:22:55.336", + name: "default", + id: "JzvGfLYkX17", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + skipTotal: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", }, - dataElement: { - id: "silWE44JpaQ" + user: { + id: "eK26I7dRbC4", }, - favorites: [], - translations: [], userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.936", - id: "rq4keDCBetL", - created: "2020-01-16T00:22:51.423", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 48, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true + translations: [], + userAccesses: [], + categories: [ + { + id: "DMyxTSpvKOp", + }, + ], + }, + ], + programs: [ + { + lastUpdated: "2020-06-04T17:17:12.801", + id: "rjsnrRKjtwU", + created: "2019-08-21T11:24:20.251", + name: "ADMIN_Analytics_Check(Tracker)", + shortName: "ADMIN_Analytics_Check(Tracker)", + publicAccess: "--------", + completeEventsExpiryDays: 0, + ignoreOverdueEvents: false, + skipOffline: false, + featureType: "NONE", + minAttributesRequiredToSearch: 1, + displayFrontPageList: false, + onlyEnrollOnce: false, + programType: "WITH_REGISTRATION", + accessLevel: "OPEN", + version: 2, + maxTeiCountToReturn: 0, + selectIncidentDatesInFuture: false, + displayIncidentDate: true, + selectEnrollmentDatesInFuture: false, + expiryDays: 0, + useFirstStageDuringRegistration: false, + categoryCombo: { + id: "JzvGfLYkX17", }, - programStage: { - id: "hgpXE2JX97x" + lastUpdatedBy: { + id: "H4atNsEuKxP", }, - dataElement: { - id: "ggwHn45jtgh" + trackedEntityType: { + id: "MCPQUTHX1Ze", }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [] - }, - { - lastUpdated: "2021-03-01T11:32:51.938", - id: "uY2T46apQBY", - created: "2021-03-01T11:32:51.938", - displayInReports: false, - skipSynchronization: false, - externalAccess: false, - renderOptionsAsRadio: false, - allowFutureDate: false, - compulsory: false, - allowProvidedElsewhere: false, - sortOrder: 49, - favorite: false, - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - programStage: { - id: "hgpXE2JX97x" - }, - dataElement: { - id: "NzJkoIvwyCh" + user: { + id: "kD52FGwJgDF", }, - favorites: [], + programTrackedEntityAttributes: [ + { + lastUpdated: "2020-06-04T17:17:12.802", + id: "OT1TfVwhsBO", + created: "2019-09-11T12:37:56.247", + name: "ADMIN_Analytics_Check(Tracker) First name", + displayName: "ADMIN_Analytics_Check(Tracker) First name", + mandatory: false, + displayShortName: "ADMIN_Analytics_Check(Tracker) First Name", + externalAccess: false, + renderOptionsAsRadio: false, + valueType: "TEXT", + allowFutureDate: false, + searchable: true, + displayInList: true, + sortOrder: 1, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + program: { + id: "rjsnrRKjtwU", + }, + trackedEntityAttribute: { + id: "DwZNiXy5Daz", + }, + favorites: [], + programTrackedEntityAttributeGroups: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + notificationTemplates: [], translations: [], - userGroupAccesses: [], + organisationUnits: [ + { + id: "H8RixfF8ugH", + }, + ], + userGroupAccesses: [ + { + access: "r-r-----", + userGroupUid: "sCjEPgiOhP1", + displayName: "WIDP admins", + id: "sCjEPgiOhP1", + }, + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + programSections: [], attributeValues: [], - userAccesses: [] - } - ], - translations: [], - userGroupAccesses: [ - { - access: "r-rw----", - userGroupUid: "cT8WhjLqmH9", - displayName: "SS_NTD_Skin_Yaws_Surv_Global_Entry", - id: "cT8WhjLqmH9" - }, - { - access: "r-r-----", - userGroupUid: "IPzz6wlkIp0", - displayName: "NTD_SKIN_MYC_HQ", - id: "IPzz6wlkIp0" - }, - { - access: "r-r-----", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-r-----", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-rw----", - userGroupUid: "bzuIPO5zQPV", - displayName: "SS_NTD_SKIN_BU_Event_Entry", - id: "bzuIPO5zQPV" - }, - { - access: "r-r-----", - userGroupUid: "cy0qXsDxzxe", - displayName: "SS_NTD_LSH_VL_LabLog_View", - id: "cy0qXsDxzxe" - }, - { - access: "r-r-----", - userGroupUid: "YWgdwKzbsnN", - displayName: "SS_NTD_LSH_VL_Event_View", - id: "YWgdwKzbsnN" - }, - { - access: "r-r-----", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-rw----", - userGroupUid: "I95k8bm5q5J", - displayName: "SS_NTD_LSH_SUPPLY_DispatchHQ_Entry", - id: "I95k8bm5q5J" - }, - { - access: "rwr-----", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-rw----", - userGroupUid: "IsbhpWFqxOx", - displayName: "SS_NTD_Skin_MYC_GlSurv_Entry", - id: "IsbhpWFqxOx" - }, - { - access: "rwrw----", - userGroupUid: "r4gcKCyB5fF", - displayName: "NTD_LSH_VL_PHC", - id: "r4gcKCyB5fF" - }, - { - access: "r-r-----", - userGroupUid: "DRlUpjkyeT9", - displayName: "SS_NTD_SKIN_MYC_GlSurv_View", - id: "DRlUpjkyeT9" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-rw----", - userGroupUid: "AKCiUSICdUT", - displayName: "SS_NTD_LSH_VL_Event_Entry", - id: "AKCiUSICdUT" - }, - { - access: "r-rw----", - userGroupUid: "TbGA9fMJpCR", - displayName: "SS_NTD_LSH_VL_LabLog_Entry", - id: "TbGA9fMJpCR" - }, - { - access: "r-r-----", - userGroupUid: "KZ2hDNFMcvB", - displayName: "SS_NTD_LSH_SUPPLY_DispatchHQ_View", - id: "KZ2hDNFMcvB" - }, - { - access: "rwr-----", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-r-----", - userGroupUid: "UQe9YTumaCV", - displayName: "SS_NTD_SKIN_BU_Event_View", - id: "UQe9YTumaCV" - }, - { - access: "r-r-----", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "r-r-----", - userGroupUid: "peFZC729hMn", - displayName: "SS_NTD_Skin_Yaws_Surv_Global_View", - id: "peFZC729hMn" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-rw----", - displayName: "Duplicator Event", - id: "UlXOWwGGx7W", - userUid: "UlXOWwGGx7W" - }, - { - access: "r-r-----", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - programStageSections: [ - { - id: "JuoTOHBrYjD" - }, - { - id: "WKQvNhjIme6" - }, - { - id: "UaLdvwjiwJ4" - }, - { - id: "lA5R8jpglUg" - }, - { - id: "XoBIzGaZOLn" - }, - { - id: "bfQc4NoPHD9" - }, - { - id: "kmERl23mQ8R" - }, - { - id: "AJDiEfldKyX" - } - ] - } - ], - options: [ - { - code: "Op_Country_VEN", - created: "2016-07-04T14:36:48.743", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Venezuela (Bolivarian Republic of)", - id: "JEYcfbIKDqM", - sortOrder: 240, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_XOD", - created: "2016-07-04T14:36:48.740", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Rodrigues", - id: "H8AEpkxvjRU", - sortOrder: 177, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_RUS", - created: "2016-07-04T14:36:48.740", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Russian Federation", - id: "y0ZlulciMOf", - sortOrder: 179, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_TUR", - created: "2016-07-04T14:36:48.742", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Turkey", - id: "aewMRLmf9a9", - sortOrder: 223, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Partially healed", - created: "2019-06-05T07:42:44.563", - lastUpdated: "2020-11-20T12:44:52.663", - name: "Partially healed", - id: "Bp5pucqpTey", - sortOrder: 2, - optionSet: { - id: "tGr5pbgz67Z" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_QAT", - created: "2016-07-04T14:36:48.739", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Qatar", - id: "mKpPeqR2hX2", - sortOrder: 173, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_ETH", - created: "2016-07-04T14:36:48.726", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Ethiopia", - id: "bdZkKddbme4", - sortOrder: 73, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_AFG", - created: "2016-07-04T14:36:48.721", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Afghanistan", - id: "GNF8jdbZ8Dw", - sortOrder: 3, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_MDG", - created: "2016-07-04T14:36:48.729", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Madagascar", - id: "EvekRRBnMx4", - sortOrder: 127, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "1", - created: "2017-10-24T12:08:13.319", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Yes", - id: "CDIYMO9r2pv", - sortOrder: 1, - optionSet: { - id: "mJKvd2WXQtp" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Oui" - } - ] - }, - { - code: "Op_Country_MOZ", - created: "2016-07-04T14:36:48.730", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Mozambique", - id: "cDIdNAHmPrE", - sortOrder: 145, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_LKA", - created: "2016-07-04T14:36:48.741", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Sri Lanka", - id: "boiuNkaV65n", - sortOrder: 205, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_ARM", - created: "2016-07-04T14:36:48.722", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Armenia", - id: "idhYV7lcUgH", - sortOrder: 12, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_CIV", - created: "2016-07-04T14:36:48.724", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Cote d'Ivoire", - id: "FjJGgqd4e0t", - sortOrder: 54, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_PRI", - created: "2016-07-04T14:36:48.739", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Puerto Rico", - id: "kRFzU19Xd1Y", - sortOrder: 172, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_SMR", - created: "2016-07-04T14:36:48.740", - lastUpdated: "2021-04-29T19:44:45.084", - name: "San Marino", - id: "X1rvZAaWg66", - sortOrder: 188, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_PAN", - created: "2016-07-04T14:36:48.731", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Panama", - id: "FjYmkLvW8hG", - sortOrder: 164, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_XX6", - created: "2016-07-04T14:36:48.727", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Germany, Former Democratic Republic", - id: "htZ89VAlt02", - sortOrder: 85, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_GMB", - created: "2016-07-04T14:36:48.726", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Gambia", - id: "afoGJejzdk9", - sortOrder: 82, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_NPL", - created: "2016-07-04T14:36:48.730", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Nepal", - id: "X9nQoyVwrsn", - sortOrder: 149, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_ZWE", - created: "2016-07-04T14:36:48.754", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Zimbabwe", - id: "XObEvb5qGAA", - sortOrder: 248, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_PSE", - created: "2016-07-04T14:36:48.754", - lastUpdated: "2021-04-29T19:44:45.085", - name: "West Bank and Gaza Strip", - id: "u6kafve6PQR", - sortOrder: 244, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_MLT", - created: "2016-07-04T14:36:48.729", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Malta", - id: "i7A3r980S0D", - sortOrder: 132, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_MNG", - created: "2016-07-04T14:36:48.730", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Mongolia", - id: "rtFuIPE4rvK", - sortOrder: 141, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Referred", - created: "2019-06-05T07:40:39.023", - lastUpdated: "2020-11-26T15:59:21.153", - name: "Referred ", - id: "jtEMRBZkuHe", - sortOrder: 2, - optionSet: { - id: "ESSQcpsmBse" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Référé" - } - ] - }, - { - code: "Died", - created: "2019-06-05T07:41:25.688", - lastUpdated: "2020-11-26T15:59:21.153", - name: "Died", - id: "i2FNFG2CgtO", - sortOrder: 4, - optionSet: { - id: "ESSQcpsmBse" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Mort" - } - ] - }, - { - code: "Op_Country_LBY", - created: "2016-07-04T14:36:48.729", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Libya", - id: "Pm4Jv8Hp8kE", - sortOrder: 123, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_LVA", - created: "2016-07-04T14:36:48.728", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Latvia", - id: "ULrEOBUJNtC", - sortOrder: 119, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_PHL", - created: "2016-07-04T14:36:48.731", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Philippines", - id: "UyeM42XQdUL", - sortOrder: 168, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_ATG", - created: "2016-07-04T14:36:48.722", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Antigua and Barbuda", - id: "cQkGLAeVhei", - sortOrder: 10, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_LBN", - created: "2016-07-04T14:36:48.729", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Lebanon", - id: "whL5no7kcff", - sortOrder: 120, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_VNM", - created: "2016-07-04T14:36:48.743", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Viet Nam", - id: "cMsUdHzYjEm", - sortOrder: 241, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_DJI", - created: "2016-07-04T14:36:48.725", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Djibouti", - id: "dA1bzDuyJpa", - sortOrder: 64, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_GUF", - created: "2016-07-04T14:36:48.726", - lastUpdated: "2021-04-29T19:44:45.084", - name: "French Guiana", - id: "LBzfnDqxl0M", - sortOrder: 79, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_Unknown", - created: "2016-07-04T14:36:48.721", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Country Unknown", - id: "ROD72U5e1KY", - sortOrder: 2, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_BHR", - created: "2016-07-04T14:36:48.722", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Bahrain", - id: "yNiomNqisdT", - sortOrder: 18, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_BWA", - created: "2016-07-04T14:36:48.723", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Botswana", - id: "eoBbae6v8Is", - sortOrder: 30, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_XX1", - created: "2016-07-04T14:36:48.724", - lastUpdated: "2021-04-29T19:44:45.084", - name: "China: Province of Taiwan only", - id: "oN6N4VVymmD", - sortOrder: 48, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_NZL", - created: "2016-07-04T14:36:48.730", - lastUpdated: "2021-04-29T19:44:45.084", - name: "New Zealand", - id: "kxbQFgx63UI", - sortOrder: 153, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_CPV", - created: "2016-07-04T14:36:48.723", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Cabo Verde", - id: "eWVs9rhuRhl", - sortOrder: 37, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_SDF", - created: "2016-07-04T14:36:48.741", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Sudan (former)", - id: "RfNF6JV3ecp", - sortOrder: 207, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_COD", - created: "2016-07-04T14:36:48.725", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Democratic Republic of the Congo", - id: "C4WPfBbbyLg", - sortOrder: 62, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_SLB", - created: "2016-07-04T14:36:48.741", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Solomon Islands", - id: "AIx354YR3oy", - sortOrder: 200, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_KEN", - created: "2016-07-04T14:36:48.728", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Kenya", - id: "SAmZtKTfG80", - sortOrder: 114, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_UZB", - created: "2016-07-04T14:36:48.743", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Uzbekistan", - id: "QkFFXvco1QM", - sortOrder: 238, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_BRA", - created: "2016-07-04T14:36:48.723", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Brazil", - id: "XysXrwrAdcb", - sortOrder: 31, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_KAZ", - created: "2016-07-04T14:36:48.728", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Kazakhstan", - id: "G4eMnJNlEhT", - sortOrder: 113, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_NER", - created: "2016-07-04T14:36:48.730", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Niger", - id: "tzhv86drYJH", - sortOrder: 155, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_SRB", - created: "2016-07-04T14:36:48.741", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Serbia", - id: "WmpDHvUrndV", - sortOrder: 192, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_SYC", - created: "2016-07-04T14:36:48.741", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Seychelles", - id: "IWYV2nhwswl", - sortOrder: 194, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_BEN", - created: "2016-07-04T14:36:48.722", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Benin", - id: "yIswGPbNEZk", - sortOrder: 24, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_FRO", - created: "2016-07-04T14:36:48.726", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Faroe Islands", - id: "cI94C2PcXsS", - sortOrder: 75, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_PLW", - created: "2016-07-04T14:36:48.731", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Palau", - id: "hr3HqQmzN7f", - sortOrder: 163, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_ARE", - created: "2016-07-04T14:36:48.742", - lastUpdated: "2021-04-29T19:44:45.084", - name: "United Arab Emirates", - id: "UftyLoueGB8", - sortOrder: 229, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Not done", - created: "2019-05-20T09:58:31.063", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Not done", - id: "ktd2pbc0DJl", - sortOrder: 4, - optionSet: { - id: "vQBOhNnE09a" - }, - style: { - icon: "no_positive" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Non effectue" - }, - { - property: "NAME", - locale: "fr", - value: "Non effectué" - } - ] - }, - { - code: "Op_Country_BFA", - created: "2016-07-04T14:36:48.723", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Burkina Faso", - id: "ftPDQflDhP4", - sortOrder: 35, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_CYP", - created: "2016-07-04T14:36:48.724", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Cyprus", - id: "FaU1a7FxQGn", - sortOrder: 58, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_SHN", - created: "2016-07-04T14:36:48.740", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Saint Helena", - id: "UxsQKwqAuGh", - sortOrder: 182, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_GRD", - created: "2016-07-04T14:36:48.727", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Grenada", - id: "sZJBFcxVY8g", - sortOrder: 92, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_IND", - created: "2016-07-04T14:36:48.728", - lastUpdated: "2021-04-29T19:44:45.084", - name: "India", - id: "TA7D8hfDnL6", - sortOrder: 103, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_SVK", - created: "2016-07-04T14:36:48.741", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Slovakia", - id: "xPe8txtq1S7", - sortOrder: 198, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_BGR", - created: "2016-07-04T14:36:48.723", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Bulgaria", - id: "UkW0Ae3paRK", - sortOrder: 34, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_DEU", - created: "2016-07-04T14:36:48.727", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Germany", - id: "A4mupXkA7Tk", - sortOrder: 84, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_JAM", - created: "2016-07-04T14:36:48.728", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Jamaica", - id: "C5Ly52gvu3w", - sortOrder: 110, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Healed", - created: "2019-06-05T07:40:23.311", - lastUpdated: "2020-11-26T15:59:21.153", - name: "Healed", - id: "Vir718Xtmot", - sortOrder: 1, - optionSet: { - id: "ESSQcpsmBse" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Guéri" - } - ] - }, - { - code: "Op_Country_LUX", - created: "2016-07-04T14:36:48.729", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Luxembourg", - id: "erOhrWyHhDY", - sortOrder: 126, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_NIU", - created: "2016-07-04T14:36:48.730", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Niue", - id: "NBcbgJQuPq8", - sortOrder: 157, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_COM", - created: "2016-07-04T14:36:48.724", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Comoros", - id: "ZtNH7EW51t0", - sortOrder: 50, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_SOM", - created: "2016-07-04T14:36:48.741", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Somalia", - id: "ejSCE1PrzIR", - sortOrder: 201, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_GNQ", - created: "2016-07-04T14:36:48.726", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Equatorial Guinea", - id: "oXpUVu6DhB2", - sortOrder: 70, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Unknown", - created: "2019-06-19T02:05:29.853", - lastUpdated: "2020-11-26T15:59:21.154", - name: "Unknown", - id: "kj4jM9bi8MB", - sortOrder: 4, - optionSet: { - id: "Al6DsS3DTve" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Ne sait pas" - } - ] - }, - { - code: "Op_Country_DNK", - created: "2016-07-04T14:36:48.725", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Denmark", - id: "dZcbeWdMWsZ", - sortOrder: 63, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_WLF", - created: "2016-07-04T14:36:48.754", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Wallis and Futuna Islands", - id: "E3kChU0S6Ty", - sortOrder: 243, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_GBR", - created: "2016-07-04T14:36:48.742", - lastUpdated: "2021-04-29T19:44:45.084", - name: "United Kingdom of Great Britain and Northern Ireland", - id: "eHHU7uow2mi", - sortOrder: 230, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_BRN", - created: "2016-07-04T14:36:48.723", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Brunei Darussalam", - id: "g4TjSILnkWf", - sortOrder: 33, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_ISL", - created: "2016-07-04T14:36:48.728", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Iceland", - id: "yDeHDMclb90", - sortOrder: 102, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_ANT", - created: "2016-07-04T14:36:48.730", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Netherlands Antilles", - id: "FiPEiArokkj", - sortOrder: 151, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_KHM", - created: "2016-07-04T14:36:48.723", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Cambodia", - id: "ekwPeN3y8hn", - sortOrder: 38, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_MSR", - created: "2016-07-04T14:36:48.730", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Montserrat", - id: "HIoE2KG4A61", - sortOrder: 143, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_MDA", - created: "2016-07-04T14:36:48.739", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Republic of Moldova", - id: "aOpMFzlaTp0", - sortOrder: 175, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_BU_Tx_Other", - created: "2016-09-25T15:42:09.607", - lastUpdated: "2020-11-26T14:22:19.724", - name: "Other AB", - id: "s914v1OKfcW", - sortOrder: 3, - optionSet: { - id: "cYVMBWrU2Pi" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_AND", - created: "2016-07-04T14:36:48.722", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Andorra", - id: "aaXQWSasFYh", - sortOrder: 7, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_CUB", - created: "2016-07-04T14:36:48.724", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Cuba", - id: "X7tLQ18rhaG", - sortOrder: 56, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_COL", - created: "2016-07-04T14:36:48.724", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Colombia", - id: "mQGGbSz6cee", - sortOrder: 49, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_CZE", - created: "2016-07-04T14:36:48.725", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Czech Republic", - id: "Rb24lhnATCV", - sortOrder: 59, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_TLS", - created: "2016-07-04T14:36:48.742", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Timor-Leste", - id: "HepCKGVZOF9", - sortOrder: 217, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_MMR", - created: "2016-07-04T14:36:48.730", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Myanmar", - id: "DwOOv26iA48", - sortOrder: 146, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_GUY", - created: "2016-07-04T14:36:48.727", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Guyana", - id: "ielTPI84eJZ", - sortOrder: 98, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "LTFU", - created: "2019-06-05T07:43:31.598", - lastUpdated: "2020-11-20T12:44:52.663", - name: "Lost-to-follow-up", - id: "Nz4Cw1ckLD2", - sortOrder: 5, - optionSet: { - id: "tGr5pbgz67Z" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_GRC", - created: "2016-07-04T14:36:48.727", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Greece", - id: "YkDHxJoSdxP", - sortOrder: 90, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_MWI", - created: "2016-07-04T14:36:48.729", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Malawi", - id: "hK6W9ljkGqw", - sortOrder: 128, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_NFK", - created: "2016-07-04T14:36:48.731", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Norfolk Island", - id: "g3iNcMjOKf2", - sortOrder: 158, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_BRB", - created: "2016-07-04T14:36:48.722", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Barbados", - id: "Kfq910gLIPA", - sortOrder: 20, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_X12", - created: "2016-07-04T14:36:48.743", - lastUpdated: "2021-04-29T19:44:45.084", - name: "United Kingdom, Scotland", - id: "GkfStXJBJqs", - sortOrder: 233, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_BIH", - created: "2016-07-04T14:36:48.723", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Bosnia and Herzegovina", - id: "J38ZkiquJmy", - sortOrder: 29, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_BDI", - created: "2016-07-04T14:36:48.723", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Burundi", - id: "N6LwQ834t7C", - sortOrder: 36, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_MUS", - created: "2016-07-04T14:36:48.729", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Mauritius", - id: "nh1m0TLoIh8", - sortOrder: 136, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_CMR", - created: "2016-07-04T14:36:48.723", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Cameroon", - id: "fVGpda6m2J1", - sortOrder: 39, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Referred", - created: "2019-06-05T07:43:04.892", - lastUpdated: "2020-11-20T12:44:52.663", - name: "Referred", - id: "y9unlLhGO4k", - sortOrder: 3, - optionSet: { - id: "tGr5pbgz67Z" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_NCL", - created: "2016-07-04T14:36:48.730", - lastUpdated: "2021-04-29T19:44:45.084", - name: "New Caledonia", - id: "rM46cgyO8rb", - sortOrder: 152, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_PCN", - created: "2016-07-04T14:36:48.731", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Pitcairn Island", - id: "XXEL9RuJPCO", - sortOrder: 169, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_CRI", - created: "2016-07-04T14:36:48.724", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Costa Rica", - id: "DIMY2GI3N0D", - sortOrder: 53, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_JPN", - created: "2016-07-04T14:36:48.728", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Japan", - id: "cBKW7YJr4rO", - sortOrder: 111, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_COG", - created: "2016-07-04T14:36:48.724", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Congo", - id: "fSwZ2dQsngS", - sortOrder: 51, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_KWT", - created: "2016-07-04T14:36:48.728", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Kuwait", - id: "x0psf8EdDge", - sortOrder: 116, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_UGA", - created: "2016-07-04T14:36:48.742", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Uganda", - id: "aKJBQ499p7T", - sortOrder: 227, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_MLI", - created: "2016-07-04T14:36:48.729", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Mali", - id: "xyem51RudNi", - sortOrder: 131, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_FLK", - created: "2016-07-04T14:36:48.726", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Falkland Islands (Malvinas)", - id: "rmlWP6qawBg", - sortOrder: 74, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_HTI", - created: "2016-07-04T14:36:48.727", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Haiti", - id: "eT6EbUJF8xK", - sortOrder: 99, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_TKM", - created: "2016-07-04T14:36:48.742", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Turkmenistan", - id: "NEuSYMjN31a", - sortOrder: 224, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_ASM", - created: "2016-07-04T14:36:48.722", - lastUpdated: "2021-04-29T19:44:45.084", - name: "American Samoa", - id: "RgllCEY0K6B", - sortOrder: 6, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_THA", - created: "2016-07-04T14:36:48.742", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Thailand", - id: "DOHMCSDIbCb", - sortOrder: 214, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "New", - created: "2019-06-19T02:04:20.481", - lastUpdated: "2020-11-26T15:59:21.154", - name: "New case", - id: "qVOty3cF2WA", - sortOrder: 1, - optionSet: { - id: "Al6DsS3DTve" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Nouveau cas" - } - ] - }, - { - code: "Op_Country_PRK", - created: "2016-07-04T14:36:48.725", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Democratic People's Republic of Korea", - id: "LhTmzpsK3Be", - sortOrder: 61, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_SDN", - created: "2016-07-04T14:36:48.741", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Sudan", - id: "DcGZ6Rn7qle", - sortOrder: 206, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Gender_Unknown", - created: "2016-07-04T14:36:48.721", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Unknown", - id: "DL8exJ3mxUX", - sortOrder: 3, - optionSet: { - id: "apzFCMWeffA" - }, - style: { - icon: "question_circle_positive" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Ne sait pas" - } - ] - }, - { - code: "Op_Country_BMU", - created: "2016-07-04T14:36:48.723", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Bermuda", - id: "qwwz0vNXMD3", - sortOrder: 25, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_ERI", - created: "2016-07-04T14:36:48.726", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Eritrea", - id: "jh3zGJQi06D", - sortOrder: 71, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_GHA", - created: "2016-07-04T14:36:48.727", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Ghana", - id: "oTNU8h07Q7x", - sortOrder: 88, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_SYR", - created: "2016-07-04T14:36:48.742", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Syrian Arab Republic", - id: "Mm43urCbMp9", - sortOrder: 212, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_NOR", - created: "2016-07-04T14:36:48.731", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Norway", - id: "vKiKgfvmaOs", - sortOrder: 160, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_ROU", - created: "2016-07-04T14:36:48.740", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Romania", - id: "PHh2qZ7KS7X", - sortOrder: 178, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_RWA", - created: "2016-07-04T14:36:48.740", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Rwanda", - id: "D82B1UTMfPL", - sortOrder: 180, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_MHL", - created: "2016-07-04T14:36:48.729", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Marshall Islands", - id: "BbVCIp24olr", - sortOrder: 133, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_HKG", - created: "2016-07-04T14:36:48.724", - lastUpdated: "2021-04-29T19:44:45.084", - name: "China, Hong Kong Special Administrative Region", - id: "Ksv0YWONey8", - sortOrder: 46, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_TUN", - created: "2016-07-04T14:36:48.742", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Tunisia", - id: "UPJI4u2Zpao", - sortOrder: 222, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_BOL", - created: "2016-07-04T14:36:48.723", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Bolivia (Plurinational State of)", - id: "oPg7wRipLh4", - sortOrder: 27, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_BEL", - created: "2016-07-04T14:36:48.722", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Belgium", - id: "EaE88cArPz5", - sortOrder: 22, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_AUS", - created: "2016-07-04T14:36:48.722", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Australia", - id: "KAJ7p4zcnJt", - sortOrder: 14, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_GEO", - created: "2016-07-04T14:36:48.727", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Georgia", - id: "wumaFN6DN2W", - sortOrder: 83, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_PRT", - created: "2016-07-04T14:36:48.739", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Portugal", - id: "j12hkmb7DHr", - sortOrder: 171, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Positive", - created: "2019-05-20T09:57:54.719", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Positive", - id: "PThinVriWjI", - sortOrder: 1, - optionSet: { - id: "vQBOhNnE09a" - }, - style: { - color: "#ef2222" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Positive" - }, - { - property: "NAME", - locale: "fr", - value: "Positif" - } - ] - }, - { - code: "Op_Country_GLP", - created: "2016-07-04T14:36:48.727", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Guadeloupe", - id: "y8urVZCHd1T", - sortOrder: 93, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_VUT", - created: "2016-07-04T14:36:48.743", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Vanuatu", - id: "XnUtsN4s1HS", - sortOrder: 239, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Tx_complete_stop", - created: "2017-01-12T02:07:25.647", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Treatment stopped for medical reasons", - id: "YDDAfmgEMih", - sortOrder: 2, - optionSet: { - id: "TqJC6mhsOv6" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Traitement arrêté pour raisons médicales" - } - ] - }, - { - code: "Op_Country_NGA", - created: "2016-07-04T14:36:48.730", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Nigeria", - id: "Gyn24NJMikB", - sortOrder: 156, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_ALB", - created: "2016-07-04T14:36:48.721", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Albania", - id: "vRVl3O76lyn", - sortOrder: 4, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_BU_Tx_Rifam_Clar", - created: "2016-09-25T15:41:29.326", - lastUpdated: "2020-11-26T14:22:19.726", - name: "Rifampicin (10 mg/kg once daily) + Clarithromycin (7.5 mg/kg twice daily)", - id: "MuopyHevUQ8", - sortOrder: 2, - optionSet: { - id: "cYVMBWrU2Pi" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_SEN", - created: "2016-07-04T14:36:48.740", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Senegal", - id: "vyw2jtfU39q", - sortOrder: 191, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_ZMB", - created: "2016-07-04T14:36:48.754", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Zambia", - id: "InEQETgtfSJ", - sortOrder: 247, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_NRU", - created: "2016-07-04T14:36:48.730", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Nauru", - id: "otegwIeNezj", - sortOrder: 148, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_TZA", - created: "2016-07-04T14:36:48.743", - lastUpdated: "2021-04-29T19:44:45.084", - name: "United Republic of Tanzania", - id: "Vz0KVAbfhRy", - sortOrder: 234, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_VIR", - created: "2016-07-04T14:36:48.743", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Virgin Islands (USA)", - id: "Ba3mM6jHWLo", - sortOrder: 242, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_HRV", - created: "2016-07-04T14:36:48.724", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Croatia", - id: "Q3JNcuoJx0i", - sortOrder: 55, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_USA", - created: "2016-07-04T14:36:48.743", - lastUpdated: "2021-04-29T19:44:45.084", - name: "United States of America", - id: "WPZOE5WQJB9", - sortOrder: 235, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_XX7", - created: "2016-07-04T14:36:48.727", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Germany, Former Federal Republic", - id: "gHRFa39BQfS", - sortOrder: 86, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_LTU", - created: "2016-07-04T14:36:48.729", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Lithuania", - id: "bukRn9nzytv", - sortOrder: 125, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_SXM", - created: "2016-07-04T14:36:48.741", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Sint Maarten (Dutch part)", - id: "VUldg1jCLBU", - sortOrder: 197, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_X10", - created: "2016-07-04T14:36:48.743", - lastUpdated: "2021-04-29T19:44:45.084", - name: "United Kingdom, England and Wales", - id: "oPuTQ7Y5qMi", - sortOrder: 231, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_TUV", - created: "2016-07-04T14:36:48.742", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Tuvalu", - id: "T6sKm7b1Iev", - sortOrder: 226, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_AIA", - created: "2016-07-04T14:36:48.722", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Anguilla", - id: "sdGbRbHMjfM", - sortOrder: 9, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_EGY", - created: "2016-07-04T14:36:48.726", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Egypt", - id: "OJ0DFyJMUOR", - sortOrder: 68, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_XX5", - created: "2016-07-04T14:36:48.725", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Czechoslovakia, Former", - id: "X6K4a7H6wDk", - sortOrder: 60, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_WSM", - created: "2016-07-04T14:36:48.740", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Samoa", - id: "R3xI52BxTKZ", - sortOrder: 187, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_URY", - created: "2016-07-04T14:36:48.743", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Uruguay", - id: "Iop94Prp34o", - sortOrder: 236, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_ISR", - created: "2016-07-04T14:36:48.728", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Israel", - id: "aKXIbWkLKMT", - sortOrder: 108, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_LBR", - created: "2016-07-04T14:36:48.729", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Liberia", - id: "QFaAj7RqyAm", - sortOrder: 122, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_SWE", - created: "2016-07-04T14:36:48.741", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Sweden", - id: "iDEdgaPkpce", - sortOrder: 210, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_LSO", - created: "2016-07-04T14:36:48.729", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Lesotho", - id: "WFTrDt1MKFN", - sortOrder: 121, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_SLV", - created: "2016-07-04T14:36:48.726", - lastUpdated: "2021-04-29T19:44:45.084", - name: "El Salvador", - id: "mOkzdx2h0SG", - sortOrder: 69, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Recurrent", - created: "2020-01-15T00:50:39.619", - lastUpdated: "2020-11-26T15:59:21.154", - name: "Recurrent/Relapse", - id: "w9Ve9MgDnPI", - sortOrder: 2, - optionSet: { - id: "Al6DsS3DTve" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Recurrent/Rechute" - } - ] - }, - { - code: "Op_Country_ME1", - created: "2016-07-04T14:36:48.742", - lastUpdated: "2021-04-29T19:44:45.084", - name: "The former state union Serbia and Montenegro", - id: "odQjRlU11Fy", - sortOrder: 215, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_FRA", - created: "2016-07-04T14:36:48.726", - lastUpdated: "2021-04-29T19:44:45.084", - name: "France", - id: "kGIuN6tjNZI", - sortOrder: 78, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_YEM", - created: "2016-07-04T14:36:48.754", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Yemen", - id: "jVvKs0pcKlP", - sortOrder: 245, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_MYS", - created: "2016-07-04T14:36:48.729", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Malaysia", - id: "zjI336whk3I", - sortOrder: 129, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_MTQ", - created: "2016-07-04T14:36:48.729", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Martinique", - id: "KeMEEipyNOm", - sortOrder: 134, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_BLZ", - created: "2016-07-04T14:36:48.722", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Belize", - id: "sFfFUiIkgDi", - sortOrder: 23, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_SLE", - created: "2016-07-04T14:36:48.741", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Sierra Leone", - id: "H0I6K4ARBWm", - sortOrder: 195, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_IDN", - created: "2016-07-04T14:36:48.728", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Indonesia", - id: "cSqaO8XLuNi", - sortOrder: 104, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_KNA", - created: "2016-07-04T14:36:48.740", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Saint Kitts and Nevis", - id: "eh5c1MmXn8n", - sortOrder: 183, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Pending", - created: "2019-05-20T09:58:18.074", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Pending", - id: "XfXIcYn2wZB", - sortOrder: 3, - optionSet: { - id: "vQBOhNnE09a" - }, - style: { - color: "#fbb77f" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "En attente" - } - ] - }, - { - code: "Op_Country_SAU", - created: "2016-07-04T14:36:48.740", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Saudi Arabia", - id: "OaWk0B8LtgK", - sortOrder: 190, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Gender_Female", - created: "2016-07-04T14:36:48.721", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Female", - id: "M0BoqSns1KA", - sortOrder: 1, - optionSet: { - id: "apzFCMWeffA" - }, - style: { - icon: "woman_positive" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Femme" - } - ] - }, - { - code: "Op_Country_BLR", - created: "2016-07-04T14:36:48.722", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Belarus", - id: "eTIA3EPkyY4", - sortOrder: 21, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_PAK", - created: "2016-07-04T14:36:48.731", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Pakistan", - id: "Ps7iJKJcqb8", - sortOrder: 162, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_SGP", - created: "2016-07-04T14:36:48.741", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Singapore", - id: "qWdvoHjEe3v", - sortOrder: 196, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_BHS", - created: "2016-07-04T14:36:48.722", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Bahamas", - id: "Rbwa1KlOCgs", - sortOrder: 17, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_MCO", - created: "2016-07-04T14:36:48.730", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Monaco", - id: "EkjCgj5oboN", - sortOrder: 140, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_MDV", - created: "2016-07-04T14:36:48.729", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Maldives", - id: "taFo3wtW5Eg", - sortOrder: 130, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_UKR", - created: "2016-07-04T14:36:48.742", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Ukraine", - id: "So5Bmn1i2r2", - sortOrder: 228, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_LIE", - created: "2016-07-04T14:36:48.729", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Liechtenstein", - id: "PP1n12Xmd4T", - sortOrder: 124, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_GAB", - created: "2016-07-04T14:36:48.726", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Gabon", - id: "o3fBa5sIh8Q", - sortOrder: 81, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_GTM", - created: "2016-07-04T14:36:48.727", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Guatemala", - id: "iQ3o79B3Rte", - sortOrder: 95, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_SCG", - created: "2016-07-04T14:36:48.741", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Serbia and Montenegro, Former", - id: "aF9IHLadpWc", - sortOrder: 193, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Category_III", - created: "2019-06-05T07:46:06.721", - lastUpdated: "2020-11-26T15:59:21.153", - name: "Category III", - id: "Q9P2sPWVRfP", - sortOrder: 3, - optionSet: { - id: "nF2JkM7IXth" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Categorie III" - } - ] - }, - { - code: "Op_YesNo_No", - created: "2016-07-04T14:36:48.721", - lastUpdated: "2021-04-29T19:44:45.085", - name: "No", - id: "oq0sE3HHt7O", - sortOrder: 2, - optionSet: { - id: "vDeP0h2cO2n" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_Other", - created: "2016-07-04T14:36:48.721", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Other country", - id: "rpYKUF2SUbF", - sortOrder: 1, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_PYF", - created: "2016-07-04T14:36:48.726", - lastUpdated: "2021-04-29T19:44:45.084", - name: "French Polynesia", - id: "LXpaR05sYo1", - sortOrder: 80, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_HUN", - created: "2016-07-04T14:36:48.728", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Hungary", - id: "RU3idIirhku", - sortOrder: 101, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_JOR", - created: "2016-07-04T14:36:48.728", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Jordan", - id: "y6bDnL6k4A9", - sortOrder: 112, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Categroy_U", - created: "2019-06-05T07:46:23.813", - lastUpdated: "2020-11-26T15:59:21.153", - name: "Category unknown", - id: "JbKYZp1CAIa", - sortOrder: 4, - optionSet: { - id: "nF2JkM7IXth" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Categorie inconnue" - } - ] - }, - { - code: "Op_Country_FIN", - created: "2016-07-04T14:36:48.726", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Finland", - id: "l4T2wiKbQUL", - sortOrder: 77, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_TKL", - created: "2016-07-04T14:36:48.742", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Tokelau", - id: "hOBEs8WJceb", - sortOrder: 219, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_IRN", - created: "2016-07-04T14:36:48.728", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Iran (Islamic Republic of)", - id: "h3NVEPvY7io", - sortOrder: 105, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_SSD", - created: "2016-07-04T14:36:48.741", - lastUpdated: "2021-04-29T19:44:45.084", - name: "South Sudan", - id: "tFp489Mt4rO", - sortOrder: 203, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_CYM", - created: "2016-07-04T14:36:48.723", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Cayman Islands", - id: "nF2ZeKjSsf6", - sortOrder: 41, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Died", - created: "2019-06-05T07:43:21.317", - lastUpdated: "2020-11-20T12:44:52.663", - name: "Died", - id: "wMfa0vuPDQz", - sortOrder: 4, - optionSet: { - id: "tGr5pbgz67Z" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_ECU", - created: "2016-07-04T14:36:48.726", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Ecuador", - id: "s54dxecMtMv", - sortOrder: 67, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_SVN", - created: "2016-07-04T14:36:48.741", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Slovenia", - id: "aLAfEob7jZh", - sortOrder: 199, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_PRY", - created: "2016-07-04T14:36:48.731", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Paraguay", - id: "QBJvSnKk1uW", - sortOrder: 166, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_CUW", - created: "2016-07-04T14:36:48.724", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Curacao", - id: "vk3eaLsdOlS", - sortOrder: 57, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_AGO", - created: "2016-07-04T14:36:48.722", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Angola", - id: "E1e60DQj7ER", - sortOrder: 8, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_TGO", - created: "2016-07-04T14:36:48.742", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Togo", - id: "E4Ihgx3j6z1", - sortOrder: 218, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_TCD", - created: "2016-07-04T14:36:48.723", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Chad", - id: "PTQq9HoYV7h", - sortOrder: 43, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_LAO", - created: "2016-07-04T14:36:48.728", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Lao People's Democratic Republic", - id: "toz6mYv2HYF", - sortOrder: 118, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_CHL", - created: "2016-07-04T14:36:48.724", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Chile", - id: "jxyr8IWOLiN", - sortOrder: 44, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_PNG", - created: "2016-07-04T14:36:48.731", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Papua New Guinea", - id: "mxwaApcX2QJ", - sortOrder: 165, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_POL", - created: "2016-07-04T14:36:48.731", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Poland", - id: "pBZQqnOre43", - sortOrder: 170, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_MRT", - created: "2016-07-04T14:36:48.729", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Mauritania", - id: "FbfNBXab6GY", - sortOrder: 135, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_XX8", - created: "2016-07-04T14:36:48.727", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Germany, West Berlin", - id: "Cq9V6QqCNme", - sortOrder: 87, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_YesNo_Yes", - created: "2016-07-04T14:36:48.721", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Yes", - id: "PHv5RMoDR3I", - sortOrder: 1, - optionSet: { - id: "vDeP0h2cO2n" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_DMA", - created: "2016-07-04T14:36:48.725", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Dominica", - id: "KkPkhg9dyZS", - sortOrder: 65, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_CHE", - created: "2016-07-04T14:36:48.742", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Switzerland", - id: "qkBlV5zXEbg", - sortOrder: 211, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_PER", - created: "2016-07-04T14:36:48.731", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Peru", - id: "REll9OOAWVM", - sortOrder: 167, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_FSM", - created: "2016-07-04T14:36:48.730", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Micronesia (Federated States of)", - id: "hfkGnSUY6US", - sortOrder: 139, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_SWZ", - created: "2016-07-04T14:36:48.741", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Eswatini", - id: "HN0RT0Kv1mD", - sortOrder: 209, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_GIN", - created: "2016-07-04T14:36:48.727", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Guinea", - id: "X9j8yAE8jR1", - sortOrder: 96, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Retreatment", - created: "2019-06-19T02:05:49.689", - lastUpdated: "2020-11-26T15:59:21.154", - name: "Retreatment", - id: "fHwmBRPO12f", - sortOrder: 3, - optionSet: { - id: "Al6DsS3DTve" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Re-traitement" - } - ] - }, - { - code: "Op_Country_KGZ", - created: "2016-07-04T14:36:48.728", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Kyrgyzstan", - id: "MHhH9Uf7Rj5", - sortOrder: 117, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_TTO", - created: "2016-07-04T14:36:48.742", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Trinidad and Tobago", - id: "qoefJ5oz2kr", - sortOrder: 221, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_REU", - created: "2016-07-04T14:36:48.740", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Reunion", - id: "ByOnLinEgi8", - sortOrder: 176, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_BGD", - created: "2016-07-04T14:36:48.722", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Bangladesh", - id: "bDDw1zZn6H4", - sortOrder: 19, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_VCT", - created: "2016-07-04T14:36:48.740", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Saint Vincent and the Grenadines", - id: "sEucrpuANOo", - sortOrder: 186, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Tx_complete_unknown", - created: "2017-01-12T02:07:56.408", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Treatment completion unknown", - id: "TaiTS6k5ivC", - sortOrder: 4, - optionSet: { - id: "TqJC6mhsOv6" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Ne sait pas" - } - ] - }, - { - code: "Op_Country_VGB", - created: "2016-07-04T14:36:48.723", - lastUpdated: "2021-04-29T19:44:45.084", - name: "British Virgin Islands", - id: "LaqvuIL8pST", - sortOrder: 32, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_FJI", - created: "2016-07-04T14:36:48.726", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Fiji", - id: "TIVtt9En4eU", - sortOrder: 76, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "9", - created: "2017-10-24T12:08:13.319", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Unknown", - id: "WBd1cXQvxhx", - sortOrder: 3, - optionSet: { - id: "mJKvd2WXQtp" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Ne sait pas" - } - ] - }, - { - code: "Op_Country_LCA", - created: "2016-07-04T14:36:48.740", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Saint Lucia", - id: "yxRTRFzIdMC", - sortOrder: 184, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_GIB", - created: "2016-07-04T14:36:48.727", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Gibraltar", - id: "HUm42tSwG8f", - sortOrder: 89, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_TCA", - created: "2016-07-04T14:36:48.742", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Turks and Caicos Islands", - id: "evtYWLkx81g", - sortOrder: 225, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_ABW", - created: "2016-07-04T14:36:48.722", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Aruba", - id: "YINMRPJJN5V", - sortOrder: 13, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Unknown", - created: "2019-05-20T09:59:15.560", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Unknown", - id: "RG6QTAyr0lY", - sortOrder: 5, - optionSet: { - id: "vQBOhNnE09a" - }, - style: { - icon: "question_circle_positive" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Ne sait pas" - } - ] - }, - { - code: "Op_Country_BTN", - created: "2016-07-04T14:36:48.723", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Bhutan", - id: "mdKnXxpQ0LQ", - sortOrder: 26, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_NIC", - created: "2016-07-04T14:36:48.730", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Nicaragua", - id: "PDWVapGBjI8", - sortOrder: 154, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_GNB", - created: "2016-07-04T14:36:48.727", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Guinea-Bissau", - id: "pGnTV1cqwc0", - sortOrder: 97, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_ZAF", - created: "2016-07-04T14:36:48.741", - lastUpdated: "2021-04-29T19:44:45.084", - name: "South Africa", - id: "h6dADh5Zx6g", - sortOrder: 202, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_X13", - created: "2016-07-04T14:36:48.754", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Yugoslavia, Former", - id: "fTISV70dLXk", - sortOrder: 246, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_IRL", - created: "2016-07-04T14:36:48.728", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Ireland", - id: "GAyjbdM621v", - sortOrder: 107, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_ITA", - created: "2016-07-04T14:36:48.728", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Italy", - id: "JY1pHQtniXy", - sortOrder: 109, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "2", - created: "2017-10-24T12:08:13.319", - lastUpdated: "2021-04-29T19:44:45.085", - name: "No", - id: "Vu05B3MCtV2", - sortOrder: 2, - optionSet: { - id: "mJKvd2WXQtp" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Non" - } - ] - }, - { - code: "Op_BU_Tx_Rifam_Strepto", - created: "2016-09-25T15:41:13.619", - lastUpdated: "2020-11-26T14:22:19.727", - name: "Rifampicin (10 mg/kg once daily) + Streptomycin (15 mg/kg once daily)", - id: "AzJhPoyTFg8", - sortOrder: 1, - optionSet: { - id: "cYVMBWrU2Pi" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Tx_complete_defaulter", - created: "2017-01-12T02:07:40.177", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Defaulter", - id: "AsAN6YZCEGh", - sortOrder: 3, - optionSet: { - id: "TqJC6mhsOv6" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Abandon" - } - ] - }, - { - code: "Op_Gender_Male", - created: "2016-07-04T14:36:48.721", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Male", - id: "FFuAh3CgxqV", - sortOrder: 2, - optionSet: { - id: "apzFCMWeffA" - }, - style: { - icon: "man_positive" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Homme" - } - ] - }, - { - code: "Op_Country_CHN", - created: "2016-07-04T14:36:48.724", - lastUpdated: "2021-04-29T19:44:45.084", - name: "China", - id: "WJW9ptUoJ3A", - sortOrder: 45, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_KOR", - created: "2016-07-04T14:36:48.739", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Republic of Korea", - id: "J88eOGKY9Na", - sortOrder: 174, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_COK", - created: "2016-07-04T14:36:48.724", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Cook Islands", - id: "iIyvPvW311F", - sortOrder: 52, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_AUT", - created: "2016-07-04T14:36:48.722", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Austria", - id: "R9eRZscHOto", - sortOrder: 15, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_HND", - created: "2016-07-04T14:36:48.727", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Honduras", - id: "uRNwaxhc5Tx", - sortOrder: 100, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_OMN", - created: "2016-07-04T14:36:48.731", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Oman", - id: "owGF3JqsoAA", - sortOrder: 161, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_MAC", - created: "2016-07-04T14:36:48.724", - lastUpdated: "2021-04-29T19:44:45.084", - name: "China, Macao Special Administrative Region", - id: "tiH4Rvkr1AU", - sortOrder: 47, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_SPM", - created: "2016-07-04T14:36:48.740", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Saint Pierre and Miquelon", - id: "rdwbewfVXxn", - sortOrder: 185, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_CAN", - created: "2016-07-04T14:36:48.723", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Canada", - id: "sZjbQs6bl0o", - sortOrder: 40, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Category_II", - created: "2019-06-05T07:45:51.559", - lastUpdated: "2020-11-26T15:59:21.153", - name: "Category II", - id: "TQIAxf467mJ", - sortOrder: 2, - optionSet: { - id: "nF2JkM7IXth" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Categorie II" - } - ] - }, - { - code: "Category_I", - created: "2019-06-05T07:45:32.676", - lastUpdated: "2020-11-26T15:59:21.153", - name: "Category I", - id: "B1dtYYHplC2", - sortOrder: 1, - optionSet: { - id: "nF2JkM7IXth" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Categorie I" - } - ] - }, - { - code: "Op_Country_MKD", - created: "2016-07-04T14:36:48.742", - lastUpdated: "2021-04-29T19:44:45.084", - name: "The former Yugoslav republic of Macedonia", - id: "MXH9qJlmiHj", - sortOrder: 216, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_DZA", - created: "2016-07-04T14:36:48.722", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Algeria", - id: "OPp0jE41c71", - sortOrder: 5, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_MEX", - created: "2016-07-04T14:36:48.729", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Mexico", - id: "sYu5WdUFxxx", - sortOrder: 138, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_SUR", - created: "2016-07-04T14:36:48.741", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Suriname", - id: "NkdCgJPQtjw", - sortOrder: 208, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_DOM", - created: "2016-07-04T14:36:48.726", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Dominican Republic", - id: "Snabf2xuq8j", - sortOrder: 66, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_GUM", - created: "2016-07-04T14:36:48.727", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Guam", - id: "bzazWy2jvpr", - sortOrder: 94, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_YesNo_Unknown", - created: "2016-07-04T14:36:48.721", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Unknown", - id: "do7Z43P6VB8", - sortOrder: 3, - optionSet: { - id: "vDeP0h2cO2n" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_IRQ", - created: "2016-07-04T14:36:48.728", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Iraq", - id: "oKQ4Km493KI", - sortOrder: 106, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_NAM", - created: "2016-07-04T14:36:48.730", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Namibia", - id: "MpAktPYMf90", - sortOrder: 147, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_CAF", - created: "2016-07-04T14:36:48.723", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Central African Republic", - id: "QkKjW5DH4u9", - sortOrder: 42, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_TJK", - created: "2016-07-04T14:36:48.742", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Tajikistan", - id: "VyBTcplZkJQ", - sortOrder: 213, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_STP", - created: "2016-07-04T14:36:48.740", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Sao Tome and Principe", - id: "LsGOICl7YIw", - sortOrder: 189, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_AZE", - created: "2016-07-04T14:36:48.722", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Azerbaijan", - id: "kTOG6zPV8n8", - sortOrder: 16, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_ARG", - created: "2016-07-04T14:36:48.722", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Argentina", - id: "st3MnmCFpzF", - sortOrder: 11, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_KIR", - created: "2016-07-04T14:36:48.728", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Kiribati", - id: "RTgnQw3zAy6", - sortOrder: 115, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Completely healed", - created: "2019-06-05T07:42:34.447", - lastUpdated: "2020-11-20T12:44:52.663", - name: "Complety healed", - id: "p4hdUBmGKQE", - sortOrder: 1, - optionSet: { - id: "tGr5pbgz67Z" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_X11", - created: "2016-07-04T14:36:48.743", - lastUpdated: "2021-04-29T19:44:45.084", - name: "United Kingdom, Northern Ireland", - id: "ywkstElBpo1", - sortOrder: 232, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_TON", - created: "2016-07-04T14:36:48.742", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Tonga", - id: "Rke3037hiuV", - sortOrder: 220, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_XX9", - created: "2016-07-04T14:36:48.743", - lastUpdated: "2021-04-29T19:44:45.084", - name: "USSR, Former", - id: "q5u0ehHpFgt", - sortOrder: 237, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_MNP", - created: "2016-07-04T14:36:48.731", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Northern Mariana Islands", - id: "P0fL0rvUSn7", - sortOrder: 159, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "LTFU", - created: "2019-06-05T07:41:10.854", - lastUpdated: "2020-11-26T15:59:21.153", - name: "Lost-to-follow-up", - id: "FeBILAXpi53", - sortOrder: 3, - optionSet: { - id: "ESSQcpsmBse" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Perdu de vue" - } - ] - }, - { - code: "Op_Country_XX4", - created: "2016-07-04T14:36:48.740", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Ryu Kyu Islands", - id: "RN3bZeeFEbl", - sortOrder: 181, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_MYT", - created: "2016-07-04T14:36:48.729", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Mayotte", - id: "cL4OmqIczsH", - sortOrder: 137, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_GRL", - created: "2016-07-04T14:36:48.727", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Greenland", - id: "jGbV0Ne53W5", - sortOrder: 91, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_NLD", - created: "2016-07-04T14:36:48.730", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Netherlands", - id: "ATcSjkUG9QV", - sortOrder: 150, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Tx_complete_yes", - created: "2017-01-12T02:07:11.352", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Treatment completed", - id: "yeYDY2bogxs", - sortOrder: 1, - optionSet: { - id: "TqJC6mhsOv6" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Traitement complété" - } - ] - }, - { - code: "Op_Country_EST", - created: "2016-07-04T14:36:48.726", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Estonia", - id: "cqfa35jkUEd", - sortOrder: 72, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_MAR", - created: "2016-07-04T14:36:48.730", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Morocco", - id: "DjVJE4YFp6g", - sortOrder: 144, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_BES", - created: "2016-07-04T14:36:48.723", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Bonaire, Saint Eustatius and Saba", - id: "O8O4CpJVYOD", - sortOrder: 28, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_ESP", - created: "2016-07-04T14:36:48.741", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Spain", - id: "z6RCpgOD0ve", - sortOrder: 204, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Op_Country_MNE", - created: "2016-07-04T14:36:48.730", - lastUpdated: "2021-04-29T19:44:45.084", - name: "Montenegro", - id: "OcaAwln2R11", - sortOrder: 142, - optionSet: { - id: "gUyghXvtx1M" - }, - attributeValues: [], - translations: [] - }, - { - code: "Negative", - created: "2019-05-20T09:58:05.446", - lastUpdated: "2021-04-29T19:44:45.085", - name: "Negative", - id: "ADcYKbV8BWA", - sortOrder: 2, - optionSet: { - id: "vQBOhNnE09a" - }, - style: { - color: "#4ae769" - }, - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Negatif" - }, - { - property: "NAME", - locale: "fr", - value: "Negative" - } - ] - } - ], - categoryOptions: [ - { - code: "default", - created: "2017-05-10T17:53:55.138", - lastUpdated: "2018-07-27T16:09:07.425", - name: "default", - id: "Y7fcspgsU43", - shortName: "default", - publicAccess: "rwrw----", - user: { - id: "eK26I7dRbC4" - }, - userGroupAccesses: [], - attributeValues: [], - translations: [], - userAccesses: [], - organisationUnits: [] - } - ] - }, - dataset1: { - categoryCombos: [ - { - code: "ADMIN_DUTY_CC_SERVER_INSTANCES", - created: "2019-09-07T16:20:01.763", - lastUpdated: "2021-02-15T17:20:34.920", - name: "ADMIN_DUTY_CC_SERVER_INSTANCES", - id: "Fkyud1WKXWo", - dataDimensionType: "DISAGGREGATION", - publicAccess: "--------", - skipTotal: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - translations: [], - userAccesses: [], - categories: [ - { - id: "dL4wpziK7qW" - } - ] - }, - { - code: "default", - created: "2017-05-10T17:53:55.156", - lastUpdated: "2019-02-20T16:22:55.336", - name: "default", - id: "JzvGfLYkX17", - dataDimensionType: "DISAGGREGATION", - publicAccess: "rw------", - skipTotal: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "eK26I7dRbC4" - }, - userGroupAccesses: [], - translations: [], - userAccesses: [], - categories: [ - { - id: "DMyxTSpvKOp" - } - ] - } - ], - optionSets: [ - { - code: "ADMIN_DUTY_OS_EXECUTION", - created: "2019-09-07T16:25:48.068", - lastUpdated: "2021-02-15T17:20:34.822", - name: "ADMIN_DUTY_OS_EXECUTION", - id: "YFZsozOszeV", - publicAccess: "--------", - version: 6, - valueType: "TEXT", - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - translations: [], - userAccesses: [], - options: [ - { - id: "SE6Aj9WR7dD" - }, - { - id: "rLojINCgwbi" - }, - { - id: "Fk33B9detC3" - } - ] - }, - { - code: "ADMIN_DUTY_OS_ASSIGNEE", - created: "2019-09-07T16:03:06.414", - lastUpdated: "2021-02-15T17:20:34.822", - name: "ADMIN_DUTY_OS_ASSIGNEE", - id: "wsWZHTuG77p", - publicAccess: "--------", - version: 7, - valueType: "TEXT", - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - translations: [], - userAccesses: [], - options: [ - { - id: "fKLt8V7YHct" - }, - { - id: "visof66qA5i" - }, - { - id: "wfetyLNtn4V" - } - ] - } + programStages: [ + { + id: "DQitAUlaicG", + }, + ], + userAccesses: [], + }, ], categoryOptionCombos: [ - { - lastUpdated: "2021-02-15T17:20:34.945", - created: "2019-09-10T16:35:30.534", - name: "WHO_MALARIA", - id: "SvcP5ROAff3", - ignoreApproval: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "RkYSGG4MNhT" - } - ] - }, - { - lastUpdated: "2017-05-10T17:53:55.158", - code: "default", - created: "2017-05-10T17:53:55.157", - name: "default", - id: "Xr12mI7VPn3", - ignoreApproval: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "Y7fcspgsU43" - } - ] - }, - { - lastUpdated: "2021-02-15T17:20:34.945", - created: "2019-09-07T16:20:01.809", - name: "WHO_TRAINING", - id: "qpRs0fsxSeB", - ignoreApproval: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "buv02XljUjE" - } - ] - }, - { - lastUpdated: "2021-02-15T17:20:34.945", - created: "2019-09-10T16:35:30.521", - name: "WHO_PREPROD-VIS", - id: "jnNy9wEOvyu", - ignoreApproval: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "OgGW61Izy8Y" - } - ] - }, - { - lastUpdated: "2021-02-15T17:20:34.945", - created: "2019-09-10T16:35:30.507", - name: "WHO_DEV-CONT", - id: "JhrMD8OMFyf", - ignoreApproval: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "BclrlHiDxv1" - } - ] - }, - { - lastUpdated: "2021-02-15T17:20:34.945", - created: "2019-09-07T16:20:01.807", - name: "WHO_PROD", - id: "hHIs5QYHbQP", - ignoreApproval: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "rhGywpV4vXF" - } - ] - }, - { - lastUpdated: "2021-02-15T17:20:34.945", - created: "2019-09-07T16:20:01.804", - name: "WHO_PREPROD", - id: "irkK9eyChrC", - ignoreApproval: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "QllodPhxVeb" - } - ] - }, - { - lastUpdated: "2021-02-15T17:20:34.945", - created: "2020-09-30T17:50:25.933", - name: "WHO_PREPROD_CONT", - id: "jXGgFnnjHAW", - ignoreApproval: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "BnkWfh38wMf" - } - ] - }, - { - lastUpdated: "2021-02-15T17:20:34.945", - created: "2019-09-07T16:20:01.797", - name: "WHO_DEV", - id: "YkqDSFqJw7G", - ignoreApproval: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "jFwR5mUrvAM" - } - ] - } - ], - options: [ - { - code: "ADMIN_DUTY_OS_ASSIGNEE_EST", - created: "2019-09-07T16:03:30.022", - lastUpdated: "2021-02-15T17:20:34.796", - name: "EyeSeeTea", - id: "fKLt8V7YHct", - sortOrder: 1, - optionSet: { - id: "wsWZHTuG77p" - }, - attributeValues: [], - translations: [] - }, - { - code: "ADMIN_DUTY_OS_EXECUTION_MANUAL", - created: "2019-09-07T16:26:21.011", - lastUpdated: "2021-02-15T17:20:34.796", - name: "Manual", - id: "rLojINCgwbi", - sortOrder: 2, - optionSet: { - id: "YFZsozOszeV" - }, - attributeValues: [], - translations: [] - }, - { - code: "ADMIN_DUTY_OS_EXECUTION_NOT_EXECUTED", - created: "2019-09-07T16:26:11.003", - lastUpdated: "2021-02-15T17:20:34.796", - name: "Not executed", - id: "SE6Aj9WR7dD", - sortOrder: 1, - optionSet: { - id: "YFZsozOszeV" - }, - attributeValues: [], - translations: [] - }, - { - code: "ADMIN_DUTY_OS_ASSIGNEE_RAMON", - created: "2019-09-07T16:04:34.499", - lastUpdated: "2021-02-15T17:20:34.796", - name: "Ramon Jiménez Pomareta", - id: "wfetyLNtn4V", - sortOrder: 3, - optionSet: { - id: "wsWZHTuG77p" - }, - attributeValues: [], - translations: [] - }, - { - code: "ADMIN_DUTY_OS_ASSIGNEE_PETAR", - created: "2019-09-07T16:04:00.726", - lastUpdated: "2021-02-15T17:20:34.796", - name: "Petar Jovanovic", - id: "visof66qA5i", - sortOrder: 2, - optionSet: { - id: "wsWZHTuG77p" - }, - attributeValues: [], - translations: [] - }, - { - code: "ADMIN_DUTY_OS_EXECUTION_AUTOMATED", - created: "2019-09-07T16:26:31.328", - lastUpdated: "2021-02-15T17:20:34.796", - name: "Automated", - id: "Fk33B9detC3", - sortOrder: 3, - optionSet: { - id: "YFZsozOszeV" - }, - attributeValues: [], - translations: [] - } - ], - sections: [ - { - code: "ADMIN_DUTY_SECTION_STATS", - created: "2019-09-07T16:09:38.592", - lastUpdated: "2021-02-15T17:20:35.130", - name: "Platform statistics", - id: "d6i3UcpWuBG", - sortOrder: 8, - showRowTotals: false, - showColumnTotals: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - dataSet: { - id: "FnYgTt843G2" - }, - greyedFields: [], - attributeValues: [], - indicators: [], - translations: [], - dataElements: [] - }, - { - code: "ADMIN_DUTY_SECTION_GENERAL", - created: "2019-09-07T16:08:14.045", - lastUpdated: "2021-02-15T17:20:35.127", - name: "General", - id: "FAiD9yYVNUD", - sortOrder: 1, - showRowTotals: false, - showColumnTotals: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - dataSet: { - id: "FnYgTt843G2" - }, - greyedFields: [], - attributeValues: [], - indicators: [], - translations: [], - dataElements: [ - { - id: "DZmTHrT9JPg" - }, - { - id: "XtznMFZssKc" - }, - { - id: "EvRMsyVW63b" - } - ] - }, - { - code: "ADMIN_DUTY_SECTION_SERVER_ANALYTICS_MIDNIGHT", - created: "2019-09-07T16:09:01.724", - lastUpdated: "2021-02-15T17:20:35.129", - name: "Server analytics", - id: "aTewMAn9H4J", - sortOrder: 3, - showRowTotals: false, - showColumnTotals: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - dataSet: { - id: "FnYgTt843G2" - }, - greyedFields: [ - { - lastUpdated: "2021-09-29T06:00:52.432", - id: "Dx70nNMP3mB.SvcP5ROAff3", - created: "2021-09-29T06:00:52.432", - name: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_MALARIA", - shortName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_MALARIA", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_MALARIA", - displayShortName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_MALARIA", - externalAccess: false, - dimensionItem: "Dx70nNMP3mB.SvcP5ROAff3", - displayFormName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_MALARIA", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "SvcP5ROAff3" - }, - dataElement: { - id: "Dx70nNMP3mB" - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.432", - id: "crQfKtNHSHB.SvcP5ROAff3", - created: "2021-09-29T06:00:52.432", - name: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_MALARIA", - shortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_MALARIA", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_MALARIA", - displayShortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_MALARIA", - externalAccess: false, - dimensionItem: "crQfKtNHSHB.SvcP5ROAff3", - displayFormName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_MALARIA", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "SvcP5ROAff3" - }, - dataElement: { - id: "crQfKtNHSHB" + { + lastUpdated: "2017-05-10T17:53:55.158", + code: "default", + created: "2017-05-10T17:53:55.157", + name: "default", + id: "Xr12mI7VPn3", + ignoreApproval: false, + categoryCombo: { + id: "JzvGfLYkX17", }, - favorites: [], translations: [], - userGroupAccesses: [], attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.432", - id: "mjDgqDPsT4J.SvcP5ROAff3", - created: "2021-09-29T06:00:52.432", - name: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_MALARIA", - shortName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_MALARIA", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_MALARIA", - displayShortName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_MALARIA", - externalAccess: false, - dimensionItem: "mjDgqDPsT4J.SvcP5ROAff3", - displayFormName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_MALARIA", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "SvcP5ROAff3" - }, - dataElement: { - id: "mjDgqDPsT4J" + categoryOptions: [ + { + id: "Y7fcspgsU43", + }, + ], + }, + ], + programStages: [ + { + lastUpdated: "2020-06-04T17:17:12.733", + id: "DQitAUlaicG", + created: "2019-08-21T11:24:20.216", + name: "check", + allowGenerateNextVisit: false, + preGenerateUID: false, + publicAccess: "--------", + openAfterEnrollment: false, + repeatable: true, + featureType: "NONE", + remindCompleted: false, + displayGenerateEventBox: true, + generatedByEnrollmentDate: false, + validationStrategy: "ON_COMPLETE", + autoGenerateEvent: true, + sortOrder: 1, + hideDueDate: false, + blockEntryForm: false, + enableUserAssignment: false, + minDaysFromStart: 0, + program: { + id: "rjsnrRKjtwU", }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.432", - id: "Dx70nNMP3mB.jnNy9wEOvyu", - created: "2021-09-29T06:00:52.432", - name: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_PREPROD-VIS", - shortName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_PREPROD-VIS", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_PREPROD-VIS", - displayShortName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_PREPROD-VIS", - externalAccess: false, - dimensionItem: "Dx70nNMP3mB.jnNy9wEOvyu", - displayFormName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_PREPROD-VIS", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "jnNy9wEOvyu" + lastUpdatedBy: { + id: "H4atNsEuKxP", }, - dataElement: { - id: "Dx70nNMP3mB" + user: { + id: "kD52FGwJgDF", }, - favorites: [], + notificationTemplates: [], + programStageDataElements: [ + { + lastUpdated: "2020-06-04T17:17:12.734", + id: "tzA1MiQtotT", + created: "2019-08-21T11:24:20.216", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 1, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "DQitAUlaicG", + }, + dataElement: { + id: "euPtt2LWNis", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2020-06-04T17:17:12.734", + id: "RVMZjwFEH1y", + created: "2019-08-21T11:24:20.216", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 2, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "DQitAUlaicG", + }, + dataElement: { + id: "X8XLOWOJsbR", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], translations: [], - userGroupAccesses: [], + userGroupAccesses: [ + { + access: "r-r-----", + userGroupUid: "sCjEPgiOhP1", + displayName: "WIDP admins", + id: "sCjEPgiOhP1", + }, + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], attributeValues: [], userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.432", - id: "tHGRW9Zwyxh.SvcP5ROAff3", - created: "2021-09-29T06:00:52.432", - name: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_MALARIA", - shortName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_MALARIA", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_MALARIA", - displayShortName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_MALARIA", - externalAccess: false, - dimensionItem: "tHGRW9Zwyxh.SvcP5ROAff3", - displayFormName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_MALARIA", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "SvcP5ROAff3" - }, - dataElement: { - id: "tHGRW9Zwyxh" - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.432", - id: "tHGRW9Zwyxh.jnNy9wEOvyu", - created: "2021-09-29T06:00:52.432", - name: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_PREPROD-VIS", - shortName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_PREPROD-VIS", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_PREPROD-VIS", - displayShortName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_PREPROD-VIS", - externalAccess: false, - dimensionItem: "tHGRW9Zwyxh.jnNy9wEOvyu", - displayFormName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_PREPROD-VIS", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "jnNy9wEOvyu" + programStageSections: [], + }, + ], + trackedEntityTypes: [ + { + code: "Person", + created: "2018-11-29T00:00:00.000", + lastUpdated: "2021-06-18T12:10:43.381", + name: "Person", + id: "MCPQUTHX1Ze", + publicAccess: "--------", + description: "Person", + maxTeiCountToReturn: 0, + allowAuditLog: false, + featureType: "NONE", + minAttributesRequiredToSearch: 1, + lastUpdatedBy: { + id: "Qu9goywu6cV", }, - dataElement: { - id: "tHGRW9Zwyxh" + user: { + id: "ilJDyuqlwDC", }, - favorites: [], - translations: [], - userGroupAccesses: [], + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU", + }, + { + access: "r-r-----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5", + }, + { + access: "r-rw----", + userGroupUid: "HJRKloCWNeh", + displayName: "SS_NTD_SKIN_ACD_Event_Entry", + id: "HJRKloCWNeh", + }, + { + access: "r-rw----", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-rw----", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU", + }, + { + access: "r-r-----", + userGroupUid: "cy0qXsDxzxe", + displayName: "SS_NTD_LSH_VL_LabLog_View", + id: "cy0qXsDxzxe", + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a", + }, + { + access: "r-r-----", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O", + }, + { + access: "r-r-----", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-rw----", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-rw----", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "r-rw----", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT", + }, + { + access: "r-r-----", + userGroupUid: "Ot2xz1vXELL", + displayName: "SS_NTD_CH_Healthcare_Event_View", + id: "Ot2xz1vXELL", + }, + { + access: "r-r-----", + userGroupUid: "DzvWl4E1DhF", + displayName: "SS_NTD_CH_HealthSystem_Event_View", + id: "DzvWl4E1DhF", + }, + { + access: "r-rw----", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS", + }, + { + access: "r-r-----", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-r-----", + userGroupUid: "cDb6nhH0rXS", + displayName: "SS_NTD_LSH_VL_Tracker_View", + id: "cDb6nhH0rXS", + }, + { + access: "r-r-----", + userGroupUid: "YJ4SW7rs30P", + displayName: "SS_NTD_LSH_CPG", + id: "YJ4SW7rs30P", + }, + { + access: "r-r-----", + userGroupUid: "ODVk6IF6Dso", + displayName: "SS_NTD_SKIN_ACD_Event_View", + id: "ODVk6IF6Dso", + }, + { + access: "r-r-----", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN", + }, + { + access: "r-r-----", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC", + }, + { + access: "r-rw----", + userGroupUid: "ln8nJQmOSpJ", + displayName: "SS_NTD_CH_Healthcare_Event_Entry", + id: "ln8nJQmOSpJ", + }, + { + access: "rwr-----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v", + }, + { + access: "r-rw----", + userGroupUid: "UnTaQrY57qi", + displayName: "NTD_LSH_Monthly_Importer", + id: "UnTaQrY57qi", + }, + { + access: "rwrw----", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-rw----", + userGroupUid: "TbGA9fMJpCR", + displayName: "SS_NTD_LSH_VL_LabLog_Entry", + id: "TbGA9fMJpCR", + }, + { + access: "rwr-----", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-r-----", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "r-rw----", + userGroupUid: "Qi5B1pnVvEH", + displayName: "SS_NTD_CH_HealthSystem_Event_Entry", + id: "Qi5B1pnVvEH", + }, + { + access: "r-rw----", + userGroupUid: "mYtjuODefO4", + displayName: "SS_NTD_LSH_VL_Tracker_Entry", + id: "mYtjuODefO4", + }, + { + access: "r-r-----", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + ], attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.432", - id: "CTbBS3ArglV.SvcP5ROAff3", - created: "2021-09-29T06:00:52.432", - name: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_MALARIA", - shortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_MALARIA", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_MALARIA", - displayShortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_MALARIA", - externalAccess: false, - dimensionItem: "CTbBS3ArglV.SvcP5ROAff3", - displayFormName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_MALARIA", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "SvcP5ROAff3" - }, - dataElement: { - id: "CTbBS3ArglV" - }, - favorites: [], + trackedEntityTypeAttributes: [], translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.432", - id: "mjDgqDPsT4J.jnNy9wEOvyu", - created: "2021-09-29T06:00:52.432", - name: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_PREPROD-VIS", - shortName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_PREPROD-VIS", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_PREPROD-VIS", - displayShortName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_PREPROD-VIS", - externalAccess: false, - dimensionItem: "mjDgqDPsT4J.jnNy9wEOvyu", - displayFormName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_PREPROD-VIS", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "jnNy9wEOvyu" - }, - dataElement: { - id: "mjDgqDPsT4J" - }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.432", - id: "qpgGXrkTrgj.SvcP5ROAff3", - created: "2021-09-29T06:00:52.432", - name: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_MALARIA", - shortName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_MALARIA", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_MALARIA", - displayShortName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_MALARIA", - externalAccess: false, - dimensionItem: "qpgGXrkTrgj.SvcP5ROAff3", - displayFormName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_MALARIA", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "SvcP5ROAff3" - }, - dataElement: { - id: "qpgGXrkTrgj" + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + { + access: "r-rw----", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + ], + }, + ], + categoryOptions: [ + { + code: "default", + created: "2017-05-10T17:53:55.138", + lastUpdated: "2018-07-27T16:09:07.425", + name: "default", + id: "Y7fcspgsU43", + shortName: "default", + publicAccess: "rwrw----", + user: { + id: "eK26I7dRbC4", }, - favorites: [], - translations: [], userGroupAccesses: [], attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.432", - id: "qpgGXrkTrgj.jnNy9wEOvyu", - created: "2021-09-29T06:00:52.432", - name: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_PREPROD-VIS", - shortName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_PREPROD-VIS", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_PREPROD-VIS", - displayShortName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_PREPROD-VIS", - externalAccess: false, - dimensionItem: "qpgGXrkTrgj.jnNy9wEOvyu", - displayFormName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_PREPROD-VIS", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "jnNy9wEOvyu" - }, - dataElement: { - id: "qpgGXrkTrgj" - }, - favorites: [], translations: [], - userGroupAccesses: [], - attributeValues: [], userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.432", - id: "crQfKtNHSHB.jnNy9wEOvyu", - created: "2021-09-29T06:00:52.432", - name: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_PREPROD-VIS", - shortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_PREPROD-VIS", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_PREPROD-VIS", - displayShortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_PREPROD-VIS", - externalAccess: false, - dimensionItem: "crQfKtNHSHB.jnNy9wEOvyu", - displayFormName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_PREPROD-VIS", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "jnNy9wEOvyu" - }, - dataElement: { - id: "crQfKtNHSHB" + organisationUnits: [], + }, + ], + dataElements: [ + { + lastUpdated: "2020-06-09T18:01:24.388", + id: "euPtt2LWNis", + created: "2019-08-21T11:20:31.515", + name: "ADMIN_Analytics_Execution_1_Tracker", + shortName: "ADMIN_Analytics_Execution_1_Tracker", + aggregationType: "SUM", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Analytics run at 0h", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17", }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.432", - id: "CTbBS3ArglV.jnNy9wEOvyu", - created: "2021-09-29T06:00:52.432", - name: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_PREPROD-VIS", - shortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_PREPROD-VIS", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_PREPROD-VIS", - displayShortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_PREPROD-VIS", - externalAccess: false, - dimensionItem: "CTbBS3ArglV.jnNy9wEOvyu", - displayFormName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_PREPROD-VIS", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "jnNy9wEOvyu" + lastUpdatedBy: { + id: "kD52FGwJgDF", }, - dataElement: { - id: "CTbBS3ArglV" + user: { + id: "H4atNsEuKxP", }, - favorites: [], translations: [], - userGroupAccesses: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "sCjEPgiOhP1", + displayName: "WIDP admins", + id: "sCjEPgiOhP1", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], attributeValues: [], userAccesses: [], - legendSets: [] - } - ], - attributeValues: [], - indicators: [], - translations: [], - dataElements: [ - { - id: "mjDgqDPsT4J" - }, - { - id: "CTbBS3ArglV" - }, - { - id: "crQfKtNHSHB" - }, - { - id: "tHGRW9Zwyxh" - }, - { - id: "Dx70nNMP3mB" - }, - { - id: "qpgGXrkTrgj" - } - ] - }, - { - created: "2021-02-12T11:43:21.147", - lastUpdated: "2021-02-22T17:38:52.011", - name: "Metadata reports", - id: "SHHYEsdT55c", - sortOrder: 7, - showRowTotals: false, - showColumnTotals: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - dataSet: { - id: "FnYgTt843G2" - }, - greyedFields: [ - { - lastUpdated: "2021-09-29T06:00:52.438", - id: "BLlpSeTreIO.SvcP5ROAff3", - created: "2021-09-29T06:00:52.438", - name: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_MALARIA", - shortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_MALARIA", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_MALARIA", - displayShortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_MALARIA", - externalAccess: false, - dimensionItem: "BLlpSeTreIO.SvcP5ROAff3", - displayFormName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_MALARIA", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "SvcP5ROAff3" - }, - dataElement: { - id: "BLlpSeTreIO" + legendSets: [], + aggregationLevels: [], + }, + { + lastUpdated: "2020-06-09T18:01:32.053", + id: "X8XLOWOJsbR", + created: "2019-08-21T11:22:01.691", + name: "ADMIN_Analytics_Execution_2_Tracker", + shortName: "ADMIN_Analytics_Execution_2_Tracker", + aggregationType: "SUM", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Analytics run at 12h", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17", }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.438", - id: "BLlpSeTreIO.qpRs0fsxSeB", - created: "2021-09-29T06:00:52.438", - name: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_TRAINING", - shortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_TRAINING", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_TRAINING", - displayShortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_TRAINING", - externalAccess: false, - dimensionItem: "BLlpSeTreIO.qpRs0fsxSeB", - displayFormName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_TRAINING", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "qpRs0fsxSeB" + lastUpdatedBy: { + id: "kD52FGwJgDF", }, - dataElement: { - id: "BLlpSeTreIO" + user: { + id: "H4atNsEuKxP", }, - favorites: [], translations: [], - userGroupAccesses: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "sCjEPgiOhP1", + displayName: "WIDP admins", + id: "sCjEPgiOhP1", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], attributeValues: [], userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.438", - id: "BLlpSeTreIO.hHIs5QYHbQP", - created: "2021-09-29T06:00:52.438", - name: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_PROD", - shortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_PROD", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_PROD", - displayShortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_PROD", - externalAccess: false, - dimensionItem: "BLlpSeTreIO.hHIs5QYHbQP", - displayFormName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_PROD", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "hHIs5QYHbQP" - }, - dataElement: { - id: "BLlpSeTreIO" + legendSets: [], + aggregationLevels: [], + }, + ], + categories: [ + { + code: "default", + created: "2017-05-10T17:53:55.152", + lastUpdated: "2021-08-07T06:18:19.628", + name: "default", + id: "DMyxTSpvKOp", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + dataDimension: false, + user: { + id: "eK26I7dRbC4", }, - favorites: [], - translations: [], userGroupAccesses: [], attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.438", - id: "BLlpSeTreIO.jXGgFnnjHAW", - created: "2021-09-29T06:00:52.438", - name: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_PREPROD_CONT", - shortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_PREPROD_CONT", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_PREPROD_CONT", - displayShortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_PREPROD_CONT", - externalAccess: false, - dimensionItem: "BLlpSeTreIO.jXGgFnnjHAW", - displayFormName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_PREPROD_CONT", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "jXGgFnnjHAW" - }, - dataElement: { - id: "BLlpSeTreIO" - }, - favorites: [], translations: [], - userGroupAccesses: [], - attributeValues: [], userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.438", - id: "BLlpSeTreIO.JhrMD8OMFyf", - created: "2021-09-29T06:00:52.438", - name: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_DEV-CONT", - shortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_DEV-CONT", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_DEV-CONT", - displayShortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_DEV-CONT", - externalAccess: false, - dimensionItem: "BLlpSeTreIO.JhrMD8OMFyf", - displayFormName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_DEV-CONT", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "JhrMD8OMFyf" + categoryOptions: [ + { + id: "Y7fcspgsU43", + }, + ], + }, + ], + programStageDataElements: [ + { + created: "2019-08-21T11:24:20.216", + lastUpdated: "2020-06-04T17:17:12.734", + id: "tzA1MiQtotT", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 1, + allowFutureDate: false, + programStage: { + id: "DQitAUlaicG", }, dataElement: { - id: "BLlpSeTreIO" + id: "euPtt2LWNis", }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [], - legendSets: [] - } - ], - attributeValues: [], - indicators: [], - translations: [], - dataElements: [ - { - id: "BLlpSeTreIO" - } - ] - }, - { - code: "ADMIN_DUTY_SECTION_SERVER_STATUS", - created: "2019-09-07T16:08:45.341", - lastUpdated: "2021-02-15T17:20:35.128", - name: "Server status", - id: "NuxyY2XJPhZ", - sortOrder: 2, - showRowTotals: false, - showColumnTotals: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - dataSet: { - id: "FnYgTt843G2" - }, - greyedFields: [ - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "CufSsSZAUme.SvcP5ROAff3", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_MALARIA", - shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_MALARIA", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_MALARIA", - displayShortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_MALARIA", - externalAccess: false, - dimensionItem: "CufSsSZAUme.SvcP5ROAff3", - displayFormName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_MALARIA", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "SvcP5ROAff3" + }, + { + created: "2019-08-21T11:24:20.216", + lastUpdated: "2020-06-04T17:17:12.734", + id: "RVMZjwFEH1y", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 2, + allowFutureDate: false, + programStage: { + id: "DQitAUlaicG", }, dataElement: { - id: "CufSsSZAUme" + id: "X8XLOWOJsbR", }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "XrDIy4Gg3YR.jnNy9wEOvyu", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_PREPROD-VIS", - shortName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_PREPROD-VIS", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_PREPROD-VIS", - displayShortName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_PREPROD-VIS", - externalAccess: false, - dimensionItem: "XrDIy4Gg3YR.jnNy9wEOvyu", - displayFormName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_PREPROD-VIS", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "jnNy9wEOvyu" + }, + ], + programTrackedEntityAttributes: [ + { + created: "2019-09-11T12:37:56.247", + lastUpdated: "2020-06-04T17:17:12.802", + id: "OT1TfVwhsBO", + mandatory: false, + searchable: true, + renderOptionsAsRadio: false, + displayInList: true, + sortOrder: 1, + allowFutureDate: false, + program: { + id: "rjsnrRKjtwU", }, - dataElement: { - id: "XrDIy4Gg3YR" + trackedEntityAttribute: { + id: "DwZNiXy5Daz", }, - favorites: [], - translations: [], - userGroupAccesses: [], + programTrackedEntityAttributeGroups: [], + }, + ], + trackedEntityAttributes: [ + { + code: "ALL_At_FirstName", + lastUpdated: "2021-05-26T19:30:52.289", + id: "DwZNiXy5Daz", + created: "2016-06-08T12:49:53.384", + name: "First name", + shortName: "First Name", + aggregationType: "NONE", + displayInListNoProgram: true, + publicAccess: "r-------", + pattern: "", + description: "First name of patient", + skipSynchronization: false, + sortOrderInListNoProgram: 2, + generated: false, + displayOnVisitSchedule: false, + valueType: "TEXT", + orgunitScope: false, + confidential: false, + unique: false, + inherit: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "DESCRIPTION", + locale: "pt", + value: "Primeiro nome do Paciente", + }, + ], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], attributeValues: [], userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "gfRkAIfJ2eO.SvcP5ROAff3", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_MALARIA", - shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_MALARIA", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_MALARIA", - displayShortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_MALARIA", - externalAccess: false, - dimensionItem: "gfRkAIfJ2eO.SvcP5ROAff3", - displayFormName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_MALARIA", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "SvcP5ROAff3" + legendSets: [], + }, + ], + }, + program3: { + optionSets: [ + { + code: "OpS_YNU_Numeric_129", + created: "2017-07-18T08:27:58.474", + lastUpdated: "2021-04-29T19:44:45.263", + name: "YNU_Numeric_129", + id: "mJKvd2WXQtp", + publicAccess: "--------", + version: 18, + valueType: "INTEGER", + lastUpdatedBy: { + id: "Qu9goywu6cV", }, - dataElement: { - id: "gfRkAIfJ2eO" + user: { + id: "ilJDyuqlwDC", }, - favorites: [], - translations: [], - userGroupAccesses: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "r-------", + userGroupUid: "Ot2xz1vXELL", + displayName: "SS_NTD_CH_Healthcare_Event_View", + id: "Ot2xz1vXELL", + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5", + }, + { + access: "r-------", + userGroupUid: "Qi5B1pnVvEH", + displayName: "SS_NTD_CH_HealthSystem_Event_Entry", + id: "Qi5B1pnVvEH", + }, + { + access: "r-------", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL", + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "peFZC729hMn", + displayName: "SS_NTD_Skin_Yaws_Surv_Global_View", + id: "peFZC729hMn", + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "DRlUpjkyeT9", + displayName: "SS_NTD_SKIN_MYC_GlSurv_View", + id: "DRlUpjkyeT9", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "fth3On7vInl", + displayName: "NTD", + id: "fth3On7vInl", + }, + { + access: "r-------", + userGroupUid: "cT8WhjLqmH9", + displayName: "SS_NTD_Skin_Yaws_Surv_Global_Entry", + id: "cT8WhjLqmH9", + }, + { + access: "r-------", + userGroupUid: "ln8nJQmOSpJ", + displayName: "SS_NTD_CH_Healthcare_Event_Entry", + id: "ln8nJQmOSpJ", + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O", + }, + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "wG402TIgmDq", + displayName: "SS_NTD_Skin_Yaws_Surv_GHA_Entry", + id: "wG402TIgmDq", + }, + { + access: "r-------", + userGroupUid: "IsbhpWFqxOx", + displayName: "SS_NTD_Skin_MYC_GlSurv_Entry", + id: "IsbhpWFqxOx", + }, + { + access: "r-------", + userGroupUid: "HVjJiw4WEW5", + displayName: "SS_NTD_Skin_Yaws_Surv_GHA_View", + id: "HVjJiw4WEW5", + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-------", + userGroupUid: "DzvWl4E1DhF", + displayName: "SS_NTD_CH_HealthSystem_Event_View", + id: "DzvWl4E1DhF", + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR", + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v", + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj", + }, + { + access: "r-------", + userGroupUid: "IPzz6wlkIp0", + displayName: "NTD_SKIN_MYC_HQ", + id: "IPzz6wlkIp0", + }, + { + access: "r-------", + userGroupUid: "orn5lTGFMve", + displayName: "NTD_LSH_Public", + id: "orn5lTGFMve", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "Fr3SskvRRFO", + displayName: "NTD Chagas disease", + id: "Fr3SskvRRFO", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + { + access: "r-------", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "Petar Jovanovic", + id: "q9wZgtaDxWn", + userUid: "q9wZgtaDxWn", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + options: [ + { + id: "CDIYMO9r2pv", + }, + { + id: "Vu05B3MCtV2", + }, + { + id: "WBd1cXQvxhx", + }, + ], + }, + { + code: "OpS_Tx_complete", + created: "2017-01-12T02:06:48.997", + lastUpdated: "2021-04-29T19:44:45.271", + name: "Treatment completion", + id: "TqJC6mhsOv6", + publicAccess: "--------", + version: 24, + valueType: "TEXT", + lastUpdatedBy: { + id: "Qu9goywu6cV", + }, + user: { + id: "q9wZgtaDxWn", + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5", + }, + { + access: "r-------", + userGroupUid: "FhhAcewq9it", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", + id: "FhhAcewq9it", + }, + { + access: "r-------", + userGroupUid: "mYtjuODefO4", + displayName: "SS_NTD_LSH_VL_Tracker_Entry", + id: "mYtjuODefO4", + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT", + }, + { + access: "r-------", + userGroupUid: "ZuT9b32Dhv5", + displayName: "SS_NTD_LSH_VL_KEN_Event_View", + id: "ZuT9b32Dhv5", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O", + }, + { + access: "r-------", + userGroupUid: "owXIJqhlxHy", + displayName: "SS_NTD_LSH_VL_ARM_Tracker_Entry", + id: "owXIJqhlxHy", + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN", + }, + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "cDb6nhH0rXS", + displayName: "SS_NTD_LSH_VL_Tracker_View", + id: "cDb6nhH0rXS", + }, + { + access: "r-------", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4", + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR", + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v", + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "QCd81cBHcad", + displayName: "SS_NTD_LSH_VL_ARM_Tracker_View", + id: "QCd81cBHcad", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "wwAK2yjjWQc", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", + id: "wwAK2yjjWQc", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + options: [ + { + id: "yeYDY2bogxs", + }, + { + id: "YDDAfmgEMih", + }, + { + id: "AsAN6YZCEGh", + }, + { + id: "TaiTS6k5ivC", + }, + ], + }, + { + code: "OpS_BU_AB_Type", + created: "2016-06-08T10:13:38.517", + lastUpdated: "2021-03-01T11:52:58.492", + name: "BU_AB_Type", + id: "cYVMBWrU2Pi", + publicAccess: "--------", + version: 10, + valueType: "TEXT", + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + options: [ + { + id: "AzJhPoyTFg8", + }, + { + id: "MuopyHevUQ8", + }, + { + id: "s914v1OKfcW", + }, + ], + }, + { + code: "OpS_BU_ITxO", + created: "2019-06-05T07:42:16.335", + lastUpdated: "2021-03-19T17:24:32.051", + name: "BU_ITxO", + id: "tGr5pbgz67Z", + publicAccess: "--------", + version: 7, + valueType: "TEXT", + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + options: [ + { + id: "p4hdUBmGKQE", + }, + { + id: "Bp5pucqpTey", + }, + { + id: "y9unlLhGO4k", + }, + { + id: "wMfa0vuPDQz", + }, + { + id: "Nz4Cw1ckLD2", + }, + ], + }, + { + code: "OpS_Country", + created: "2016-02-28T00:35:34.236", + lastUpdated: "2021-04-29T19:44:45.232", + name: "Country", + id: "gUyghXvtx1M", + publicAccess: "--------", + version: 276, + valueType: "TEXT", + lastUpdatedBy: { + id: "Qu9goywu6cV", + }, + user: { + id: "q9wZgtaDxWn", + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "r-------", + userGroupUid: "Ot2xz1vXELL", + displayName: "SS_NTD_CH_Healthcare_Event_View", + id: "Ot2xz1vXELL", + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5", + }, + { + access: "r-------", + userGroupUid: "FhhAcewq9it", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", + id: "FhhAcewq9it", + }, + { + access: "r-------", + userGroupUid: "mYtjuODefO4", + displayName: "SS_NTD_LSH_VL_Tracker_Entry", + id: "mYtjuODefO4", + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "ZuT9b32Dhv5", + displayName: "SS_NTD_LSH_VL_KEN_Event_View", + id: "ZuT9b32Dhv5", + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU", + }, + { + access: "r-------", + userGroupUid: "DgpZijnf5Sf", + displayName: "SS_NTD_CH_VectorControl_Event_Entry", + id: "DgpZijnf5Sf", + }, + { + access: "r-------", + userGroupUid: "ln8nJQmOSpJ", + displayName: "SS_NTD_CH_Healthcare_Event_Entry", + id: "ln8nJQmOSpJ", + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O", + }, + { + access: "r-------", + userGroupUid: "owXIJqhlxHy", + displayName: "SS_NTD_LSH_VL_ARM_Tracker_Entry", + id: "owXIJqhlxHy", + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN", + }, + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "cDb6nhH0rXS", + displayName: "SS_NTD_LSH_VL_Tracker_View", + id: "cDb6nhH0rXS", + }, + { + access: "r-------", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4", + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "kvu9Bts7nJb", + displayName: "SS_NTD_CH_VectorControl_Event_View", + id: "kvu9Bts7nJb", + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR", + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v", + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "rw------", + userGroupUid: "PRgi0GEW3gw", + displayName: "NTD Chagas disease - WCD2020", + id: "PRgi0GEW3gw", + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "Fr3SskvRRFO", + displayName: "NTD Chagas disease", + id: "Fr3SskvRRFO", + }, + { + access: "r-------", + userGroupUid: "QCd81cBHcad", + displayName: "SS_NTD_LSH_VL_ARM_Tracker_View", + id: "QCd81cBHcad", + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "wwAK2yjjWQc", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", + id: "wwAK2yjjWQc", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "rw------", + displayName: "Chagas World Day 2020", + id: "iUNlUiEkyQx", + userUid: "iUNlUiEkyQx", + }, + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "rw------", + displayName: "Petar Jovanovic", + id: "q9wZgtaDxWn", + userUid: "q9wZgtaDxWn", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + options: [ + { + id: "rpYKUF2SUbF", + }, + { + id: "ROD72U5e1KY", + }, + { + id: "GNF8jdbZ8Dw", + }, + { + id: "vRVl3O76lyn", + }, + { + id: "OPp0jE41c71", + }, + { + id: "RgllCEY0K6B", + }, + { + id: "aaXQWSasFYh", + }, + { + id: "E1e60DQj7ER", + }, + { + id: "sdGbRbHMjfM", + }, + { + id: "cQkGLAeVhei", + }, + { + id: "st3MnmCFpzF", + }, + { + id: "idhYV7lcUgH", + }, + { + id: "YINMRPJJN5V", + }, + { + id: "KAJ7p4zcnJt", + }, + { + id: "R9eRZscHOto", + }, + { + id: "kTOG6zPV8n8", + }, + { + id: "Rbwa1KlOCgs", + }, + { + id: "yNiomNqisdT", + }, + { + id: "bDDw1zZn6H4", + }, + { + id: "Kfq910gLIPA", + }, + { + id: "eTIA3EPkyY4", + }, + { + id: "EaE88cArPz5", + }, + { + id: "sFfFUiIkgDi", + }, + { + id: "yIswGPbNEZk", + }, + { + id: "qwwz0vNXMD3", + }, + { + id: "mdKnXxpQ0LQ", + }, + { + id: "oPg7wRipLh4", + }, + { + id: "O8O4CpJVYOD", + }, + { + id: "J38ZkiquJmy", + }, + { + id: "eoBbae6v8Is", + }, + { + id: "XysXrwrAdcb", + }, + { + id: "LaqvuIL8pST", + }, + { + id: "g4TjSILnkWf", + }, + { + id: "UkW0Ae3paRK", + }, + { + id: "ftPDQflDhP4", + }, + { + id: "N6LwQ834t7C", + }, + { + id: "eWVs9rhuRhl", + }, + { + id: "ekwPeN3y8hn", + }, + { + id: "fVGpda6m2J1", + }, + { + id: "sZjbQs6bl0o", + }, + { + id: "nF2ZeKjSsf6", + }, + { + id: "QkKjW5DH4u9", + }, + { + id: "PTQq9HoYV7h", + }, + { + id: "jxyr8IWOLiN", + }, + { + id: "WJW9ptUoJ3A", + }, + { + id: "Ksv0YWONey8", + }, + { + id: "tiH4Rvkr1AU", + }, + { + id: "oN6N4VVymmD", + }, + { + id: "mQGGbSz6cee", + }, + { + id: "ZtNH7EW51t0", + }, + { + id: "fSwZ2dQsngS", + }, + { + id: "iIyvPvW311F", + }, + { + id: "DIMY2GI3N0D", + }, + { + id: "FjJGgqd4e0t", + }, + { + id: "Q3JNcuoJx0i", + }, + { + id: "X7tLQ18rhaG", + }, + { + id: "vk3eaLsdOlS", + }, + { + id: "FaU1a7FxQGn", + }, + { + id: "Rb24lhnATCV", + }, + { + id: "X6K4a7H6wDk", + }, + { + id: "LhTmzpsK3Be", + }, + { + id: "C4WPfBbbyLg", + }, + { + id: "dZcbeWdMWsZ", + }, + { + id: "dA1bzDuyJpa", + }, + { + id: "KkPkhg9dyZS", + }, + { + id: "Snabf2xuq8j", + }, + { + id: "s54dxecMtMv", + }, + { + id: "OJ0DFyJMUOR", + }, + { + id: "mOkzdx2h0SG", + }, + { + id: "oXpUVu6DhB2", + }, + { + id: "jh3zGJQi06D", + }, + { + id: "cqfa35jkUEd", + }, + { + id: "bdZkKddbme4", + }, + { + id: "rmlWP6qawBg", + }, + { + id: "cI94C2PcXsS", + }, + { + id: "TIVtt9En4eU", + }, + { + id: "l4T2wiKbQUL", + }, + { + id: "kGIuN6tjNZI", + }, + { + id: "LBzfnDqxl0M", + }, + { + id: "LXpaR05sYo1", + }, + { + id: "o3fBa5sIh8Q", + }, + { + id: "afoGJejzdk9", + }, + { + id: "wumaFN6DN2W", + }, + { + id: "A4mupXkA7Tk", + }, + { + id: "htZ89VAlt02", + }, + { + id: "gHRFa39BQfS", + }, + { + id: "Cq9V6QqCNme", + }, + { + id: "oTNU8h07Q7x", + }, + { + id: "HUm42tSwG8f", + }, + { + id: "YkDHxJoSdxP", + }, + { + id: "jGbV0Ne53W5", + }, + { + id: "sZJBFcxVY8g", + }, + { + id: "y8urVZCHd1T", + }, + { + id: "bzazWy2jvpr", + }, + { + id: "iQ3o79B3Rte", + }, + { + id: "X9j8yAE8jR1", + }, + { + id: "pGnTV1cqwc0", + }, + { + id: "ielTPI84eJZ", + }, + { + id: "eT6EbUJF8xK", + }, + { + id: "uRNwaxhc5Tx", + }, + { + id: "RU3idIirhku", + }, + { + id: "yDeHDMclb90", + }, + { + id: "TA7D8hfDnL6", + }, + { + id: "cSqaO8XLuNi", + }, + { + id: "h3NVEPvY7io", + }, + { + id: "oKQ4Km493KI", + }, + { + id: "GAyjbdM621v", + }, + { + id: "aKXIbWkLKMT", + }, + { + id: "JY1pHQtniXy", + }, + { + id: "C5Ly52gvu3w", + }, + { + id: "cBKW7YJr4rO", + }, + { + id: "y6bDnL6k4A9", + }, + { + id: "G4eMnJNlEhT", + }, + { + id: "SAmZtKTfG80", + }, + { + id: "RTgnQw3zAy6", + }, + { + id: "x0psf8EdDge", + }, + { + id: "MHhH9Uf7Rj5", + }, + { + id: "toz6mYv2HYF", + }, + { + id: "ULrEOBUJNtC", + }, + { + id: "whL5no7kcff", + }, + { + id: "WFTrDt1MKFN", + }, + { + id: "QFaAj7RqyAm", + }, + { + id: "Pm4Jv8Hp8kE", + }, + { + id: "PP1n12Xmd4T", + }, + { + id: "bukRn9nzytv", + }, + { + id: "erOhrWyHhDY", + }, + { + id: "EvekRRBnMx4", + }, + { + id: "hK6W9ljkGqw", + }, + { + id: "zjI336whk3I", + }, + { + id: "taFo3wtW5Eg", + }, + { + id: "xyem51RudNi", + }, + { + id: "i7A3r980S0D", + }, + { + id: "BbVCIp24olr", + }, + { + id: "KeMEEipyNOm", + }, + { + id: "FbfNBXab6GY", + }, + { + id: "nh1m0TLoIh8", + }, + { + id: "cL4OmqIczsH", + }, + { + id: "sYu5WdUFxxx", + }, + { + id: "hfkGnSUY6US", + }, + { + id: "EkjCgj5oboN", + }, + { + id: "rtFuIPE4rvK", + }, + { + id: "OcaAwln2R11", + }, + { + id: "HIoE2KG4A61", + }, + { + id: "DjVJE4YFp6g", + }, + { + id: "cDIdNAHmPrE", + }, + { + id: "DwOOv26iA48", + }, + { + id: "MpAktPYMf90", + }, + { + id: "otegwIeNezj", + }, + { + id: "X9nQoyVwrsn", + }, + { + id: "ATcSjkUG9QV", + }, + { + id: "FiPEiArokkj", + }, + { + id: "rM46cgyO8rb", + }, + { + id: "kxbQFgx63UI", + }, + { + id: "PDWVapGBjI8", + }, + { + id: "tzhv86drYJH", + }, + { + id: "Gyn24NJMikB", + }, + { + id: "NBcbgJQuPq8", + }, + { + id: "g3iNcMjOKf2", + }, + { + id: "P0fL0rvUSn7", + }, + { + id: "vKiKgfvmaOs", + }, + { + id: "owGF3JqsoAA", + }, + { + id: "Ps7iJKJcqb8", + }, + { + id: "hr3HqQmzN7f", + }, + { + id: "FjYmkLvW8hG", + }, + { + id: "mxwaApcX2QJ", + }, + { + id: "QBJvSnKk1uW", + }, + { + id: "REll9OOAWVM", + }, + { + id: "UyeM42XQdUL", + }, + { + id: "XXEL9RuJPCO", + }, + { + id: "pBZQqnOre43", + }, + { + id: "j12hkmb7DHr", + }, + { + id: "kRFzU19Xd1Y", + }, + { + id: "mKpPeqR2hX2", + }, + { + id: "J88eOGKY9Na", + }, + { + id: "aOpMFzlaTp0", + }, + { + id: "ByOnLinEgi8", + }, + { + id: "H8AEpkxvjRU", + }, + { + id: "PHh2qZ7KS7X", + }, + { + id: "y0ZlulciMOf", + }, + { + id: "D82B1UTMfPL", + }, + { + id: "RN3bZeeFEbl", + }, + { + id: "UxsQKwqAuGh", + }, + { + id: "eh5c1MmXn8n", + }, + { + id: "yxRTRFzIdMC", + }, + { + id: "rdwbewfVXxn", + }, + { + id: "sEucrpuANOo", + }, + { + id: "R3xI52BxTKZ", + }, + { + id: "X1rvZAaWg66", + }, + { + id: "LsGOICl7YIw", + }, + { + id: "OaWk0B8LtgK", + }, + { + id: "vyw2jtfU39q", + }, + { + id: "WmpDHvUrndV", + }, + { + id: "aF9IHLadpWc", + }, + { + id: "IWYV2nhwswl", + }, + { + id: "H0I6K4ARBWm", + }, + { + id: "qWdvoHjEe3v", + }, + { + id: "VUldg1jCLBU", + }, + { + id: "xPe8txtq1S7", + }, + { + id: "aLAfEob7jZh", + }, + { + id: "AIx354YR3oy", + }, + { + id: "ejSCE1PrzIR", + }, + { + id: "h6dADh5Zx6g", + }, + { + id: "tFp489Mt4rO", + }, + { + id: "z6RCpgOD0ve", + }, + { + id: "boiuNkaV65n", + }, + { + id: "DcGZ6Rn7qle", + }, + { + id: "RfNF6JV3ecp", + }, + { + id: "NkdCgJPQtjw", + }, + { + id: "HN0RT0Kv1mD", + }, + { + id: "iDEdgaPkpce", + }, + { + id: "qkBlV5zXEbg", + }, + { + id: "Mm43urCbMp9", + }, + { + id: "VyBTcplZkJQ", + }, + { + id: "DOHMCSDIbCb", + }, + { + id: "odQjRlU11Fy", + }, + { + id: "MXH9qJlmiHj", + }, + { + id: "HepCKGVZOF9", + }, + { + id: "E4Ihgx3j6z1", + }, + { + id: "hOBEs8WJceb", + }, + { + id: "Rke3037hiuV", + }, + { + id: "qoefJ5oz2kr", + }, + { + id: "UPJI4u2Zpao", + }, + { + id: "aewMRLmf9a9", + }, + { + id: "NEuSYMjN31a", + }, + { + id: "evtYWLkx81g", + }, + { + id: "T6sKm7b1Iev", + }, + { + id: "aKJBQ499p7T", + }, + { + id: "So5Bmn1i2r2", + }, + { + id: "UftyLoueGB8", + }, + { + id: "eHHU7uow2mi", + }, + { + id: "oPuTQ7Y5qMi", + }, + { + id: "ywkstElBpo1", + }, + { + id: "GkfStXJBJqs", + }, + { + id: "Vz0KVAbfhRy", + }, + { + id: "WPZOE5WQJB9", + }, + { + id: "Iop94Prp34o", + }, + { + id: "q5u0ehHpFgt", + }, + { + id: "QkFFXvco1QM", + }, + { + id: "XnUtsN4s1HS", + }, + { + id: "JEYcfbIKDqM", + }, + { + id: "cMsUdHzYjEm", + }, + { + id: "Ba3mM6jHWLo", + }, + { + id: "E3kChU0S6Ty", + }, + { + id: "u6kafve6PQR", + }, + { + id: "jVvKs0pcKlP", + }, + { + id: "fTISV70dLXk", + }, + { + id: "InEQETgtfSJ", + }, + { + id: "XObEvb5qGAA", + }, + ], + }, + { + code: "OpS_Skin_Classification", + created: "2016-06-08T09:04:14.700", + lastUpdated: "2021-03-19T17:24:31.617", + name: "Skin_Classification", + id: "Al6DsS3DTve", + publicAccess: "--------", + version: 23, + valueType: "TEXT", + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + options: [ + { + id: "qVOty3cF2WA", + }, + { + id: "w9Ve9MgDnPI", + }, + { + id: "fHwmBRPO12f", + }, + { + id: "kj4jM9bi8MB", + }, + ], + }, + { + code: "ALL_OpS_YNU", + created: "2016-05-22T22:20:55.425", + lastUpdated: "2021-06-18T17:47:14.239", + name: "YNU", + id: "vDeP0h2cO2n", + publicAccess: "r-------", + version: 32, + valueType: "TEXT", + lastUpdatedBy: { + id: "Qu9goywu6cV", + }, + user: { + id: "q9wZgtaDxWn", + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v", + }, + { + access: "r-------", + userGroupUid: "cDb6nhH0rXS", + displayName: "SS_NTD_LSH_VL_Tracker_View", + id: "cDb6nhH0rXS", + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5", + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS", + }, + { + access: "r-------", + userGroupUid: "mYtjuODefO4", + displayName: "SS_NTD_LSH_VL_Tracker_Entry", + id: "mYtjuODefO4", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a", + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [], + options: [ + { + id: "PHv5RMoDR3I", + }, + { + id: "oq0sE3HHt7O", + }, + { + id: "do7Z43P6VB8", + }, + ], + }, + { + code: "Result_PNPNDU", + created: "2019-05-20T09:57:45.595", + lastUpdated: "2021-04-29T19:44:45.260", + name: "Result_PNPNDU", + id: "vQBOhNnE09a", + publicAccess: "--------", + version: 12, + valueType: "TEXT", + lastUpdatedBy: { + id: "Qu9goywu6cV", + }, + user: { + id: "ilJDyuqlwDC", + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5", + }, + { + access: "r-------", + userGroupUid: "mYtjuODefO4", + displayName: "SS_NTD_LSH_VL_Tracker_Entry", + id: "mYtjuODefO4", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU", + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O", + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN", + }, + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "cDb6nhH0rXS", + displayName: "SS_NTD_LSH_VL_Tracker_View", + id: "cDb6nhH0rXS", + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v", + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + options: [ + { + id: "PThinVriWjI", + }, + { + id: "ADcYKbV8BWA", + }, + { + id: "XfXIcYn2wZB", + }, + { + id: "ktd2pbc0DJl", + }, + { + id: "RG6QTAyr0lY", + }, + ], + }, + { + code: "ALL_OpS_Gender", + created: "2016-05-22T22:20:55.318", + lastUpdated: "2021-04-29T19:44:45.237", + name: "Gender", + id: "apzFCMWeffA", + publicAccess: "r-------", + version: 33, + valueType: "TEXT", + lastUpdatedBy: { + id: "Qu9goywu6cV", + }, + user: { + id: "H4atNsEuKxP", + }, + userGroupAccesses: [], + attributeValues: [], + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Genre", + }, + { + property: "NAME", + locale: "fr", + value: "Genre", + }, + ], + userAccesses: [], + options: [ + { + id: "M0BoqSns1KA", + }, + { + id: "FFuAh3CgxqV", + }, + { + id: "DL8exJ3mxUX", + }, + ], + }, + { + code: "OpS_BU_cat", + created: "2016-06-08T09:04:14.518", + lastUpdated: "2021-03-19T17:24:31.727", + name: "BU_cat", + id: "nF2JkM7IXth", + publicAccess: "--------", + version: 15, + valueType: "TEXT", + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + options: [ + { + id: "B1dtYYHplC2", + }, + { + id: "TQIAxf467mJ", + }, + { + id: "Q9P2sPWVRfP", + }, + { + id: "JbKYZp1CAIa", + }, + ], + }, + { + code: "OpS_BU_FTxO", + created: "2016-06-24T08:02:04.461", + lastUpdated: "2021-03-19T17:24:32.028", + name: "BU_FTxO", + id: "ESSQcpsmBse", + publicAccess: "--------", + version: 15, + valueType: "TEXT", + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + options: [ + { + id: "Vir718Xtmot", + }, + { + id: "jtEMRBZkuHe", + }, + { + id: "FeBILAXpi53", + }, + { + id: "i2FNFG2CgtO", + }, + ], + }, + ], + trackedEntityTypes: [ + { + code: "Person", + created: "2018-11-29T00:00:00.000", + lastUpdated: "2021-09-21T09:19:35.653", + name: "Person", + id: "MCPQUTHX1Ze", + publicAccess: "--------", + description: "Person", + maxTeiCountToReturn: 0, + allowAuditLog: false, + featureType: "NONE", + minAttributesRequiredToSearch: 1, + lastUpdatedBy: { + id: "H4atNsEuKxP", + }, + user: { + id: "ilJDyuqlwDC", + }, + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU", + }, + { + access: "r-r-----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5", + }, + { + access: "r-rw----", + userGroupUid: "HJRKloCWNeh", + displayName: "SS_NTD_SKIN_ACD_Event_Entry", + id: "HJRKloCWNeh", + }, + { + access: "r-rw----", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-rw----", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU", + }, + { + access: "r-r-----", + userGroupUid: "cy0qXsDxzxe", + displayName: "SS_NTD_LSH_VL_LabLog_View", + id: "cy0qXsDxzxe", + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a", + }, + { + access: "r-r-----", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O", + }, + { + access: "r-r-----", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-rw----", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-rw----", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "r-rw----", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT", + }, + { + access: "r-r-----", + userGroupUid: "Ot2xz1vXELL", + displayName: "SS_NTD_CH_Healthcare_Event_View", + id: "Ot2xz1vXELL", + }, + { + access: "r-r-----", + userGroupUid: "DzvWl4E1DhF", + displayName: "SS_NTD_CH_HealthSystem_Event_View", + id: "DzvWl4E1DhF", + }, + { + access: "r-rw----", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS", + }, + { + access: "r-r-----", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-r-----", + userGroupUid: "cDb6nhH0rXS", + displayName: "SS_NTD_LSH_VL_Tracker_View", + id: "cDb6nhH0rXS", + }, + { + access: "r-r-----", + userGroupUid: "YJ4SW7rs30P", + displayName: "SS_NTD_LSH_CPG", + id: "YJ4SW7rs30P", + }, + { + access: "r-r-----", + userGroupUid: "ODVk6IF6Dso", + displayName: "SS_NTD_SKIN_ACD_Event_View", + id: "ODVk6IF6Dso", + }, + { + access: "r-r-----", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN", + }, + { + access: "r-r-----", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC", + }, + { + access: "r-rw----", + userGroupUid: "ln8nJQmOSpJ", + displayName: "SS_NTD_CH_Healthcare_Event_Entry", + id: "ln8nJQmOSpJ", + }, + { + access: "rwr-----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v", + }, + { + access: "r-rw----", + userGroupUid: "UnTaQrY57qi", + displayName: "NTD_LSH_Monthly_Importer", + id: "UnTaQrY57qi", + }, + { + access: "rwrw----", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-rw----", + userGroupUid: "TbGA9fMJpCR", + displayName: "SS_NTD_LSH_VL_LabLog_Entry", + id: "TbGA9fMJpCR", + }, + { + access: "rwr-----", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-r-----", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "r-rw----", + userGroupUid: "Qi5B1pnVvEH", + displayName: "SS_NTD_CH_HealthSystem_Event_Entry", + id: "Qi5B1pnVvEH", + }, + { + access: "r-rw----", + userGroupUid: "mYtjuODefO4", + displayName: "SS_NTD_LSH_VL_Tracker_Entry", + id: "mYtjuODefO4", + }, + { + access: "r-r-----", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + ], + attributeValues: [], + trackedEntityTypeAttributes: [], + translations: [], + userAccesses: [ + { + access: "r-rw----", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + { + access: "rw------", + displayName: "Loretta Hardjopawiro", + id: "Ps2PMw1E7mI", + userUid: "Ps2PMw1E7mI", + }, + { + access: "rw------", + displayName: "Alexei MIKHAILOV", + id: "jrB1juLJyjJ", + userUid: "jrB1juLJyjJ", + }, + { + access: "rw------", + displayName: "Alexis Rico", + id: "s5EVHUwoFKu", + userUid: "s5EVHUwoFKu", + }, + ], + }, + ], + programStageSections: [ + { + created: "2016-09-06T14:39:38.414", + lastUpdated: "2021-04-22T14:59:35.599", + name: "Laboratory / Laboratoire", + id: "kmERl23mQ8R", + sortOrder: 6, + renderType: { + MOBILE: { + type: "LISTING", + }, + DESKTOP: { + type: "LISTING", + }, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + programIndicators: [], + translations: [], + dataElements: [ + { + id: "VYGsfmL36PY", + }, + { + id: "JAyZaIKj2zv", + }, + { + id: "ggwHn45jtgh", + }, + ], + }, + { + created: "2016-09-13T16:50:42.097", + lastUpdated: "2021-04-22T14:59:35.599", + name: "Place of residence / Lieu de résidence", + id: "WKQvNhjIme6", + sortOrder: 1, + renderType: { + MOBILE: { + type: "LISTING", + }, + DESKTOP: { + type: "LISTING", + }, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + programIndicators: [], + translations: [], + dataElements: [ + { + id: "J19avh4dgzs", + }, + { + id: "mwIgH1XXf6p", + }, + { + id: "BYPbyk5W7SL", + }, + { + id: "bTwp4cKNjgZ", + }, + { + id: "silWE44JpaQ", + }, + ], + }, + { + created: "2016-09-13T16:50:14.634", + lastUpdated: "2021-04-22T14:59:35.599", + name: "General information / Informations générales", + id: "JuoTOHBrYjD", + sortOrder: 0, + renderType: { + MOBILE: { + type: "LISTING", + }, + DESKTOP: { + type: "LISTING", + }, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + programIndicators: [], + translations: [], + dataElements: [ + { + id: "ZGCDiz5fZhb", + }, + { + id: "LJHNsKzZ8Mg", + }, + { + id: "Q7dOlqe54eh", + }, + { + id: "DAPNB0WxKMH", + }, + { + id: "Z8W89lDV4IL", + }, + ], + }, + { + created: "2016-09-06T14:38:12.996", + lastUpdated: "2021-04-22T14:59:35.599", + name: "Case classification / Classification du cas", + id: "UaLdvwjiwJ4", + sortOrder: 2, + renderType: { + MOBILE: { + type: "LISTING", + }, + DESKTOP: { + type: "LISTING", + }, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + programIndicators: [], + translations: [], + dataElements: [ + { + id: "HAt5fbygnrg", + }, + ], + }, + { + created: "2016-09-06T14:38:34.661", + lastUpdated: "2021-04-22T14:59:35.599", + name: "Clinical form(s) / Forme(s) clinique(s)", + id: "lA5R8jpglUg", + description: + "Please tick here the type of lesion(s) identified on the patient. You can tick several boxes. //\nCochez le type de lésion(s) identidiées sur le patient. Vous pouvez cochez plusieurs cases.", + sortOrder: 3, + renderType: { + MOBILE: { + type: "LISTING", + }, + DESKTOP: { + type: "LISTING", + }, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + programIndicators: [], + translations: [], + dataElements: [ + { + id: "xkt9nkHj5CA", + }, + { + id: "RETdv2kznbH", + }, + { + id: "QzAHATV8EWv", + }, + { + id: "nidn593FWAF", + }, + { + id: "mTyzapAF9iT", + }, + { + id: "qJOXKn3wSLS", + }, + ], + }, + { + created: "2016-09-06T14:38:58.156", + lastUpdated: "2021-04-22T14:59:35.599", + name: "Location(s) of lesion(s) / Localisation(s) de(s) lésion(s)", + id: "XoBIzGaZOLn", + description: + "Please tick here the location(s) of the lesion(s) identified on the patient. You can tick several boxes.", + sortOrder: 4, + renderType: { + MOBILE: { + type: "LISTING", + }, + DESKTOP: { + type: "LISTING", + }, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + programIndicators: [], + translations: [], + dataElements: [ + { + id: "Sieb79556d6", + }, + { + id: "PRaonbusSOU", + }, + { + id: "UY4A4oRdvqT", + }, + { + id: "j9OfhXT92Ej", + }, + { + id: "TqqxE4hmd6Q", + }, + { + id: "UCXRQtdD8K5", + }, + { + id: "adfHPJQRI3C", + }, + ], + }, + { + created: "2016-09-06T14:39:28.572", + lastUpdated: "2021-04-22T14:59:35.599", + name: "Other information about the lesion(s) / Autres informations sur la(les) lésion(s)", + id: "bfQc4NoPHD9", + sortOrder: 5, + renderType: { + MOBILE: { + type: "LISTING", + }, + DESKTOP: { + type: "LISTING", + }, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + programIndicators: [], + translations: [], + dataElements: [ + { + id: "UwC7RVH9Bwv", + }, + { + id: "DHmAP1MjEoK", + }, + { + id: "xIo6fsgpmdN", + }, + ], + }, + { + created: "2016-09-06T14:39:48.484", + lastUpdated: "2021-04-22T14:59:35.599", + name: "Antibiotic treatment / Traitement antibiotique", + id: "AJDiEfldKyX", + sortOrder: 7, + renderType: { + MOBILE: { + type: "LISTING", + }, + DESKTOP: { + type: "LISTING", + }, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + programIndicators: [], + translations: [], + dataElements: [ + { + id: "gc8rKk6Hax6", + }, + { + id: "wiZbIU6sFG5", + }, + { + id: "XyGxsyiIy4p", + }, + ], + }, + ], + dataElements: [ + { + code: "GEN_Mobile Phone_T", + lastUpdated: "2021-03-19T17:24:32.796", + id: "silWE44JpaQ", + created: "2016-05-22T22:45:17.222", + name: "GEN_Mobile Phone_T", + shortName: "MobilePhone", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "PHONE_NUMBER", + formName: "Mobile Phone", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "ilJDyuqlwDC", + }, + user: { + id: "q9wZgtaDxWn", + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Numero de telephone", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Numero de telephone", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "ZuT9b32Dhv5", + displayName: "SS_NTD_LSH_VL_KEN_Event_View", + id: "ZuT9b32Dhv5", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "GEN_PLACE_VillageOfResidence_Text_T", + lastUpdated: "2021-03-19T17:24:33.303", + id: "bTwp4cKNjgZ", + created: "2016-02-28T01:06:28.092", + name: "GEN_PLACE_VillageOfResidence_Text_T", + shortName: "Village of residence (Free text)", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: + "In case you could not find the village neither in the organisation tree, nor in the when trying to capture the coordinates, please indicate the name of the village of residence as free text in this box.", + valueType: "TEXT", + formName: "Village of residence (Free text)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "q9wZgtaDxWn", + }, + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: "Au cas où vous ne pourriez pas trouver le lieu de résidence ni dans l'arbre d'unités d'organisation, ni lorsque vous essayez de trouver les coordonnées géographiques sur la carte, merci d'indiquer le nom du lieu de résidence comme texte libre dans cette case.", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Lieu de résidence (Texte libre)", + }, + { + property: "NAME", + locale: "fr", + value: "GEN_PLACE_VillageOfResidence_Text_T", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Lieu de résidence (Texte libre)", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT", + }, + { + access: "r-------", + userGroupUid: "ZuT9b32Dhv5", + displayName: "SS_NTD_LSH_VL_KEN_Event_View", + id: "ZuT9b32Dhv5", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU", + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN", + }, + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "sVRPz2NvK37", + displayName: "NTD_AFRO", + id: "sVRPz2NvK37", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR", + }, + { + access: "r-------", + userGroupUid: "TbGA9fMJpCR", + displayName: "SS_NTD_LSH_VL_LabLog_Entry", + id: "TbGA9fMJpCR", + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj", + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "cy0qXsDxzxe", + displayName: "SS_NTD_LSH_VL_LabLog_View", + id: "cy0qXsDxzxe", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_TxO_AB_missed", + lastUpdated: "2021-03-19T17:24:33.527", + id: "dRoQ0J5dKuO", + created: "2016-09-04T17:41:06.131", + name: "BU_TxO_AB_missed", + shortName: "Number of days the treatment has been missed", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "Please count here the number of days when the AB has not been taken.", + valueType: "INTEGER_ZERO_OR_POSITIVE", + formName: "Number of days the treatment has been missed over the total period", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "BU_TxO_AB_rate_T", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Nombre de jour où le traitement a été raté (sur la période totale de traitement)", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Nombre de jour où le traitement a été raté", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Veuillez compter ici le nombre de jours où le patient a raté son traitement antibiotique, sur l'ensemble de la période de traitement.", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "DET_NTD_SKIN_PIX_PreTx_PIX", + lastUpdated: "2021-03-19T17:24:33.281", + id: "xIo6fsgpmdN", + created: "2016-06-18T01:01:20.031", + name: "Skin_Pix_PreTx_Pix_T", + shortName: "Take pre-treatment picture", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "If you are using the Android App, please take a photo of the lesion prior to treatment.", + valueType: "IMAGE", + formName: "Take pre-treatment picture", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Photo pre-traitement", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Charger la photo pre-traitement", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Charger la photo pr\ufffd-traitement", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "Skin_Cl_jointLimitation_T", + lastUpdated: "2021-03-01T11:52:49.286", + id: "DHmAP1MjEoK", + created: "2016-06-08T09:14:38.961", + name: "Skin_Cl_joint limitation_T", + shortName: "Jont limitation", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "Please indicate if the patient presents with limitation of movement, at any joint", + valueType: "TEXT", + formName: "Limitation of movement (at any joint)", + zeroIsSignificant: false, + optionSet: { + id: "vDeP0h2cO2n", + }, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Limitation articulaire", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Indiquez si le patient présente une limitation du mouvement à n'importe quelle articulation, au moment de l'examen clinique initial.", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Limitation du mouvement (articulaire)", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "Skin_Cl_Lesion_Loc_Thorax_T", + lastUpdated: "2021-04-29T19:43:57.701", + id: "TqqxE4hmd6Q", + created: "2017-06-20T09:15:06.933", + name: "Skin_Cl_Lesion_Loc_Thorax_T", + shortName: "Thorax", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "Tick if lesions are present on thorax", + valueType: "TRUE_ONLY", + formName: "Thorax", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "Qu9goywu6cV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Thorax", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Thorax (TH)", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: " Cochez cette case si le patient présente une lésion au thorax.", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5", + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v", + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "UIDreference", + lastUpdated: "2021-03-01T11:52:49.722", + id: "kzgD7nD4qLI", + created: "2018-08-24T11:47:23.237", + name: "UIDreference", + shortName: "UIDreference", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "a DHIS2 UID reference", + valueType: "TEXT", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "eK26I7dRbC4", + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "phezIKUxlC2", + displayName: "NTD_LSH_EMRO_SOM", + id: "phezIKUxlC2", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "K40P7b1JFdc", + displayName: "NTD_EMRO", + id: "K40P7b1JFdc", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_Tx_AB_YNU_T", + lastUpdated: "2021-03-19T17:24:33.570", + id: "gc8rKk6Hax6", + created: "2019-04-01T00:19:59.400", + name: "BU_Tx_AB_YNU_T", + shortName: "AB treatment started", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "INTEGER", + formName: "Antibiotic treatment started", + zeroIsSignificant: true, + optionSet: { + id: "mJKvd2WXQtp", + }, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Traitement AB commence", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Traitement AB commence", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "DE_PR_GEN_UID", + lastUpdated: "2021-03-19T17:24:33.873", + id: "ZGCDiz5fZhb", + created: "2018-01-29T09:34:35.473", + name: "GEN_UID", + shortName: "UID", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "Please indicate the unique identifier of the case.", + valueType: "TEXT", + formName: "Unique identifier", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: "Merci d'indiquer l'identifiant unique du cas. L'identifiant unique vous permettra de revenir consulter la fiche du cas et de faire le lien avec les outils papiers utilisés au CDTUB.", + }, + { + property: "NAME", + locale: "fr", + value: "GEN_UID", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Identifiant unique", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "UID", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR", + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj", + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF", + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "DET_NTD_SKIN_PIX_PreTx_FILE", + lastUpdated: "2021-03-01T11:52:49.751", + id: "uNdVSTX6lSE", + created: "2020-01-08T16:27:37.687", + name: "Skin_Pix_PreTx_File_T", + shortName: "Upload pre-treatment picture", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: + "If you are using the web-based platform, please upload a photo of the lesion prior to treatment.", + valueType: "FILE_RESOURCE", + formName: "Upload pre-treatment picture", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "GEN_PLACE_CountryOfResidence_T", + lastUpdated: "2021-03-19T17:24:34.096", + id: "J19avh4dgzs", + created: "2016-05-25T07:42:21.895", + name: "GEN_PLACE_CountryOfResidence_T", + shortName: "Country of residence", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "Please select in the drop-down menu the current country of residence of the patient.", + valueType: "TEXT", + formName: "Country of residence", + zeroIsSignificant: false, + optionSet: { + id: "gUyghXvtx1M", + }, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "q9wZgtaDxWn", + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "GEN_PLACE_PaysResidence_T", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Pays de résidence", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Sélectionnez le pays de résidence du patient dans la liste déroulante.", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Pays de résidence", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR", + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj", + }, + { + access: "r-------", + userGroupUid: "ZuT9b32Dhv5", + displayName: "SS_NTD_LSH_VL_KEN_Event_View", + id: "ZuT9b32Dhv5", + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF", + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "Skin_Cl_Lesion_Ulcer_T", + lastUpdated: "2021-03-19T17:24:34.017", + id: "mTyzapAF9iT", + created: "2016-06-08T09:14:43.396", + name: "Skin_Cl_Lesion_Ulcer_T", + shortName: "Ulcer", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: + "An ulcer is a painless skin lesion characterized by a necrotic center, undermined edges and oedematous skin. An early ulcerative lesion has a diameter of less than 2 cm and a late ulcerative lesion has a diameter of more than 2 cm. \nTick this box if the patient presents ulcer(s). ", + valueType: "TRUE_ONLY", + formName: "Ulcer (U)", + zeroIsSignificant: false, + url: "http://apps.who.int/iris/bitstream/10665/75360/1/9789241504096_eng.pdf?ua=1", + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Ulcere", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: " Un ulcère est une lésion cutanée indolore caractérisée par un centre nécrotique, des bords minces et une peau œdémateuse. Une lésion ulcéreuse précoce a un diamètre inférieur à 2 cm et une lésion ulcéreuse tardive a un diamètre supérieur à 2 cm. Cochez cette case si le patient présente un ou des ulcères", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Ulcere (U)", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Ulc\ufffdre", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4", + }, + { + access: "r-------", + userGroupUid: "FhhAcewq9it", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", + id: "FhhAcewq9it", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "wwAK2yjjWQc", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", + id: "wwAK2yjjWQc", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "GEN_Age_atDiagnosis_T", + lastUpdated: "2021-03-19T17:24:34.207", + id: "DAPNB0WxKMH", + created: "2016-03-18T12:34:24.376", + name: "GEN_Age_atDiagnosis_T", + shortName: "Age at diagnosis", + aggregationType: "AVERAGE", + domainType: "TRACKER", + publicAccess: "--------", + description: "Age in years at the time of diagnosis", + valueType: "NUMBER", + formName: "Age (in years), at the time of diagnosis", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Age au diagnostic", + }, + { + property: "NAME", + locale: "fr", + value: "GEN_Age_atDiagnosis_T", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Age (en années) au moment du diagnostic", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Age en années au moment du diagnostic. Si l'enfant à moins d'un an, vous pouvez entrer 0 ou le nombre de mois en décimal (6 mois = 0.5 an)", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU", + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN", + }, + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "sVRPz2NvK37", + displayName: "NTD_AFRO", + id: "sVRPz2NvK37", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR", + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [ + { + id: "cYxiNeJY4hJ", + }, + ], + aggregationLevels: [], + }, + { + code: "Skin_Cl_Lesion_Osteomyelitis_T", + lastUpdated: "2021-03-19T17:24:34.232", + id: "QzAHATV8EWv", + created: "2016-06-08T09:14:43.030", + name: "Skin_Cl_Lesion_Osteomyelitis_T", + shortName: "Osteomyelitis", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "Tick this box if the patient presents osteomyelitis.", + valueType: "TRUE_ONLY", + formName: "Osteomyelitis (O)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Ostéomyélite", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Osteomyelite", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Cochez cette case si le patient présente une ostéomyélite.", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Osteomyelite (O)", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Ost\ufffdomy\ufffdlite", + }, + { + property: "NAME", + locale: "fr", + value: "Ostéomyélite", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4", + }, + { + access: "r-------", + userGroupUid: "FhhAcewq9it", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", + id: "FhhAcewq9it", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "wwAK2yjjWQc", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", + id: "wwAK2yjjWQc", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_TxO_T", + lastUpdated: "2021-03-01T11:52:50.771", + id: "pUzlgt7peZT", + created: "2016-06-24T12:48:29.972", + name: "BU_TxO_T", + shortName: "Treatment outcome", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "TEXT", + formName: "Treatment outcome", + zeroIsSignificant: false, + optionSet: { + id: "ESSQcpsmBse", + }, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "GEN_FirstName_T", + lastUpdated: "2021-03-19T17:24:34.692", + id: "LJHNsKzZ8Mg", + created: "2016-09-13T16:46:09.752", + name: "GEN_FirstName_T", + shortName: "First name", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "TEXT", + formName: "First name", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "q9wZgtaDxWn", + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Prénom", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Prénom", + }, + { + property: "NAME", + locale: "fr", + value: "GEN_Prenom_T", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT", + }, + { + access: "r-------", + userGroupUid: "ZuT9b32Dhv5", + displayName: "SS_NTD_LSH_VL_KEN_Event_View", + id: "ZuT9b32Dhv5", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU", + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN", + }, + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "sVRPz2NvK37", + displayName: "NTD_AFRO", + id: "sVRPz2NvK37", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR", + }, + { + access: "r-------", + userGroupUid: "TbGA9fMJpCR", + displayName: "SS_NTD_LSH_VL_LabLog_Entry", + id: "TbGA9fMJpCR", + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "cy0qXsDxzxe", + displayName: "SS_NTD_LSH_VL_LabLog_View", + id: "cy0qXsDxzxe", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_Tx0_dateHealing_T", + lastUpdated: "2021-03-19T17:24:34.390", + id: "e8XmDDvKCT1", + created: "2016-06-08T09:14:40.036", + name: "BU_Tx0_date complete healing_T", + shortName: "Healing Date", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "Definition of complete healing", + valueType: "DATE", + formName: "Date of complete healing", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Date de guérison complete", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Date de guérison complete", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "Skin_Cl_Lesion_Loc_Abdomen_T", + lastUpdated: "2021-04-29T19:43:57.680", + id: "Sieb79556d6", + created: "2017-06-20T09:15:06.933", + name: "Skin_Cl_Lesion_Loc_Abdomen_T", + shortName: "Abdomen", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "Tick if lesions are present on abdomen", + valueType: "TRUE_ONLY", + formName: "Abdomen", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "Qu9goywu6cV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Abdomen", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5", + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v", + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "GEN_PLACE_Residence_Coords_T", + lastUpdated: "2021-04-08T15:11:39.489", + id: "NzJkoIvwyCh", + created: "2020-09-30T14:15:18.845", + name: "GEN_PLACE_Residence_Coords_T", + shortName: "Place of residence (as Coord)", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "COORDINATE", + formName: + "Place of Residence Coords (DON'T FILL IT, it will be calculated from chosen Place of Residence)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "eK26I7dRbC4", + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Coordonnées Lieu de résidence (NE PAS REMPLIR, le système calcule automatiquement ce champ à partir de Lieu de résidence)", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Lieu de résidence", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "sCjEPgiOhP1", + displayName: "WIDP admins", + id: "sCjEPgiOhP1", + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "ZuT9b32Dhv5", + displayName: "SS_NTD_LSH_VL_KEN_Event_View", + id: "ZuT9b32Dhv5", + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU", + }, + { + access: "r-------", + userGroupUid: "Nn17qA7SD5K", + displayName: "NTD_LSH_LEISHMAN", + id: "Nn17qA7SD5K", + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN", + }, + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK", + }, + { + access: "r-------", + userGroupUid: "Fr3SskvRRFO", + displayName: "NTD Chagas disease", + id: "Fr3SskvRRFO", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR", + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-------", + userGroupUid: "TbGA9fMJpCR", + displayName: "SS_NTD_LSH_VL_LabLog_Entry", + id: "TbGA9fMJpCR", + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj", + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "cy0qXsDxzxe", + displayName: "SS_NTD_LSH_VL_LabLog_View", + id: "cy0qXsDxzxe", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "Skin_Cl_Lesion_Loc_Genitalia_T", + lastUpdated: "2021-04-29T19:43:57.695", + id: "QEFiXRZu7jY", + created: "2017-06-20T09:15:06.933", + name: "Skin_Cl_Lesion_Loc_Genitalia_T", + shortName: "Genitalia", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "Tick if lesions are present on genital area", + valueType: "TRUE_ONLY", + formName: "Genital area", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "Qu9goywu6cV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Organes génitaux", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Zone g\ufffdnitale", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Cochez cette case si le patient présente une lésion aux organes génitaux. N'oubliez pas: les yeux, les seins et les organes génitaux sont des sites critiques pour l'ulcère de Burul", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Organes génitaux", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5", + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v", + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "Lab_Spe_YNU_T", + lastUpdated: "2021-03-19T17:24:35.058", + id: "VYGsfmL36PY", + created: "2020-01-15T00:21:47.732", + name: "Lab_Spe_YNU_T", + shortName: "Specimen(s) collected (YNU)", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "INTEGER", + formName: "Specimen(s) collected", + zeroIsSignificant: false, + optionSet: { + id: "mJKvd2WXQtp", + }, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Echantillon(s) prélevé(s) ", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Echantillon(s) prélevé(s) ", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "FhhAcewq9it", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", + id: "FhhAcewq9it", + }, + { + access: "r-------", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "QCd81cBHcad", + displayName: "SS_NTD_LSH_VL_ARM_Tracker_View", + id: "QCd81cBHcad", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "wwAK2yjjWQc", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", + id: "wwAK2yjjWQc", + }, + { + access: "r-------", + userGroupUid: "owXIJqhlxHy", + displayName: "SS_NTD_LSH_VL_ARM_Tracker_Entry", + id: "owXIJqhlxHy", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "Skin_Cl_Lesion_Nodule_T", + lastUpdated: "2021-03-19T17:24:34.980", + id: "xkt9nkHj5CA", + created: "2016-06-08T09:14:42.658", + name: "Skin_Cl_Lesion_Nodule_T", + shortName: "Nodule", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: + "A nodule is a lesion that extends from the skin into the subcutaneous tissue. It is 1–2 cm in diameter. It is usually painless but may be itchy and the surrounding skin may be discoloured compared to adjacent areas.\nTick this box if the patient presents a nodule.", + valueType: "TRUE_ONLY", + formName: "Nodule (N)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "Skin_Cl_Lesion_Nodule_T", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Un nodule est une lésion qui s'étend depuis la peau qu'au tissu sous-cutané. Il mesure 1-2 cm de diamètre, est généralement sans douleur, mais peut gratter et la peau atour peau perdre de la couleur comparé aux zones voisines. Merci de cocher cette case si le patient présente un nodule. ", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Nodule", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Nodule (N)", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4", + }, + { + access: "r-------", + userGroupUid: "FhhAcewq9it", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", + id: "FhhAcewq9it", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "wwAK2yjjWQc", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", + id: "wwAK2yjjWQc", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "GEN_PLACE_Residence_Coordinates_T", + lastUpdated: "2021-03-01T11:52:51.132", + id: "o3F666LPvuM", + created: "2016-11-08T08:32:27.031", + name: "GEN_PLACE_Residence_Coordinates_T", + shortName: "Coordinates (Residence)", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "NUMBER", + formName: "Place of residence (Coordinates)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "GEN_PLACE_Residence_Coordonnees_T", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Coordonnées (Résidence)", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Lieu de résidence (Coordonnées)", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj", + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_Lab_Mycolactone_InitialResults_T", + lastUpdated: "2021-03-19T17:24:35.301", + id: "ggwHn45jtgh", + created: "2017-06-20T11:55:11.428", + name: "BU_Lab_Mycolactone_InitialResults_T", + shortName: "Mycolactone - Result", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "TEXT", + formName: "Mycolactone - Result", + zeroIsSignificant: false, + optionSet: { + id: "vQBOhNnE09a", + }, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Micolactone - Résultats", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Micolactone - Résultats", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "GEN_Family name_T", + lastUpdated: "2021-03-19T17:24:35.634", + id: "Q7dOlqe54eh", + created: "2016-09-13T16:46:09.752", + name: "GEN_Family name_T", + shortName: "Family name", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "TEXT", + formName: "Family name", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "q9wZgtaDxWn", + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Nom de famille", + }, + { + property: "NAME", + locale: "fr", + value: "GEN_NomFamille_T", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Nom de famille", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT", + }, + { + access: "r-------", + userGroupUid: "ZuT9b32Dhv5", + displayName: "SS_NTD_LSH_VL_KEN_Event_View", + id: "ZuT9b32Dhv5", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU", + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN", + }, + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "sVRPz2NvK37", + displayName: "NTD_AFRO", + id: "sVRPz2NvK37", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR", + }, + { + access: "r-------", + userGroupUid: "TbGA9fMJpCR", + displayName: "SS_NTD_LSH_VL_LabLog_Entry", + id: "TbGA9fMJpCR", + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "cy0qXsDxzxe", + displayName: "SS_NTD_LSH_VL_LabLog_View", + id: "cy0qXsDxzxe", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "Skin_Cl_Papule_Lesion_T", + lastUpdated: "2021-03-19T17:24:35.625", + id: "nidn593FWAF", + created: "2016-06-08T09:14:43.588", + name: "Skin_Cl_Lesion_Papule_T", + shortName: "Papule", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: + "A papule is defined as a painless, raised skin lesion, less than 1 cm in diameter. The surrounding skin is reddened.\nTick this box if the patient presents papule(s).", + valueType: "TRUE_ONLY", + formName: "Papule (P)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: "Une papule est définie comme une lésion cutanée surélevée et indolore, de moins de 1 cm de diamètre. La peau environnante est rougie. Cochez cette case si le patient présente des papules.", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Papule", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Papule (P)", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "FhhAcewq9it", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", + id: "FhhAcewq9it", + }, + { + access: "r-------", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "wwAK2yjjWQc", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", + id: "wwAK2yjjWQc", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "DET_NTD_BU_ITxO", + lastUpdated: "2021-03-19T17:24:35.586", + id: "KcYECFOPVpR", + created: "2019-06-05T07:38:23.929", + name: "BU_FTxO_T", + shortName: "BU - Final treatment outcome", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: + "The final treatment outcome is the final assessment when the patient is completely healed. ", + valueType: "TEXT", + formName: "Final treatment outcome", + zeroIsSignificant: false, + optionSet: { + id: "ESSQcpsmBse", + }, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "UB - Résultat final du traitement", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Le résultat final du traitement est l'évaluation finale lors que le patient est complétement guéri.", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "UB - Résultat final du traitement", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "GEN_Registry Number_T", + lastUpdated: "2021-03-01T11:52:51.344", + id: "IcCc2qu4DnR", + created: "2016-05-22T22:45:15.692", + name: "GEN_Registry Number_T", + shortName: "RegistryNumber", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "Please indicate the Patient number of the registry", + valueType: "TEXT", + formName: "Case No.", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "DET_NTD_SKIN_PIX_POSTx_FILE", + lastUpdated: "2021-03-01T11:52:51.559", + id: "YrSJMlEJWEC", + created: "2020-01-08T16:30:44.941", + name: "Skin_Pix_PostTx_FILE_T", + shortName: "Upload post-treatment photo", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: + "If you are using the web-based platform, please upload a photo of the lesion(s) when assessing the treatment outcome.", + valueType: "FILE_RESOURCE", + formName: "Upload post-treatment photo of the lesion", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "GEN_PLACE_VillageOfResidence_GPS_T", + lastUpdated: "2021-03-19T17:24:35.730", + id: "BYPbyk5W7SL", + created: "2016-02-28T01:06:28.092", + name: "GEN_PLACE_VillageOfResidence_GPS_T", + shortName: "Village of residence (coordinates)", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: + 'In case you could not find the village in the organisation tree, please indicate the village of residence of the patient by 1/ indicating the latitude and longitude in the following format (X.XX.XX) or 2/ by clicking on the picture on the right and capturing the coordinates on the map directly (click right and "set coordinates"). If you choose the second option, you will be able to search for the village name on the search tab (up and left). ', + valueType: "COORDINATE", + formName: "Probable village of residence (coordinates)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Lieu de résidence (coordonées)", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Dans le cas où vous ne pourriez pas trouver le village dans l'arborescence, veuillez indiquer le village de résidence du patient 1/ en indiquant la latitude et la longitude dans le format suivant (X.XX.XX) ou 2/ en cliquant sur l'icone à droite et capturer les coordonnées sur la carte directement (cliquez à droite et \"définir les coordonnées\"). Si vous choisissez la deuxième option, vous pourrez rechercher le nom du village dans l'onglet de recherche (haut et gauche). vous n'avez pas pu trouver le village dans l'arborescence, veuillez indiquer le village de résidence du patient 1/ en indiquant la latitude et la longitude dans le format suivant (X.XX.XX) ou 2 / en cliquant sur l'icone à droite et capturer directement les coordonnées sur la carte (cliquer à droite et \"définir les coordonnées\"). Si vous choisissez la deuxième option, vous pourrez rechercher le nom du village dans l'onglet de recherche (haut et gauche).", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Lieu de résidence (coordonées)", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "sVRPz2NvK37", + displayName: "NTD_AFRO", + id: "sVRPz2NvK37", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR", + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj", + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF", + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "DET_NTD_SKIN_PIX_POSTx_PIX", + lastUpdated: "2021-03-19T17:24:35.831", + id: "XyGxsyiIy4p", + created: "2019-06-06T03:34:05.151", + name: "Skin_Pix_PostTx_PIX_T", + shortName: "Take post-treatment photo", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: + "If you are using the Android App, please take a photo of lesion when assessing the treatment outcome.", + valueType: "IMAGE", + formName: "Take post-treatment photo of the lesion", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Chargez l'image post-traitement", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Image post-traitement", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "Skin_Cl_Lesion_Plaque_T", + lastUpdated: "2021-03-19T17:24:36.218", + id: "qJOXKn3wSLS", + created: "2016-06-08T09:14:43.215", + name: "Skin_Cl_Lesion_Plaque_T", + shortName: "Plaque", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: + "A plaque is a firm, painless, elevated, well-demarcated lesion more than 2 cm in diameter with irregular edges. The skin over the lesion is often reddened or otherwise discolored. \nTick this box if the patient presents plaque(s).", + valueType: "TRUE_ONLY", + formName: "Plaque (Q)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: " Une plaque est une lésion ferme, indolore, surélevée et bien délimitée, de plus de 2 cm de diamètre et présentant des bords irréguliers. La peau recouvrant la lésion est souvent rougie ou décolorée. Cochez cette case si le patient présente des plaques.", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Plaque", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Plaque (Q)", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4", + }, + { + access: "r-------", + userGroupUid: "FhhAcewq9it", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", + id: "FhhAcewq9it", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "wwAK2yjjWQc", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", + id: "wwAK2yjjWQc", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_Tx_ABType_T", + lastUpdated: "2021-03-01T11:53:03.841", + id: "rWFQhbrnfMD", + created: "2016-06-08T09:26:37.955", + name: "BU_Tx_ABType_T", + shortName: "Antibiotics", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: + "If streptomycin is contraindicated (pregnancy, previous treatment with streptomycin), please contact the national programme manager or a designated referral treatment centre.", + valueType: "TEXT", + formName: "Antibiotics type", + zeroIsSignificant: false, + optionSet: { + id: "cYVMBWrU2Pi", + }, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Antiobiotiques", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Type d'antibiotiques", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: " Si la streptomycine est contre-indiquée (grossesse, traitement antérieur à la streptomycine), veuillez contacter le responsable du programme national ou un centre de traitement de référence désigné.", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "Skin_Cl_Lesion_Loc_Buttocks perineum_T", + lastUpdated: "2021-04-29T19:43:57.686", + id: "UY4A4oRdvqT", + created: "2017-06-20T09:15:06.933", + name: "Skin_Cl_Lesion_Loc_Buttocks perineum_T", + shortName: "Buttocks or Perineum", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "Tick if lesions are present on buttocks or perineum", + valueType: "TRUE_ONLY", + formName: "Buttocks or Perineum", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "Qu9goywu6cV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Fesses et périnée", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Fesses et périnée (FE)", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: " Cochez cette case si le patient présente une lésion aux fesses ou au périnée.", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5", + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v", + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "GEN_Sexe_T", + lastUpdated: "2021-03-19T17:24:36.558", + id: "Z8W89lDV4IL", + created: "2017-08-18T16:15:07.454", + name: "GEN_Sexe_T", + shortName: "Gender", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: "Gender", + valueType: "TEXT", + formName: "Gender", + zeroIsSignificant: false, + optionSet: { + id: "apzFCMWeffA", + }, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "q9wZgtaDxWn", + }, + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: "Genre", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Genre", + }, + { + property: "NAME", + locale: "fr", + value: "GEN_Genre_T", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Genre", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "r-------", + userGroupUid: "Ot2xz1vXELL", + displayName: "SS_NTD_CH_Healthcare_Event_View", + id: "Ot2xz1vXELL", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT", + }, + { + access: "r-------", + userGroupUid: "ZuT9b32Dhv5", + displayName: "SS_NTD_LSH_VL_KEN_Event_View", + id: "ZuT9b32Dhv5", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU", + }, + { + access: "r-------", + userGroupUid: "fth3On7vInl", + displayName: "NTD", + id: "fth3On7vInl", + }, + { + access: "r-------", + userGroupUid: "ln8nJQmOSpJ", + displayName: "SS_NTD_CH_Healthcare_Event_Entry", + id: "ln8nJQmOSpJ", + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN", + }, + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK", + }, + { + access: "r-------", + userGroupUid: "sVRPz2NvK37", + displayName: "NTD_AFRO", + id: "sVRPz2NvK37", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR", + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj", + }, + { + access: "r-------", + userGroupUid: "TbGA9fMJpCR", + displayName: "SS_NTD_LSH_VL_LabLog_Entry", + id: "TbGA9fMJpCR", + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF", + }, + { + access: "rw------", + userGroupUid: "Fr3SskvRRFO", + displayName: "NTD Chagas disease", + id: "Fr3SskvRRFO", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "cy0qXsDxzxe", + displayName: "SS_NTD_LSH_VL_LabLog_View", + id: "cy0qXsDxzxe", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "Petar Jovanovic", + id: "q9wZgtaDxWn", + userUid: "q9wZgtaDxWn", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "Skin_Cl_Classif_T", + lastUpdated: "2021-03-19T17:24:36.345", + id: "HAt5fbygnrg", + created: "2016-06-08T09:14:38.421", + name: "Skin_Cl_Classification_T", + shortName: "Classification", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: + "New case: a patient who is presenting the current symptoms for the first time.\nRecurrent/Relapse: a patient who has presented a previous episode for the same disease in the past. \nRe-treatment case: a patient who has already received treatment for the current episode (transfer in, defaulter, lost to follow up...) ", + valueType: "TEXT", + formName: "Classification of patient", + zeroIsSignificant: false, + optionSet: { + id: "Al6DsS3DTve", + }, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Classification du patient", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Nouveau cas: un patient qui présente les symptômes actuels pour la premières fois. Recurrent/Rechute: un patient qui a déjà présenté un épisode de la même maladie dans le passé. Re-traitement: un patient qui a déjà reçu un traitement pour l'épisode actuel de la maladie (transfert, abandon du traitement précédent, perdu de vue...) ", + }, + { + property: "NAME", + locale: "fr", + value: "Skin_Cl_Classification_T", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Classification", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Classification", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "Skin_Cl_Lesion_Loc_Back_T", + lastUpdated: "2021-04-29T19:43:57.682", + id: "PRaonbusSOU", + created: "2017-06-20T09:15:06.933", + name: "Skin_Cl_Lesion_Loc_Back_T", + shortName: "Back", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "Tick if lesions are present on back", + valueType: "TRUE_ONLY", + formName: "Back", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "Qu9goywu6cV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Dos", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Dos (DO)", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5", + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v", + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "DET_NTD_BU_TxO", + lastUpdated: "2021-03-19T17:24:36.613", + id: "PMlpZH7wYON", + created: "2019-06-05T07:49:17.800", + name: "BU_ITxO_T", + shortName: "BU - Initial treatment outcome (D56)", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: + "The initial treatment outcome is due at the initial assessment at the end of the 56 days of antibiotic treatment.", + valueType: "TEXT", + formName: "Initial treatment outcome on Day 56 (end of antibiotic treatment)", + zeroIsSignificant: false, + optionSet: { + id: "tGr5pbgz67Z", + }, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "UB - Résultat initial du traitement (J56)", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: " Le résultat du traitement initial est dû lors de l'évaluation initiale à la fin des 56 jours de traitement antibiotique.", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "UB - Résultat initial du traitement à J56 (fin du traitement antibiotique)", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "Skin_Cl_Lesion_Loc_Head Neck_T", + lastUpdated: "2021-04-29T19:43:57.697", + id: "j9OfhXT92Ej", + created: "2017-06-20T09:15:06.933", + name: "Skin_Cl_Lesion_Loc_Head Neck_T", + shortName: "HeadNeck", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: + "Tick if lesions are present on head or neck; do not tick if only on face, ears or eyes (separate categories)", + valueType: "TRUE_ONLY", + formName: "Head or Neck", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "Qu9goywu6cV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Tete / Cou (TC)", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: " Cochez cette case si le patient présente une lésion à la tête ou au cou.", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "T\ufffdte / Cou", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Tete / Cou", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5", + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v", + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "Skin_Cl_Lesion_Loc_Lower Limb_T", + lastUpdated: "2021-04-29T19:43:57.699", + id: "adfHPJQRI3C", + created: "2017-06-20T09:15:06.933", + name: "Skin_Cl_Lesion_Loc_Lower Limb_T", + shortName: "LowerLimb", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "Tick if lesions are present on lower limb(s), do not tick if only on toe(s)", + valueType: "TRUE_ONLY", + formName: "Lower Limb(s)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "Qu9goywu6cV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: " Cochez cette case si le patient présente une lésion aux membres inférieurs.", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Membre inferieur (MI)", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Membre inferieur", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Membre inf\ufffdrieur", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5", + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v", + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "Skin_Cl_Lesion_Loc_Breast_T", + lastUpdated: "2021-04-29T19:43:57.684", + id: "GqDsjatLQXl", + created: "2017-06-20T09:15:06.933", + name: "Skin_Cl_Lesion_Loc_Breast_T", + shortName: "Breast", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "Tick if lesions are present on chest", + valueType: "TRUE_ONLY", + formName: "Chest", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "Qu9goywu6cV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: "Cochez cette case si la patiente présente une lésion au sein. N'oubliez pas: les yeux, les seins et les organes génitaux sont des sites critiques pour l'ulcère de Buruli.", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Poitrine", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Poitrine (BR)", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5", + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v", + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_Cl_category_T", + lastUpdated: "2021-03-19T17:24:37.242", + id: "UwC7RVH9Bwv", + created: "2016-06-08T09:14:38.784", + name: "BU_Cl_category_T", + shortName: "Category", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: + "Category I: A single lesion 5cm or less / Category II: A single lesion 5-15cm / Category III: A single lesion more than 15 cm or multiple lesions or lesions at critical sites or osteomyelitis", + valueType: "TEXT", + formName: "BU case category", + zeroIsSignificant: false, + optionSet: { + id: "nF2JkM7IXth", + }, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Catégorie", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Catégorie du cas d'UB", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Catégorie I: Une seule lésion de 5 cm ou moins / Catégorie II: Une seule lésion de 5-15cm / Catégorie III: Une seule lésion de plus de 15 cm ou de multiples lésions ou lésion au niveau de sites critiques ou ostéomyélite", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_Tx_AB_Completed_T", + lastUpdated: "2021-03-19T17:24:37.240", + id: "wiZbIU6sFG5", + created: "2016-06-24T12:41:09.641", + name: "BU_Tx_AB_Completed_T", + shortName: "BU - AB completed", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: + "The treatment with antibiotics is considered as completed if the patient has taken 49 to 56 days of antibiotics.", + valueType: "TEXT", + formName: "Antibiotic treatment completed", + zeroIsSignificant: false, + optionSet: { + id: "TqJC6mhsOv6", + }, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Antibiotique terminé", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Le traitement antibiotique est considéré comme terminé si le patient a pris des antibiotiques pendant 49 à 56 jours.", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "L'antibiotique est considéré comme terminé si le patient a pris des antibiotiques 56 jours.", + }, + { + property: "NAME", + locale: "fr", + value: "BU_TxO_AbTerm2_T", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "AB terminé", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "Skin_Cl_Lesion_Loc_Upper limb_T", + lastUpdated: "2021-04-29T19:43:57.703", + id: "UCXRQtdD8K5", + created: "2017-06-20T09:15:06.933", + name: "Skin_Cl_Lesion_Loc_Upper limb_T", + shortName: "UpperLimb", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: + "Tick if lesions are present on upper limb(s); do not tick if only on finger(s) or thumb(s)", + valueType: "TRUE_ONLY", + formName: "Upper Limb(s)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "Qu9goywu6cV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: " Cochez cette case si le patient présente une lésion aux membres supérieurs.", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Membre superieur (MS)", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Membre superieur", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Membre sup\ufffdrieur", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5", + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v", + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "Skin_Cl_Lesion_Oedema_T", + lastUpdated: "2021-03-19T17:24:37.334", + id: "RETdv2kznbH", + created: "2016-06-08T09:14:42.842", + name: "Skin_Cl_Lesion_Oedema_T", + shortName: "Oedema", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: + "An oedema is a diffuse, extensive, non-pitting, ill defined margin, firm, and may be painful with or without color change over the affected skin. \nTick this box if the patient presents oedema. ", + valueType: "TRUE_ONLY", + formName: "Oedema (E)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: "Un oedème est une lésion diffuse, étendue, avec des marges mal définie, ferme et qui peut être douloureux, avec ou sans changement de couleur de la peau affectée. Merci de cocher cette case si le patient présente un oedeme.", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Oedeme", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Œdème", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Oedeme (E)", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "\ufffdd\ufffdme", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "FhhAcewq9it", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_View", + id: "FhhAcewq9it", + }, + { + access: "r-------", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "wwAK2yjjWQc", + displayName: "SS_NTD_LSH_CL_ARM_Tracker_Entry", + id: "wwAK2yjjWQc", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "GEN_PLACE_Residence_OU_T", + lastUpdated: "2021-03-19T17:24:37.665", + id: "mwIgH1XXf6p", + created: "2016-05-22T22:45:16.647", + name: "GEN_PLACE_Residence_OU_T", + shortName: "Place of residence (as OU)", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: + "Please indicate the place of residence of the patient as finest as possible by selecting it in the organisation units tree.", + valueType: "ORGANISATION_UNIT", + formName: "Place of residence (as organization unit)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "q9wZgtaDxWn", + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Lieu de résidence (comme unité d'organisation)", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Lieu de résidence", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Veuillez indiquer le lieu de résidence de la manière la plus fine possible (idéalement le village de résidence), en le sélectionant dans l'arbre des unités d'organisation.", + }, + { + property: "NAME", + locale: "fr", + value: "GEN_PlaceOU_T", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "NApRIgamRrj", + displayName: "SS_NTD_SKIN_LEP_Event_Entry", + id: "NApRIgamRrj", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT", + }, + { + access: "r-------", + userGroupUid: "ZuT9b32Dhv5", + displayName: "SS_NTD_LSH_VL_KEN_Event_View", + id: "ZuT9b32Dhv5", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "BIIJN4E57xU", + displayName: "SS_NTD_SKIN_YAWS_Event_Entry", + id: "BIIJN4E57xU", + }, + { + access: "r-------", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN", + }, + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "sVRPz2NvK37", + displayName: "NTD_AFRO", + id: "sVRPz2NvK37", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-------", + userGroupUid: "z06qKmTZ3OR", + displayName: "SS_NTD_SKIN_LEP_Event_View", + id: "z06qKmTZ3OR", + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj", + }, + { + access: "r-------", + userGroupUid: "TbGA9fMJpCR", + displayName: "SS_NTD_LSH_VL_LabLog_Entry", + id: "TbGA9fMJpCR", + }, + { + access: "rw------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "fC90V0CPRFC", + displayName: "SS_NTD_SKIN_YAWS_Event_View", + id: "fC90V0CPRFC", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "cy0qXsDxzxe", + displayName: "SS_NTD_LSH_VL_LabLog_View", + id: "cy0qXsDxzxe", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "Skin_Cl_Lesion_Loc_Eye_T", + lastUpdated: "2021-04-29T19:43:57.692", + id: "qafL6BdLAkH", + created: "2017-06-20T09:15:06.933", + name: "Skin_Cl_Lesion_Loc_Eye_T", + shortName: "Eye", + aggregationType: "COUNT", + domainType: "TRACKER", + publicAccess: "--------", + description: "Tick if lesions are present on eye(s)", + valueType: "TRUE_ONLY", + formName: "Eye", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "Qu9goywu6cV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: "Cochez cette case si la patiente présente une lésion aux yeux. N'oubliez pas: les yeux, les seins et les yeux sont des sites critiques pour l'ulcère de Burul", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Oeil", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Oeil", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "\ufffdil", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "r-------", + userGroupUid: "Wx8ovUuTEEU", + displayName: "SS_NTD_LSH_VL_LeishManTracker_Entry", + id: "Wx8ovUuTEEU", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "adE2VMPwCI5", + displayName: "SS_NTD_LSH_VL_LeishManTracker_View", + id: "adE2VMPwCI5", + }, + { + access: "r-------", + userGroupUid: "UxF4jhfIylS", + displayName: "SS_NTD_LSH_CL_Tracker_Entry", + id: "UxF4jhfIylS", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "GHGv3VsHn1a", + displayName: "SS_NTD_LSH_CL_LeishManTracker_View", + id: "GHGv3VsHn1a", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "JcHpRoc6nyA", + displayName: "SS_NTD_LSH_CL_Event_Entry", + id: "JcHpRoc6nyA", + }, + { + access: "r-------", + userGroupUid: "fDujq7N2i6v", + displayName: "SS_NTD_LSH_CL_LeishManTracker_Entry", + id: "fDujq7N2i6v", + }, + { + access: "r-------", + userGroupUid: "eXn7a4TcJBj", + displayName: "SS_NTD_LSH_CL_Event_View", + id: "eXn7a4TcJBj", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "SttGU3eGd4O", + displayName: "SS_NTD_LSH_CL_Tracker_View", + id: "SttGU3eGd4O", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "GEN_Locality_T", + lastUpdated: "2021-03-01T11:54:46.660", + id: "ffvtB32AWOF", + created: "2016-02-28T01:07:52.593", + name: "GEN_Locality_T", + shortName: " Village/Town (text)", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + description: + "If you were not able to find the place of residence of the patient by using the org unit tree, please type here the name of the village of residence.", + valueType: "TEXT", + formName: "Village/town of residence (as text)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Village/ville (texte)", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Si vous n'avez pas pu trouver le village de résidence du patient en utilisant l'arbre d'unités d'organisation, veuillez écrire ici le nom du village de résidence.", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Village/ville de résidence (texte)", + }, + { + property: "NAME", + locale: "fr", + value: "GEN_Localité_T", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_Lab_PCR_Initial Results_T", + lastUpdated: "2021-03-19T17:24:37.498", + id: "JAyZaIKj2zv", + created: "2017-06-20T11:55:11.428", + name: "BU_Lab_PCR_Initial Results_T", + shortName: "BU PCR - Result", + aggregationType: "NONE", + domainType: "TRACKER", + publicAccess: "--------", + valueType: "TEXT", + formName: "BU PCR - Result", + zeroIsSignificant: false, + optionSet: { + id: "vQBOhNnE09a", + }, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "PCR - Résultats ", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "PCR - Résultats ", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "PCR pour UB - Résultats ", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "UB - PCR - Résultats ", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "fRlwLe1FUtr", + displayName: "SS_NTD_SKIN_BU_Lab_Event_View", + id: "fRlwLe1FUtr", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "PxfXOdDzaVo", + displayName: "SS_NTD_SKIN_BU_Lab_Event_Entry", + id: "PxfXOdDzaVo", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "bxyNjDdzxoY", + displayName: "WISCENTD - data lake extraction", + id: "bxyNjDdzxoY", + }, + { + access: "r-------", + userGroupUid: "jBKsc308Wq4", + displayName: "SS_NTD_SKIN_PatientForm_View", + id: "jBKsc308Wq4", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "rLZTilSc96A", + displayName: "SS_NTD_SKIN_PatientForm_Entry", + id: "rLZTilSc96A", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + ], + categories: [ + { + code: "default", + created: "2017-05-10T17:53:55.152", + lastUpdated: "2021-08-07T06:18:19.628", + name: "default", + id: "DMyxTSpvKOp", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + dataDimension: false, + user: { + id: "eK26I7dRbC4", + }, + userGroupAccesses: [], + attributeValues: [], + translations: [], + userAccesses: [], + categoryOptions: [ + { + id: "Y7fcspgsU43", + }, + ], + }, + ], + programIndicators: [ + { + code: "PI_BU02_EPI_ageLT5years", + lastUpdated: "2021-03-01T11:52:47.237", + id: "B6EhPLOJf2y", + created: "2016-11-03T14:46:09.309", + name: "PI BU02 number of cases < 5 years", + shortName: "PI_BU02_EPI_ageLT5years", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.Xii6gy92ebp} < 5", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.512", + id: "Llq2khCZz98", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.512", + id: "G5v3Jk2pDej", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_Clin_Breast", + lastUpdated: "2021-03-01T11:52:46.981", + id: "rqqYID1h4P2", + created: "2016-11-03T15:42:43.693", + name: "PI BU02 number case with breast lesion", + shortName: "PI_BU02_Clin_Breast", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.GqDsjatLQXl} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.515", + id: "d5gyZU5X07q", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.515", + id: "e0NzQNDuo6z", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_Clin_Osteomyelitis", + lastUpdated: "2021-03-01T11:52:47.245", + id: "sWOHf2pOSSF", + created: "2016-11-03T15:30:29.969", + name: "PI BU02 number of cases with osteomyelitis", + shortName: "PI_BU02_Clin_Osteomyelitis", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.QzAHATV8EWv} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.518", + id: "BoHw1lljgdo", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.518", + id: "N1hfQcHgr0C", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_Tx_AB", + lastUpdated: "2021-03-01T11:52:47.426", + id: "OX3WVVRP6dJ", + created: "2016-11-03T16:39:37.922", + name: "PI BU02 number of cases treated with AB", + shortName: "PI_BU02_Tx_AB", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + description: "Number of cases treated with Antibiotics", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.COtqliXo7tU} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.521", + id: "BcucCztRg7F", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.521", + id: "amNH3oA62CA", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_Lab_Confirmed", + lastUpdated: "2021-03-01T11:52:47.456", + id: "hb7FMIXMtFs", + created: "2020-01-16T00:02:03.756", + name: "PI BU02 total number of lab-confirmed cases", + shortName: "PI_BU02_Lab_Confirmed", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.JAyZaIKj2zv} == 'Positive'|| #{hgpXE2JX97x.ggwHn45jtgh} == 'Positive'", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "ilJDyuqlwDC", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2020-01-16T00:25:56.927", + id: "bEYxf0xy70h", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2020-01-16T00:25:56.926", + id: "tdgzmAO02R8", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_Tx_AB_Completed", + lastUpdated: "2021-03-01T11:52:47.456", + id: "iOdLpGU9muR", + created: "2020-01-16T00:08:54.420", + name: "PI BU02 number of cases who completed AB", + shortName: "PI_BU02_Tx_AB_Completed", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + description: "Number of cases who completed full course of antibiotics", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.wiZbIU6sFG5} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "ilJDyuqlwDC", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2020-01-16T00:08:54.421", + id: "R6OuVRBuDQ7", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2020-01-16T00:08:54.422", + id: "qjqLIIhGgYN", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_Clin_Buttocks_perineum", + lastUpdated: "2021-03-01T11:52:47.690", + id: "yyKJZUWWFXH", + created: "2016-11-03T16:12:34.037", + name: "PI BU02 number of cases with lesion(s) in buttocks perineum", + shortName: "PI_BU02_Clin_Buttocks_perineum", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.UY4A4oRdvqT} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.523", + id: "RpHl28bZQg6", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.523", + id: "CNyJuTsjIbD", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_EPI_Cat_III", + lastUpdated: "2021-03-01T11:52:47.755", + id: "IqA3lx2QCb9", + created: "2016-11-03T15:12:37.853", + name: "PI BU02 number of cases from category III", + shortName: "BU02_EPI_Cat_III", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.UwC7RVH9Bwv} == 'Op_BU_Cat_III'", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.526", + id: "ykRlULCPBoP", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.526", + id: "Sj7oel80HH3", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_Clin_Papule", + lastUpdated: "2021-03-01T11:52:47.734", + id: "V2At1FLXyON", + created: "2016-11-03T15:32:11.451", + name: "PI BU02 number of cases with papule", + shortName: "PI_BU02_Clin_Papule", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.nidn593FWAF} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.528", + id: "wvNgyJoe7kG", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.529", + id: "TybnOO7M5AM", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_EPI_Cat_II", + lastUpdated: "2021-03-01T11:52:47.765", + id: "MDE3pQdkE2A", + created: "2016-11-03T15:11:27.386", + name: "PI BU02 number of cases from category II", + shortName: "PI_BU02_EPI_Cat_II", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.UwC7RVH9Bwv} == 'Op_BU_Cat_II'", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.531", + id: "oF8dvQTN4Hn", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.531", + id: "N1styYEKSg3", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_Clin_Classif_Recurrent", + lastUpdated: "2021-03-01T11:52:47.764", + id: "vjci8djDsDh", + created: "2016-11-03T16:52:40.568", + name: "PI BU02 total number of recurrent cases", + shortName: "PI_BU02_Clin_Classif_Recurrent", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.HAt5fbygnrg} == 'Recurrent'", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.534", + id: "eRP7FNiiwj7", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.534", + id: "pqM5JUfuwLG", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_EPI_Cat_I", + lastUpdated: "2021-03-01T11:52:47.989", + id: "QaZLTzTEnmG", + created: "2016-11-03T15:10:33.930", + name: "PI BU02 number of cases from category I", + shortName: "PI_BU02_EPI_Cat_I", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.UwC7RVH9Bwv} == 'Op_BU_Cat_I'", + decimals: 0, + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.536", + id: "ipWh2dEv4w6", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.537", + id: "cb0LTq7NZYN", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_EPI_malecases", + lastUpdated: "2021-03-01T11:52:48.016", + id: "YdBwBWfTZtz", + created: "2016-11-03T14:15:38.110", + name: "PI BU02 number of male cases", + shortName: "PI_BU02_EPI_malecases", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.Z8W89lDV4IL} == 'Male'", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.542", + id: "jPgZWG69tzZ", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.542", + id: "cXkTTJPogkh", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + lastUpdated: "2021-03-01T11:52:48.053", + id: "dogB9m0Pu26", + created: "2016-11-03T14:30:48.357", + name: "PI BU02 total number of cases", + shortName: "PI_BU02_EPI_total_number_of_cases", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.539", + id: "VUEH4IN4PX1", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.539", + id: "ptE0g1sZMV4", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_Clin_Back", + lastUpdated: "2021-03-01T11:52:48.053", + id: "rJj24z4yg9k", + created: "2016-11-03T16:10:57.629", + name: "PI BU02 number case with back lesion", + shortName: "PI_BU02_Clin_Back", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.PRaonbusSOU} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.544", + id: "ZzcCXsOHsyY", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.544", + id: "AvK62Jhokom", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_Clin_Oedema", + lastUpdated: "2021-03-01T11:52:48.475", + id: "OvnjxVRoHYr", + created: "2016-11-03T15:26:25.361", + name: "PI BU02 number of cases with oedema", + shortName: "PI_BU02_Clin_Oedema", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.RETdv2kznbH} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.551", + id: "SQt8RKDUPeF", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.551", + id: "SjhFvBJojgx", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_EPI_ageGTE15years", + lastUpdated: "2021-03-01T11:52:48.034", + id: "XlvkovvifMC", + created: "2016-11-03T14:56:38.114", + name: "PI BU02 number of cases ≥ 15 years", + shortName: "PI_BU02_EPI_ageGTE15years", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.Xii6gy92ebp} >= 15", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.547", + id: "FJnlDV0f7Nq", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.547", + id: "kkMZxJSzw3J", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_Clin_Abdomen", + lastUpdated: "2021-03-01T11:52:48.255", + id: "dBXh4OQdRA8", + created: "2016-11-03T15:46:10.948", + name: "PI BU02 number case with abdomen lesion", + shortName: "PI_BU02_Clin_Abdomen", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.Sieb79556d6} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.549", + id: "AtTn2VJgivc", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.549", + id: "ulqoKm4LZ1e", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_Clin_Lower_Limb", + lastUpdated: "2021-03-01T11:52:48.295", + id: "PXVrhxCqLw0", + created: "2016-11-03T16:18:23.434", + name: "PI BU02 number case with lower limb lesion", + shortName: "PI_BU02_Clin_Lower_Limb", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.adfHPJQRI3C} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.553", + id: "ytwkCibnutF", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.554", + id: "EgdqYIYhDUh", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_Clin_joint_limitation", + lastUpdated: "2021-03-01T11:52:48.287", + id: "zSvSCVa4xa2", + created: "2016-11-03T16:27:09.888", + name: "PI_BU02 number of cases with joint limitation", + shortName: "BU02_Clin_joint_limitation", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + description: "Number of cases with (+) limitation of movement at any joint", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.DHmAP1MjEoK} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.556", + id: "xcPwLythycq", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.556", + id: "gTvgDWnfD64", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_Clin_Ulcer", + lastUpdated: "2021-03-01T11:52:48.426", + id: "OZXTMVGQX60", + created: "2016-11-03T15:33:23.782", + name: "PI BU02 number of cases with ulcer", + shortName: "PI_BU02_Clin_Ulcer", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.mTyzapAF9iT} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.558", + id: "dcH2IMDZTdM", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.558", + id: "Ym0O3mpAniO", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_EPI_unknowngender", + lastUpdated: "2021-03-01T11:52:48.523", + id: "cAvE0gxXLTn", + created: "2016-11-03T14:19:09.065", + name: "PI BU02 number of cases of unknown gender", + shortName: "PI_BU02_EPI_unknowngender", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.Z8W89lDV4IL} == 'Gender unknown'", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.560", + id: "oeZrObBXY2J", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.560", + id: "z7r9xBGz8rL", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_EPI_age5-14years", + lastUpdated: "2021-03-01T11:52:48.532", + id: "CW2jgrNARub", + created: "2016-11-03T14:51:23.451", + name: "PI BU02 number of cases 5-14 years", + shortName: "PI_BU02_EPI_age5-14years", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.Xii6gy92ebp} >= 5 and #{hgpXE2JX97x.Xii6gy92ebp} < 15", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.563", + id: "HnJrvRNEPbZ", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.563", + id: "f3dCEJjvVLA", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_Clin_Upper_limb", + lastUpdated: "2021-03-01T11:52:48.540", + id: "D0qX6WlovHF", + created: "2016-11-03T16:17:08.019", + name: "PI BU02 number case with Upper Limb lesion", + shortName: "PI_BU02_Clin_Upper_limb", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.UCXRQtdD8K5} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.568", + id: "OlJYZmbwFwV", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.568", + id: "uvGOaJJ8Lzk", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_Clin_Thorax", + lastUpdated: "2021-03-01T11:52:48.735", + id: "if7Bfu8OVQ7", + created: "2016-11-03T16:15:43.807", + name: "PI BU02 number case with Thorax lesion", + shortName: "PI_BU02_Clin_Thorax", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.TqqxE4hmd6Q} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "ilJDyuqlwDC", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2020-01-15T23:55:50.529", + id: "DBNYsS9TAvK", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2020-01-15T23:55:50.529", + id: "jEETcjwekz3", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_Clin_Eye", + lastUpdated: "2021-03-01T11:52:48.772", + id: "YjRz8Gdlbb7", + created: "2016-11-03T15:41:52.422", + name: "PI BU02 number case with eye lesion", + shortName: "PI_BU02_Clin_Eye", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.qafL6BdLAkH} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.572", + id: "XHxInTAUzqi", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.572", + id: "Dn0JO6RPPhP", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_Clin_Genitalia", + lastUpdated: "2021-03-01T11:52:48.707", + id: "Yq1EGyBFPFd", + created: "2016-11-03T15:45:09.002", + name: "PI BU02 number case with genitalia lesion", + shortName: "PI_BU02_Clin_Genitalia", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.QEFiXRZu7jY} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.574", + id: "UWV0fRNiJoc", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.574", + id: "Q0siQ56KAy3", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_Clin_Classif_Newcases", + lastUpdated: "2021-03-01T11:52:48.807", + id: "ASUNQNX0g7g", + created: "2016-11-03T16:49:17.984", + name: "PI BU02 total number of new cases", + shortName: "PI_BU02_Clin_Classif_Newcases", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.HAt5fbygnrg} == 'New'", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.577", + id: "m2C4eE9ryNv", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.577", + id: "ByFvuwLSeFC", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_Clin_Nodule", + lastUpdated: "2021-03-01T11:52:48.790", + id: "l9MNtlVNYkd", + created: "2016-11-03T15:24:04.048", + name: "PI BU02 number of cases with nodule", + shortName: "PI_BU02_Clin_Nodule", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.xkt9nkHj5CA} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.579", + id: "I1S8R0bahPH", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.579", + id: "l2M0bq4CLBM", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_Clin_Head_Neck", + lastUpdated: "2021-03-01T11:52:48.848", + id: "CbuU9UDY9Ll", + created: "2016-11-03T16:14:39.938", + name: "PI BU02 number case with head and neck lesion", + shortName: "PI_BU02_Clin_Head_Neck", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.j9OfhXT92Ej} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.581", + id: "eGGmJcOMmGt", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.582", + id: "YDOhsqOc48c", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_EPI_Cat_unkown", + lastUpdated: "2021-03-01T11:52:48.930", + id: "ewyVtLavgu8", + created: "2016-11-03T15:13:44.838", + name: "PI BU02 number of cases from category unkown", + shortName: "PI_BU02_EPI_Cat_unkown", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: '#{hgpXE2JX97x.UwC7RVH9Bwv} == " Op_BU_Cat_unknown "', + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.584", + id: "DBUO6rxHCW5", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.584", + id: "wzcyZZJZsrw", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "PI_BU02_EPI_femalecases", + lastUpdated: "2021-03-01T11:52:48.959", + id: "yi3JBIhx081", + created: "2016-11-03T13:18:37.422", + name: "PI BU02 number of female cases", + shortName: "PI_BU02_EPI_femalecases", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.Z8W89lDV4IL} == 'Female'", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.587", + id: "PRUWZ0O6MBs", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.587", + id: "FtJxPsl5btM", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + lastUpdated: "2021-03-01T11:52:48.928", + id: "QzEuFzKGzm4", + created: "2016-11-03T15:34:05.522", + name: "PI BU02 number of cases with plaque", + shortName: "PI_BU02_Clin_Plaque", + aggregationType: "COUNT", + displayInForm: false, + publicAccess: "--------", + expression: "V{event_count}", + filter: "#{hgpXE2JX97x.qJOXKn3wSLS} == 1", + analyticsType: "EVENT", + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [], + analyticsPeriodBoundaries: [ + { + lastUpdated: "2019-05-25T18:45:24.589", + id: "b6JmLeeQuUV", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "AFTER_START_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2019-05-25T18:45:24.590", + id: "XoxuJSDOoBt", + created: "2018-11-02T09:34:37.034", + externalAccess: false, + analyticsPeriodBoundaryType: "BEFORE_END_OF_REPORTING_PERIOD", + boundaryTarget: "EVENT_DATE", + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + ], + programStageDataElements: [ + { + created: "2016-06-08T13:43:40.080", + lastUpdated: "2021-03-01T11:32:51.933", + id: "SS8ELfQ7k8Q", + displayInReports: true, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 3, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "HAt5fbygnrg", + }, + }, + { + created: "2016-06-08T13:43:40.221", + lastUpdated: "2021-03-01T11:32:51.934", + id: "CRNrasJPwQn", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 14, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "PRaonbusSOU", + }, + }, + { + created: "2016-06-08T13:43:40.105", + lastUpdated: "2021-03-01T11:32:51.936", + id: "ikP103Fn9Sm", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 5, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "RETdv2kznbH", + }, + }, + { + created: "2016-11-10T21:03:54.212", + lastUpdated: "2021-03-01T11:32:51.935", + id: "SrbZNYPXNB7", + displayInReports: true, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 31, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "rWFQhbrnfMD", + }, + }, + { + created: "2016-06-08T13:43:40.179", + lastUpdated: "2021-03-01T11:32:51.938", + id: "wyoMSLO3Yth", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 11, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "GqDsjatLQXl", + }, + }, + { + created: "2020-01-14T21:28:13.551", + lastUpdated: "2021-03-01T11:32:51.933", + id: "S8raF2aCPal", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 36, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "LJHNsKzZ8Mg", + }, + }, + { + created: "2020-01-14T21:28:13.551", + lastUpdated: "2021-03-01T11:32:51.937", + id: "E66yBUG6gTG", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 38, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "gc8rKk6Hax6", + }, + }, + { + created: "2016-06-08T13:43:40.234", + lastUpdated: "2021-03-01T11:32:51.934", + id: "bab7K5xD28E", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 15, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "UY4A4oRdvqT", + }, + }, + { + created: "2016-06-08T13:43:40.011", + lastUpdated: "2021-03-01T11:32:51.937", + id: "X0M4oNWjsTH", + displayInReports: true, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 0, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "mwIgH1XXf6p", + }, + }, + { + created: "2016-06-08T13:43:40.263", + lastUpdated: "2021-03-01T11:32:51.936", + id: "sHKURVMWYuK", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 17, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "TqqxE4hmd6Q", + }, + }, + { + created: "2016-06-08T13:43:40.247", + lastUpdated: "2021-03-01T11:32:51.937", + id: "oWiZUXFOL0K", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 16, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "j9OfhXT92Ej", + }, + }, + { + created: "2016-06-08T13:43:40.167", + lastUpdated: "2021-03-01T11:32:51.934", + id: "aOPTA1pWe9Q", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 10, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "qafL6BdLAkH", + }, + }, + { + created: "2016-06-08T13:43:40.152", + lastUpdated: "2021-03-01T11:32:51.937", + id: "KWGF449seo2", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 9, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "qJOXKn3wSLS", + }, + }, + { + created: "2016-06-08T13:43:40.290", + lastUpdated: "2021-03-01T11:32:51.935", + id: "jEkBHzTLrbh", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 19, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "UwC7RVH9Bwv", + }, + }, + { + created: "2016-11-10T21:00:24.060", + lastUpdated: "2021-03-01T11:32:51.934", + id: "rPHoXZ87SHA", + displayInReports: true, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 30, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "JAyZaIKj2zv", + }, + }, + { + created: "2016-11-10T21:00:24.035", + lastUpdated: "2021-03-01T11:32:51.934", + id: "DUy9Sosd4t0", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 28, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "dRoQ0J5dKuO", + }, + }, + { + created: "2020-01-14T21:28:13.553", + lastUpdated: "2021-03-01T11:32:51.937", + id: "AFGlVbgoLHS", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 45, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "xIo6fsgpmdN", + }, + }, + { + created: "2020-01-14T21:28:13.552", + lastUpdated: "2021-03-01T11:32:51.935", + id: "N3nkAIkavnF", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 43, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "XyGxsyiIy4p", + }, + }, + { + created: "2016-09-13T16:48:18.132", + lastUpdated: "2021-03-01T11:32:51.937", + id: "HF4KB6yBSBu", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 25, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "ffvtB32AWOF", + }, + }, + { + created: "2016-06-08T13:43:40.305", + lastUpdated: "2021-03-01T11:32:51.937", + id: "secyJOzy4J4", + displayInReports: true, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 20, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "DHmAP1MjEoK", + }, + }, + { + created: "2016-06-08T13:43:40.207", + lastUpdated: "2021-03-01T11:32:51.935", + id: "fFRvBwrKPbL", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 13, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "Sieb79556d6", + }, + }, + { + created: "2016-11-10T21:00:23.945", + lastUpdated: "2021-03-01T11:32:51.937", + id: "I7uqIgj34yA", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 27, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "wiZbIU6sFG5", + }, + }, + { + created: "2016-06-08T13:43:40.128", + lastUpdated: "2021-03-01T11:32:51.938", + id: "SoMCsw5q49F", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 7, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "nidn593FWAF", + }, + }, + { + created: "2016-06-08T13:43:40.276", + lastUpdated: "2021-03-01T11:32:51.934", + id: "MHgGCjWZytP", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 18, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "UCXRQtdD8K5", + }, + }, + { + created: "2018-05-14T21:47:54.944", + lastUpdated: "2021-03-01T11:32:51.935", + id: "f1OrYy2hEuL", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 33, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "DAPNB0WxKMH", + }, + }, + { + created: "2020-01-15T01:14:08.815", + lastUpdated: "2021-03-01T11:32:51.935", + id: "zI45THkcblV", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 47, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "silWE44JpaQ", + }, + }, + { + created: "2018-10-01T16:30:29.283", + lastUpdated: "2021-03-01T11:32:51.934", + id: "IOnR5EK74dX", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 34, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "kzgD7nD4qLI", + }, + }, + { + created: "2020-01-14T21:28:13.553", + lastUpdated: "2021-03-01T11:32:51.934", + id: "A1ouDbnrJ2K", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 38, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "bTwp4cKNjgZ", + }, + }, + { + created: "2016-11-02T23:17:46.433", + lastUpdated: "2021-03-01T11:32:51.936", + id: "ZbGhzG2pAxz", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 26, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "adfHPJQRI3C", + }, + }, + { + created: "2018-05-14T12:40:54.197", + lastUpdated: "2021-03-01T11:32:51.936", + id: "BlmMBSUevF0", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 32, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "ZGCDiz5fZhb", + }, + }, + { + created: "2020-01-14T21:28:13.553", + lastUpdated: "2021-03-01T11:32:51.937", + id: "NtXysyvaAJZ", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 44, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "uNdVSTX6lSE", + }, + }, + { + created: "2016-06-08T13:43:40.141", + lastUpdated: "2021-03-01T11:32:51.935", + id: "uiXy4u4OWjX", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 8, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "mTyzapAF9iT", + }, + }, + { + created: "2016-06-08T13:43:40.046", + lastUpdated: "2021-03-01T11:32:51.938", + id: "Oic1IVxpgq9", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 1, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "J19avh4dgzs", + }, + }, + { + created: "2020-01-16T00:22:51.423", + lastUpdated: "2021-03-01T11:32:51.936", + id: "rq4keDCBetL", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 48, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "ggwHn45jtgh", + }, + }, + { + created: "2016-09-13T16:48:18.116", + lastUpdated: "2021-03-01T11:32:51.937", + id: "VhzvUNRlsZR", + displayInReports: true, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 24, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "IcCc2qu4DnR", + }, + }, + { + created: "2016-06-08T13:43:40.069", + lastUpdated: "2021-03-01T11:32:51.935", + id: "ik9ISTmQ2Gf", + displayInReports: true, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 2, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "Z8W89lDV4IL", + }, + }, + { + created: "2016-11-30T01:47:34.226", + lastUpdated: "2021-03-01T11:32:51.937", + id: "K4wQtB3HmdB", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 23, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "o3F666LPvuM", + }, + }, + { + created: "2020-01-14T21:28:13.552", + lastUpdated: "2021-03-01T11:32:51.936", + id: "wljGO43myNe", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 39, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "PMlpZH7wYON", + }, + }, + { + created: "2020-01-14T21:28:13.554", + lastUpdated: "2021-03-01T11:32:51.935", + id: "haxC12SZsvs", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 40, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "KcYECFOPVpR", + }, + }, + { + created: "2021-03-01T11:32:51.938", + lastUpdated: "2021-03-01T11:32:51.938", + id: "uY2T46apQBY", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 49, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "NzJkoIvwyCh", + }, + }, + { + created: "2016-06-08T13:43:40.117", + lastUpdated: "2021-03-01T11:32:51.933", + id: "xiLmnCvUPdf", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 6, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "QzAHATV8EWv", + }, + }, + { + created: "2016-11-10T21:00:24.048", + lastUpdated: "2021-03-01T11:32:51.936", + id: "SIZDdeAClue", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 29, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "pUzlgt7peZT", + }, + }, + { + created: "2020-01-15T00:22:45.728", + lastUpdated: "2021-03-01T11:32:51.936", + id: "p8M6Bz8SPDH", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 46, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "VYGsfmL36PY", + }, + }, + { + created: "2016-06-08T13:43:40.090", + lastUpdated: "2021-03-01T11:32:51.934", + id: "tI9OLIqrPrq", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 4, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "xkt9nkHj5CA", + }, + }, + { + created: "2016-06-08T13:43:40.194", + lastUpdated: "2021-03-01T11:32:51.936", + id: "VlNK0nFtRoW", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 12, + allowFutureDate: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "QEFiXRZu7jY", + }, + }, + { + created: "2020-01-14T21:28:13.553", + lastUpdated: "2021-03-01T11:32:51.936", + id: "D6GevHoIeUZ", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 41, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "e8XmDDvKCT1", + }, + }, + { + created: "2020-01-14T21:28:13.550", + lastUpdated: "2021-03-01T11:32:51.934", + id: "AHdDAWvCDhC", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 42, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "YrSJMlEJWEC", + }, + }, + { + created: "2020-01-14T23:53:14.411", + lastUpdated: "2021-03-01T11:32:51.935", + id: "GT8JlUaUein", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 46, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "BYPbyk5W7SL", + }, + }, + { + created: "2020-01-14T21:28:13.553", + lastUpdated: "2021-03-01T11:32:51.938", + id: "XfbM7NmxzRh", + displayInReports: false, + skipSynchronization: false, + renderOptionsAsRadio: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 37, + allowFutureDate: false, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "Q7dOlqe54eh", + }, + }, + ], + categoryCombos: [ + { + code: "default", + created: "2017-05-10T17:53:55.156", + lastUpdated: "2019-02-20T16:22:55.336", + name: "default", + id: "JzvGfLYkX17", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + skipTotal: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "eK26I7dRbC4", + }, + userGroupAccesses: [], + translations: [], + userAccesses: [], + categories: [ + { + id: "DMyxTSpvKOp", + }, + ], + }, + ], + programs: [ + { + code: "PRE_NTD_BU02", + lastUpdated: "2021-03-01T11:52:46.467", + id: "lAu94BiaY5s", + created: "2016-06-08T13:38:09.769", + name: "BU02 - Register", + shortName: "BU02", + publicAccess: "--------", + completeEventsExpiryDays: 0, + description: + "This program enables to capture individual data for all suspected Buruli ulcer (BU) cases. ", + ignoreOverdueEvents: false, + skipOffline: false, + featureType: "NONE", + minAttributesRequiredToSearch: 1, + displayFrontPageList: false, + enrollmentDateLabel: "Enrollment Date", + onlyEnrollOnce: false, + programType: "WITHOUT_REGISTRATION", + accessLevel: "OPEN", + version: 18, + maxTeiCountToReturn: 0, + selectIncidentDatesInFuture: false, + incidentDateLabel: "Incident Date", + displayIncidentDate: false, + selectEnrollmentDatesInFuture: false, + expiryDays: 0, + useFirstStageDuringRegistration: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + trackedEntityType: { + id: "MCPQUTHX1Ze", + }, + user: { + id: "eK26I7dRbC4", + }, + programTrackedEntityAttributes: [], + notificationTemplates: [], + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: "Ce programme permet de capturer des données individuelles pour tous les cas suspects d'ulcère de Buruli (UB).", + }, + { + property: "NAME", + locale: "fr", + value: "UB02 - Registre", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "UN02", + }, + ], + organisationUnits: [ + { + id: "Gyv4pyey2Ai", + }, + { + id: "UowpDiy4cqO", + }, + { + id: "pOxc8gmDhtS", + }, + { + id: "kbPmt60yi0L", + }, + { + id: "GV9B39jEWVn", + }, + { + id: "r2IqzLpdj5t", + }, + { + id: "sWQ2zpzI5gt", + }, + { + id: "Rw5SNBBSQxJ", + }, + { + id: "rub0EoVhPIM", + }, + { + id: "dqwksMwpW4w", + }, + { + id: "YhivUg6odUM", + }, + { + id: "aU3YGAY4qb7", + }, + { + id: "InQWjSe6k2f", + }, + { + id: "WUoRxmYqtfU", + }, + { + id: "LNai4fzhvGN", + }, + { + id: "VZOzoYaVRlL", + }, + { + id: "g7BLyiBb0ET", + }, + { + id: "Tc3zugEWdTm", + }, + { + id: "x5ZxMDvEQUb", + }, + { + id: "GvFqTavdpGE", + }, + { + id: "lr9J6r6tv6h", + }, + { + id: "NTrXihaptMH", + }, + { + id: "t4xNpQTV1sg", + }, + { + id: "j4AU8yO4ErF", + }, + { + id: "YldSFPxB6WH", + }, + { + id: "pMH8t5RymJl", + }, + { + id: "tyJBtAXHLoo", + }, + { + id: "AhnK8hb3JWm", + }, + { + id: "pzjcGGGjRgt", + }, + { + id: "yEgGKG5iLLL", + }, + { + id: "OIgQ06HZUBB", + }, + { + id: "EvMZz5gSPy5", + }, + { + id: "oMLtZFTZ8po", + }, + { + id: "LWlh25dfvEA", + }, + { + id: "P4upLKrpkHP", + }, + { + id: "zrAoRNoLXxo", + }, + { + id: "tgtdjZmwqo2", + }, + { + id: "ZhEUDUqyOWy", + }, + { + id: "QzaNItkFO7s", + }, + { + id: "s4c425prOLU", + }, + { + id: "uQdUFufJm74", + }, + { + id: "dbkGcznIkUu", + }, + { + id: "uczMdDZXdtl", + }, + { + id: "lFTTvjwF0Vv", + }, + { + id: "BXxhy9rHsKk", + }, + { + id: "b09gf2vvZDb", + }, + { + id: "xvexU43nCYd", + }, + { + id: "qmBcWhcZPSz", + }, + { + id: "rvCCyZdpdML", + }, + { + id: "K6NEOQsE6lB", + }, + { + id: "ueuQlqb8ccl", + }, + { + id: "OI0BQUurVFS", + }, + { + id: "TiwP8S8SNZQ", + }, + { + id: "bsraL8Psnsm", + }, + { + id: "S9sXNagA6v3", + }, + { + id: "U02o1QAm6cC", + }, + { + id: "qczavgAw4FY", + }, + { + id: "ULsug66wkkS", + }, + { + id: "DwSlvPKzyeB", + }, + { + id: "OISw3MLShrO", + }, + { + id: "aSYnMm9sNmA", + }, + { + id: "sYJCxNdKHxR", + }, + { + id: "q5kAX5MyPB6", + }, + { + id: "yMbOiVGIpdq", + }, + { + id: "mfBtyDcG3Sl", + }, + { + id: "cgqkFdShPzg", + }, + { + id: "bHOCOudYF7n", + }, + { + id: "VP92GYbmXk1", + }, + { + id: "Hf75zeSkQXb", + }, + { + id: "ggainP3wKRX", + }, + { + id: "IaLymjcVyIe", + }, + { + id: "QHFNpH0NjcE", + }, + { + id: "KQFAul3T9xz", + }, + { + id: "ZX0qwn83NmC", + }, + { + id: "kgan6qV2qu5", + }, + { + id: "xe5ZKv3Df1Q", + }, + { + id: "TWH05Rjz6oT", + }, + { + id: "M4JuAlTLJnD", + }, + { + id: "XwLGW11h9Z4", + }, + { + id: "qhj5M5kjGEB", + }, + { + id: "k92yudERPlv", + }, + { + id: "u335jxe0ao2", + }, + { + id: "qhizkAySKwC", + }, + { + id: "MnfykVk3zin", + }, + { + id: "fQchTMt926s", + }, + { + id: "bL4ooGhyHRQ", + }, + { + id: "mW8yNi34XW3", + }, + { + id: "y5hLlID8ihI", + }, + { + id: "DkMgspqqI6G", + }, + { + id: "oRncQGhLYNE", + }, + { + id: "u1eQDDtKqm7", + }, + { + id: "nlxWdsB82Wv", + }, + { + id: "uT8s6B3DZKX", + }, + { + id: "EywuypYUmLP", + }, + { + id: "GWTIxJO9pRo", + }, + { + id: "TYq1YW7qs7k", + }, + { + id: "SCYNkV42cBs", + }, + { + id: "K61Q6gOCVXG", + }, + { + id: "prNiMdHuaaU", + }, + { + id: "er7MPiN3tdH", + }, + { + id: "PosOJo9dFA8", + }, + { + id: "GLfgZFkBeYm", + }, + { + id: "at0T4OYLtIe", + }, + { + id: "VelvbJZb0zU", + }, + { + id: "wWIUOHiRTCc", + }, + { + id: "yeHprSCMWsf", + }, + { + id: "U514Dz4v9pv", + }, + { + id: "e2UKsuSL1Pc", + }, + { + id: "jGcjLhlSzi2", + }, + { + id: "wzYWAIsRBLm", + }, + { + id: "ZXtZesiPjWJ", + }, + { + id: "i1ZVIMcpNw2", + }, + { + id: "fSODnfnThKt", + }, + { + id: "ChC54GwyfRn", + }, + { + id: "YmLZ4NiNIR2", + }, + { + id: "xjEmxqQPX9l", + }, + { + id: "vz6JTv2M04f", + }, + { + id: "ACFbys3Kper", + }, + { + id: "MM1ztjfUBvZ", + }, + { + id: "tWQFMVoGfmu", + }, + { + id: "kdH0vAzJEI0", + }, + { + id: "kO9xe2HCovK", + }, + { + id: "zuXW98AEbE7", + }, + { + id: "rhyKLZCNtYC", + }, + { + id: "vsbP959ijI2", + }, + { + id: "LcrCmRvc2dY", + }, + { + id: "XEWcNAr2QZN", + }, + { + id: "CKJ9YS2AbWy", + }, + { + id: "ZA6OckFMH8y", + }, + { + id: "GA1TM835gJW", + }, + { + id: "RfF7aXcrDwI", + }, + { + id: "gyHR69ayCpd", + }, + { + id: "MRsOEFFCxgk", + }, + { + id: "geldAQlGhIy", + }, + { + id: "ghc21GH29F0", + }, + { + id: "G1JxzBEMux1", + }, + { + id: "TZEWnCuG4nJ", + }, + { + id: "qMsCsPGzBI2", + }, + { + id: "acNdHzSn9oI", + }, + { + id: "oZR2s7eM3Fk", + }, + { + id: "hIRkjkhZgIg", + }, + { + id: "t0zZ6S8DeZB", + }, + { + id: "UoLtRvXxNaB", + }, + { + id: "dQuw2YGs3rQ", + }, + { + id: "MiYhwDprCCA", + }, + { + id: "zmE99HmGYpv", + }, + { + id: "mSJSkkmA4Wl", + }, + { + id: "iqd7BiRHor0", + }, + { + id: "NMcx2jmra3c", + }, + { + id: "gROaNI9lqxf", + }, + { + id: "qRwecomj6jo", + }, + { + id: "E497Rk80ivZ", + }, + { + id: "cd3U2Tp0qR2", + }, + { + id: "tUq8wo2Om4V", + }, + { + id: "ACHk6MdWWpp", + }, + { + id: "MmRKAIfG1xy", + }, + { + id: "qusWt6sESRU", + }, + { + id: "f8GtuEKYs8q", + }, + { + id: "scc4QyxenJd", + }, + { + id: "GAOOSDQWVx3", + }, + { + id: "hvp3geX4FVn", + }, + { + id: "Rx8bpoJfLuC", + }, + { + id: "dOVJYohE0Vn", + }, + { + id: "uROAmk9ymNE", + }, + { + id: "rGrWkuJQrqp", + }, + { + id: "Bsn4QIPFdib", + }, + { + id: "kHvk1gj2dfR", + }, + { + id: "UGVLYrO63mR", + }, + { + id: "FU4DdzThwiC", + }, + { + id: "l3TJVDTaogL", + }, + { + id: "VwQmJUCHGhp", + }, + { + id: "FJoPuR9oVHR", + }, + { + id: "M9q1wOOsrXp", + }, + { + id: "wZkPF2bK90m", + }, + { + id: "ZgqwIR8aZNk", + }, + { + id: "FLjwMPWLrL2", + }, + { + id: "Poe3qeiGn8z", + }, + { + id: "V7SItxKNIgx", + }, + { + id: "M8QmuXwtccx", + }, + { + id: "U8tyWV7WmIB", + }, + { + id: "FCpwW3KOxtf", + }, + { + id: "DbH64RnSJVN", + }, + { + id: "kBP1UvZpsNj", + }, + { + id: "M2qEv692lS6", + }, + { + id: "xtyqCSvxQJ8", + }, + { + id: "HsB3ex0EMbb", + }, + { + id: "Fj3FwFtVPtU", + }, + { + id: "wlIdIU2y5Gk", + }, + { + id: "uzgT5Eu82WO", + }, + { + id: "kfmSovze9UV", + }, + { + id: "BtvPB9xE1Jr", + }, + { + id: "KKG8s3Z5EPH", + }, + { + id: "debyJkjed8G", + }, + { + id: "rspjJHg4WY1", + }, + { + id: "gttsaXD4n1u", + }, + { + id: "v9daBMxUxHH", + }, + { + id: "flJbtXOQ4ha", + }, + { + id: "g7Ii3FVB1bY", + }, + { + id: "BYbsMc3zE9G", + }, + { + id: "nWm6OHAdTcy", + }, + { + id: "TSyzvBiovKh", + }, + { + id: "kGkYLF1FvpB", + }, + { + id: "tblsKaWX5Sm", + }, + { + id: "GXVaMFxqDME", + }, + { + id: "iOA3z6Y3cq5", + }, + { + id: "AfP9MlA55Qi", + }, + { + id: "h8V5zVkBgic", + }, + { + id: "Zav7juzGmEo", + }, + { + id: "XwtpHXCx8sX", + }, + { + id: "jjc8SBrvpDO", + }, + { + id: "U0KpeSx4UIB", + }, + { + id: "wG1a3Ns5V1N", + }, + { + id: "NpI6EFhEAhM", + }, + { + id: "VgOvDtece3p", + }, + { + id: "H0OkaM4ReRK", + }, + { + id: "gloKYzVT67e", + }, + { + id: "lX812rGiMPZ", + }, + { + id: "Ioxjc2KBjWd", + }, + { + id: "gBKZtuOfCaj", + }, + { + id: "Ic6DsSpn2Wj", + }, + { + id: "bJ0VSATHwO2", + }, + { + id: "frORonslTLE", + }, + { + id: "Efmr3Xo36DR", + }, + { + id: "IzX2rV8a8Ho", + }, + { + id: "vrSr04hB7ED", + }, + { + id: "jaWCWLbhdv7", + }, + { + id: "Qel3jU50F6K", + }, + { + id: "UgZ7AP6L1mh", + }, + { + id: "UeOctqIWUkP", + }, + { + id: "fcTsRLFtufh", + }, + { + id: "coFxhWxOark", + }, + { + id: "ulyoJV0q6cJ", + }, + { + id: "YUUg4jQpZAy", + }, + { + id: "RII2uiUJqKD", + }, + { + id: "QMnoFLTLpkY", + }, + { + id: "VCUjA71GZ2d", + }, + { + id: "jj1MhWhHqta", + }, + { + id: "fRLX08WHWpL", + }, + { + id: "zM4czlmCz24", + }, + { + id: "G27Vr01Gifm", + }, + { + id: "NWhroKYPn1A", + }, + { + id: "G5NCnFJ3bbV", + }, + { + id: "W2w1rZI5kZz", + }, + { + id: "N4j31jvwW0Y", + }, + { + id: "mRNfATVxa3m", + }, + { + id: "JUa5Fs0Qvao", + }, + { + id: "zpEPGogIr6q", + }, + { + id: "Xzxy8NuVsLp", + }, + { + id: "oOH7qqNuiD1", + }, + { + id: "rbCicUS2uMY", + }, + { + id: "PPC5QtOsmEC", + }, + { + id: "YpL6dr19hH6", + }, + { + id: "wc3V4xFj2MO", + }, + { + id: "V6QWyB0KqvP", + }, + { + id: "mXec4ntz7OW", + }, + { + id: "wWkO5e8tkrs", + }, + { + id: "Pb1L8dflx2j", + }, + { + id: "E9oBVjyEaCe", + }, + { + id: "dyH3ppkE2sh", + }, + { + id: "DA2BEQMhv9B", + }, + { + id: "OyoED7OBJGk", + }, + { + id: "QGBXfiWmO2v", + }, + { + id: "aD10lUENwys", + }, + { + id: "PvDzSeyMO4W", + }, + { + id: "r1RUyfVBkLp", + }, + { + id: "sWjrdaLOoak", + }, + { + id: "FO1Tq8vUa62", + }, + { + id: "QRuCpHn1ZVZ", + }, + { + id: "vgOQ7fWmMyZ", + }, + { + id: "QWO08Ebwtl3", + }, + { + id: "Ys009lKpDVz", + }, + { + id: "bMkXh7mq57A", + }, + { + id: "HPg74Rr7UWp", + }, + { + id: "IHHUhdtZZRb", + }, + { + id: "CTOMXJg41hz", + }, + { + id: "WxMmxNU6Gla", + }, + { + id: "GKrklllwmbU", + }, + { + id: "pXDcgDRz8Od", + }, + { + id: "kiNoY2KN2sT", + }, + { + id: "Er6yp9aXl9a", + }, + { + id: "yR699TwEKDs", + }, + { + id: "hy9w3qQrUfu", + }, + { + id: "duNANknQO4l", + }, + { + id: "YGz2xhQkUru", + }, + { + id: "CDX81h7sQvQ", + }, + { + id: "KeCI1gfDHzn", + }, + { + id: "t1MFxLm43vC", + }, + { + id: "RxmgoSlw9YF", + }, + { + id: "eXuHiCpHQJP", + }, + { + id: "ICRqMuuHNxp", + }, + { + id: "EjnIQNVAXGp", + }, + { + id: "DBRcWnYrjj7", + }, + { + id: "jUb8gELQApl", + }, + { + id: "o5eA4rxjaEA", + }, + { + id: "obour8gYJL1", + }, + { + id: "ui12Hyvn6jR", + }, + { + id: "MPUiud3BYRq", + }, + { + id: "zOQ8bMRRM0R", + }, + { + id: "KR0jLuFOB3d", + }, + { + id: "VU1Tjizg9Eq", + }, + { + id: "cXOR7vSMBKO", + }, + { + id: "kGtrBXfoOxW", + }, + { + id: "PfZXxl6Wp3F", + }, + { + id: "GBrBjaxhBNU", + }, + { + id: "becp7lZeV95", + }, + { + id: "tlvNeDXXrS7", + }, + { + id: "wxQnl60vRWE", + }, + { + id: "yklBRnDdCBU", + }, + { + id: "EuoA3Crpqts", + }, + { + id: "cag6vQQ9SQk", + }, + { + id: "BfvEUlDh5WZ", + }, + { + id: "HchLHu47dIl", + }, + { + id: "KuHtoElOeWo", + }, + { + id: "Bf9R1R91mw4", + }, + { + id: "XVERVdHqg31", + }, + { + id: "fCaInQelsZ5", + }, + { + id: "EIBeOE4ZZDQ", + }, + { + id: "m0PiiU5BteW", + }, + { + id: "r6jCtKrDg4L", + }, + { + id: "t52CJEyLhch", + }, + { + id: "QQxEwS2zA1P", + }, + { + id: "F7oVR22kQ5J", + }, + { + id: "nKjg50Y5aFs", + }, + { + id: "agM0BKQlTh3", + }, + { + id: "q6FsDtTCP3r", + }, + { + id: "UROUHAfDSMJ", + }, + { + id: "qJhsAz9XxKf", + }, + { + id: "AfTYmAMYSEY", + }, + { + id: "aBfyTU5Wgds", + }, + { + id: "KJPWIdXAkVS", + }, + { + id: "WozxVvaR0rR", + }, + { + id: "Cc9kMNFpGmC", + }, + { + id: "xG4ElM2rILq", + }, + { + id: "sGWwGDi933f", + }, + { + id: "dkLFjVtoVud", + }, + { + id: "Tx1JYLIv3Fj", + }, + { + id: "ulI6WS7SMcf", + }, + { + id: "eYYyZUvr6ep", + }, + { + id: "qXHYtmiJRVs", + }, + { + id: "erDyqQMhRQN", + }, + { + id: "X5xh5uS3bIB", + }, + { + id: "R9v9Mb2Z3KB", + }, + { + id: "f7yRhIeFn1k", + }, + { + id: "xN1n1dpwj8N", + }, + { + id: "QQKZBppQ1Yg", + }, + { + id: "Dto395fHIvK", + }, + { + id: "K0d08d3sUOv", + }, + { + id: "WRSQSgwTvme", + }, + { + id: "lBMmM0HBp4s", + }, + { + id: "lvxIJAb2QJo", + }, + { + id: "obxZFOcDYGS", + }, + { + id: "xaEdKlRK7l4", + }, + { + id: "SpD4gm27lKj", + }, + { + id: "pjHCs8KvtSx", + }, + { + id: "V7nzgao1pCE", + }, + { + id: "aLrkBHnMhxF", + }, + { + id: "vYkCMt5WbX0", + }, + { + id: "WBo7nt0kp1g", + }, + { + id: "MHAWZr2Caxw", + }, + { + id: "QvHBTmOd2qO", + }, + { + id: "LgiBWb1OeyW", + }, + { + id: "TunPTFo0keR", + }, + { + id: "bG7AXd1o35Y", + }, + { + id: "aIxHjKERuzQ", + }, + { + id: "OQuRu1ytLMF", + }, + { + id: "wQ71REGAMet", + }, + { + id: "u0SlCNJnK3K", + }, + { + id: "pmxZm7klXBy", + }, + { + id: "mqMPMFvpTue", + }, + { + id: "dY2F6bpC4hO", + }, + { + id: "p9ZtyC3LQ9f", + }, + { + id: "FsunWIQLXoF", + }, + { + id: "caif2tNAS0n", + }, + { + id: "yUakh5JVYAK", + }, + { + id: "g031LbUPMmh", + }, + { + id: "LZS1Y7MyGPN", + }, + { + id: "U4FzUXMvbI8", + }, + { + id: "cdmkMyYv04T", + }, + { + id: "tABzAmJe44u", + }, + { + id: "hLioF4sBlne", + }, + { + id: "IWb1hstfROc", + }, + { + id: "CEoD9uQVIZB", + }, + { + id: "Zp8mxkuN2C8", + }, + { + id: "IcVHzEm0b6Z", + }, + { + id: "Cc8tVexrtgp", + }, + { + id: "GxSIHJvaffT", + }, + { + id: "oql97puM3kA", + }, + { + id: "lpxM2SDN1Zi", + }, + { + id: "okUPxUNA394", + }, + { + id: "vmRJoTiw23W", + }, + { + id: "tcJvK3MDFpA", + }, + { + id: "Xcm7moozDAL", + }, + { + id: "A5gTawRhFE2", + }, + { + id: "CF243RPvNY7", + }, + { + id: "rhD0OvRUIdg", + }, + { + id: "xwFiVFCqZrX", + }, + { + id: "bPigB5HPVIs", + }, + { + id: "pf6hbxz673J", + }, + { + id: "uUK3LeeI2JI", + }, + { + id: "HY4OVlUx7bq", + }, + { + id: "CzNGYnubEbl", + }, + { + id: "yKvqXttwwzr", + }, + { + id: "hI3aOAKqCtW", + }, + { + id: "rWuCEfxJbjo", + }, + { + id: "lrNXVeRKb9K", + }, + { + id: "yTMrs5kClCv", + }, + { + id: "xPO1tJtoAjF", + }, + { + id: "bk4Y99gJJ4o", + }, + { + id: "LvOFvYNDLBT", + }, + { + id: "xeQgqgxZMF0", + }, + { + id: "MXdbul7bBqV", + }, + { + id: "DtG84cHnM7X", + }, + { + id: "LZjIqL6eWP9", + }, + { + id: "PIcVTr8OrZv", + }, + { + id: "X8RKmI5bBgv", + }, + { + id: "QmgjREs8ugj", + }, + { + id: "NYPqLUFwzW7", + }, + { + id: "RmYxH0uwXiB", + }, + { + id: "UYcpSrv6mYJ", + }, + { + id: "PAGzK2IHcNH", + }, + { + id: "mt47bcb0Rcj", + }, + { + id: "oviXGMoL0mp", + }, + { + id: "IIeNrOrnhH0", + }, + { + id: "NGdZX8qX6BK", + }, + { + id: "CfpGKfDlCZU", + }, + { + id: "smoyi1iYNK6", + }, + { + id: "NHhA3BioKkX", + }, + { + id: "aGKLVxj8Wl2", + }, + { + id: "fOQjN1X4mAQ", + }, + { + id: "mOynHvhg6n9", + }, + { + id: "imjr9QsUqc0", + }, + { + id: "zMljBpDbSPw", + }, + { + id: "CL2RI9EJrqd", + }, + { + id: "UCwtaCrNUls", + }, + { + id: "eiJQajBCtvS", + }, + { + id: "q56l8XAU0Qq", + }, + { + id: "nImgPWDVQIa", + }, + { + id: "KtEDJZX6RrJ", + }, + { + id: "magDgRpsonr", + }, + { + id: "sznCEDMABa2", + }, + { + id: "Sp11Dlm8EC7", + }, + { + id: "kh2XrvZ07R9", + }, + { + id: "aihxTHAvuEx", + }, + { + id: "CTR6caNEKMV", + }, + { + id: "REtQE1gstTf", + }, + { + id: "tt9XZYR5avl", + }, + { + id: "RMpA2SCMyGo", + }, + { + id: "ZRxBNGxdKBv", + }, + { + id: "M3dL6ZAIZ3I", + }, + { + id: "Zpo04q79JlW", + }, + { + id: "MXDfZwbBmxs", + }, + { + id: "sAijOguUgyU", + }, + { + id: "CsD5XPjUkjO", + }, + { + id: "s2eG8iQfoo2", + }, + { + id: "CVFtTLoGf0v", + }, + { + id: "hZyvi6hEuTc", + }, + { + id: "fC5IZTforou", + }, + { + id: "QnCRGLHHe6N", + }, + { + id: "OwHjzJEVEUN", + }, + { + id: "oWNF4d3PK8C", + }, + { + id: "g5oijWNlrTp", + }, + { + id: "jjCwHWEyPua", + }, + { + id: "hTGeTrwzrPi", + }, + { + id: "q3naTQd3vk4", + }, + { + id: "Uv15pOAstzX", + }, + { + id: "D7UVRRE9iUC", + }, + { + id: "DALypRddlXt", + }, + { + id: "eC7OZaHy9Er", + }, + { + id: "qaFmuVdsiOq", + }, + { + id: "PZjAPpF9mmx", + }, + { + id: "k7afkzmXJVn", + }, + { + id: "BGHCa9pShBq", + }, + { + id: "YGZxwG1vxCi", + }, + { + id: "uPshwz3B3Uu", + }, + { + id: "uBl0VyuwO4p", + }, + { + id: "Hu31NCRjZlj", + }, + { + id: "DQ25ZfyqLiX", + }, + { + id: "JCsD1tr2Mda", + }, + { + id: "pNN0BsLqQYg", + }, + { + id: "X5PsCWO83bV", + }, + { + id: "zO5hgxxfU4T", + }, + { + id: "PaNv9VyD06n", + }, + { + id: "UYdZqFEhbDg", + }, + { + id: "KCPRVsLEVaU", + }, + { + id: "lwEjClqwUML", + }, + { + id: "BLA8608lxND", + }, + { + id: "rTrOVvZqITY", + }, + { + id: "Gm7YUjhVi9Q", + }, + { + id: "BJuvp2RES62", + }, + { + id: "OePlArRCE8r", + }, + { + id: "F256pn456tL", + }, + { + id: "haH40EF3fbM", + }, + { + id: "BhFnxVBcm4E", + }, + { + id: "hTGfkdOpNbh", + }, + { + id: "a5pYBBYuBV2", + }, + { + id: "IRi3oH3og8c", + }, + { + id: "t0DLywkw6O1", + }, + { + id: "gSe2VsLMeAK", + }, + { + id: "QJX6K9FlNbG", + }, + { + id: "jjtzkzrmG7s", + }, + { + id: "BXQS8lmTXX6", + }, + { + id: "RyH5SDDXeEU", + }, + { + id: "kdnEImiak51", + }, + { + id: "z9KGMrElTYS", + }, + { + id: "eN0GNgGYDLY", + }, + { + id: "bRjZlOSpfCi", + }, + { + id: "e4P2zTzM7gQ", + }, + { + id: "H0vusW98jk7", + }, + { + id: "GHHvGp7tgtZ", + }, + { + id: "ZpE2POxvl9P", + }, + { + id: "Pae8DR7VmcL", + }, + { + id: "bPqLhzvOIJb", + }, + { + id: "oxWlJAvF8XY", + }, + { + id: "VFF7f43dJv4", + }, + { + id: "zJOO4X9NRby", + }, + { + id: "XJ6DqDkMlPv", + }, + { + id: "ctMepV9p92I", + }, + { + id: "jl5cOwjP5PO", + }, + { + id: "g2EeoUScEzu", + }, + { + id: "jzQqP2juEy6", + }, + { + id: "zGSjJCRzww1", + }, + { + id: "Hix39LJIRc8", + }, + { + id: "qK81IFiClRk", + }, + { + id: "nv41sOz8IVM", + }, + { + id: "yHIV3DzYjPL", + }, + { + id: "JIigpdhC4tR", + }, + { + id: "I7uFKlcFAya", + }, + { + id: "G6q8HBJathN", + }, + { + id: "DINXUs8QZWg", + }, + { + id: "mAl0KfsyXVM", + }, + { + id: "Qmxmomz94es", + }, + { + id: "yLiODvcJC0x", + }, + { + id: "vAdMjyOspGL", + }, + { + id: "xuGd4VFZev5", + }, + { + id: "xt08cuqf1ys", + }, + { + id: "mkhlowm5D7O", + }, + { + id: "kUzpbgPCwVA", + }, + { + id: "YxtipXA59uX", + }, + { + id: "bLkn2FnUmR3", + }, + { + id: "gptsRw8TEao", + }, + { + id: "XvqLmn4kZXy", + }, + { + id: "I2UW55qvn82", + }, + { + id: "Pcpc2wQ6NxU", + }, + { + id: "DUPj1wDFL76", + }, + { + id: "HNRYDxjvAQQ", + }, + { + id: "MwfWgjMRgId", + }, + { + id: "PIPiBUGXRS6", + }, + { + id: "H3YmgmVA9zr", + }, + { + id: "SkkFlVzmvUq", + }, + { + id: "ZJ1fINtWZaV", + }, + { + id: "HIQCz6wJx4k", + }, + { + id: "ALnjmvcRSxU", + }, + { + id: "nbMpoRiVRWd", + }, + { + id: "MIwZRBfOxUx", + }, + { + id: "sSgOnY1Xqd9", + }, + { + id: "kuqKh33SPgg", + }, + { + id: "OwhZQEPw1u6", + }, + { + id: "GU90uRWJ5au", + }, + { + id: "hRnFyAxbVSu", + }, + { + id: "wHZsdEzyGqi", + }, + { + id: "TWMVxJANJeU", + }, + { + id: "GftPJlsXYya", + }, + { + id: "eKp8fW6cOCZ", + }, + { + id: "BzSVeXl2ipw", + }, + { + id: "hpXXBtRXXSd", + }, + { + id: "o4HjmsKgUBy", + }, + { + id: "ZvX8lXd1tYs", + }, + { + id: "RgeDYKt0AhZ", + }, + { + id: "xv2x3ViwyFX", + }, + { + id: "pqXsrHKRpRS", + }, + { + id: "ZrmM51S7ySE", + }, + { + id: "zEsMdeJOty4", + }, + { + id: "k8Sov0ujnvB", + }, + { + id: "XRXBoBfK14N", + }, + { + id: "qzP5oF7seEt", + }, + { + id: "DwpbWkiqjMy", + }, + { + id: "JNJIPX9DfaW", + }, + { + id: "P2y3TysVYtO", + }, + { + id: "lQIe6vtSe1P", + }, + { + id: "eH9a0MLYJCP", + }, + { + id: "fw4OoFDD8ik", + }, + { + id: "nX05QLraDhO", + }, + { + id: "VPesUmegQpP", + }, + { + id: "T9kp3DLvP4W", + }, + { + id: "ZlvXUWvIMks", + }, + { + id: "iJ1VH3XU5ic", + }, + { + id: "CgunjDKbM45", + }, + { + id: "KkYL8M005ju", + }, + { + id: "pWEIn4w0Esh", + }, + { + id: "Z6wIsiN1L79", + }, + { + id: "ciFzSZosO1k", + }, + { + id: "OyBpWd2oAiS", + }, + { + id: "yTNDFFhsxi6", + }, + { + id: "ZPD1n8jJoJ0", + }, + { + id: "oTnsv8nF2xg", + }, + { + id: "VysM8vs5q7z", + }, + { + id: "W7ekX3gi0ut", + }, + { + id: "AOwa6JKBQAo", + }, + { + id: "bUEvuix2Cn6", + }, + { + id: "mW20aiZHqwE", + }, + { + id: "LstymRRzibj", + }, + { + id: "OZ1olxsTyNa", + }, + { + id: "sGAxzRAVyhF", + }, + { + id: "WAM62JleVQx", + }, + { + id: "SlNw6FxElY9", + }, + { + id: "zCB6jqb11v5", + }, + { + id: "tj6zlzsd5kd", + }, + { + id: "mClZSQwnmQq", + }, + { + id: "YFlZA0y0Vi6", + }, + { + id: "V377T5btopb", + }, + { + id: "AQQCxQqDxLe", + }, + { + id: "wzvDhS0TkAF", + }, + { + id: "gcsKpK1l9eZ", + }, + { + id: "wtdBuXDwZYQ", + }, + { + id: "MADPPE6B27k", + }, + { + id: "o9J1ar4hM1L", + }, + { + id: "OM0adkTeys8", + }, + { + id: "oEMXXHA5aGx", + }, + { + id: "VWCTysWfbpy", + }, + { + id: "K8W0P4ZLchk", + }, + { + id: "jPidqyo7cpF", + }, + { + id: "vcPtDIrU9d7", + }, + { + id: "z0jGRBxKc0e", + }, + { + id: "KrYEOKqlhe4", + }, + { + id: "rZxk3S0qN63", + }, + { + id: "bQiBfA2j5cw", + }, + { + id: "OXHE08rPXm1", + }, + { + id: "Dgta1RAuskb", + }, + { + id: "kOvoflxqkGw", + }, + { + id: "cBi3y4lGhDd", + }, + { + id: "K1r3uF6eZ8n", + }, + { + id: "nAr2xbOf5iT", + }, + { + id: "RWvG1aFrr0r", + }, + { + id: "WerHl8SDtRU", + }, + { + id: "cTU2WmWcJKx", + }, + { + id: "M7qT4kiEcXU", + }, + { + id: "NJBVmZBrVhQ", + }, + { + id: "HenrD4pNEqN", + }, + { + id: "iAcSJjvEa2I", + }, + { + id: "E1Uc8UcMExN", + }, + { + id: "bKiJzk8ZZbS", + }, + { + id: "jFlcEy3FKjh", + }, + { + id: "vkXlj7ZPkGi", + }, + { + id: "H2fn9ca2z8d", + }, + { + id: "qer4ip8bZ4P", + }, + { + id: "DUAYSNquClV", + }, + { + id: "mdnaPN9m7ZT", + }, + { + id: "U9klfqqGlRa", + }, + { + id: "rEIzKmGpSMM", + }, + { + id: "MeeOir63Hyy", + }, + { + id: "h3u3nQFe4sS", + }, + { + id: "Tk0DwBsjaOu", + }, + { + id: "YWXXO0XMkQe", + }, + { + id: "b2CDIRmO95E", + }, + { + id: "ZiOVcrSjSYe", + }, + { + id: "YU7eItZxn2Z", + }, + { + id: "gg0fYvR9D86", + }, + { + id: "BY5exykvTzc", + }, + { + id: "IW3guWF3uvF", + }, + { + id: "nFW78RdRUdf", + }, + { + id: "KXATggvXUzZ", + }, + { + id: "gmen7SXL9CU", + }, + { + id: "rVVzK9G44L9", + }, + { + id: "S36Gm1R5ghI", + }, + { + id: "z7qXX5LXkE9", + }, + { + id: "dQggcljEImF", + }, + { + id: "jHcrJYEa3NN", + }, + { + id: "yh1PrRTboyg", + }, + { + id: "aLQZuhm870a", + }, + { + id: "fbVs9uAce8L", + }, + { + id: "isVEay1dGbq", + }, + { + id: "D1YdCIodO3V", + }, + { + id: "cRyZDRZ6j36", + }, + { + id: "hXyqdN20E7o", + }, + { + id: "ulYrdhGl6VQ", + }, + { + id: "I6HZcwgJqUL", + }, + { + id: "fnn7xBTE0sO", + }, + { + id: "hN8TzNcsqEa", + }, + { + id: "WL7lM3Rz6dy", + }, + { + id: "V3q3EMiUhGB", + }, + { + id: "gg0biK4FD2k", + }, + { + id: "uRQj8WRK0Py", + }, + { + id: "cITgoKuibLC", + }, + { + id: "kzhPa9dd2R8", + }, + { + id: "iLUfUFx4mEF", + }, + { + id: "k8jnz66xV0f", + }, + { + id: "y4FCAVfR0tC", + }, + { + id: "sZtV68WjwpG", + }, + { + id: "ZxuSbAmsLCn", + }, + { + id: "cJVM4ckY8ZD", + }, + { + id: "ytHbYMerm2b", + }, + { + id: "aQJQ5mijJmH", + }, + { + id: "ynLghP3PuKg", + }, + { + id: "DHAq6pR0Ely", + }, + { + id: "SSm0v9lZnh8", + }, + { + id: "IXJg79fclDm", + }, + { + id: "JsxnA2IywRo", + }, + { + id: "H7sKcZvP9T6", + }, + { + id: "eyfrdOUUkXO", + }, + { + id: "UUZoBCSn245", + }, + { + id: "qbee4sKpkXO", + }, + { + id: "OFIrbJOCa8t", + }, + { + id: "rTSsEeazs6w", + }, + { + id: "uyQdDdGn2g9", + }, + { + id: "jr5hIZcJBXB", + }, + { + id: "UMq2wfDGS6l", + }, + { + id: "rYCSMnjWKv0", + }, + { + id: "iec44xK5xUI", + }, + { + id: "VYoxnjg9wiW", + }, + { + id: "cgF4WfEpzSl", + }, + { + id: "PtHKgFNIita", + }, + { + id: "VfMiAKpB8kr", + }, + { + id: "M1bWQKGXnBQ", + }, + { + id: "rozv5QUSE7a", + }, + { + id: "BCNlNkJ01k2", + }, + { + id: "v9olqjLu9Al", + }, + { + id: "utDRE0huZNl", + }, + { + id: "mEUUK7MHLSF", + }, + { + id: "QTt3cJKjwRl", + }, + { + id: "pL1FAfipkQj", + }, + { + id: "EqL0DLB2o4W", + }, + { + id: "CkZ1c0c2MR4", + }, + { + id: "u9oUaeuEJvg", + }, + { + id: "f8MTDp21nuX", + }, + { + id: "ep88w1ZbCNE", + }, + { + id: "Wm1IrYlngRU", + }, + { + id: "A9jizoxe857", + }, + { + id: "WhCQNekdIwM", + }, + { + id: "RPSMI3gQe8M", + }, + { + id: "a1dP5m3Clw4", + }, + { + id: "SOk5LKU75uW", + }, + { + id: "LbWpsX1FJcC", + }, + { + id: "mhpV1p8k0uC", + }, + { + id: "Sglj9VCoQmc", + }, + { + id: "KvE0PYQzXMM", + }, + { + id: "vLkRhIzRRak", + }, + { + id: "Clj75gZgt6I", + }, + { + id: "E0sWxp1enqW", + }, + { + id: "DhYZLciYDi4", + }, + { + id: "hwOAP8MEMW1", + }, + { + id: "aXhRnbAPtzB", + }, + { + id: "mYIJtiORZSw", + }, + { + id: "uCgPXAve9O8", + }, + { + id: "pRC8FuysKff", + }, + { + id: "FRX63UWciyO", + }, + { + id: "WDH4AkfaZQA", + }, + { + id: "VS74omZuDxN", + }, + { + id: "ejW14chBpNX", + }, + { + id: "Q23tMsKOoO6", + }, + { + id: "dc5oUFoQRCQ", + }, + { + id: "x8jclPd0nnx", + }, + { + id: "yEAmMv0CG6n", + }, + { + id: "TsglzO6wCoE", + }, + { + id: "bqSIIRuZ1qj", + }, + { + id: "ulDaqfxOLxS", + }, + { + id: "N2BMifTXTJW", + }, + { + id: "ZuQGBuEbAqe", + }, + { + id: "qSkkzO25Oed", + }, + { + id: "kjwlT8flhle", + }, + { + id: "noK22y2hRdJ", + }, + { + id: "ZCBhvGpapJT", + }, + { + id: "ADeZNq1pKsu", + }, + { + id: "FY2qVVrSdRW", + }, + { + id: "EGLpIMSAWhx", + }, + { + id: "n061bwGWIsK", + }, + { + id: "dx4NOnoGtE7", + }, + { + id: "funzKZ2xYgf", + }, + { + id: "PccFqCgeqxM", + }, + { + id: "AbkK1MwJsQm", + }, + { + id: "fHqBRE3LTiQ", + }, + { + id: "Y0OxS2QV1qT", + }, + { + id: "SjCRGrCugU9", + }, + { + id: "hRsy4L78Rht", + }, + { + id: "qHBTf9A89xW", + }, + { + id: "brocZmp2YYU", + }, + { + id: "OV4Y0FsVdgp", + }, + { + id: "BUjEJkpYDTG", + }, + { + id: "BpiGzPxG6FQ", + }, + { + id: "GQcGWobVYc4", + }, + { + id: "KRfE2ZKe9j8", + }, + { + id: "WC5rU5fLMzY", + }, + { + id: "pvTYrkG1d6f", + }, + { + id: "wvj0ietfz87", + }, + { + id: "ROIfJgdJuQC", + }, + { + id: "X79FDd4EAgo", + }, + { + id: "TSMmkUDHWhG", + }, + { + id: "f5QU0kJCwCo", + }, + { + id: "TVULMaEbowK", + }, + { + id: "jjvCGBwKlSI", + }, + { + id: "sesv0eXljBq", + }, + { + id: "xeXGnIyiKcR", + }, + { + id: "mkFoaAdosuY", + }, + { + id: "ajMlj9noqdq", + }, + { + id: "nV3OkyzF4US", + }, + { + id: "gaVjKyJCbMl", + }, + { + id: "u7WP90CqSw0", + }, + { + id: "bENQwMR9RPU", + }, + { + id: "KY7PY6Oek9l", + }, + { + id: "ozq3zNYAieB", + }, + { + id: "lUYT12uBl46", + }, + { + id: "MQHszd6K6V5", + }, + { + id: "tmxPSZifesq", + }, + { + id: "ovGHR2PP2xt", + }, + { + id: "t1aAdpBbDB3", + }, + { + id: "NKDZzjtND1V", + }, + { + id: "vLHMYIzKb98", + }, + { + id: "HWXk4EBHUyk", + }, + { + id: "QaeQJJCmnTS", + }, + { + id: "fP2jksq3TLU", + }, + { + id: "SmhR2aaKLjw", + }, + { + id: "a0XCAVyWAVi", + }, + { + id: "g9DMxXZouBw", + }, + { + id: "Rdp08RsSQnc", + }, + { + id: "OsKMbQMp54Z", + }, + { + id: "fAzFH9HX5Ml", + }, + { + id: "gDnYtoObXau", + }, + { + id: "nVThjMrvuIt", + }, + { + id: "OzjRQLn3G24", + }, + { + id: "sNCD46nc2m5", + }, + { + id: "RrYUzgL9K0x", + }, + { + id: "GimGENrZ4yG", + }, + { + id: "z9lFsLb6Tnu", + }, + { + id: "GRc9WXp9gSy", + }, + { + id: "QTUW4sUrBWE", + }, + { + id: "S1ThhGKWsvb", + }, + { + id: "oua9bZ7xkfS", + }, + { + id: "sDTodaygv5u", + }, + { + id: "E991s19hH6l", + }, + { + id: "TIMdGB8AbUm", + }, + { + id: "au8x2aRUVjb", + }, + { + id: "FyCdn8kgKTc", + }, + { + id: "q56204kKXgZ", + }, + { + id: "Aouf3UUWxo3", + }, + { + id: "akbfKGJAYt1", + }, + { + id: "I3Q4c9e1bFg", + }, + { + id: "YqhXLZvknUO", + }, + { + id: "FsiZ3vyKiAU", + }, + { + id: "PriwTqVreMn", + }, + { + id: "ubUisS0sH7Y", + }, + { + id: "iSQTZRaYval", + }, + { + id: "Xxf0q3cFaiX", + }, + { + id: "MErVkzdbsP5", + }, + { + id: "qxbsDd9QYv6", + }, + { + id: "ovruC9wzRBW", + }, + { + id: "PvUAAGiEqKH", + }, + { + id: "k5K7JG1bOYa", + }, + { + id: "hCm2Nh7C8BW", + }, + { + id: "cHqboEGRUiY", + }, + { + id: "ABM75Q1UfoP", + }, + { + id: "vqzLMEA9PHM", + }, + { + id: "KnU2XHRvyiX", + }, + { + id: "OCi4115nFsX", + }, + { + id: "L3OQoPOwSFy", + }, + { + id: "KuGO75X47Gk", + }, + { + id: "HB2pdBL12sG", + }, + { + id: "hA63ZnXDOcZ", + }, + { + id: "C1zlHePEQe6", + }, + { + id: "fFuBunxNene", + }, + { + id: "bO2AHSkUIcS", + }, + { + id: "YlzcywV2ekX", + }, + { + id: "FWFtgkFuk92", + }, + { + id: "NoNEdV7IyKU", + }, + { + id: "YMkMpzQEaE1", + }, + { + id: "YyxzpZpB2s7", + }, + { + id: "y4F4FPooV3W", + }, + { + id: "COtzHwwf7GF", + }, + { + id: "FC0dyKxD2mL", + }, + { + id: "h9Dt8E8VyMq", + }, + { + id: "MYr9oYNh5eH", + }, + { + id: "PqlNXedmh7u", + }, + { + id: "Bv3ZzMtRSrU", + }, + { + id: "meHOjeLJ4jz", + }, + { + id: "mTNOoGXuC39", + }, + { + id: "T96WRiSvhaU", + }, + { + id: "F3fnO1wHREz", + }, + { + id: "IGtLoNYu3m3", + }, + { + id: "kLbIhl5e2Ol", + }, + { + id: "JCXEtUDYyp9", + }, + { + id: "MQWubt4niuo", + }, + { + id: "qZEdl8gjHk4", + }, + { + id: "n7wN9gMFfZ5", + }, + { + id: "W6il9wTkvwu", + }, + { + id: "kf6JG4xPtQu", + }, + { + id: "ZOyEYFBKVTa", + }, + { + id: "DPSUCbGtwEH", + }, + { + id: "vbyQ4eEyjbA", + }, + { + id: "IseiqOIac7j", + }, + { + id: "WjO2puYKysP", + }, + { + id: "u9ZsXt4oCpE", + }, + { + id: "PMsF64R6OJX", + }, + { + id: "Nu969mIacpF", + }, + { + id: "c4kQIsUMRVs", + }, + { + id: "I57wpcgmcQS", + }, + { + id: "oLuhRyYPxRO", + }, + { + id: "VINXmSq6WlM", + }, + { + id: "U0QkZ5HLcBh", + }, + { + id: "kedYKTsv95j", + }, + { + id: "pASsPn2WpS1", + }, + { + id: "vnzwDjsYYNe", + }, + { + id: "XfVYz6l2rzg", + }, + { + id: "GHPuYdLcVN5", + }, + { + id: "ZSBnWFBpPPJ", + }, + { + id: "EDDCLGSo9hx", + }, + { + id: "brZKu3A7dSz", + }, + { + id: "SIxGTeya5lN", + }, + { + id: "TiAxSIV1WsW", + }, + { + id: "pVkDnI2J6Wi", + }, + { + id: "dIRsACrjJvU", + }, + { + id: "SCc0TNTDJED", + }, + { + id: "ckZUwoiRNQS", + }, + { + id: "Rp268JB6Ne4", + }, + { + id: "EchnBdJ4aHp", + }, + { + id: "WbVAZdvcYJa", + }, + { + id: "XyDPJxjjbfD", + }, + { + id: "k2iv6kfHUeW", + }, + { + id: "lELJZCBxz7H", + }, + { + id: "A6GTmXMdS8x", + }, + { + id: "M5XBSLvivg7", + }, + { + id: "mNCrqGaPhc2", + }, + { + id: "L8cz2leP7zh", + }, + { + id: "AvGz949akv4", + }, + { + id: "lXMPIg74RGG", + }, + { + id: "IBy5Yw1ZCVi", + }, + { + id: "qWdVYZP8NGe", + }, + { + id: "lvWcISmT3Pd", + }, + { + id: "aEUfFsvT1eI", + }, + { + id: "onldO7gfdSw", + }, + { + id: "DxAPPqXvwLy", + }, + { + id: "jU9c5lpUpa6", + }, + { + id: "ITyHkdtNsld", + }, + { + id: "U0uqzA98Ubq", + }, + { + id: "IaDoA7xVKzG", + }, + { + id: "D2rB1GRuh8C", + }, + { + id: "sqNoCTQg7w7", + }, + { + id: "Jn4CNjcrPZJ", + }, + { + id: "VjVYaKZ9t4K", + }, + { + id: "q3wEzr3bE4s", + }, + { + id: "KC2kfmP6Ym5", + }, + { + id: "Fu6V7CVnikU", + }, + { + id: "n277YIC9U2q", + }, + { + id: "SttgPxp0UuS", + }, + { + id: "NDqR2cWlVy3", + }, + { + id: "pYr0Kcy93M2", + }, + { + id: "kVjJlyikPxp", + }, + { + id: "Fa4U0rDYIlJ", + }, + { + id: "TdoNdBa6i4A", + }, + { + id: "OcRCVRy2M7X", + }, + { + id: "k7IkH9U9lZP", + }, + { + id: "mj5lBkGeqVd", + }, + { + id: "X9zzzyPZViR", + }, + { + id: "Ni2W87QqMWA", + }, + { + id: "gyNCiFp8sWX", + }, + { + id: "keZ1b2AHgsI", + }, + { + id: "shRXArPWh8H", + }, + { + id: "cUltUneFSan", + }, + { + id: "TluyVYBlmEI", + }, + { + id: "KLEIeni3XAw", + }, + { + id: "cDRQOxX1wHO", + }, + { + id: "tZxqVn3xNrA", + }, + { + id: "XYyMoILYXQC", + }, + { + id: "Qwgy9ucLlL5", + }, + { + id: "oc7tqtQov95", + }, + { + id: "AF8jvAOAWox", + }, + { + id: "zsqxu7ZZRpO", + }, + { + id: "wjFsUXI1MlO", + }, + { + id: "v2vi8UaIYlo", + }, + { + id: "QuIDecovcIX", + }, + { + id: "eVkjSAXyz3T", + }, + { + id: "d9mih4hlTLF", + }, + { + id: "Xoruy9OQVDn", + }, + { + id: "gjRqy9UoeQM", + }, + { + id: "vn9KJsLyP5f", + }, + { + id: "J13NOXEYIjY", + }, + { + id: "Xcq3e4TeBc9", + }, + { + id: "DwlFKzDSuQU", + }, + { + id: "doQq5EAf7vq", + }, + { + id: "wmW6SjWfH5B", + }, + { + id: "imvGVxzf1N9", + }, + { + id: "W7HR0cCgVt6", + }, + { + id: "CbIWQQoWcLc", + }, + { + id: "zrO4npQ018X", + }, + { + id: "NPhhXuDhbMX", + }, + { + id: "hBPtNXkQ3mP", + }, + { + id: "qzm5ww3U0vz", + }, + { + id: "IpA5FViU8tk", + }, + { + id: "O6uvpzGd5pu", + }, + { + id: "PnMPARoMhWW", + }, + { + id: "yjxkvIB90uc", + }, + { + id: "lOEIIgnccF2", + }, + { + id: "Yt1ctIEdE6P", + }, + { + id: "MkXOec5tfT1", + }, + { + id: "C9uduqDZr9d", + }, + { + id: "PEZNsGbZaVJ", + }, + { + id: "IgtXqhgIJVI", + }, + { + id: "Wbk6cHV6L2n", + }, + { + id: "uDzWmUDHKeR", + }, + { + id: "FoAz5tmFdt0", + }, + { + id: "PbXfxMxsMpw", + }, + { + id: "fFXEYa60KJs", + }, + { + id: "GYpd8O6nqQi", + }, + { + id: "J42QfNe0GJZ", + }, + { + id: "Zyi7lDEFXEV", + }, + { + id: "WGX1v9umWCm", + }, + { + id: "t2YFCWNaAtx", + }, + { + id: "Ozw43SfVIqw", + }, + { + id: "zQ2pFkzGtIg", + }, + { + id: "DfUfwjM9am5", + }, + { + id: "hmZE3mVAZFf", + }, + { + id: "z72Le3wcqyG", + }, + { + id: "gupMEWNKQkY", + }, + { + id: "VkEBjujtKen", + }, + { + id: "WSn6ylmgPcZ", + }, + { + id: "MI0iP5jfVeg", + }, + { + id: "u8PjuAqplGy", + }, + { + id: "u8lMFspZ968", + }, + { + id: "gqEGIDiISfS", + }, + { + id: "k1o0PL2BOP5", + }, + { + id: "qoZyfoQVyTD", + }, + { + id: "tAjzJmzmwK3", + }, + { + id: "KcCbIDzRcui", + }, + { + id: "K6JzYLJqF8x", + }, + { + id: "QqkbVLsixrY", + }, + { + id: "mYMJHVqdBKt", + }, + { + id: "pJj2r2HElLE", + }, + { + id: "s5w5VgDpqxj", + }, + { + id: "Jd7G0NYBTx1", + }, + { + id: "M9MBisTQQSe", + }, + { + id: "w3gDMjMLr32", + }, + { + id: "wZZORQPgn75", + }, + { + id: "BYXDipVSVn2", + }, + { + id: "OS3sXR5nkqM", + }, + { + id: "IJ2XzGcz1rh", + }, + { + id: "AiGBODidxPw", + }, + { + id: "SKJoPDgjELa", + }, + { + id: "LT5Erj2vDC6", + }, + { + id: "eCfxBe1lnxb", + }, + { + id: "HDOnfLXKkYs", + }, + { + id: "F0uVXCVvOPO", + }, + { + id: "cXMQtUId06K", + }, + { + id: "D9fzIxg5Nzz", + }, + { + id: "xAEfZFmflnp", + }, + { + id: "mG8adrrysc3", + }, + { + id: "Fbq6Vxa4MIx", + }, + { + id: "fYozk8EEYoJ", + }, + { + id: "eQJpYIDxGnN", + }, + { + id: "aVycEyoSBJx", + }, + { + id: "PYaPgbz8NlV", + }, + { + id: "Ck4TOMhszUb", + }, + { + id: "tlMeFk8C4CG", + }, + { + id: "H2LR1frzCo4", + }, + { + id: "BkXKLmM4SSe", + }, + { + id: "TxvZGvbZt2c", + }, + { + id: "PQZJPIpTepd", + }, + { + id: "r3xkvyHGZlY", + }, + { + id: "Ykx8Ovui7g0", + }, + { + id: "UZKttAHwQ3O", + }, + { + id: "YIjjlejd5fh", + }, + { + id: "wsHnzH0FiHu", + }, + { + id: "NAJaX88KJVs", + }, + { + id: "AFi1GjbeejL", + }, + { + id: "jaQTP2Jg3nj", + }, + { + id: "MUnd4KWox8m", + }, + { + id: "T1lTKu6zkHN", + }, + { + id: "w8ojPvnfjFU", + }, + { + id: "XmfqaErvQ2T", + }, + { + id: "oph70zH8JB2", + }, + { + id: "e89DjHAQkI7", + }, + { + id: "FVflWKHD6Ma", + }, + { + id: "zAyK28LLaez", + }, + { + id: "pRVReNCGtQX", + }, + { + id: "Zrq4LESheJZ", + }, + { + id: "rHNuReOeE6w", + }, + { + id: "TQkG0sX9nca", + }, + { + id: "xou1koq6X5Z", + }, + { + id: "oXOpq3xFqoa", + }, + { + id: "jCl2uN4KmkU", + }, + { + id: "daNrEWZCt7v", + }, + { + id: "LA2eqVd2UWw", + }, + { + id: "Z6bKbQFioAO", + }, + { + id: "yiIDLBWoovd", + }, + { + id: "DZaJmtlaBMl", + }, + { + id: "gZhwUZWynkd", + }, + { + id: "w5eAbH241Dp", + }, + { + id: "MjVr7jCutMQ", + }, + { + id: "AbNXiErdYYU", + }, + { + id: "DplgrYeRIZ1", + }, + { + id: "iWrCCRCqMTg", + }, + { + id: "GE25DpSrqpB", + }, + { + id: "My9TXwq4e3a", + }, + { + id: "sbbhhFgmNYo", + }, + { + id: "pNPmNeqyrim", + }, + { + id: "CaEVOrjbGZ8", + }, + { + id: "HAqUY00X9N5", + }, + { + id: "wg24GOkUqnM", + }, + { + id: "zmSzEw8GF2l", + }, + { + id: "HfM0x6fWUKW", + }, + { + id: "ZTK1Y2ZftV2", + }, + { + id: "B85qBFn0wBr", + }, + { + id: "ZJ6u61HhRVX", + }, + { + id: "Urk55T8KgpT", + }, + { + id: "EA4HtsQhkuQ", + }, + { + id: "HfXPzR1TukO", + }, + { + id: "eKcJJYxM5bZ", + }, + { + id: "v9lv6CYT69K", + }, + { + id: "MH1O2stu3Xk", + }, + { + id: "vNiekb7USFA", + }, + { + id: "BpWJ3cRsO6g", + }, + { + id: "GQr1SE7MPQp", + }, + { + id: "Vnc2qIRLbyw", + }, + { + id: "EE7ns6c8dR2", + }, + { + id: "iylpDxy3WMX", + }, + { + id: "tEgxbwwrwUd", + }, + { + id: "ei21lW7hFPX", + }, + { + id: "omf6FfS4ysx", + }, + { + id: "SZrG4yHGV4x", + }, + { + id: "DF76ZjQtFSg", + }, + { + id: "yAjUZ8itV2O", + }, + { + id: "Zo8SxVm8zzF", + }, + { + id: "froW8QOIDrm", + }, + { + id: "aEkkJNOW4NE", + }, + { + id: "fsJoSyVUFrL", + }, + { + id: "zyRTQBUnmHN", + }, + { + id: "c242hOcj0je", + }, + { + id: "Q7yTPmEVjGX", + }, + { + id: "DKZnUSfwjKx", + }, + { + id: "sNI8ZYGhosn", + }, + { + id: "YQYgz8exK9S", + }, + { + id: "lJ2cyJubvva", + }, + { + id: "GjJjES51GvK", + }, + { + id: "jNb63DIHuwU", + }, + { + id: "zgYDcAtX11n", + }, + { + id: "wZtcSVBwPk3", + }, + { + id: "jMfZnbGavPR", + }, + { + id: "DVjewuIdgMN", + }, + { + id: "OYu4rNy6BoX", + }, + { + id: "sX5KLZH61Bm", + }, + { + id: "mFyhkjQGryn", + }, + { + id: "H4YKbNXLTWR", + }, + { + id: "ipT3QbzIeyX", + }, + { + id: "Bpvug2zxHEZ", + }, + { + id: "BBBVY5bEPaV", + }, + { + id: "pVuRAzSstbn", + }, + { + id: "zw5ppT2dwZy", + }, + { + id: "spMBota7EJV", + }, + { + id: "Esi4BTsQPkI", + }, + { + id: "WBPidqcBN9I", + }, + { + id: "MPXjAuCEZbc", + }, + { + id: "U8gw2VESkMh", + }, + { + id: "bYvOB1fPNfS", + }, + { + id: "nbi5dTY4uJi", + }, + { + id: "PMa2VCrupOd", + }, + { + id: "QtKtTpKw7up", + }, + { + id: "m3VnSQbE8CD", + }, + { + id: "Xb8cGAjh70K", + }, + { + id: "UaLmb77kIEs", + }, + { + id: "aWsqwiwekso", + }, + { + id: "XIPfXr7M5hD", + }, + { + id: "RzgSFJ9E46G", + }, + { + id: "dGZbEZroAWr", + }, + { + id: "vt0Qgs3TSwf", + }, + { + id: "m04piiZQr7k", + }, + { + id: "dpCPH6CtfGM", + }, + { + id: "Ub2wH3CNEd7", + }, + { + id: "A1VVFDJWmMr", + }, + { + id: "RAPB2F35Ekj", + }, + { + id: "mLrrvPLjGiu", + }, + { + id: "mlwFz6XY7RD", + }, + { + id: "Dwg8bjQ95v5", + }, + { + id: "GIRLSZ1tB00", + }, + { + id: "zqiGf0gpDg1", + }, + { + id: "aWCGMEdIzi4", + }, + { + id: "k7Jz0QWEzJ8", + }, + { + id: "iWtgKW5yizV", + }, + { + id: "gufu2RqUmuS", + }, + { + id: "ThFWblIv3Xs", + }, + { + id: "fdloYAmU6Yj", + }, + { + id: "hSKG7zZ4ULB", + }, + { + id: "FkAEqvG9vKo", + }, + { + id: "TvPS2BxFsSC", + }, + { + id: "cQZ9So8eFID", + }, + { + id: "fiWcdY4wnjJ", + }, + { + id: "mfFOBmX4xEc", + }, + { + id: "dt7ptFUh3go", + }, + { + id: "dkmpOuVhBba", + }, + { + id: "FnLNrHP86sm", + }, + { + id: "wTHNIU9ea61", + }, + { + id: "zeKQE1sXgtP", + }, + { + id: "mFAF53qZpec", + }, + { + id: "LGR5WethiEH", + }, + { + id: "wpUXsfc50gu", + }, + { + id: "roQ2l7TX0eZ", + }, + { + id: "guWeClpAZ5t", + }, + { + id: "rZkUcho9Z65", + }, + { + id: "x3ti3t9eOuX", + }, + { + id: "JdrmEWlkpdM", + }, + { + id: "rdk2EQRUsrc", + }, + { + id: "M1WhdeTf5Pm", + }, + { + id: "CYWLqcwm9GX", + }, + { + id: "PNfvBIHIZI3", + }, + { + id: "afjyi5oHmrU", + }, + { + id: "SptGAcmbgPz", + }, + { + id: "zw7QKjueLpj", + }, + { + id: "olur2SZdQqC", + }, + { + id: "fKsdOUVTFup", + }, + { + id: "SdW7AIxQjzw", + }, + { + id: "rkJneAaZLlW", + }, + { + id: "KkHPtkgzKgt", + }, + { + id: "K7EUxhmIXoJ", + }, + { + id: "tJsgNjCb8b2", + }, + { + id: "wrQtiRVpMsV", + }, + { + id: "F0Up1u0BFFh", + }, + { + id: "IsEkYRf1MR1", + }, + { + id: "YIUBOkoQ3O4", + }, + { + id: "qaJ9GkmDG5S", + }, + { + id: "kBLwaiZSrRe", + }, + { + id: "RHJram03Rlm", + }, + { + id: "Ar4tSGSNxgk", + }, + { + id: "pnwgTcQLlIY", + }, + { + id: "ceA5XIhBuVq", + }, + { + id: "uRkeVypjduI", + }, + { + id: "pTVZ1Zz3DT6", + }, + { + id: "jhj2snTXQsO", + }, + { + id: "HRY7W2xFn7C", + }, + { + id: "c1bVC7ZKpXk", + }, + { + id: "qGhphtoDuF9", + }, + { + id: "gunXNgz60Vv", + }, + { + id: "gzSlLQ5bfFt", + }, + { + id: "ztlhMo0ZNhV", + }, + { + id: "P3MOVHqxd31", + }, + { + id: "VpT2s67diaS", + }, + { + id: "INA8czfW02J", + }, + { + id: "ZxQ4QMmwXNU", + }, + { + id: "VdXuxcNkiad", + }, + { + id: "DI5b3fbKeSZ", + }, + { + id: "UCgjym9Y5PL", + }, + { + id: "yvLPBoBydjF", + }, + { + id: "ko1lSrBATHX", + }, + { + id: "uNEhNuBUr0i", + }, + { + id: "VaoXm4lICCc", + }, + { + id: "Jiymtq0A01x", + }, + { + id: "oEgAw6YDyaZ", + }, + { + id: "dkcxja9eLmk", + }, + { + id: "g4l0cfvxBGR", + }, + { + id: "qj340arkHO6", + }, + { + id: "Umh4HKqqFp6", + }, + { + id: "AmVDB1jxL0V", + }, + { + id: "UYwlYm8PmUz", + }, + { + id: "RUj7Pm5nov7", + }, + { + id: "UqXSUMp19FB", + }, + { + id: "rxc497GUdDt", + }, + { + id: "quQpOfBIDFC", + }, + { + id: "D0iakqyTknH", + }, + { + id: "qOD07vxwbqz", + }, + { + id: "An8DTG2vyvR", + }, + { + id: "krNhKiOv76z", + }, + { + id: "SnYHrnchKjL", + }, + { + id: "rWaylf9zbJv", + }, + { + id: "bDK6cIausGI", + }, + { + id: "biAtcKrijjh", + }, + { + id: "TDJg50OCqnU", + }, + { + id: "k4NWA5Eecy7", + }, + { + id: "yZPsWcZC9WA", + }, + { + id: "mI6TumlhMsY", + }, + { + id: "YkjabQMwWSY", + }, + { + id: "Pr2stbkaSX3", + }, + { + id: "PzHggKApNEp", + }, + { + id: "c8hrVadlHaA", + }, + { + id: "vELaJEPLOPF", + }, + { + id: "tSBcgrTDdB8", + }, + { + id: "TrIXhUR4sDQ", + }, + { + id: "khWi4K8GC45", + }, + { + id: "INYdf2ZGJt4", + }, + { + id: "AzhfEjaa0iK", + }, + { + id: "LaxJ6CD2DHq", + }, + { + id: "inpc5QsFRTm", + }, + { + id: "jYPY8mT8gn6", + }, + { + id: "uzf88cNoiV6", + }, + { + id: "dU3vTbLRLHy", + }, + { + id: "c2EuZe9y4aM", + }, + { + id: "Wg8iDulhfOB", + }, + { + id: "dQbMXhfqs80", + }, + { + id: "ErEzlkXJb1r", + }, + { + id: "as1dnmlXLzG", + }, + { + id: "kFur7xPhpH9", + }, + { + id: "LiFStmSg6tU", + }, + { + id: "QFLpt9GLt7O", + }, + { + id: "Oo7N8aa4rqP", + }, + { + id: "whi8VZxQsLV", + }, + { + id: "t5OYn8b8EOk", + }, + { + id: "MMrdfNDfBIi", + }, + { + id: "QobI6tJAfj0", + }, + { + id: "m3oymufTfBh", + }, + { + id: "qxyUoF6NXkJ", + }, + { + id: "EzGbJniGiWl", + }, + { + id: "AIkmEEPvveh", + }, + { + id: "wRBibz76XHJ", + }, + { + id: "BTX4C42ybhE", + }, + { + id: "hv3AKXi9b2R", + }, + { + id: "BX8Rg0c8odq", + }, + { + id: "ChCeM6tH0rs", + }, + { + id: "xrzcm1FWvBF", + }, + { + id: "aUGI0fWqfym", + }, + { + id: "PKVE5CI8J31", + }, + { + id: "QZ5rmKrVleg", + }, + { + id: "zI7AWPJuHvs", + }, + { + id: "rmAS9Xy0KHQ", + }, + { + id: "eAFPQ6h5OVP", + }, + { + id: "BGyqawjqzGI", + }, + { + id: "qWBNBtlvo5n", + }, + { + id: "EmTN0L4EAVi", + }, + { + id: "lBeVyNgAorJ", + }, + { + id: "JttXgTlQAGE", + }, + { + id: "vIhGAp5N5vW", + }, + { + id: "WYLKzigewr9", + }, + { + id: "xvE8BZtT54o", + }, + { + id: "BXJnMD2eJAx", + }, + { + id: "oSXTrK6WYEO", + }, + { + id: "iBMgR8OJeDe", + }, + { + id: "UdnjL5aIJvP", + }, + { + id: "DlLBIHdpaTy", + }, + { + id: "VH7hLUaypel", + }, + { + id: "F8jA2OYicnT", + }, + { + id: "pMnWaF5RXg0", + }, + { + id: "YoPOL3tx0bb", + }, + { + id: "Y51kIJqEM02", + }, + { + id: "U7yKrx2QVet", + }, + { + id: "P3YSk7IN2eq", + }, + { + id: "R9PlP6Kps5z", + }, + { + id: "VSDIc0g3p33", + }, + { + id: "QII5GqfDfO3", + }, + { + id: "oZcCjwrbIKz", + }, + { + id: "O6y6WbAghnl", + }, + { + id: "PnNOuZdHIqG", + }, + { + id: "zgtSMt1VSVZ", + }, + { + id: "f6OiPBaI2eo", + }, + { + id: "W2KnxOMvmgE", + }, + { + id: "wuSwlbsk0im", + }, + { + id: "xynHvIgIgFw", + }, + { + id: "Y2uuyvKsbuR", + }, + { + id: "wuUqf1wueRZ", + }, + { + id: "RCzjHTTKtel", + }, + { + id: "zDuzwnbQOFT", + }, + { + id: "Ea3j0kUvyWg", + }, + { + id: "TWfHeGfGcWP", + }, + { + id: "GbWwMrFFYRt", + }, + { + id: "QsAwd531Cpd", + }, + { + id: "S7KwVLbFlss", + }, + { + id: "FBwh9zPFfou", + }, + { + id: "jVLn4RkYjo9", + }, + { + id: "C1tAqIpKB9k", + }, + { + id: "RANPcUxINhm", + }, + { + id: "hyLU8ivDJDi", + }, + { + id: "g7fSaXpPVc5", + }, + { + id: "B9RxRfRUi2R", + }, + { + id: "Si95KVfq81a", + }, + { + id: "hFanN2VKvCH", + }, + { + id: "AqvFmYsBVST", + }, + { + id: "uQQsAenwHZG", + }, + { + id: "LsCxV7cfiM1", + }, + { + id: "QLRuHeOqMsm", + }, + { + id: "Xcn3E6zk8Lu", + }, + { + id: "TeclkKWZ29A", + }, + { + id: "Xytauldn2QJ", + }, + { + id: "K4ypDWd8E2q", + }, + { + id: "hiqIAG8oG1b", + }, + { + id: "nq7F0t1Pz6t", + }, + { + id: "sHbLRZLmS4w", + }, + { + id: "XctPvvWIIcF", + }, + { + id: "bTKlyo7Gjx2", + }, + { + id: "YuFTTihVtOq", + }, + { + id: "wDrSPKn78dA", + }, + { + id: "WKLDzbD3xJ4", + }, + { + id: "vBXALSmjbvy", + }, + { + id: "n1ZtfmV5iXo", + }, + { + id: "cEGuHON3j3L", + }, + { + id: "OkEP0F800rb", + }, + { + id: "feGolnd9TUy", + }, + { + id: "RG6MGu5nUlI", + }, + { + id: "JEHwU064LAj", + }, + { + id: "RBkn3orPjiz", + }, + { + id: "KhVaRQpkxlO", + }, + { + id: "DEi9ozjiEPt", + }, + { + id: "oUM54gQRb63", + }, + { + id: "ju0MjL9fEGJ", + }, + { + id: "wB4R3E1X6pC", + }, + { + id: "DErmFP7bri7", + }, + { + id: "ZCFOvxRtTNa", + }, + { + id: "xMAhumLWbUj", + }, + { + id: "IDqnDXlk0i5", + }, + { + id: "ozb3tZ57TMc", + }, + { + id: "M2YKyPjsAYm", + }, + { + id: "DMk6LpMtUDz", + }, + { + id: "LqghfxcOSTN", + }, + { + id: "mP8GlE1ElQD", + }, + { + id: "NYDEsmbOovd", + }, + { + id: "JqpJN6ahuvo", + }, + { + id: "teRtPCqDgE6", + }, + { + id: "OpfZq5fSKDi", + }, + { + id: "n8UsOkSp3IJ", + }, + { + id: "pUZIL5xBsve", + }, + { + id: "bLYNonGzr0Y", + }, + { + id: "rebbn0ooFSO", + }, + { + id: "bkcLEIcXpDz", + }, + { + id: "mS6gjCre79w", + }, + { + id: "zobViLy7lWs", + }, + { + id: "yWgDMAeUum4", + }, + { + id: "pWutAn5p2Jc", + }, + { + id: "iMAqmLCM7pW", + }, + { + id: "GrhQXT38WfX", + }, + { + id: "C0aisGO8lgW", + }, + { + id: "z3GifKe9KnP", + }, + { + id: "jyukkJUmdng", + }, + { + id: "HgHlx5HTSiC", + }, + { + id: "CF05qjwGLtu", + }, + { + id: "iYDPhF4aS3Q", + }, + { + id: "uuIl8JqlsaW", + }, + { + id: "at6UHUQatSo", + }, + { + id: "HKopou9pAB6", + }, + { + id: "LMHQ2bwqVZb", + }, + { + id: "EjGlx5pUdAx", + }, + { + id: "ZWNfo2odfQB", + }, + { + id: "oheJlv56lNV", + }, + { + id: "qEQFWnKh4gs", + }, + { + id: "aXVvHwJXuzR", + }, + { + id: "GZwSA9KjcIL", + }, + { + id: "jrNABUMwWYU", + }, + { + id: "hih7BfD0mPe", + }, + { + id: "mMvt6zhCclb", + }, + { + id: "XGUOQaRUPjO", + }, + { + id: "ua3kNk4uraZ", + }, + { + id: "sZevo7lN0IZ", + }, + { + id: "hg3ypAkahoO", + }, + { + id: "F7u30K5OIpi", + }, + { + id: "ZW3XCXXiLcO", + }, + { + id: "iHQdnkj8ysv", + }, + { + id: "KtlCnh9ADLM", + }, + { + id: "YVVUHC0nsIT", + }, + { + id: "RwO0bsY4Qdy", + }, + { + id: "Ah2yYLjfXw5", + }, + { + id: "nhCwBn41HbZ", + }, + { + id: "ukJgi8P5Ozz", + }, + { + id: "tcEjL7gmFJL", + }, + { + id: "jZ99yOEvnFx", + }, + { + id: "QZtMuEEV9Vv", + }, + { + id: "N7mHLD3ljYc", + }, + { + id: "AAwPuBgINt5", + }, + { + id: "RXeDDKU26rB", + }, + { + id: "TMyRgQFgKi4", + }, + { + id: "KGN2jvZ0GJy", + }, + { + id: "axFuKtrQrz9", + }, + { + id: "udM6JqUcsiM", + }, + { + id: "LeE0YLhfYX4", + }, + { + id: "UtD5MsMyTrK", + }, + { + id: "zNBwz36UuyW", + }, + { + id: "VEfEyWiXDRm", + }, + { + id: "hgLfYL5bHiG", + }, + { + id: "xhmtefAZlNo", + }, + { + id: "WoqN1oUBX2R", + }, + { + id: "aw9nzUavZ2C", + }, + { + id: "cshDrVzDvA2", + }, + { + id: "ZcrjvJaYQb7", + }, + { + id: "QiDR0FAe3RM", + }, + { + id: "pITu8PZZwAX", + }, + { + id: "yai7m3X6xXL", + }, + { + id: "p1egLEARcZy", + }, + { + id: "rFYvWx4oMKa", + }, + { + id: "Mita3yG7aXx", + }, + { + id: "A6BVmKnCG9z", + }, + { + id: "KSRCzL2dHHo", + }, + { + id: "PkXxoEKbMYH", + }, + { + id: "Z7UAnjpK74g", + }, + { + id: "ZAGlASWwLnR", + }, + { + id: "kgrgx9lUOLL", + }, + { + id: "ZZmMpGIE7pD", + }, + { + id: "nFasRhFdGJr", + }, + { + id: "K8fyOKeq1my", + }, + { + id: "EuRxm058jNp", + }, + { + id: "SLus3WmxuP6", + }, + { + id: "X8DYqJWe7N2", + }, + { + id: "jhtj3eQa1pM", + }, + { + id: "qgQ49DH9a0v", + }, + { + id: "tUhIo8WWEp6", + }, + { + id: "s5aXfzOL456", + }, + { + id: "F4uBQ4jyAcX", + }, + { + id: "o9OLbcHWOS6", + }, + { + id: "g5lonXJ9ndA", + }, + { + id: "GvstqlRRnpV", + }, + { + id: "CTnuuI55SOj", + }, + { + id: "kbGqmM6ZWWV", + }, + { + id: "cKXicCOquXe", + }, + { + id: "wO4z5Aqo0hf", + }, + { + id: "C1kyEVrvVsR", + }, + { + id: "KjYGHFJP1EF", + }, + { + id: "X2C7qiFrnPc", + }, + { + id: "hqjyNM9rNFN", + }, + { + id: "m8qnxndRDR6", + }, + { + id: "XQeimQfReBQ", + }, + { + id: "O9Y65fwz0EZ", + }, + { + id: "PEZBhrM3olb", + }, + { + id: "hEjuxgJhaZD", + }, + { + id: "GyH8bjdOTsD", + }, + { + id: "FGfBgfSgtU1", + }, + { + id: "HCoggZyFGoF", + }, + { + id: "RUFLNSV96B9", + }, + { + id: "oxAoPoePpqy", + }, + { + id: "YpVol7asWvd", + }, + { + id: "VAL6bt6qZLW", + }, + { + id: "v20GQtLPipd", + }, + { + id: "tNNRPq9amd8", + }, + { + id: "XrF5AvaGcuw", + }, + { + id: "NU1xhBcfulk", + }, + { + id: "FJ67YZFK0BF", + }, + { + id: "FJFaJS52uJ4", + }, + { + id: "P18APgInH6h", + }, + { + id: "uD2UxwkzUZe", + }, + { + id: "w3vRmEz3J7t", + }, + { + id: "r0TCGeLkQKI", + }, + { + id: "kLTirjixtfx", + }, + { + id: "ZoHdXy2ueVn", + }, + { + id: "zn2a0SJnkFB", + }, + { + id: "s6IV3hOSft6", + }, + { + id: "jZQT732PZv7", + }, + { + id: "A4nMoLOGfBM", + }, + { + id: "ALZ2qr5u0X0", + }, + { + id: "YYf9h9gIwpW", + }, + { + id: "Jabrtlrhfg2", + }, + { + id: "fVXspSayPsp", + }, + { + id: "OlCQ3YdtfK9", + }, + { + id: "xiLDCJuhg0q", + }, + { + id: "IyCZTOLXUUy", + }, + { + id: "buVaSl3Fvs8", + }, + { + id: "neXhiINUSiH", + }, + { + id: "rYIkxCJFtTX", + }, + { + id: "gthKGm1k54k", + }, + { + id: "GkHpMSo5K60", + }, + { + id: "SebN7UV2WNg", + }, + { + id: "tWSCB8p6o3r", + }, + { + id: "hHbkFHHnGLL", + }, + { + id: "B2MYGHjDy4H", + }, + { + id: "NWgpyqNloqS", + }, + { + id: "ZEDKoJgFXPz", + }, + { + id: "EiARCmBCUyS", + }, + { + id: "zx3sP6ASgop", + }, + { + id: "NfE9gvFwLIF", + }, + { + id: "TbbjHIxGtTb", + }, + { + id: "Q59JcLOfIxn", + }, + { + id: "OwhDCucf4Ue", + }, + { + id: "vyOSHNNlu3t", + }, + { + id: "wcKAgJ6QvbI", + }, + { + id: "NGKCNTwKPQJ", + }, + { + id: "tF9sVDQ3v7n", + }, + { + id: "wUmVUKhnPuy", + }, + { + id: "exfs4Ituxk3", + }, + { + id: "aBIWEQRBLq6", + }, + { + id: "fjUeqXHcZM1", + }, + { + id: "At4rxDgjJRZ", + }, + { + id: "p3d71rTkD2z", + }, + { + id: "S98SPWCofg0", + }, + { + id: "qyMGuZ2UvEl", + }, + { + id: "KNMhaaSOKoJ", + }, + { + id: "yfk8mxlj5DF", + }, + { + id: "FbD5Z8z22Yb", + }, + { + id: "jIkxZKctVhB", + }, + { + id: "SkeA4IL72Ld", + }, + { + id: "Qpznxy9AOyt", + }, + { + id: "suFG8zx4bU3", + }, + { + id: "YTQRSW91PxO", + }, + { + id: "RAsstekPRco", + }, + { + id: "VnuFt8agQiq", + }, + { + id: "LPgtwcQsI3l", + }, + { + id: "b2n80jcLAAA", + }, + { + id: "QbodNMbKvx2", + }, + { + id: "ZCQTLSxANIq", + }, + { + id: "QmWe2rNcVo7", + }, + { + id: "IM9BKg9HTeC", + }, + { + id: "Kmu7ox2MiiU", + }, + { + id: "pR5hw6zSvkq", + }, + { + id: "ZquS8tb9amg", + }, + { + id: "YplgNARP2v9", + }, + { + id: "n2qFnUIhbq3", + }, + { + id: "fMyczldheOH", + }, + { + id: "xGY839b4oss", + }, + { + id: "MuZJ8lprGqK", + }, + { + id: "RwkdG4Pku2x", + }, + { + id: "otkxeFxVkzj", + }, + { + id: "c5b2mDxuc0l", + }, + { + id: "aLEI0weyyz3", + }, + { + id: "us7yjPh5iGX", + }, + { + id: "oUR5HPmim7E", + }, + { + id: "pcB6FLnqkJF", + }, + { + id: "VZ6Cocesljy", + }, + { + id: "AzecJfMwgEV", + }, + { + id: "IHa6fsNWsOZ", + }, + { + id: "GX6LzCzznCy", + }, + { + id: "Aly9adBnVU1", + }, + { + id: "jbfISeV6Wdu", + }, + { + id: "cUNdCErxl9g", + }, + { + id: "UqHuR4IYvTY", + }, + { + id: "BH2qZesoAeO", + }, + { + id: "xXhKbgwL39t", + }, + { + id: "yK4oZOB7EiG", + }, + { + id: "WsH059ZpmAs", + }, + { + id: "W43B6GUM2Tl", + }, + { + id: "r6QphTbnehw", + }, + { + id: "ogyO28fADpX", + }, + { + id: "YgZ4Z3kBRNl", + }, + { + id: "sNIfmLpAU19", + }, + { + id: "m0waywPx7OL", + }, + { + id: "ABEKZr3QWov", + }, + { + id: "DG5aYrAHXwK", + }, + { + id: "jIFemD5Wzt2", + }, + { + id: "Y76dJfBzES2", + }, + { + id: "MyCjnty1IsQ", + }, + { + id: "qKSq8mDlNy8", + }, + { + id: "Ur0muigzMHo", + }, + { + id: "QRnF3HksUMu", + }, + { + id: "bHcw141PTsE", + }, + { + id: "ylYQyiLa1nT", + }, + { + id: "jNDnGEHcwZP", + }, + { + id: "sKxtxvhr8KW", + }, + { + id: "McPuk9dcK0B", + }, + { + id: "xa4F6gesVJm", + }, + { + id: "D9rRHP0lKr8", + }, + { + id: "zajjkmuN1Ok", + }, + { + id: "roGdTjEqLZQ", + }, + { + id: "Ra2UWBS4gjX", + }, + { + id: "LBNgzOuABXB", + }, + { + id: "qa9Y0ezvop7", + }, + { + id: "g6y7PS0UQR4", + }, + { + id: "CWOTtvCDJYa", + }, + { + id: "U4lvyiEwooh", + }, + { + id: "XJGrj2dUvzx", + }, + { + id: "dQhvafG6jux", + }, + { + id: "PsNeguUSaVD", + }, + { + id: "NW2JvC6z5JS", + }, + { + id: "KKoPh1lDd9j", + }, + { + id: "dQ2QtHODZaO", + }, + { + id: "w9grWvUGdHu", + }, + { + id: "B4NHNb1Bm7A", + }, + { + id: "mr7OwDuAP4z", + }, + { + id: "QnX2a3zZOZ2", + }, + { + id: "PwgoRuWEDvJ", + }, + { + id: "tGf942oWszb", + }, + { + id: "jrfHAAMETHf", + }, + { + id: "cAEx4dZD2T2", + }, + { + id: "bIIZYa9z58q", + }, + { + id: "xMn4Wki9doK", + }, + { + id: "ulHTuGou4LR", + }, + { + id: "OzVuFaZgm5U", + }, + { + id: "AovmOHadayb", + }, + { + id: "xO7pyQJM2FV", + }, + { + id: "E4jn4059Y1x", + }, + { + id: "WMj6mBDw76A", + }, + { + id: "uH6gR3CtE3R", + }, + { + id: "Ls2ESQONh9S", + }, + { + id: "KaevAHPgkA8", + }, + { + id: "d9zRBAoM8OC", + }, + { + id: "y0tqazrZIlh", + }, + { + id: "ED3mZ9GQIKP", + }, + { + id: "HnttTTAMIt0", + }, + { + id: "V7r7FZmkoNj", + }, + { + id: "cerLzXA6f8o", + }, + { + id: "uoPC2z9r7Cc", + }, + { + id: "o3ZSHOjwZCT", + }, + { + id: "NjyJYiIuKIG", + }, + { + id: "OGOHhA2JITt", + }, + { + id: "NiBSqfOJTK9", + }, + { + id: "DuhEJ25cEfO", + }, + { + id: "GDpPwohmZR5", + }, + { + id: "EO6ghLtWv4W", + }, + { + id: "yCu3XEgT2YA", + }, + { + id: "N233eZJZ1bh", + }, + { + id: "tJ9NWrFQYIn", + }, + { + id: "RhvU7OcROij", + }, + { + id: "iohLy51Wucq", + }, + { + id: "DaX2xXnwnqR", + }, + { + id: "LXCVfc8Hq16", + }, + { + id: "Sg9hxZ10WLH", + }, + { + id: "rwTsaX9vYzs", + }, + { + id: "grqb8xgLgHX", + }, + { + id: "y8NVrM0dCbB", + }, + { + id: "MSjsRmnDHDU", + }, + { + id: "qmHCJU9rGxZ", + }, + { + id: "CibN8DH2dfX", + }, + { + id: "rQpKw6phGnI", + }, + { + id: "e45Eq2Bc9DN", + }, + { + id: "uMmRh1eO5Oi", + }, + { + id: "BDBXHeASwHl", + }, + { + id: "gv6r4BroPVG", + }, + { + id: "Lt8U7GVWvSR", + }, + { + id: "PXt5ELPbAgk", + }, + { + id: "lwHs72tP6Kh", + }, + { + id: "gO8VFUEuL8I", + }, + { + id: "Dp6XolEi9ka", + }, + { + id: "egjrZ1PHNtT", + }, + { + id: "OsiWXsujNmv", + }, + { + id: "tGw5maoBEKa", + }, + { + id: "JV9GsxSCUTD", + }, + { + id: "ZUPlEAO5sFR", + }, + { + id: "l8MAIijr4wE", + }, + { + id: "a9kwuVFl3qX", + }, + { + id: "IJAqv78eBQU", + }, + { + id: "SO8snoI3Klj", + }, + { + id: "JuqK6gPFZCa", + }, + { + id: "MJyiVDpQhtG", + }, + { + id: "XmHZS0AVSgH", + }, + { + id: "L2ZAOf3Ky6C", + }, + { + id: "xCozoBLImmX", + }, + { + id: "WKjhvY9SHet", + }, + { + id: "YryMezGzLlZ", + }, + { + id: "FV03hgATQ2H", + }, + { + id: "PQEpIeuSTCN", + }, + { + id: "LsSc30wIhtV", + }, + { + id: "Lvw2QTPcsJD", + }, + { + id: "E95jvXVcqLx", + }, + { + id: "vg68gZDgmsi", + }, + { + id: "vntT8vdy3Ww", + }, + { + id: "HVQ6gJE8R24", + }, + { + id: "q3vst3dBga3", + }, + { + id: "twKXygtEm9J", + }, + { + id: "o27TbVFUwdC", + }, + { + id: "DCsHuHs7KfX", + }, + { + id: "UE59KfabGJR", + }, + { + id: "Tby6SvmBySY", + }, + { + id: "AB6uIPosqgo", + }, + { + id: "ji9q5dX0h4v", + }, + { + id: "J0V9vIHbrdd", + }, + { + id: "mRtFgk14qta", + }, + { + id: "rvSZ34dc495", + }, + { + id: "VCtF1DbspR5", + }, + { + id: "y5EcobmRqlf", + }, + { + id: "gei3Sqw8do7", + }, + { + id: "KHLhO97w6II", + }, + { + id: "SQ44Hah4iK9", + }, + { + id: "QedXVQoxvRd", + }, + { + id: "a1JeE2czB2f", + }, + { + id: "w8JeMzShT3n", + }, + { + id: "ci68N9dQOfR", + }, + { + id: "kMTHqMgenme", + }, + { + id: "D6B4jrCpCwu", + }, + { + id: "KMYrKBgTklI", + }, + { + id: "jfs8iMB7kSh", + }, + { + id: "FPIeTw3A4Oh", + }, + { + id: "jaLbq15YhsN", + }, + { + id: "RpjUEvgWSNO", + }, + { + id: "zRoVj3nwHaf", + }, + { + id: "MrME31scKA1", + }, + { + id: "Kp4Q9nxrsH5", + }, + { + id: "mgEzZMPoVsM", + }, + { + id: "RjEISbzOwGa", + }, + { + id: "Eg9rjaJj9Zw", + }, + { + id: "eLLMnNjuluX", + }, + { + id: "rJ25bHbIujw", + }, + { + id: "hwntxYzze39", + }, + { + id: "TY1yPBvyMhT", + }, + { + id: "ee7ESKPY0SK", + }, + { + id: "LsYpCyYxSLY", + }, + { + id: "JOS7BDReyj7", + }, + { + id: "YXdC9hjYPqQ", + }, + { + id: "BedE3DKQDFf", + }, + { + id: "C7Ds3G2S2SI", + }, + { + id: "VTtyiYcc6TE", + }, + { + id: "w6naSlwGh2J", + }, + { + id: "nCh5dBoJVNw", + }, + { + id: "syXNwTNhT7P", + }, + { + id: "MmlCujRndkp", + }, + { + id: "DIQl5jJ17IE", + }, + { + id: "cMFi8lYbXHY", + }, + { + id: "nUuqLgn8Qc3", + }, + { + id: "SAxkZwvavKT", + }, + { + id: "Gp5aAebaSNK", + }, + { + id: "simyC07XwnS", + }, + { + id: "rTgtQxrvEPQ", + }, + { + id: "XbyObqerCya", + }, + { + id: "zXPBoSc4KyM", + }, + { + id: "xPtDHrAuPoA", + }, + { + id: "zBKIqG1R5g9", + }, + { + id: "NqWaKXcg01b", + }, + { + id: "iAj7Ewxdwa3", + }, + { + id: "krq8BqQbbmI", + }, + { + id: "ApLCxUmnT6q", + }, + { + id: "NqwvaQC1ni4", + }, + { + id: "QZzRkqdGjlm", + }, + { + id: "KBzvfYH2IA1", + }, + { + id: "uZsR1LdSFJB", + }, + { + id: "K3GDDEXSMQB", + }, + { + id: "kyATsd6uKiq", + }, + { + id: "NKiBpnUwO9p", + }, + { + id: "gPAjoiB5SX9", + }, + { + id: "tCKAurGbpq0", + }, + { + id: "TJGlQpCVTBe", + }, + { + id: "wsgR0GAzkyz", + }, + { + id: "cidLBZ9xWgf", + }, + { + id: "jyK8oiPuNMz", + }, + { + id: "SoTBFNQ4G14", + }, + { + id: "Vmsnp5hQl90", + }, + { + id: "ZKJnsGv2sWe", + }, + { + id: "FgHoAGcmrkX", + }, + { + id: "gJqN4yvssis", + }, + { + id: "eCXOR0L7v0X", + }, + { + id: "O2TL7mWlZ2b", + }, + { + id: "AHocmOz2L53", + }, + { + id: "wQBORtz3T9t", + }, + { + id: "fC4jfBrd5CT", + }, + { + id: "w7zPyExdAWn", + }, + { + id: "QFpqLHH7rCF", + }, + { + id: "v0HMlSxlH7l", + }, + { + id: "OTlKtnhvEm1", + }, + { + id: "OjXNuYyLaCJ", + }, + { + id: "Tp1KANrrTOJ", + }, + { + id: "Mi0QgAZ7jEG", + }, + { + id: "oztnomFGksy", + }, + { + id: "aq39jUFDoHX", + }, + { + id: "QN4te5Z5svQ", + }, + { + id: "TljiT6C5D0J", + }, + { + id: "o3PDrJRu66e", + }, + { + id: "gAOWmDrXMFh", + }, + { + id: "sWJnnEz3q2x", + }, + { + id: "AXZq6q7Dr6E", + }, + { + id: "PiXUQ8HA4d4", + }, + { + id: "dj6vtuKX6vj", + }, + { + id: "upteAwMwusK", + }, + { + id: "DxPNV7VHauJ", + }, + { + id: "RD5DzigDjiz", + }, + { + id: "PN5hDOhIIF1", + }, + { + id: "IGGWbCC8eF3", + }, + { + id: "I9JczYK377Z", + }, + { + id: "zKBGP6TDea4", + }, + { + id: "GWgBkEZXC02", + }, + { + id: "lyUQCDYniai", + }, + { + id: "CyAC5WEzrYz", + }, + { + id: "CENwKO2lr4x", + }, + { + id: "dwsSyf9njUn", + }, + { + id: "GUAyHWU9cCu", + }, + { + id: "Fhko00f3hXT", + }, + { + id: "bP3VpniJUYY", + }, + { + id: "a1E6QWBTEwX", + }, + { + id: "FdsFbCaN7Ja", + }, + { + id: "uGOpFqowOkm", + }, + { + id: "VassSilAL7I", + }, + { + id: "siaq8Je7jX1", + }, + { + id: "gfnaoSt0egS", + }, + { + id: "Tr6UmlJiq41", + }, + { + id: "Iq76Ca75nnj", + }, + { + id: "Jzh4P7p8Hbr", + }, + { + id: "zKC8EatPme1", + }, + { + id: "goGBnsehByC", + }, + { + id: "CKkE4GBJekz", + }, + { + id: "OXebNorOqcu", + }, + { + id: "DIHScLaWhLJ", + }, + { + id: "i0U0m9xZ57l", + }, + { + id: "zSNUViKdkk3", + }, + { + id: "RhDiD8ImCB0", + }, + { + id: "jOAIXvpGADD", + }, + { + id: "EwtpoSnkpxW", + }, + { + id: "BPxrc4Fl8nz", + }, + { + id: "O0Q3UNvaQEW", + }, + { + id: "Tm648BJovO9", + }, + { + id: "UrzvinLKbfv", + }, + { + id: "aRuJKmomHMG", + }, + { + id: "j57JudVQJtn", + }, + { + id: "mGMDZwsc7Le", + }, + { + id: "XRUD3Ij0OmQ", + }, + { + id: "jmIPBj66vD6", + }, + { + id: "YDDOlgRBEAA", + }, + { + id: "TGcwut79OuV", + }, + { + id: "GhDwjKv07iC", + }, + { + id: "S3eReuYVOb0", + }, + { + id: "ERmBhYkhV6Y", + }, + { + id: "jk1TtiBM5hz", + }, + { + id: "PMfipWHYbGl", + }, + { + id: "Zbp8TbiMKVc", + }, + { + id: "XLiqwElsFHO", + }, + { + id: "PrJQHI6q7w2", + }, + { + id: "HBhABfmZYjs", + }, + { + id: "GqgJjc3pRIM", + }, + { + id: "BNNSMEtV3Ip", + }, + { + id: "zKvDNHKAmFD", + }, + { + id: "T00ogLw26zJ", + }, + { + id: "Ep5iWL1UKvF", + }, + { + id: "rjABuELB5qH", + }, + { + id: "rm60vuHyQXj", + }, + { + id: "mZgIWuhdl7S", + }, + { + id: "tYM3Q7fGt2t", + }, + { + id: "WLcmiv8HoZg", + }, + { + id: "FTqS0LRJt5Q", + }, + { + id: "L05Bfpu7AcZ", + }, + { + id: "KIkeI99O52y", + }, + { + id: "XL745P4ETSL", + }, + { + id: "YuQRtpLP10I", + }, + { + id: "c7qin6VKPwa", + }, + { + id: "Jiyc4ekaMMh", + }, + { + id: "fnomliaZ2e6", + }, + { + id: "l0WRLZlEgB1", + }, + { + id: "svCLFkT99Yx", + }, + { + id: "vpNGJvZ0ljF", + }, + { + id: "jA0YloRLb1y", + }, + { + id: "LViiiQsryn1", + }, + { + id: "XQerhSrmhfi", + }, + { + id: "HT5fvEbXC77", + }, + { + id: "Gn7XMx9P7E8", + }, + { + id: "dC9cewXMORF", + }, + { + id: "MA15a0RFnXL", + }, + { + id: "SxrME3D8E0L", + }, + { + id: "j8QuHSoarWG", + }, + { + id: "RubFlO3k9HS", + }, + { + id: "I3NxIqG7bD4", + }, + { + id: "w43AtSki36B", + }, + { + id: "nDoybVJLD74", + }, + { + id: "VAvUYzmqjpN", + }, + { + id: "wXFl8kl4kIP", + }, + { + id: "DLVjfSI99Zy", + }, + { + id: "qgNo8tg3Di7", + }, + { + id: "ew7dnqz26G8", + }, + { + id: "QO9PT4p9cY8", + }, + { + id: "RaQGHRti7JM", + }, + { + id: "XHtkQoLWndu", + }, + { + id: "BG2fC2mRFOL", + }, + { + id: "hjqgB6hEdl3", + }, + { + id: "L1LgIDIrH2u", + }, + { + id: "gUrxduvyA88", + }, + { + id: "XXlzHWzhf5d", + }, + { + id: "vRMRu0aQ9jT", + }, + { + id: "BeyXziaxVq9", + }, + { + id: "ktYn8eqdPH0", + }, + { + id: "ovxTi8n3w10", + }, + { + id: "hPL3DXfnJQs", + }, + { + id: "IEX2ujGUPko", + }, + { + id: "FIS26MNECtG", + }, + { + id: "L4k4a0dpH2S", + }, + { + id: "tXL6C7P0ObJ", + }, + { + id: "vxExu6yOYLg", + }, + { + id: "mi4TEVsuCdU", + }, + { + id: "wN4d1O1bl70", + }, + { + id: "M6hljPzblFr", + }, + { + id: "OrWDfEktbpc", + }, + { + id: "LhScwLDVbWc", + }, + { + id: "wbd2RfvEdPO", + }, + { + id: "NylLchFHmmd", + }, + { + id: "vj0HUVazItT", + }, + { + id: "ItmNFu3zpe2", + }, + { + id: "YUjh5T11T8J", + }, + { + id: "s15Y0I2u3n9", + }, + { + id: "HZS30werfQI", + }, + { + id: "QkczRcSeNck", + }, + { + id: "tWjUy6MCx8q", + }, + { + id: "ynCknLU4yp0", + }, + { + id: "ev8vNoUt06h", + }, + { + id: "xmZNDeO0qCR", + }, + { + id: "jJLJVTp94ik", + }, + { + id: "SdfJMQNOHWR", + }, + { + id: "LqH7ZGU9KAx", + }, + { + id: "rIgJX4N0DGZ", + }, + { + id: "A0HKWFS2bXq", + }, + { + id: "BYQmclDY0kG", + }, + { + id: "ZE830mSvJIj", + }, + { + id: "STv4PP4Hiyl", + }, + { + id: "E7IDb3nNiW7", + }, + { + id: "u8JTnS25d14", + }, + { + id: "ikmWWl1lYQe", + }, + { + id: "GcwGqLqyi1M", + }, + { + id: "MpzW5fnjKm0", + }, + { + id: "WgpmqsXjMky", + }, + { + id: "nYiOoF2nXIr", + }, + { + id: "ZDq48uzhwgp", + }, + { + id: "ozJtldnzVci", + }, + { + id: "FFU3PJ3pY7s", + }, + { + id: "ou8aaIZ5JQG", + }, + { + id: "aWQTfvgPA5v", + }, + { + id: "aBFWK4fkCSp", + }, + { + id: "rQABSQJOmEl", + }, + { + id: "u6ZGNI8yUmt", + }, + { + id: "OuwX8H2CcRO", + }, + { + id: "QNKhE87p99N", + }, + { + id: "zXOXq5Z5k9Y", + }, + { + id: "AZ5X2CeTNsk", + }, + { + id: "xKQ2Len7DZW", + }, + { + id: "EBH26h8xEHS", + }, + { + id: "caJG6iqRw8v", + }, + { + id: "jXkJuHLkCUx", + }, + { + id: "Ti2u39leAyB", + }, + { + id: "RUCp6OaTSAD", + }, + { + id: "a6qzvruj6Yo", + }, + { + id: "wqbyzbQ78oI", + }, + { + id: "HtBpfusot9i", + }, + { + id: "DVBOvb8FN28", + }, + { + id: "KeRTMfobqNd", + }, + { + id: "DdbASCOt7vn", + }, + { + id: "cZtKKa9eJZ3", + }, + { + id: "aXnGiQGhOAj", + }, + { + id: "dEJMwPIUL9F", + }, + { + id: "EoCCYm3pwM5", + }, + { + id: "WVsJxenqmLu", + }, + { + id: "eNyv1VGkor6", + }, + { + id: "AJ2V28fscgu", + }, + { + id: "BkHC3TJjcHi", + }, + { + id: "Qu0QOykPdcD", + }, + { + id: "Q0HywoaWOcM", + }, + { + id: "kbwwO4MVVkF", + }, + { + id: "yN30LZEqji8", + }, + { + id: "vwvDblM3MNX", + }, + { + id: "Y0xDhcMWpZM", + }, + { + id: "o7qvXc3AcU0", + }, + { + id: "SFQMGHMYS1S", + }, + { + id: "NaVzm59XKGf", + }, + { + id: "XKFPtFUoQOw", + }, + { + id: "lf7FRlrchg3", + }, + { + id: "i7DUixndVFU", + }, + { + id: "u3rHGQGLLP7", + }, + { + id: "v7OOl5MQJ9P", + }, + { + id: "LkkRfdgIMHO", + }, + { + id: "bOqF2CguxWH", + }, + { + id: "yXBtSoD0IRS", + }, + { + id: "eNtRuQrrZeo", + }, + { + id: "pJv8NJlJNhU", + }, + { + id: "eWLJjzD9ICx", + }, + { + id: "So2b8zJfcMa", + }, + { + id: "oNrKKmm2dlf", + }, + { + id: "Q9DHKhuA5V9", + }, + { + id: "DUGVViJ74xV", + }, + { + id: "HMl96pTVhtF", + }, + { + id: "sT6f9A7siDE", + }, + { + id: "Zoy23SSHCPs", + }, + { + id: "lmNWdmeOYmV", + }, + { + id: "m21WB5iqHAb", + }, + { + id: "KLaXSsAgfZq", + }, + { + id: "iXSmKsku3Ne", + }, + { + id: "jtELMZtnJ8u", + }, + { + id: "Nc2ZV8p3kMc", + }, + { + id: "b2ejUUjMpSH", + }, + { + id: "EoxAZrVuKdk", + }, + { + id: "AqABf7CnBml", + }, + { + id: "sLKHXoBIqSs", + }, + { + id: "mUuCjQWMaOc", + }, + { + id: "PRpG2JzN6Bw", + }, + { + id: "QzPf0qKBU4n", + }, + { + id: "U8uqyDAu5bH", + }, + { + id: "JIXvu2GKUD0", + }, + { + id: "wONYHO8OqW0", + }, + { + id: "VVh6daodwip", + }, + { + id: "ADTKPTQYHYW", + }, + { + id: "PybxeRWVSrI", + }, + { + id: "G037PAPU5dO", + }, + { + id: "hzf90qz08AW", + }, + { + id: "ErnMNYzf4pG", + }, + { + id: "KLQ6EjYJtSs", + }, + { + id: "BhJwyLVNfcA", + }, + { + id: "TpqDscbLmkO", + }, + { + id: "z1hFWNXaAgG", + }, + { + id: "GTm8GEXKOsw", + }, + { + id: "oNqqmKD0zXj", + }, + { + id: "xcYd2l3lTt7", + }, + { + id: "vWXhyPAuad6", + }, + { + id: "vTx4EOyrchY", + }, + { + id: "bG0PlyD0iP3", + }, + { + id: "ekFsAHd8Vvc", + }, + { + id: "HQZrTUPppNA", + }, + { + id: "h5SRqGqzQFf", + }, + { + id: "vbc9y77gd3D", + }, + { + id: "C9c7ljhs5jQ", + }, + { + id: "uIiuIBInEE4", + }, + { + id: "b9tzz3V6E8C", + }, + { + id: "pafASdCcD3F", + }, + { + id: "C4IEy6sOsFF", + }, + { + id: "nyXKHCD6RyM", + }, + { + id: "fpoiR6W8HJD", + }, + { + id: "OTxN3Xr6RQr", + }, + { + id: "eigafNrAUJ2", + }, + { + id: "sEnmPtYa6Y1", + }, + { + id: "y77LiPqLMoq", + }, + { + id: "WBKkXqtW4jM", + }, + { + id: "FMTLXYK8vto", + }, + { + id: "qcjMMl3kRJi", + }, + { + id: "h0yeqL8UG60", + }, + { + id: "zarirFTbETw", + }, + { + id: "ujcXJx1wyma", + }, + { + id: "PLoeN9CaL7z", + }, + { + id: "TG80sobijni", + }, + { + id: "L4sGrTCjq5v", + }, + { + id: "c41XRVOYNJm", + }, + { + id: "m5BX6CvJ6Ex", + }, + { + id: "EknS8OEyuHh", + }, + { + id: "zo4GCx08IiQ", + }, + { + id: "tO01bqIipeD", + }, + { + id: "kDxbU1uSBFh", + }, + { + id: "d5TCI3X2KNe", + }, + { + id: "OtlPAL0mwS4", + }, + { + id: "c9wCIfbcyVo", + }, + { + id: "refSvcczxVN", + }, + { + id: "fXT1scbEObM", + }, + { + id: "kf6epm5PjDR", + }, + { + id: "flQBQV8eyHc", + }, + { + id: "xNc3QnURji6", + }, + { + id: "QFWdVc2gsOR", + }, + { + id: "ENhKQxBgy4x", + }, + { + id: "TyE10DGhTZt", + }, + { + id: "ajILkI0cfxn", + }, + { + id: "irs6pqxITRk", + }, + { + id: "RQgXBKxgvHf", + }, + { + id: "GbEIMKrTTuA", + }, + { + id: "iacIJtmOmZr", + }, + { + id: "IPpdr6vYRpp", + }, + { + id: "NnQpISrLYWZ", + }, + { + id: "xvJvLvwuYJf", + }, + { + id: "XkA2vbJAWHG", + }, + { + id: "ApJm3DbaVgj", + }, + { + id: "xpask7jp6zD", + }, + { + id: "gopPki3Td91", + }, + { + id: "XEY4IGqp1iZ", + }, + { + id: "KRAZiaejzfy", + }, + { + id: "SMNAb0b3wg4", + }, + { + id: "IOQJteT7lV3", + }, + { + id: "jgk0Lu2dHR4", + }, + { + id: "t3ZBEjKR5Fe", + }, + { + id: "p8I1jCARIlk", + }, + { + id: "QUPnbGNDxUf", + }, + { + id: "aZqXw77QmKa", + }, + { + id: "Vw6CNyFUeh9", + }, + { + id: "eJ9HKHJru29", + }, + { + id: "tNQw4owjQGF", + }, + { + id: "M6BCVT7IxBs", + }, + { + id: "KwjPvt4rggS", + }, + { + id: "J2KlzUHregx", + }, + { + id: "iGHlidSFdpu", + }, + { + id: "h2qqrkjSXo9", + }, + { + id: "qVvitxEF2ck", + }, + { + id: "Yrr7m6PaoOe", + }, + { + id: "taY1S1zmTQw", + }, + { + id: "JvG2cMIlEOo", + }, + { + id: "iglTBRgztSf", + }, + { + id: "LIOrpC8YMct", + }, + { + id: "wXwH5qm2qZa", + }, + { + id: "sF0bS2qEFSy", + }, + { + id: "KuKq7mafedt", + }, + { + id: "E72VbXF1fE1", + }, + { + id: "YtcaGQr8yyX", + }, + { + id: "qGMnda3wdGC", + }, + { + id: "S0IXhwQq5cE", + }, + { + id: "uedNhvYPMNu", + }, + { + id: "FxqBJWy8Pce", + }, + { + id: "Vth0fbpFcsO", + }, + { + id: "D1Iehj3CfaK", + }, + { + id: "cC03EwJLBiO", + }, + { + id: "PqTBRQeXkyH", + }, + { + id: "qKQWsqXzkfE", + }, + { + id: "zYUGiHTVY9I", + }, + { + id: "m0OUXDF73W4", + }, + { + id: "oCSkhmS12o7", + }, + { + id: "PYGrWaQUBDW", + }, + { + id: "iRPjJh7TaRw", + }, + { + id: "tyQJarXmdLc", + }, + { + id: "taKiTcaf05H", + }, + { + id: "Gyb5SWn4tsH", + }, + { + id: "qbqrFLCJewu", + }, + { + id: "KYXbIQBQgP1", + }, + { + id: "je00dYb0Fjt", + }, + { + id: "B3ysOUhhP50", + }, + { + id: "LnToY3ExKxL", + }, + { + id: "UdgnuDRXHKa", + }, + { + id: "kkM3AHiTZRy", + }, + { + id: "RarwVaP1miS", + }, + { + id: "Gtnbmf4LkOz", + }, + { + id: "AIM09vwxjoN", + }, + { + id: "xRd0xHrcIZZ", + }, + { + id: "KAUSOoBq5Ft", + }, + { + id: "cbzlO79fN3p", + }, + { + id: "ctN0WgIvfke", + }, + { + id: "FcQzzW6U8Y8", + }, + { + id: "MPqsNozhesT", + }, + { + id: "GelVgpRfBP0", + }, + { + id: "GM9ddjXIO5b", + }, + { + id: "tHm1GsDYnuz", + }, + { + id: "yZgW4ocTGgY", + }, + { + id: "kFScvrF3wPo", + }, + { + id: "nnCPMNv5lyk", + }, + { + id: "Q69n0EBG8qQ", + }, + { + id: "Qr41Mw2MSjo", + }, + { + id: "YQlYe58mcvr", + }, + { + id: "jkPHBqdn9SA", + }, + { + id: "ovqx1s4UvwX", + }, + { + id: "UBgShK573vu", + }, + { + id: "LUGqPutql0P", + }, + { + id: "TsS7lrq8T4E", + }, + { + id: "S04Pzo6A3PB", + }, + { + id: "ZNrY0pWI2OA", + }, + { + id: "H627AlofZ7M", + }, + { + id: "hSQTa9g0tAX", + }, + { + id: "PsaScwbmuZB", + }, + { + id: "DScDxDlwPah", + }, + { + id: "zUpyRGmtWRt", + }, + { + id: "B3BUoiHBUlm", + }, + { + id: "nodhR6M8qae", + }, + { + id: "E392epw5IwM", + }, + { + id: "ZKL5hlVG6F6", + }, + { + id: "tHn4CznxJ68", + }, + { + id: "XtSEz4PutDi", + }, + { + id: "G5FuODAbH6X", + }, + { + id: "hx5eqrPvIfz", + }, + { + id: "KPCzoj1FCus", + }, + { + id: "irVdYBmHBxs", + }, + { + id: "OfWmQyZmCxO", + }, + { + id: "GtJoxCaM2zg", + }, + { + id: "PyLBGdbzdEo", + }, + { + id: "jIrb5XckcU6", + }, + { + id: "culzJxfj21F", + }, + { + id: "olMCPYWjb7g", + }, + { + id: "g10jm7jPdzf", + }, + { + id: "GrwBI6ePkhI", + }, + { + id: "WdgS1JcBL2g", + }, + { + id: "P9mWsLb1iuy", + }, + { + id: "aR6wsq6SonE", + }, + { + id: "V1v67tAA0K3", + }, + { + id: "yPJ4Te5qM1h", + }, + { + id: "h0MSld1fn2I", + }, + { + id: "GGBRXgVQRdo", + }, + { + id: "jFAUfrT5Pfv", + }, + { + id: "RDhmsV3lHAN", + }, + { + id: "nurO6U9bOLi", + }, + { + id: "cZZG5BMDLps", + }, + { + id: "Lo5u78zjVmI", + }, + { + id: "HfVjCurKxh2", + }, + { + id: "mrBndhiKqjA", + }, + { + id: "ledzgtUphJj", + }, + { + id: "XB3Qj0kYF0f", + }, + { + id: "xKQXnxlPxU8", + }, + { + id: "bqAXudPlvhj", + }, + { + id: "yiHWwU1GwoZ", + }, + { + id: "tBZtbB7hx47", + }, + { + id: "YVub7QjM6T0", + }, + { + id: "VuKoJ8XY4rO", + }, + { + id: "XsVnQFeFyox", + }, + { + id: "wy6tbexg2nu", + }, + { + id: "uFp0ztDOFbI", + }, + { + id: "kqsWemfdGOQ", + }, + { + id: "vRC0stJ5y9Q", + }, + { + id: "FmdWGryL7z1", + }, + { + id: "KRY1k9epXli", + }, + { + id: "aF6iPGbrcRk", + }, + { + id: "mKOOL4LhZvt", + }, + { + id: "vlNXjc2lk9y", + }, + { + id: "oJTyrmGWHZh", + }, + { + id: "dyn5pihalrJ", + }, + { + id: "IxeN8shmAZ7", + }, + { + id: "b5EAvdBwDHG", + }, + { + id: "zv7j9KieSrq", + }, + { + id: "gZaCpLQkpeW", + }, + { + id: "uswM5xorTS7", + }, + { + id: "deJPfc9oLY5", + }, + { + id: "FllWYav6pG0", + }, + { + id: "gWSjWbnFlwI", + }, + { + id: "rx9ubw0UCqj", + }, + { + id: "hPFZ1G3jGm0", + }, + { + id: "aXsLBCzwYWW", + }, + { + id: "TOQP5dsGHqU", + }, + { + id: "xkeKLJUvGIc", + }, + { + id: "u5fdPkBPojq", + }, + { + id: "gAGXJVwvwme", + }, + { + id: "Ulwamw8vARR", + }, + { + id: "M9zdJTQx5tE", + }, + { + id: "Du1YtKyhrxi", + }, + { + id: "NR8ALkGErVJ", + }, + { + id: "G9InxHZh8GW", + }, + { + id: "XwJIW9a0fC8", + }, + { + id: "cKJCh06mzRd", + }, + { + id: "vjBQNAtngKg", + }, + { + id: "SxVc2y8PcxV", + }, + { + id: "Z4ta9ElJxxI", + }, + { + id: "OG3I3fdFo08", + }, + { + id: "FQ5CCuUKNLf", + }, + { + id: "iaiMSWX94Ml", + }, + { + id: "VfZnZ6UKyn8", + }, + { + id: "ZarzH6dbVZh", + }, + { + id: "wcHRDp21Lw1", + }, + { + id: "CSDGDOa7wHd", + }, + { + id: "KepKNYEgaCD", + }, + { + id: "jEy7oGUCFtW", + }, + { + id: "si34vmovtgR", + }, + { + id: "oiSllOTiHNx", + }, + { + id: "hh225P9zLrX", + }, + { + id: "Ieg2xum6dhc", + }, + { + id: "HXyVf1JN6NV", + }, + { + id: "tFSJeNF6qKT", + }, + { + id: "wkYbuEwNWyf", + }, + { + id: "bFx03Fvvd88", + }, + { + id: "JVe2ltng871", + }, + { + id: "Sc4OR4lxFfo", + }, + { + id: "GAbOhTpoEMC", + }, + { + id: "OKucwkQqPiR", + }, + { + id: "i0rpgbre6tW", + }, + { + id: "Eyj2kiEJ7M3", + }, + { + id: "lnbeMIB22aM", + }, + { + id: "zV1GjNSVQ0v", + }, + { + id: "YBZcWphXQ99", + }, + { + id: "WOk7efLlLSj", + }, + { + id: "zl33o8ENvDJ", + }, + { + id: "P8XdTqEDM6U", + }, + { + id: "GEbBu8ALs5H", + }, + { + id: "VSwnkMSAdp7", + }, + { + id: "qS9NEpGEhlr", + }, + { + id: "r06ohri9wA9", + }, + { + id: "GGDHb8xd8jc", + }, + { + id: "iQ99IjaXfIk", + }, + { + id: "UPTEK1slgAh", + }, + { + id: "vTbjX1lqHTW", + }, + { + id: "YvwYw7GilkP", + }, + { + id: "Zr7pgiajIo9", + }, + { + id: "IbYAr9jOADV", + }, + { + id: "I342IKVFy5C", + }, + { + id: "zEYrsiNUGIo", + }, + { + id: "T0CJY0T0doC", + }, + { + id: "UQFN0GRVfhY", + }, + { + id: "k1m6se9uYnI", + }, + { + id: "C7HvUkkFvye", + }, + { + id: "qcYG2Id7GS8", + }, + { + id: "vPKxHJ1og0r", + }, + { + id: "sfNljBgVKmV", + }, + { + id: "VbpwW3LqigE", + }, + { + id: "sm1kxCD7b6u", + }, + { + id: "eYWgLczvTCl", + }, + { + id: "kJq2mPyFEHo", + }, + { + id: "yGuL49Ynjd7", + }, + { + id: "ym42ZOlfZ1P", + }, + { + id: "wjP03y8OY5k", + }, + { + id: "CndfQLqrzwX", + }, + { + id: "cZxP4NE5O9z", + }, + { + id: "O6pfAFbVAAR", + }, + { + id: "JISSmwdk4NU", + }, + { + id: "ewh5SKxcCAl", + }, + { + id: "OXroFdR3EyB", + }, + { + id: "UXMQr8fupj6", + }, + { + id: "UgUcwzbEv2C", + }, + { + id: "ygDJ5pVQuUl", + }, + { + id: "EZPwuUTeIIG", + }, + { + id: "Fj2cWwnW67W", + }, + { + id: "Z2NT1Ymafhj", + }, + { + id: "z7ZpVK1KJqZ", + }, + { + id: "ohbMquuL4GQ", + }, + { + id: "ZVUYL1CCEru", + }, + { + id: "EVKYztE3n2q", + }, + { + id: "amgb83zVxp5", + }, + { + id: "wwn3ShjN7DW", + }, + { + id: "bSj2UnYhTFb", + }, + { + id: "Z7l1EF8BwqQ", + }, + { + id: "ky3niGS9snt", + }, + { + id: "kNv1M4eAZrW", + }, + { + id: "gicflGogPyB", + }, + { + id: "Aci4ywnNbGC", + }, + { + id: "va2lE4FiVVb", + }, + { + id: "q9dZvVjALQk", + }, + { + id: "sM4FFe8Ff9L", + }, + { + id: "kwvcZO19qQM", + }, + { + id: "duEzYSpwtQY", + }, + { + id: "S0q0jDkRS5v", + }, + { + id: "GpbNBF6zLVo", + }, + { + id: "I48Qu6R0sGm", + }, + { + id: "Tht0fnjagHi", + }, + { + id: "GUnP2Zi69UR", + }, + { + id: "BNFrspDBKel", + }, + { + id: "wfGRNqXqf92", + }, + { + id: "Jyv7sjpl9bA", + }, + { + id: "zLqJOW4aqN0", + }, + { + id: "GjWQK6UA4FO", + }, + { + id: "HTDuY3uxj6u", + }, + { + id: "Gba5bTc8NIg", + }, + { + id: "nKQkEAU9xQD", + }, + { + id: "fb3ZeWLrTRk", + }, + { + id: "Zwnfm4rnzbZ", + }, + { + id: "S1XGnpgsTkr", + }, + { + id: "jKZ0U8Og5aV", + }, + { + id: "wNiuQzpiKDE", + }, + { + id: "fkt6HkdVOIF", + }, + { + id: "N2HQSQCZlnp", + }, + { + id: "WycI6zp89Ao", + }, + { + id: "cfsA89Juy4o", + }, + { + id: "EC4YxFnP9zR", + }, + { + id: "wkYrcxc83vZ", + }, + { + id: "ffbwAzHSqa2", + }, + { + id: "HsvbqRnMox0", + }, + { + id: "qO108QL4ZRE", + }, + { + id: "sjujLORMIR6", + }, + { + id: "kr1iiFwbA2t", + }, + { + id: "TAB1ghnZRfd", + }, + { + id: "Jkp2ouJS4ud", + }, + { + id: "eRg3KZyWUSJ", + }, + { + id: "TA7NvKjsn4A", + }, + { + id: "Dod7Dy3zqTo", + }, + { + id: "fzBpuujglTY", + }, + { + id: "l4avWQJzaUD", + }, + { + id: "HRHahg3o1yJ", + }, + { + id: "JDvlTlYg9F5", + }, + { + id: "J7zgCvxwFJ1", + }, + { + id: "SsRIE10f1Ri", + }, + { + id: "cmsYbFLffFJ", + }, + { + id: "T05ZfxCpWml", + }, + { + id: "Nb7W7hkZMzF", + }, + { + id: "BET8jGOHdQk", + }, + { + id: "iFMlCv54LBA", + }, + { + id: "uAk40nFigUK", + }, + { + id: "L5gENbBNNup", + }, + { + id: "vkS4KwKghyc", + }, + { + id: "d9m5Z1gxxYf", + }, + { + id: "sx1q4RAWv3H", + }, + { + id: "ocLbXmLEv4X", + }, + { + id: "JJXqKSd1Q4F", + }, + { + id: "EK0LkzCzhFa", + }, + { + id: "iUFqF1BrehL", + }, + { + id: "t37BpImJzB4", + }, + { + id: "VkPhr6tHLbO", + }, + { + id: "AB92erHutCs", + }, + { + id: "qkN8w4WuGyL", + }, + { + id: "nRjIP2ZbFsE", + }, + { + id: "nhtrMy1GkC9", + }, + { + id: "FqGa96f9nrc", + }, + { + id: "XBvhfgIFhUH", + }, + { + id: "b4pMSkFyzNy", + }, + { + id: "SIjjJdXltXN", + }, + { + id: "ZW4Krr5ekhP", + }, + { + id: "JgAwun6NSKP", + }, + { + id: "zl0n5dVPAao", + }, + { + id: "Z8gNliJqFvQ", + }, + { + id: "WKCXKaymSfs", + }, + { + id: "DTA0hz0UVBT", + }, + { + id: "qx9Yd8Pzp6R", + }, + { + id: "jfV49JGnYKF", + }, + { + id: "tSGRiTiPmOb", + }, + { + id: "FNnj3jKGS7i", + }, + { + id: "kzzwX4uXz8u", + }, + { + id: "YR05MtmIsHc", + }, + { + id: "KxtLZtVmpur", + }, + { + id: "ZdPkczYqeIY", + }, + { + id: "eysrXX8Kz1H", + }, + { + id: "tZv3bARJ6Xx", + }, + { + id: "RJpiHpefEUw", + }, + { + id: "Ahh47q8AkId", + }, + { + id: "a8Vpk8kN25K", + }, + { + id: "MrWkmyh3Xa9", + }, + { + id: "zzbdqmpvTcI", + }, + { + id: "Pbl6opXm4qo", + }, + { + id: "p2SDZZGQnVn", + }, + { + id: "qhLg0XbN0kP", + }, + { + id: "ZU75pFfcxo0", + }, + { + id: "qBpVj3rOZ7N", + }, + { + id: "EshTcZgf2BM", + }, + { + id: "N4e23km7SaF", + }, + { + id: "G5R2dIcBCoi", + }, + { + id: "VUtTrc7utP1", + }, + { + id: "NHMs8vyPvz8", + }, + { + id: "G4zxaAFPFPy", + }, + { + id: "WtzbG2IRmsY", + }, + { + id: "tJf2E5dEvtX", + }, + { + id: "UaKn5BQ08fx", + }, + { + id: "dp5l9GiIJsi", + }, + { + id: "z2wbCSXk3cW", + }, + { + id: "kvkDWg42lHR", + }, + { + id: "zGNoSkzl7SA", + }, + { + id: "RDtWan9S5gP", + }, + { + id: "nmCNUOcr4mK", + }, + { + id: "l0Kf39kXCZ6", + }, + { + id: "R6fdoaVxlUn", + }, + { + id: "wsDfgp9cBd9", + }, + { + id: "uSZzbOgvLTj", + }, + { + id: "ZsjXrmZS59z", + }, + { + id: "AKhsislJnGf", + }, + { + id: "hwb4jbz5M6H", + }, + { + id: "RzeY1JckTlc", + }, + { + id: "Pc3JTyqnsmL", + }, + { + id: "ximj2aqLENv", + }, + { + id: "R9Uqa93ORxP", + }, + { + id: "Kb3255GCA3F", + }, + { + id: "kEkU53NrFmy", + }, + { + id: "gB4GSDPFSJJ", + }, + { + id: "yeGdf2Cdq4E", + }, + { + id: "WgOIxH2kYvX", + }, + { + id: "Bxd8IG5OQ4G", + }, + { + id: "cdWumlEJG5f", + }, + { + id: "zx8fvisx0SV", + }, + { + id: "UUgajyaViT7", + }, + { + id: "lG3ArWHewzy", + }, + { + id: "U2QkKSeyL5r", + }, + { + id: "bPHn9IgjKLC", + }, + { + id: "UWhv0MQOqoB", + }, + { + id: "kRWIof0qPJj", + }, + { + id: "en0j7qFnySQ", + }, + { + id: "XsB16iHtwLL", + }, + { + id: "OL2fM4ILLcX", + }, + { + id: "vc30HT4KC9H", + }, + { + id: "cg7ofS2cTgt", + }, + { + id: "VJ90d5AiL0j", + }, + { + id: "yg7uxUol97F", + }, + { + id: "D0rle7eePwK", + }, + { + id: "Fi5lLVwe1Th", + }, + { + id: "jukHQ4vGVon", + }, + { + id: "z4silfLpw2G", + }, + { + id: "Le6eLgfvOov", + }, + { + id: "g3AMPfZ7ZiD", + }, + { + id: "o0b4oNnXXNW", + }, + { + id: "bwJ8ZQRpz4c", + }, + { + id: "K6F3xMVCHZp", + }, + { + id: "KUZC2aERr27", + }, + { + id: "Wji6WkDisms", + }, + { + id: "bALwzGFMAQl", + }, + { + id: "u5KQNgeikiR", + }, + { + id: "weFldB8B2D7", + }, + { + id: "nDwbwJZQUYU", + }, + { + id: "z6v73gowbuM", + }, + { + id: "MX7QIZEGv1z", + }, + { + id: "GhXvo3BpCvo", + }, + { + id: "V0mxRyW7KdJ", + }, + { + id: "G6LbealddgU", + }, + { + id: "fDlx5LjHpYH", + }, + { + id: "uAmU0nbvA3o", + }, + { + id: "NLw9vq9pKvi", + }, + { + id: "afbJECZuqfP", + }, + { + id: "hDW65lFySeF", + }, + { + id: "ifw5aLygJEi", + }, + { + id: "g5A3hiJlwmI", + }, + { + id: "kntMUzl7Vt6", + }, + { + id: "cv4u66ALDFg", + }, + { + id: "XePkcmza9e8", + }, + { + id: "I2UpLHvMjgR", + }, + { + id: "szjf2SK42nL", + }, + { + id: "LJ8DtpJ4flg", + }, + { + id: "nKxeEfrnSdL", + }, + { + id: "yH1yrBlrr4R", + }, + { + id: "L4Tw4NlaMjn", + }, + { + id: "c3HzjfRfKiX", + }, + { + id: "OqBiNJjKQAu", + }, + { + id: "HlDMbDWUmTy", + }, + { + id: "AKvgfYx5WZq", + }, + { + id: "F483XRce1m9", + }, + { + id: "iJRE2BLh6sn", + }, + { + id: "FRaFNpjPG9b", + }, + { + id: "W9YGhDZ2FQ2", + }, + { + id: "EQUwHqZOb5L", + }, + { + id: "DxguTiXvIJu", + }, + { + id: "bHovE9LWbFd", + }, + { + id: "KuyxbV2Nqze", + }, + { + id: "HHz1kAG1LKn", + }, + { + id: "lEbejEUGi4U", + }, + { + id: "EZjyDAWzP5k", + }, + { + id: "L7hcovFqWhT", + }, + { + id: "zmYjMV1SwZs", + }, + { + id: "oOsDr78Hdlf", + }, + { + id: "hLGkoHmvBgI", + }, + { + id: "zfXBjurB08n", + }, + { + id: "yuycMF2PWDJ", + }, + { + id: "YpItyNr3TsM", + }, + { + id: "p5jIluxTBMQ", + }, + { + id: "o5QrJea3hop", + }, + { + id: "Xlibk6iuB0u", + }, + { + id: "PWc7FMcubFU", + }, + { + id: "RZ7wUXHfYj1", + }, + { + id: "AtZJOoQiGHd", + }, + { + id: "saaJmLlRp5l", + }, + { + id: "b5mAfoSIZjm", + }, + { + id: "R0CmUlFULXg", + }, + { + id: "i7Oh2tlkToJ", + }, + { + id: "jEew49Qso1Y", + }, + { + id: "nP6xqXEYoCI", + }, + { + id: "C9Hi4oLNbPT", + }, + { + id: "gNGMFC7HN1m", + }, + { + id: "w85lBgd8Ozk", + }, + { + id: "hKD6hpZUh9v", + }, + { + id: "YuXgvmUPQUM", + }, + { + id: "Ui2ZbWdaqQE", + }, + { + id: "yr4NhYRVa7I", + }, + { + id: "HTRE697c9L2", + }, + { + id: "FxuIRbiZ4hV", + }, + { + id: "yu4N82FFeLm", + }, + { + id: "RCGR1XLGfbP", + }, + { + id: "ltF8BmYAXpQ", + }, + { + id: "tiwFczgRiKS", + }, + { + id: "Zdv5VuPLcR6", + }, + { + id: "D0K3aQm4rCO", + }, + { + id: "tvL0wgcPNy2", + }, + { + id: "pmJPelI2gxt", + }, + { + id: "fYmE4ymzZSe", + }, + { + id: "rnjZOlisxNt", + }, + { + id: "ULAUNMsiNs6", + }, + { + id: "D54yChgQMHB", + }, + { + id: "cgOy0hRMGu9", + }, + { + id: "L3GgannGGKl", + }, + { + id: "uL6zylR3jlr", + }, + { + id: "g9xUM1x1f1i", + }, + { + id: "oBsvwwpprx9", + }, + { + id: "tzM2SYWNgqg", + }, + { + id: "koa3hwZZ2i7", + }, + { + id: "SC0nM3cbGHy", + }, + { + id: "Hoau0myphXO", + }, + { + id: "PdGktj8bAML", + }, + { + id: "vBe0u2ntm8E", + }, + { + id: "WPn76QAx02O", + }, + { + id: "HITLGuItseV", + }, + { + id: "Ep0VIcbxVYT", + }, + { + id: "zfaQmyZq12J", + }, + { + id: "dnolPQXGK0k", + }, + { + id: "YPSCWmJ3TyN", + }, + { + id: "vCNpM1fW28X", + }, + { + id: "ce3lpBZywaI", + }, + { + id: "w9XjBMJYL9R", + }, + { + id: "ipQBfevLRNY", + }, + { + id: "nI970DZUP2S", + }, + { + id: "m02LNOH0FnO", + }, + { + id: "jIFkAK9dkZc", + }, + { + id: "VZQiAPpGmc4", + }, + { + id: "yets9NmUcRS", + }, + { + id: "Y07XSHsIn0H", + }, + { + id: "PZmGrpH45To", + }, + { + id: "LlqR6cEoPLM", + }, + { + id: "e5sGsWLEn3k", + }, + { + id: "YR2phiIQG7W", + }, + { + id: "iQFooH7gLBu", + }, + { + id: "gjCk9nZSTFV", + }, + { + id: "GA7eQkgK5mX", + }, + { + id: "fmLRqcL9sWF", + }, + { + id: "sK498nBOLfQ", + }, + { + id: "zLiMZ1WrxdG", + }, + { + id: "etrIik4vsBQ", + }, + { + id: "OY7mYDATra3", + }, + { + id: "Enrtq0TAZbT", + }, + { + id: "eROJsBwxQHt", + }, + { + id: "eqPIdr5yD1Q", + }, + { + id: "ABflOZ825sR", + }, + { + id: "fRl8y3brzNs", + }, + { + id: "GacrQPaotcj", + }, + { + id: "jsCAWo4H2XY", + }, + { + id: "demQ6f1RIE7", + }, + { + id: "DbodMW8etVz", + }, + { + id: "O1KFJmM6HUx", + }, + { + id: "LX4dQpxRDQP", + }, + { + id: "rm6NgPbM6Ld", + }, + { + id: "DP7ul57BXfV", + }, + { + id: "V5PJCNBvOMI", + }, + { + id: "WDPpQ1veOTU", + }, + { + id: "SZA2xr3mtXX", + }, + { + id: "RB7Wk3Bkanr", + }, + { + id: "a29woOvBRyS", + }, + { + id: "RhJbg8UD75Q", + }, + { + id: "QabXL5zE6QT", + }, + { + id: "uclR4O1hgHm", + }, + { + id: "eKoXODABUJe", + }, + { + id: "J3wTSn87RP2", + }, + { + id: "BW4LeuJsVkK", + }, + { + id: "TNrbPsHN7SS", + }, + { + id: "MWqU4PC8cHf", + }, + { + id: "f5F2h5nQYpt", + }, + { + id: "GWj3b4sQLMX", + }, + { + id: "gP0YJiWbpx4", + }, + { + id: "JNvzwIsghFp", + }, + { + id: "xru21GTUWem", + }, + { + id: "egv5Es0QlQP", + }, + { + id: "UUWwmlKT7LF", + }, + { + id: "KgmZAfCkn0V", + }, + { + id: "L22BgG63Gdh", + }, + { + id: "Kjxd0EoIRDA", + }, + { + id: "GfF4Fs6WVHR", + }, + { + id: "eUYbyc0u76K", + }, + { + id: "kd2Aqw5S07V", + }, + { + id: "iaYwKUBe3tK", + }, + { + id: "SnCrOCRrxGX", + }, + { + id: "YmgS6GmnIow", + }, + { + id: "CFPrsD3dNeb", + }, + { + id: "JIGSt2z7z3B", + }, + { + id: "nbxNm1xJwCJ", + }, + { + id: "Nvdzxsib4Sw", + }, + { + id: "lBob31rp6l4", + }, + { + id: "Ax5rnzMMkvb", + }, + { + id: "ptc0SQi05E4", + }, + { + id: "ZLrE3dtwW1D", + }, + { + id: "R9gZAoI9aQM", + }, + { + id: "VjygCFzqcYu", + }, + { + id: "zMD9L7M0ud9", + }, + { + id: "bkMlhoccaVw", + }, + { + id: "IUpt00CkPmE", + }, + { + id: "KTr5koWXh9q", + }, + { + id: "ydKxDNkNAsU", + }, + { + id: "kS7pHZXopzA", + }, + { + id: "SharriCAkMQ", + }, + { + id: "VkqppzZLNLL", + }, + { + id: "RVAkLOVWSWc", + }, + { + id: "eBNqiLJ3sfJ", + }, + { + id: "YAuJ3fyoEuI", + }, + { + id: "v7e9KpbgmkI", + }, + { + id: "CobDmkiSe4h", + }, + { + id: "PhzcPiLjrrH", + }, + { + id: "HqhPgCS65Jh", + }, + { + id: "lkD3naG4ax6", + }, + { + id: "dWOAzMcK2Wt", + }, + { + id: "Wx0dXFfo1wR", + }, + { + id: "T62lSjsZe9n", + }, + { + id: "qh6q9I3acm3", + }, + { + id: "lAzsBmrrM1l", + }, + { + id: "HF2U1YQy3NS", + }, + { + id: "srBycbBSULq", + }, + { + id: "oiatYnkC0xR", + }, + { + id: "eSemCdQu2XS", + }, + { + id: "Yj2ni275yPJ", + }, + { + id: "UugO8xDeLQD", + }, + { + id: "hHehz7IW76W", + }, + { + id: "mQhJcEMG9y3", + }, + { + id: "Mkw9avwLBSZ", + }, + { + id: "Sr2fIwM4HAq", + }, + { + id: "HopqwnIwX8o", + }, + { + id: "MJD5N9louMg", + }, + { + id: "HqsTYTI4rwv", + }, + { + id: "UMgJ65eiOqd", + }, + { + id: "KHhOtoYiDOG", + }, + { + id: "aeLpS2dryoy", + }, + { + id: "RNuxv7YMzqB", + }, + { + id: "epvBZQq6CTi", + }, + { + id: "AHCKpHfBkoZ", + }, + { + id: "fNL2oehab2Q", + }, + { + id: "NE66StZ5Dt1", + }, + { + id: "TFvs004qHpM", + }, + { + id: "tr7lSKvLsL0", + }, + { + id: "hI1JTqpFoAw", + }, + { + id: "Wn6ZujgHttw", + }, + { + id: "w49gjOzrk5j", + }, + { + id: "qvHMAxtWWK6", + }, + { + id: "I8WZerBPhaQ", + }, + { + id: "MTcLzAqlOiw", + }, + { + id: "Rx6eKV1BSms", + }, + { + id: "F950Ll646Sk", + }, + { + id: "cJkZLwhL8RP", + }, + { + id: "CBqTcGLxusm", + }, + { + id: "CAJoIz40pbi", + }, + { + id: "W58U2NOn1UX", + }, + { + id: "Vo0l8SzUoOP", + }, + { + id: "aiuVvr2t649", + }, + { + id: "yGYdZBnuQY7", + }, + { + id: "Fvvv5R07GuP", + }, + { + id: "lurs9MeHo7D", + }, + { + id: "UqCHLYd6ZJW", + }, + { + id: "a6oBDolElj8", + }, + { + id: "vcY0lzBz6fU", + }, + { + id: "VwdFP03ucy2", + }, + { + id: "W2T8KfAgliR", + }, + { + id: "mGVQk2qGJ5h", + }, + { + id: "Q458LafO4aP", + }, + { + id: "bf6PXrSNMKK", + }, + { + id: "S9QckzKX6Lg", + }, + { + id: "i5YydYSv5bE", + }, + { + id: "mVvEwzoFutG", + }, + { + id: "HXxIkJo4UlH", + }, + { + id: "LEdm5rQP8ZG", + }, + { + id: "lKgrhFd77kC", + }, + { + id: "gcxxMvTpZGH", + }, + { + id: "tOSpBijyuSP", + }, + { + id: "PJyOAcjJqJY", + }, + { + id: "Rih8A7n4vMm", + }, + { + id: "zrFMzXTGW5t", + }, + { + id: "OjRCvy71kAL", + }, + { + id: "s7xmBrwbJ1H", + }, + { + id: "Bq5nb7UAEGd", + }, + { + id: "fdsRQbuuAuh", + }, + { + id: "RpKHc77sF9a", + }, + { + id: "yzg6w2Z0VP5", + }, + { + id: "EV7ppor0EwT", + }, + { + id: "yJ1xkKha5oE", + }, + { + id: "rtfBP41ZBm9", + }, + { + id: "qIpBLa1SCZt", + }, + { + id: "AAGsliLEzJX", + }, + { + id: "n3hEjfVRaS4", + }, + { + id: "HJEIIyE9GdO", + }, + { + id: "m9gDV2tgz0z", + }, + { + id: "G3TTx3HOIZu", + }, + { + id: "vyIl6s0lhKc", + }, + { + id: "OkxtrUIb1DQ", + }, + { + id: "fCgDm4aOcYI", + }, + { + id: "rBhEExYM6Vq", + }, + { + id: "qTlNI1m2sgI", + }, + { + id: "fqFVu2C1enW", + }, + { + id: "SoXpnYO84eZ", + }, + { + id: "iLMeoliS2AN", + }, + { + id: "McPfpt6KwJz", + }, + { + id: "ZzhFJdCxxSv", + }, + { + id: "DmaLM8WYmWv", + }, + { + id: "LyHInhcvcNy", + }, + { + id: "qqF8jshIs66", + }, + { + id: "IYGzwEzZ2fr", + }, + { + id: "aEZSG5x3mgb", + }, + { + id: "jqleTIQFNSd", + }, + { + id: "kKRNvJxeLch", + }, + { + id: "zOkSIyUWV3U", + }, + { + id: "QMQ1klif7av", + }, + { + id: "BTXwf2gl7av", + }, + { + id: "TpmPAwLDcLa", + }, + { + id: "CqARw68kXbB", + }, + { + id: "Pw9SihGDbZ5", + }, + { + id: "bD3kFBgrqMC", + }, + { + id: "XzmWizbR343", + }, + { + id: "NO7y7D7asHz", + }, + { + id: "wI9xZxHt1jj", + }, + { + id: "tMr3QrpNqyQ", + }, + { + id: "HNv1aLPdMYb", + }, + { + id: "IFXdzAk7hKi", + }, + { + id: "LAjmEPLQ9PC", + }, + { + id: "GM1OUpqchFe", + }, + { + id: "QDoO5r6Sae7", + }, + { + id: "UmJqV09CEWJ", + }, + { + id: "h6ZoU1gQKYP", + }, + { + id: "kBrq7i12aan", + }, + { + id: "YxDztbZTXq4", + }, + { + id: "xGMGhjA3y6J", + }, + { + id: "oxFD0KlrZtd", + }, + { + id: "KWfPakpFjLS", + }, + { + id: "WZ8PTx8qQlE", + }, + { + id: "FoalpnNhJW0", + }, + { + id: "tFvHbTHJgoB", + }, + { + id: "IQ19zVGMMwQ", + }, + { + id: "kVx7sKWnHRj", + }, + { + id: "EoIjKXqXxi2", + }, + { + id: "ZgiFBCF62hK", + }, + { + id: "PFZbQjwty2n", + }, + { + id: "WBHoS2ZAOIv", + }, + { + id: "KidcrTwhAKk", + }, + { + id: "YBs36SYidWh", + }, + { + id: "NwvNHaSq9wv", + }, + { + id: "ZanaTGoZue7", + }, + { + id: "QiClm2MWlj7", + }, + { + id: "PeHqCOu4cZP", + }, + { + id: "pKFHJ9TSt4P", + }, + { + id: "Luv2kmWWgoG", + }, + { + id: "d7hw1ababST", + }, + { + id: "ptsLFDDd6IX", + }, + { + id: "SPrA2zIBGja", + }, + { + id: "YVsbNJVobsS", + }, + { + id: "WbLB35N55WC", + }, + { + id: "Ugke7jbtPOy", + }, + { + id: "Prk2JLLN5i8", + }, + { + id: "HrzvYz8IOSC", + }, + { + id: "RPglyG8hqw5", + }, + { + id: "bmnv38d1IEK", + }, + { + id: "AoBGuzSTk0U", + }, + { + id: "cmPSxhmRYJW", + }, + { + id: "HeMdaG5s8nC", + }, + { + id: "yqS64vl7G1P", + }, + { + id: "Y8foq27WLti", + }, + { + id: "d9uZeZ5fMUo", + }, + { + id: "RJZZqHxP2ne", + }, + { + id: "Z4wpKievfTL", + }, + { + id: "mokUyyg3olJ", + }, + { + id: "qKcFZgrlhQt", + }, + { + id: "a5glgtnXJRG", + }, + { + id: "Wz4mt8VSO0m", + }, + { + id: "AekX8HBymng", + }, + { + id: "Q2p7krv0RMc", + }, + { + id: "piVtV8f412q", + }, + { + id: "aV9VVijeVB2", + }, + { + id: "BZhEn1RnSbD", + }, + { + id: "Y8k1IRo1Ln5", + }, + { + id: "ThyalKpbY0u", + }, + { + id: "Eg6BoufFtHv", + }, + { + id: "ObJjzhhBkfy", + }, + { + id: "TQ5DSmdliN7", + }, + { + id: "sYjp3h6amhA", + }, + { + id: "TEVtOFKcLAP", + }, + { + id: "LpBLQU5LUSc", + }, + { + id: "zHucVTWtUXj", + }, + { + id: "vPmz1XHxrdk", + }, + { + id: "pcRcnsa538F", + }, + { + id: "oqYCnVBaPJz", + }, + { + id: "djMCTPYvltl", + }, + { + id: "y5X4mP5XylL", + }, + { + id: "Em3Y3RuqPRL", + }, + { + id: "Q8oWscr9rlQ", + }, + { + id: "YtF7b5wZF9X", + }, + { + id: "LTH71qT4stu", + }, + { + id: "DqfiI6NVnB1", + }, + { + id: "QZCn0Ev62ts", + }, + { + id: "sz31bqLUP8N", + }, + { + id: "wO1L42u0DmW", + }, + { + id: "sTOXJA2KcY2", + }, + { + id: "MMoJe0cogFt", + }, + { + id: "p25EP2o81O5", + }, + { + id: "PD1fqyvJssC", + }, + { + id: "EK23juOVAl6", + }, + { + id: "AQzqUmyk77a", + }, + { + id: "us0xxLxntBg", + }, + { + id: "Brre03pQkKB", + }, + { + id: "ijOphJBiTaU", + }, + { + id: "tOApd6i1Bez", + }, + { + id: "keuLmDzEcvi", + }, + { + id: "IfR5RgZniUI", + }, + { + id: "avjYELHgGc1", + }, + { + id: "HSW6jjRtxPc", + }, + { + id: "QqXojKlexg4", + }, + { + id: "LzvoPaeLPsb", + }, + { + id: "MXTyJNDmm1c", + }, + { + id: "TiwqHog5Pm9", + }, + { + id: "EDxXfB4iVpY", + }, + { + id: "G8yK9Bepw42", + }, + { + id: "DaX05AyqXFn", + }, + { + id: "NVzgUowrSOa", + }, + { + id: "R97fheuFiA8", + }, + { + id: "d7aKeaLtl5H", + }, + { + id: "DcsBPtco15x", + }, + { + id: "tNs4E0JcMKe", + }, + { + id: "Pyj4rmNYykK", + }, + { + id: "sb7yo6CqPRc", + }, + { + id: "iIQENGb7za6", + }, + { + id: "ob0kaztYBdv", + }, + { + id: "QDBOBWKfXbA", + }, + { + id: "kV9Go9PIhNb", + }, + { + id: "is8feDhNqPX", + }, + { + id: "aicErb8rwn5", + }, + { + id: "awasdlCzJWN", + }, + { + id: "etAuK2ZAq1q", + }, + { + id: "b329FbO30R8", + }, + { + id: "nornKUJmQqn", + }, + { + id: "DR1ylsfwlou", + }, + { + id: "gPKC3fPPvf4", + }, + { + id: "VrDA0Hn4Xc6", + }, + { + id: "EH0dXLB4nZg", + }, + { + id: "tj62LBuY8T9", + }, + { + id: "Ikly4Z4FGzc", + }, + { + id: "QxBGpnmD55Y", + }, + { + id: "qYcajvL5vz5", + }, + { + id: "KBQJ21UsPon", + }, + { + id: "waNtxFbPjrI", + }, + { + id: "NNE0YMCDZkO", + }, + { + id: "sZJtRKtOgnJ", + }, + { + id: "LZclRdyVk1t", + }, + { + id: "Zr8devCnbIm", + }, + { + id: "s5Ci64rMR3d", + }, + { + id: "E2hb6s3lH64", + }, + { + id: "W49R7xMagRD", + }, + { + id: "SHLY5rkOFTQ", + }, + { + id: "FGbXmz7gTTl", + }, + { + id: "eEHJ4Dc5JWi", + }, + { + id: "NVm0zU0mvFp", + }, + { + id: "PB8FMGbn19r", + }, + { + id: "q23bFLr2E5D", + }, + { + id: "Exb5pgDiOAj", + }, + { + id: "m7ldr30TdVZ", + }, + { + id: "rhOji0GMfUj", + }, + { + id: "SekXdHQ6aKK", + }, + { + id: "Vcq8JVz8poZ", + }, + { + id: "wixrC3wAJA6", + }, + { + id: "vzvDeLsGsrw", + }, + { + id: "HtwlAiuRCzl", + }, + { + id: "z955P3cCmvA", + }, + { + id: "RuU0jXOLbe1", + }, + { + id: "g3O1pGAfgK1", + }, + { + id: "T2Cn45nBY0u", + }, + { + id: "Y1R97EeU06Y", + }, + { + id: "oF2TYKnfIWj", + }, + { + id: "XDo0i4HYDIK", + }, + { + id: "UjusePB4jmP", + }, + { + id: "VpYAl8dXs6m", + }, + { + id: "ANFOu7p0SGg", + }, + { + id: "aZeWNYkaVxL", + }, + { + id: "aM2d2D4BjzN", + }, + { + id: "ntQSuMb7J21", + }, + { + id: "d6MiRxVntQg", + }, + { + id: "jPLZRD86QwZ", + }, + { + id: "zsk7VH8ScI7", + }, + { + id: "rFelzKE3SEp", + }, + { + id: "G33Onfnan3c", + }, + { + id: "Bj6odIpPxqi", + }, + { + id: "I5UASyYTwW0", + }, + { + id: "nfOS8g8FtgQ", + }, + { + id: "PA1spYiNZfv", + }, + { + id: "fmJxz7vlEUw", + }, + { + id: "kNrVcNQ6qsI", + }, + { + id: "vSbt6cezomG", + }, + { + id: "DBhK2m4GMoM", + }, + { + id: "Crgx572DnXR", + }, + { + id: "BV4IomHvri4", + }, + { + id: "kSo9KSpHUPL", + }, + { + id: "kdCagzp8uMv", + }, + { + id: "FxosHxc7t87", + }, + { + id: "xEYNPdAGuwC", + }, + { + id: "jnDICAPS4q0", + }, + { + id: "bsnhEsnfD76", + }, + { + id: "lCEeiuv4NaB", + }, + { + id: "BhgdWzcplAh", + }, + { + id: "iMcanJLDED2", + }, + { + id: "ih77LC7LE1p", + }, + { + id: "fRV3Fhz1IP8", + }, + { + id: "jjUzdoQXtbE", + }, + { + id: "qO2JLjYrg91", + }, + { + id: "eWbOakzx0Q8", + }, + { + id: "wByqtWCCuDJ", + }, + { + id: "mC6RjftvQhz", + }, + { + id: "BURToloAWXS", + }, + { + id: "pICEZv79HeG", + }, + { + id: "XZnHggpP3SR", + }, + { + id: "gy8rmvYT4cj", + }, + { + id: "dCvUVvKnhMe", + }, + { + id: "J2R6QOcUAQR", + }, + { + id: "vpPDQ6CEGyu", + }, + { + id: "xT6gvoymbUO", + }, + { + id: "vpzCfUzeeP0", + }, + { + id: "LwiKtagwE8O", + }, + { + id: "DemWLYbM93Y", + }, + { + id: "Mavey9h4406", + }, + { + id: "vQ2TmL9rgCS", + }, + { + id: "EURoFVjowXs", + }, + { + id: "tMItDhNh4ro", + }, + { + id: "LhaAPLxdSFH", + }, + { + id: "dBARCog0xcp", + }, + { + id: "J8mn3SbuwWq", + }, + { + id: "yOHjReVbym3", + }, + { + id: "kqyeoWyfDmQ", + }, + { + id: "rb0VeLD7nl5", + }, + { + id: "ua5GXy2uhBR", + }, + { + id: "rR5trwf0mzT", + }, + { + id: "D6yiaX1K5sO", + }, + { + id: "BXd3TqaAxkK", + }, + { + id: "mGmu0GJ5neg", + }, + { + id: "kEgoAqyw74n", + }, + { + id: "pSWEnB9ljoU", + }, + { + id: "azRICFoILuh", + }, + { + id: "V09meXsQV80", + }, + { + id: "yTromKIC9FM", + }, + { + id: "xZiPfIy11Zu", + }, + { + id: "IakBJpJ6ZDk", + }, + { + id: "DYYAwRBoYG2", + }, + { + id: "AtJqbc0Zszr", + }, + { + id: "GJ5FftKqk3D", + }, + { + id: "iH79WhpsByj", + }, + { + id: "EYt6ThQDagn", + }, + { + id: "mhJQYk2Jwym", + }, + { + id: "LOpWauwwghf", + }, + { + id: "qlTTJxZeVif", + }, + { + id: "ZYujNWJGn5B", + }, + { + id: "hvzlCxhEjrm", + }, + { + id: "myQ4q1W6B4y", + }, + { + id: "hoJ0Do9loZl", + }, + { + id: "XMolxZe0muS", + }, + { + id: "CYQCkGDwRYo", + }, + { + id: "ScqmhWxlFKJ", + }, + { + id: "ARAZtL7Bdpy", + }, + { + id: "dnWRXzgCyMq", + }, + { + id: "M9JyYBZTqR7", + }, + { + id: "LfTkc0S4b5k", + }, + { + id: "nxxeV8NmQpg", + }, + { + id: "wNfup47fRLd", + }, + { + id: "koPeSBICmrp", + }, + { + id: "LxAgA2Bm0pT", + }, + { + id: "ZddwSsiUgZ8", + }, + { + id: "Yl8UKSTO67F", + }, + { + id: "MtfWCbwa642", + }, + { + id: "zsXEXZmu6Yw", + }, + { + id: "Zq9ATbrmKIa", + }, + { + id: "DJr17K6RWzO", + }, + { + id: "EVkm2xYcf6Z", + }, + { + id: "ztBrg9qunbt", + }, + { + id: "BguNKdpxjhm", + }, + { + id: "SVT9bPZYGIP", + }, + { + id: "JOwgBUshZbD", + }, + { + id: "qK93EXF2leZ", + }, + { + id: "YQoiLO0wW9c", + }, + { + id: "g7lwEV8YnDI", + }, + { + id: "x9Yha6Bh3RA", + }, + { + id: "ewEGG99XfMp", + }, + { + id: "CahLNSzbBpq", + }, + { + id: "jd6BGbckMLk", + }, + { + id: "m0XorV4WWg0", + }, + { + id: "EXbPGmEUdnc", + }, + { + id: "nsu5qQPSbmC", + }, + { + id: "VC76hlMJ8Sn", + }, + { + id: "E19k4iMWltN", + }, + { + id: "lYIM1MXbSYS", + }, + { + id: "dmdYffw2I0F", + }, + { + id: "f8iguhYJHxi", + }, + { + id: "HHc5HDPFlXy", + }, + { + id: "jRSMyGwWpgG", + }, + { + id: "HQoxFu4lYPS", + }, + { + id: "zCSWBz2pyMd", + }, + { + id: "JiEz2VDLwHY", + }, + { + id: "DaYbnmWAdej", + }, + { + id: "aLA5KT9vmcO", + }, + { + id: "Mqh89YdVBta", + }, + { + id: "jjVHfP0FWJM", + }, + { + id: "QYNZAoEMnXz", + }, + { + id: "nmuJUIvCOD7", + }, + { + id: "PuZOFApTSeo", + }, + { + id: "d9DswmF2WMr", + }, + { + id: "JZraNIfZ5JM", + }, + { + id: "KSdZwrU7Hh6", + }, + { + id: "R5Lb5QQGX7h", + }, + { + id: "aNcQexQPIkM", + }, + { + id: "CZuxmHjqpGK", + }, + { + id: "yG6fyAnQWCu", + }, + { + id: "GfSPTQGs3kE", + }, + { + id: "n0WeUOPcAwp", + }, + { + id: "NadEpHzevJj", + }, + { + id: "gtsQXHLGam2", + }, + { + id: "cwdAq1qSfEc", + }, + { + id: "p4JXdGK2NxW", + }, + { + id: "EMD1WemnCBW", + }, + { + id: "lpQvlm9czYE", + }, + { + id: "BgOhMcH9bxq", + }, + { + id: "wVK6JEUa3dg", + }, + { + id: "i7qaYfmGVDr", + }, + { + id: "qthyWVbotQC", + }, + { + id: "SpXVXzLd4J7", + }, + { + id: "VNwopsb7kn9", + }, + { + id: "RAm8A7loeoh", + }, + { + id: "NLN0MvWv9tl", + }, + { + id: "Xu0K6Z3qNO2", + }, + { + id: "FRr5D0NPON7", + }, + { + id: "M721NHGtdZV", + }, + { + id: "R2JKPCa46HW", + }, + { + id: "WgRFdBTdfQi", + }, + { + id: "K6oyIMh7Lee", + }, + { + id: "eoYV2p74eVz", + }, + { + id: "MU5VPuk3rW5", + }, + { + id: "PYMvB4nTFST", + }, + { + id: "Mv8OFlBpIPu", + }, + { + id: "V7Pjg9rw6N0", + }, + { + id: "OtWItoNqhys", + }, + { + id: "Q0n5FKoUS6l", + }, + { + id: "K3jhn3TXF3a", + }, + { + id: "QLFj5cZQWLj", + }, + { + id: "VH8vOjm0l8w", + }, + { + id: "Sgwptmcdflt", + }, + { + id: "yY8WLY9gRhm", + }, + { + id: "huf8ceU9WYg", + }, + { + id: "p9TMrt2mad3", + }, + { + id: "e1kLtVA3TED", + }, + { + id: "q6r94UZtgFo", + }, + { + id: "bM4Ky73uMao", + }, + { + id: "uYTq3TEO2a9", + }, + { + id: "Cjm8qD18Tr6", + }, + { + id: "nR7quusz3YP", + }, + { + id: "ZVsFK9S7iCz", + }, + { + id: "t8FylEz1hCS", + }, + { + id: "HZj9UP8uBXt", + }, + { + id: "RNGpZqutw3Y", + }, + { + id: "bT61pZ5HhoC", + }, + { + id: "rCKWdLr4B8K", + }, + { + id: "Vd1VRROd6Yy", + }, + { + id: "XiORvSsxn6s", + }, + { + id: "KcfIT29zGR7", + }, + { + id: "PhYZwGdtc6z", + }, + { + id: "wbtk73Zwhj9", + }, + { + id: "z5f0B6XGCmu", + }, + { + id: "AbLXaU1VKr2", + }, + { + id: "aKS2NUuvDBI", + }, + { + id: "xIKjidMrico", + }, + { + id: "mmpRXEalGoK", + }, + { + id: "IgtkLK0QFdh", + }, + { + id: "FvlL9KrAuYY", + }, + { + id: "YIxNlLm0yes", + }, + { + id: "rMLOSHsF0Yr", + }, + { + id: "GAvxcmr5jB1", + }, + { + id: "FAiKX1Jusu1", + }, + { + id: "h9q3qixffZT", + }, + { + id: "lemiKyVbgZn", + }, + { + id: "Hw1gDxNAYDL", + }, + { + id: "XtuhRhmbrJM", + }, + { + id: "QaPiKeYunF8", + }, + { + id: "PHo0IV7Vk50", + }, + { + id: "SFQblJrFblm", + }, + { + id: "pzbyaPNmCq6", + }, + { + id: "vPz4Irz7sxR", + }, + { + id: "LQHcC0TpbgQ", + }, + { + id: "m8aR0OQcDHv", + }, + { + id: "xd7F2Vnojzu", + }, + { + id: "lJTycmnbJIZ", + }, + { + id: "lKyrJXUZ7YS", + }, + { + id: "Z3mlfLeGQKp", + }, + { + id: "fNWPolZ9PMP", + }, + { + id: "DXegteybeb5", + }, + { + id: "Lci2Z5GKzx0", + }, + { + id: "a7doBBQzhJO", + }, + { + id: "l0ccv2yzfF3", + }, + { + id: "KMM6ALhQajz", + }, + { + id: "b7cYhnrFPUE", + }, + { + id: "MrfgzMnTIIW", + }, + { + id: "d6U5WUIGdJ7", + }, + { + id: "U1Y7swBzvRH", + }, + { + id: "qAFXoNjlZCB", + }, + { + id: "ejHozNnIdYG", + }, + { + id: "i6TCJEwssdE", + }, + { + id: "gtz3H5ccKZp", + }, + { + id: "lBkL9Poo7Xi", + }, + { + id: "RzfY7S4ALSH", + }, + { + id: "BqgmdYb2XTD", + }, + { + id: "fCFdj2T0Bq1", + }, + { + id: "S6KDC0jVhmD", + }, + { + id: "lscAsvBERtm", + }, + { + id: "PC3Ag91n82e", + }, + { + id: "ukvQBoBpWC1", + }, + { + id: "DMnt8N2ad3d", + }, + { + id: "DFNIFugTNcZ", + }, + { + id: "erqWTArTsyJ", + }, + { + id: "RFbtLkjhCUO", + }, + { + id: "mwN7QuEfT8m", + }, + { + id: "MBtmOhLs7y1", + }, + { + id: "E7LyAixSNEK", + }, + { + id: "p5vBB8iIOOy", + }, + { + id: "rXLor9Knq6l", + }, + { + id: "i6ZbkohHBsj", + }, + { + id: "Vcj6JJPBiSt", + }, + { + id: "M5gKSBoxeep", + }, + { + id: "iB2ZwGB842F", + }, + { + id: "pD8vik52aMk", + }, + { + id: "fvytjjnlQlK", + }, + { + id: "q3IbFJqsrvz", + }, + { + id: "lekPjgUm0o2", + }, + { + id: "ZALwM386w0T", + }, + { + id: "GTOQ2d0t0do", + }, + { + id: "SXWM1Q8m1GN", + }, + { + id: "dndTPmwDGyL", + }, + { + id: "rDfBWRlOOzD", + }, + { + id: "HFyjUvMjQ8H", + }, + { + id: "AVIZ5ZmCfA9", + }, + { + id: "sNBBf6HAaH7", + }, + { + id: "aVrmuhgPS9w", + }, + { + id: "Xu84rwlxASh", + }, + { + id: "QwMiPiME3bA", + }, + { + id: "zUdyiCV4CIs", + }, + { + id: "BVbil8QSUb3", + }, + { + id: "JQgs5AHDtid", + }, + { + id: "c7zBrtqOsf1", + }, + { + id: "XWRW9uHOlji", + }, + { + id: "Dw9I1vovUKY", + }, + { + id: "s2B7yvIFWwN", + }, + { + id: "rZa6Gr64Xq8", + }, + { + id: "dQgml7fcQXX", + }, + { + id: "rNaQEFRINbd", + }, + { + id: "r93q83kZoR9", + }, + { + id: "KCKsJOVndMZ", + }, + { + id: "L7gCR3dZF7x", + }, + { + id: "xE0XNP4e8vw", + }, + { + id: "F8uETYHaq9b", + }, + { + id: "TVII8EAwRTK", + }, + { + id: "yeuwqWrKjmt", + }, + { + id: "jHxL0gO9f2c", + }, + { + id: "sWZc9LfyOVb", + }, + { + id: "Z9QaI6sxTwW", + }, + { + id: "W6WHgzudBLK", + }, + { + id: "BnVjTzwis3o", + }, + { + id: "AlLmKZIIIT4", + }, + { + id: "V4ryZDSqFEK", + }, + { + id: "pJtnoiKxxMK", + }, + { + id: "AGrsLyKWrVX", + }, + { + id: "WoXiD46mGLe", + }, + { + id: "TkhwySsXC5V", + }, + { + id: "Csfn91puNQJ", + }, + { + id: "MppeufK8EIn", + }, + { + id: "vHkm3AJs1fm", + }, + { + id: "isppoCyGeei", + }, + { + id: "WJOMQq7KDBR", + }, + { + id: "JVnOe8yAq8N", + }, + { + id: "iTdfO09Pzko", + }, + { + id: "OgkR7quvLp7", + }, + { + id: "KFhJrkqnrnb", + }, + { + id: "ywHRE9TZ7CG", + }, + { + id: "esMAQ4vs4kM", + }, + { + id: "RN4xlSim6P3", + }, + { + id: "oXhpGsnm8Al", + }, + { + id: "tpeEG9eMRs5", + }, + { + id: "YnuwSqXPx9H", + }, + { + id: "NGJpKYKBer0", + }, + { + id: "OptJ7lOSfhV", + }, + { + id: "j0Dh90jG7Bj", + }, + { + id: "yDFM5J6WeKU", + }, + { + id: "EQc3n1juPFn", + }, + { + id: "vJ5mIf3sMgQ", + }, + { + id: "Nc0Jyfl41Fh", + }, + { + id: "VwOK4c13bDS", + }, + { + id: "YVdXYdu7Nqd", + }, + { + id: "M1qT3oCDwLF", + }, + { + id: "cyWSuKy2Kxx", + }, + { + id: "QuzM0smriDe", + }, + { + id: "awrM2eC2drd", + }, + { + id: "HluzDcVACRb", + }, + { + id: "oKwe9PMQhgo", + }, + { + id: "SQz3xtx1Sgr", + }, + { + id: "xIMxph4NMP1", + }, + { + id: "QCnJDmNjQy0", + }, + { + id: "Mi4Ax9suQmB", + }, + { + id: "LmRTf03IFkA", + }, + { + id: "EDHO4qOyY88", + }, + { + id: "WAjjFMDJKcx", + }, + { + id: "wcMOF23a1iw", + }, + { + id: "EeCYRgueWay", + }, + { + id: "IdXZ8KjGdlh", + }, + { + id: "JQr6TJx5KE3", + }, + { + id: "XQNCmYG6Whk", + }, + { + id: "iIpPPnnzDo6", + }, + { + id: "xLcBMDfJA1C", + }, + { + id: "iKAl5SWJrSK", + }, + { + id: "aiMSdypuNTg", + }, + { + id: "nc6vPP1N00J", + }, + { + id: "AjElim7bJSx", + }, + { + id: "msH78gZ7Fe6", + }, + { + id: "nuzj6P2AUM4", + }, + { + id: "Wg3UgsYrKlq", + }, + { + id: "Ucvn27dv6BC", + }, + { + id: "oIgBLlEo6eH", + }, + { + id: "mhb7WAKFGyQ", + }, + { + id: "duGLGssecoD", + }, + { + id: "e9iwTgr6lYJ", + }, + { + id: "rqG9HUvb3R9", + }, + { + id: "APf6lrzVwj2", + }, + { + id: "AkxQa6jQIJg", + }, + { + id: "xqd3HhbaMtp", + }, + { + id: "W5uwdNcVITg", + }, + { + id: "pcA1rkwOxbI", + }, + { + id: "qIwuQ4oLKC1", + }, + { + id: "VQ3bsgV1rc5", + }, + { + id: "q8uq6vpnjFi", + }, + { + id: "b3EU6KFCkub", + }, + { + id: "KzwP3CMWKGJ", + }, + { + id: "wP35CkKPKyv", + }, + { + id: "slWlW8NVuhi", + }, + { + id: "TzaGNKPDcuZ", + }, + { + id: "mKy8F58RNxW", + }, + { + id: "ke2gwHKHP3z", + }, + { + id: "wJhMpTNkoiO", + }, + { + id: "aSxNNRxPuBP", + }, + { + id: "O4B6S4LdiV5", + }, + { + id: "wg1JmqwahUh", + }, + { + id: "KHwOdsjEU9x", + }, + { + id: "sXZDTI7A8V8", + }, + { + id: "HRBg9rjmgNb", + }, + { + id: "DzJDJTl7xia", + }, + { + id: "uitVbo06tpi", + }, + { + id: "ZJPxnDs9bfO", + }, + { + id: "ygWPaPAngpd", + }, + { + id: "xRsoZIRmnt4", + }, + { + id: "sAO5hEWo4z5", + }, + { + id: "NqLYdlnK8sc", + }, + { + id: "MpcMjLmbATv", + }, + { + id: "eAI9ceJBSjl", + }, + { + id: "n3MRjKtwr3O", + }, + { + id: "Wc4vEGMjCjY", + }, + { + id: "ls4mOkNLjL9", + }, + { + id: "LNGluubHKwQ", + }, + { + id: "Id3FvX3GrwV", + }, + { + id: "nwK9gdlYTIP", + }, + { + id: "gP6hn503KUX", + }, + { + id: "acSIjDxIu3C", + }, + { + id: "hwzx6HWLaub", + }, + { + id: "hhF9Nwg2oy3", + }, + { + id: "IeAjqsC1ku7", + }, + { + id: "iHQVo7h7KOQ", + }, + { + id: "aq5knOnYVtW", + }, + { + id: "qtr8GGlm4gg", + }, + { + id: "aVlSMMvgVzf", + }, + { + id: "LS7fn234S9g", + }, + { + id: "n2CzrOFHflh", + }, + { + id: "iwAJl0kv6En", + }, + { + id: "ELzMcGisGqi", + }, + { + id: "Jm2z9TI6awk", + }, + { + id: "ciYRn4vdo2r", + }, + { + id: "vXuHPgzMVXa", + }, + { + id: "NdNNYcak8px", + }, + { + id: "Enl6oNeQkbF", + }, + { + id: "rbQkVTX1cAj", + }, + { + id: "Jxs1MKUjhxL", + }, + { + id: "P69SId31eDp", + }, + { + id: "qVWBrtcaEpc", + }, + { + id: "rvyM1Po98LX", + }, + { + id: "SCY3falEcJD", + }, + { + id: "MLQzJUNXkGb", + }, + { + id: "wP1zsnNxbSE", + }, + { + id: "mhWSEv79IJW", + }, + { + id: "rLpWq6vu7RP", + }, + { + id: "sFgNRYS5pBo", + }, + { + id: "G9whWBxuzKi", + }, + { + id: "lmjC0XitRfk", + }, + { + id: "gUPhNWkSXvD", + }, + { + id: "SVEfwJ0BGeD", + }, + { + id: "Z3qExYRw8yt", + }, + { + id: "B2obDRMclXM", + }, + { + id: "AZhwISa6QHW", + }, + { + id: "EfnAboGQLxc", + }, + { + id: "Z9ny6QeqsgX", + }, + { + id: "lAYbqGWZLhe", + }, + { + id: "VYwQVvXceME", + }, + { + id: "JUa8VsCXNoT", + }, + { + id: "CAK6tMitZah", + }, + { + id: "cfOROU83UtC", + }, + { + id: "yBAbJkEabiq", + }, + { + id: "SzZZCMKE6bR", + }, + { + id: "gE3gEGZbQMi", + }, + { + id: "qY69kbmJszK", + }, + { + id: "K2QJ8GHOTdn", + }, + { + id: "nlfUpdDWfry", + }, + { + id: "ZlUc0Xg8DBQ", + }, + { + id: "QYE5xUAhLdU", + }, + { + id: "jdZWJAMCoJf", + }, + { + id: "iPfENtZjvw5", + }, + { + id: "rCqFv1rEWDj", + }, + { + id: "TcQ6elHuhF4", + }, + { + id: "GhlGy3E9062", + }, + { + id: "xATvj8pdYoT", + }, + { + id: "TgsSBveFya6", + }, + { + id: "CIzmzfVIRil", + }, + { + id: "gQjEW99U7uP", + }, + { + id: "BH7rDkWjUqc", + }, + { + id: "lQ4xBMNlNo7", + }, + { + id: "W3t0pSZLtrC", + }, + { + id: "pk7bUK5c1Uf", + }, + { + id: "s7SLtx8wmRA", + }, + { + id: "y0lVBOxZ8rg", + }, + { + id: "KerdFMEvudA", + }, + { + id: "DWRblnjr7iu", + }, + { + id: "NwX8noGxLoz", + }, + { + id: "rnTuDT0QWRN", + }, + { + id: "is3w3HROKVc", + }, + { + id: "JKdMirJ02nv", + }, + { + id: "qoDNCkXepGV", + }, + { + id: "ZOaH2Sa9XVO", + }, + { + id: "UCEjSQB7b3h", + }, + { + id: "iRdLdLA0uNu", + }, + { + id: "LFoc1dglD7m", + }, + { + id: "qKaOljktnHq", + }, + { + id: "sqjgmc0RlQk", + }, + { + id: "w0QDch3dyPH", + }, + { + id: "BhmUfafilAA", + }, + { + id: "EvvMi4UlwMc", + }, + { + id: "zm9breCeT1m", + }, + { + id: "q3fs3NVlOEN", + }, + { + id: "hkaZh4A0WBo", + }, + { + id: "J8SpkWBy3wp", + }, + { + id: "DYSYH4fblSk", + }, + { + id: "ovOUo5jrC22", + }, + { + id: "YakeBgSsbOx", + }, + { + id: "vE0Sx9doaLj", + }, + { + id: "JemZqD90S44", + }, + { + id: "jVDUkOBCjDy", + }, + { + id: "sqRXIm3ZRAD", + }, + { + id: "D2MlHBjMK26", + }, + { + id: "LclKnZUAXJ1", + }, + { + id: "XBHuMdmlExu", + }, + { + id: "qghfVf1FWx2", + }, + { + id: "WIS2aSxaHKM", + }, + { + id: "HJ6XPsddD52", + }, + { + id: "MBi07H0IQKo", + }, + { + id: "eQy2FJ9EtXL", + }, + { + id: "fAsj6a4nudH", + }, + { + id: "IOznsQPh0eT", + }, + { + id: "hHkDZW9AaeC", + }, + { + id: "yzpBZ6WONMz", + }, + { + id: "ZgrJfynih78", + }, + { + id: "u1LpzuLP79U", + }, + { + id: "dOSiQNrW1BE", + }, + { + id: "Bift1B4gjru", + }, + { + id: "cDw53Ej8rju", + }, + { + id: "n7P2cG72iAQ", + }, + { + id: "mfy7Wbj9Shf", + }, + { + id: "a1hPfxRBAt4", + }, + { + id: "RX6B2wUWPrC", + }, + { + id: "WxMIZC6Cxqs", + }, + { + id: "CoGS2rMy5EO", + }, + { + id: "mE3HjykT1B8", + }, + { + id: "WcFNj1xjROd", + }, + { + id: "YNO3ZNvnk5q", + }, + { + id: "mEoJIrcgrA4", + }, + { + id: "H9ayxSSXG0x", + }, + { + id: "jVqoXv7rFns", + }, + { + id: "CihQ0kL7YI0", + }, + { + id: "Eb9RE5pv3ow", + }, + { + id: "C0f0alOlbpX", + }, + { + id: "dnAY9Xcx1Rq", + }, + { + id: "hLGRTw9HMzk", + }, + { + id: "RuZFg0DMg0e", + }, + { + id: "jTKaRAjxpnr", + }, + { + id: "R95g2g0ShvJ", + }, + { + id: "zw8HAdV98ZC", + }, + { + id: "hIpcmjLrDDW", + }, + { + id: "AEEhBQXfAJs", + }, + { + id: "VWJfRi9TVeu", + }, + { + id: "KctpIIucige", + }, + { + id: "FrmnHp1CyjR", + }, + { + id: "l4bBkadoPEJ", + }, + { + id: "wd0F1779Aj9", + }, + { + id: "IoLWBXJDOn1", + }, + { + id: "L4r7HZMiUnM", + }, + { + id: "FRxcUEwktoV", + }, + { + id: "g7NtNMbOQl3", + }, + { + id: "G7eJd6nSghG", + }, + { + id: "cWJ7hzzHdTV", + }, + { + id: "oCY8DaRvfZf", + }, + { + id: "Zwws5CQatMx", + }, + { + id: "iP4fRh8EHmF", + }, + { + id: "cnvDuTQ2CJL", + }, + { + id: "kMsHZRoNDNv", + }, + { + id: "qx8ozr7t7nB", + }, + { + id: "PKaC6hSkP7a", + }, + { + id: "IWM4eKPJJSc", + }, + { + id: "EZIMUaUD8AJ", + }, + { + id: "J1x66stNjk2", + }, + { + id: "HgQCFkML87Y", + }, + { + id: "aS2x3vkYvGp", + }, + { + id: "sAZZwifAr7z", + }, + { + id: "TNbHYOuQi8s", + }, + { + id: "wqb1glTqOuN", + }, + { + id: "TbiRD4Bsz4Z", + }, + { + id: "KnwLGQlW0iw", + }, + { + id: "Nv8dtry2e6e", + }, + { + id: "BJ3DJFBKwBR", + }, + { + id: "kyVsWxM5xpz", + }, + { + id: "poXLW7j5eUG", + }, + { + id: "ceQRFYQJ7Lg", + }, + { + id: "pw5wPMjAv96", + }, + { + id: "tePTZNauNtp", + }, + { + id: "ZzdTFqWrlDa", + }, + { + id: "BD9gU0GKlr2", + }, + { + id: "iZ6tzScHrd7", + }, + { + id: "h2D4Pc8AtLL", + }, + { + id: "XjpmsLNjyrz", + }, + { + id: "N9cKNnintUD", + }, + { + id: "tR6e8k99ODA", + }, + { + id: "CebtBqqp1fp", + }, + { + id: "TG841V5TUjf", + }, + { + id: "c497ZoB22oT", + }, + { + id: "AwflfVNpl2E", + }, + { + id: "BmTVMvJHVBO", + }, + { + id: "xO9WbCvFq5k", + }, + { + id: "RTixJpRqS4C", + }, + { + id: "EgDDvkPK3Sr", + }, + { + id: "Sw9P7yocbIE", + }, + { + id: "hCRqN3S7mvi", + }, + { + id: "oolcy5HBlMy", + }, + { + id: "pzpiH6wt7b7", + }, + { + id: "wNYYRm2c9EK", + }, + { + id: "dcCQqqorPO9", + }, + { + id: "D74c9A9m4Hq", + }, + { + id: "ALs1TcrrsDS", + }, + { + id: "wSHfjjFqUay", + }, + { + id: "fQkfMcFH0Xk", + }, + { + id: "xlDvsb6kxze", + }, + { + id: "DcmSvQd5N8c", + }, + { + id: "YUVOLvd05AE", + }, + { + id: "rUoqnP86L2E", + }, + { + id: "xPU0osaqkZX", + }, + { + id: "Ln9YDxpUyga", + }, + { + id: "PysJIi3VIol", + }, + { + id: "ZOZ4s2gTPj7", + }, + { + id: "poFeGPc400T", + }, + { + id: "srY0AxIpIVk", + }, + { + id: "tMk3Djk2RPh", + }, + { + id: "Z8Cm76B2726", + }, + { + id: "Vh1fsWOYcv1", + }, + { + id: "j0Mtr3xTMjM", + }, + { + id: "gfk1TNPI4wN", + }, + { + id: "CG4QD1HC3h4", + }, + { + id: "xQIU41mR69s", + }, + { + id: "WUQrS4Yqmoy", + }, + { + id: "CvXrokTtZh6", + }, + { + id: "dEnVMT8KigA", + }, + { + id: "hD90OKY1eqC", + }, + { + id: "m00wB3h3vPb", + }, + { + id: "iMSTuCsVerx", + }, + { + id: "SFQigiC2ISS", + }, + { + id: "lsUHC2VPbZP", + }, + { + id: "ivSrurTYLbk", + }, + { + id: "AHwKo0BrVSX", + }, + { + id: "vQYIk5G9NxP", + }, + { + id: "yxWgtnhFyMO", + }, + { + id: "cmWTK3wgzXQ", + }, + { + id: "QZVlKun3NjS", + }, + { + id: "VfxUdTtVcAL", + }, + { + id: "yP2nhllbQPh", + }, + { + id: "FHwmVcGuIQk", + }, + { + id: "nxvO0IkxI2B", + }, + { + id: "qRY6vngpkET", + }, + { + id: "gOgqOCQYdaC", + }, + { + id: "f6xGA6BZBLO", + }, + { + id: "QywkxFudXrC", + }, + { + id: "K5wBtEzE2qJ", + }, + { + id: "lL2LBkhlsmV", + }, + { + id: "z2X1vurdKjs", + }, + { + id: "CwxzbQzzHll", + }, + { + id: "PVvkHnLCRub", + }, + { + id: "XuGfiry96Bg", + }, + { + id: "mgDNpSYDR2i", + }, + { + id: "emXfKpymvVL", + }, + { + id: "Gt9rJxzdcdE", + }, + { + id: "EMLsRKB3O9g", + }, + { + id: "lzz1UhTzO4E", + }, + { + id: "xLL8E42eDho", + }, + { + id: "fspUWQx17AT", + }, + { + id: "QIp6DHlMGfb", + }, + { + id: "nGb94wPdcqx", + }, + { + id: "DpyDh5wQoGh", + }, + { + id: "SQTPktns35S", + }, + { + id: "fUxVOkpX3yi", + }, + { + id: "zbz3PIscPzD", + }, + { + id: "aQoqXL4cZaF", + }, + { + id: "vBQzLWajd2g", + }, + { + id: "KjguLUoJs8E", + }, + { + id: "yWhxXlPgUTM", + }, + { + id: "o1k9rQb9g2z", + }, + { + id: "cMNl5fYidCg", + }, + { + id: "bVZTNrnfn9G", + }, + { + id: "K3k64jslIlL", + }, + { + id: "x8SUTSsJoeO", + }, + { + id: "ELrilIB7yIR", + }, + { + id: "G6UMfezPqze", + }, + { + id: "jkyBvNzcTLl", + }, + { + id: "voQXVNftP4W", + }, + { + id: "ET2dJL1qVHh", + }, + { + id: "upKuGnxhxJA", + }, + { + id: "yMCshbaVExv", + }, + { + id: "up9gjdODKXE", + }, + { + id: "m5wSq1tCwhN", + }, + { + id: "HMEN3AsXCdJ", + }, + { + id: "TrmusBXxLm3", + }, + { + id: "S8vC8eUPHNj", + }, + { + id: "MNJReCDqWEz", + }, + { + id: "pvZTcaKK9C6", + }, + { + id: "fwxkctgmffZ", + }, + { + id: "g5UC62FBloI", + }, + { + id: "TJA0eGRoRpc", + }, + { + id: "KVn5fnK1y8t", + }, + { + id: "EUUkKEDoNsf", + }, + { + id: "YQ3csPLAlrn", + }, + { + id: "PwoQgMJNWbR", + }, + { + id: "ePuy1RNXaFU", + }, + { + id: "VP397wRvePm", + }, + { + id: "zerKCK3Ncn3", + }, + { + id: "aHs9PLxIdbr", + }, + { + id: "N3tpEjZcPm9", + }, + { + id: "uC8SoUvGjuF", + }, + { + id: "QuMiCgDs8cB", + }, + { + id: "guDOChjSGvN", + }, + { + id: "cDvT5D5ptAO", + }, + { + id: "FgYDmGwmpEU", + }, + { + id: "SbJs5cqXDlv", + }, + { + id: "sgcHQEaB40Y", + }, + { + id: "yf1TrU7Vfhk", + }, + { + id: "JLmpmvulte0", + }, + { + id: "DPKaN8PGYzf", + }, + { + id: "Zp2Yi4j2AAH", + }, + { + id: "K1fAArHJZFj", + }, + { + id: "eIQbndfxQMb", + }, + { + id: "ZGHtM1ou2fs", + }, + { + id: "jGDeUfXtmX7", + }, + { + id: "Jo8r6czq32Z", + }, + { + id: "BbXyAY49f5A", + }, + { + id: "NRPCjDljVtu", + }, + { + id: "fQxnuYyALNR", + }, + { + id: "jeRid8cKf3H", + }, + { + id: "a0MqrrOwWiu", + }, + { + id: "AWbvdyGIjLW", + }, + { + id: "bPqP6eRfkyn", + }, + { + id: "g704qWV3hEo", + }, + { + id: "tdXFMATR7Xu", + }, + { + id: "EcklTgiE7vX", + }, + { + id: "ShdRyzuLKA2", + }, + { + id: "sqgxmk27Zec", + }, + { + id: "qDSjVCb94M1", + }, + { + id: "D21JqRLIRMK", + }, + { + id: "Q4j2vs04v7h", + }, + { + id: "bX4VGIuPe0i", + }, + { + id: "EQnfnY03sRp", + }, + { + id: "t7bcrWLjL1m", + }, + { + id: "WdFFVSdqPmU", + }, + { + id: "Rr71mI9GJ0K", + }, + { + id: "VhnAWBJphc4", + }, + { + id: "dRigs62u5z1", + }, + { + id: "kqXJc3f9lTL", + }, + { + id: "pRHGAROvuyI", + }, + { + id: "HmT4gudRgSw", + }, + { + id: "pvwB2y1fXO3", + }, + { + id: "EfWCa0Cc8WW", + }, + { + id: "m3QGt8fY3L0", + }, + { + id: "wYTBPsNSraj", + }, + { + id: "fkggXsPoBkP", + }, + { + id: "nnilAOaSqli", + }, + { + id: "Yc8Cmr5XS4B", + }, + { + id: "FlBemv1NfEC", + }, + { + id: "KiheEgvUZ0i", + }, + { + id: "Wa6t6xbPoMh", + }, + { + id: "XglyerJlvLj", + }, + { + id: "xVaAo6qUVZe", + }, + { + id: "UxpUYgdb4oU", + }, + { + id: "dOuvjKSD6Hn", + }, + { + id: "IGCNbKZeeY5", + }, + { + id: "eXxcXRbu9cE", + }, + { + id: "pdF4XIHIGPx", + }, + { + id: "JZQk3w8sldD", + }, + { + id: "U4rDX9YlXys", + }, + { + id: "g4rWlg3FKUP", + }, + { + id: "NAxk1atfa7V", + }, + { + id: "kI0SufQ7aHj", + }, + { + id: "lxxASQqPUqd", + }, + { + id: "ny5xGrgFbt4", + }, + { + id: "ReaYfNwZ3Ri", + }, + { + id: "mryxrsqoTOf", + }, + { + id: "wc87kBLKL9E", + }, + { + id: "NNzcAXJIFrW", + }, + { + id: "dDSgv7NDUHv", + }, + { + id: "Qqed2D85sDL", + }, + { + id: "pqqtwJyy4km", + }, + { + id: "bnP1bAemxy1", + }, + { + id: "Zc5gvyjaSUb", + }, + { + id: "I9Du5dDmb5c", + }, + { + id: "P2WqNppWhpH", + }, + { + id: "W5fN3G6y1VI", + }, + { + id: "VF7LfO19vxS", + }, + { + id: "duINhdt3Yay", + }, + { + id: "Eyqyhztf8G1", + }, + { + id: "fA43H8Ds0Ja", + }, + { + id: "epAXoMcUZ7Z", + }, + { + id: "OUPkxfQld8y", + }, + { + id: "ldXIdLNUNEn", + }, + { + id: "r2TlHQ3PA6b", + }, + { + id: "KuR0y0h0mOM", + }, + { + id: "QYTlBnbOQc2", + }, + { + id: "f90eISKFm7P", + }, + { + id: "DlGaPAUaOvW", + }, + { + id: "rwgK8TkRwHl", + }, + { + id: "w0woO8XTlaW", + }, + { + id: "plnHVbJR6p4", + }, + { + id: "XQudzejlhJZ", + }, + { + id: "oCC1QKfF35y", + }, + { + id: "jCnyQOKQBFX", + }, + { + id: "n9HIySyR00g", + }, + { + id: "F2TAF765q1b", + }, + { + id: "CF0cFke6jiS", + }, + { + id: "FZxJ0KST9jn", + }, + { + id: "iaTSPSIVkSY", + }, + { + id: "DzAOqCf0ots", + }, + { + id: "lrnUABSHIFZ", + }, + { + id: "m7fBMpmVpSM", + }, + { + id: "c2NsG9JYWke", + }, + { + id: "BPzLs44ahIt", + }, + { + id: "oRiPgfOl9lq", + }, + { + id: "vHxNPlpdGpt", + }, + { + id: "cgP9X69GJQG", + }, + { + id: "caUqmDQjhe3", + }, + { + id: "QjsT50Xvf0Z", + }, + { + id: "q1O6MvgFZxp", + }, + { + id: "pg4MKQIQ2Jo", + }, + { + id: "sARzegYzuRQ", + }, + { + id: "SAhwDYs1RSD", + }, + { + id: "RTZPIa5HdU4", + }, + { + id: "KijawwvGExH", + }, + { + id: "K4y5pfOzlUO", + }, + { + id: "u6ZBka0T5wh", + }, + { + id: "Xy6Uu2lOc5h", + }, + { + id: "zpJovpBBfKM", + }, + { + id: "USQdmvrHh1Q", + }, + { + id: "Kq1uajqoUFk", + }, + { + id: "CwSv8Hsi7g8", + }, + { + id: "mCsrHgInpyg", + }, + { + id: "fmkqsEx6MRo", + }, + { + id: "Snb7KcCPUbh", + }, + { + id: "xzhG4p5lZnH", + }, + { + id: "AYdCrKEbzUu", + }, + { + id: "brnL0W3Fbsj", + }, + { + id: "p2cHs4bwern", + }, + { + id: "n32Do23x95z", + }, + { + id: "hnAcBh8UTrz", + }, + { + id: "h6EBpyeYXQX", + }, + { + id: "fwOsBKgfVi7", + }, + { + id: "cNAp6CJeLxk", + }, + { + id: "NeNJgIg8uHE", + }, + { + id: "rUTnT6Q9FYl", + }, + { + id: "EYzPUgNX3VC", + }, + { + id: "Q6Lhtm8s3Lv", + }, + { + id: "Bqzf3zcPFRk", + }, + { + id: "Jw2cH3eKRyl", + }, + { + id: "Jw4MoZMn7ts", + }, + { + id: "RfuZfAgIWmu", + }, + { + id: "geVF87N7qTw", + }, + { + id: "PduUQmdt0pB", + }, + { + id: "Xx2UQbqVvvo", + }, + { + id: "hbRI6YtqRhR", + }, + { + id: "nlt6j60tCHF", + }, + { + id: "ObV5AR1NECl", + }, + { + id: "OpTjTojwTW4", + }, + { + id: "JzhBBw5KHNs", + }, + { + id: "CvBAqD6RzLZ", + }, + { + id: "gAAkigtY7Cp", + }, + { + id: "wysrzjjmlFV", + }, + { + id: "m73lWmo5BDG", + }, + { + id: "mDvggfOIXuy", + }, + { + id: "L5QegIyR0Jd", + }, + { + id: "vBZeqBsk4t8", + }, + { + id: "AztUK2qVbeo", + }, + { + id: "UdQeIZ9knyI", + }, + { + id: "BrymZB4Qrpm", + }, + { + id: "h7diHExBH9j", + }, + { + id: "ERwZBXlsbiX", + }, + { + id: "HcB2W6Fgp7i", + }, + { + id: "YMczwSLMzYy", + }, + { + id: "AuPFYAbG4CX", + }, + { + id: "uiLQhUgOlq5", + }, + { + id: "nVecYeuwXRF", + }, + { + id: "zrRnmB6gD18", + }, + { + id: "isTUxyVIfgc", + }, + { + id: "uXr25l4RTvw", + }, + { + id: "YO3cRz8LjQB", + }, + { + id: "AlG0apJE5cm", + }, + { + id: "EDJw2gYz0kM", + }, + { + id: "I2DzylqJa2i", + }, + { + id: "mgiXuaxaqvA", + }, + { + id: "ufEHhOGhjYe", + }, + { + id: "n64rIxNP3AG", + }, + { + id: "ldJltwJ3lJL", + }, + { + id: "Jw4lCv7xDGf", + }, + { + id: "mIbcTJvfdkl", + }, + { + id: "t66taqSF1mW", + }, + { + id: "ncGs9vXS36w", + }, + { + id: "VeXU3mndzri", + }, + { + id: "o2uR8KOdB1E", + }, + { + id: "oWFhMuTIIts", + }, + { + id: "rhr20eCsvtx", + }, + { + id: "eQT6PwZmFTy", + }, + { + id: "fGp4OcovQpa", + }, + { + id: "qOapebUavrO", + }, + { + id: "CvYsZipdHMN", + }, + { + id: "WvQbZzvzfGt", + }, + { + id: "Em1q3YcXORk", + }, + { + id: "EBWhrVyXPDJ", + }, + { + id: "GHMuykRYMYS", + }, + { + id: "c1PIzYM0pWO", + }, + { + id: "b8AdvPWYM2S", + }, + { + id: "T3wZvkH6nj6", + }, + { + id: "rDfwvqhOjEu", + }, + { + id: "tqs6r11O0Bc", + }, + { + id: "Ed2Y8qbg78R", + }, + { + id: "qWslk59QHkK", + }, + { + id: "mS4S4e5S9Ik", + }, + { + id: "ndan8zClk4E", + }, + { + id: "T3on7ZuRmEL", + }, + { + id: "UCj7SppzG83", + }, + { + id: "qisBi5ksxNW", + }, + { + id: "uGa5JtIMfRx", + }, + { + id: "WbSOPMUSIjq", + }, + { + id: "NqTZjfTIsxC", + }, + { + id: "TWKYuqVgH7m", + }, + { + id: "eFSB0KRDeXq", + }, + { + id: "JOrJQHKng8y", + }, + { + id: "DHbXXPpMgPm", + }, + { + id: "DE9QyykBO1Q", + }, + { + id: "DCn4ijMbf3H", + }, + { + id: "jSPLEMDwXN4", + }, + { + id: "WG0oLS9FrZu", + }, + { + id: "NLaVvvZ7h9a", + }, + { + id: "kMqgc7WLKM2", + }, + { + id: "rvl7h2TZpHu", + }, + { + id: "a4BeuPBNXnG", + }, + { + id: "vv1QJFONsT6", + }, + { + id: "YYWlNyNPPdZ", + }, + { + id: "H8RixfF8ugH", + }, + { + id: "TveoRAM7hSi", + }, + { + id: "OZHQ1puF7s4", + }, + { + id: "Hy9kbfZLbEu", + }, + { + id: "KvxbnHd7y84", + }, + { + id: "JSVVdczqZzV", + }, + { + id: "ZMrYua0m4nJ", + }, + { + id: "NHXpG74NWB7", + }, + { + id: "dS1yFsbOQHe", + }, + { + id: "BQ8OEJc9l11", + }, + { + id: "Kxtv3KavBA1", + }, + { + id: "iMDr2FG7i8Q", + }, + { + id: "zohdJWi6RFq", + }, + { + id: "qZNNDXDCF8K", + }, + { + id: "Uji6Ds4aqnF", + }, + { + id: "JVeWBag2e9y", + }, + { + id: "swcD9FvQp4j", + }, + { + id: "pb62QK3itU5", + }, + { + id: "xWIyicUgscN", + }, + { + id: "zdXSYH2Yc8D", + }, + { + id: "D8uoK8m9Bfi", + }, + { + id: "fLJQCVqUZTS", + }, + { + id: "ZUwoAwYI5VL", + }, + { + id: "XJI24bY3AN7", + }, + { + id: "OTn9VMNEkdo", + }, + { + id: "hZpaU5uFSDm", + }, + { + id: "g8DdBm7EmUt", + }, + { + id: "Rvmh5Y2ZCk5", + }, + { + id: "UXhPdIDuqsv", + }, + { + id: "DMxw0SASFih", + }, + { + id: "j1AYf7vKU55", + }, + { + id: "FclfbEFMcf3", + }, + { + id: "iqIB5RZL6eh", + }, + { + id: "qvKYtvSWzfW", + }, + { + id: "dlBDyABLexm", + }, + { + id: "gIJls1GgxI7", + }, + { + id: "OGaAWQD6SYs", + }, + { + id: "dqHvtpUqLwB", + }, + { + id: "EQVdDszrAXa", + }, + { + id: "JKhjdiwoQZu", + }, + { + id: "mHxwn8ncOJw", + }, + { + id: "tVNVfLo33lW", + }, + { + id: "yzlfbdvi3wz", + }, + { + id: "GCxQySHWl0s", + }, + { + id: "ubsjwFFBaJM", + }, + { + id: "QFkzkfSYmpX", + }, + { + id: "TEQlaapDQoK", + }, + { + id: "rH0VineUPKN", + }, + { + id: "yAqrRMyFbIn", + }, + { + id: "UtDSIYVwEND", + }, + { + id: "sK3Vu1aTikL", + }, + { + id: "I0NavaepNgA", + }, + { + id: "CXpI8mc7ULB", + }, + { + id: "sfFAasecThR", + }, + { + id: "l9K5iESJ5xr", + }, + { + id: "sw9k3FkcfSX", + }, + { + id: "gqtzCpBxN3w", + }, + { + id: "vyDPazinp6j", + }, + { + id: "o0BgK1dLhF8", + }, + { + id: "z01qogI8qS0", + }, + { + id: "Xnif5imKLlT", + }, + { + id: "GCbYmPqcOOP", + }, + { + id: "YBoWCLKBgAh", + }, + { + id: "MN9tytgcXBx", + }, + { + id: "TjZwphhxCuV", + }, + { + id: "yDkjEd6exF9", + }, + { + id: "nE01sGNCY5P", + }, + { + id: "hqvkeW5QBOJ", + }, + { + id: "t6S2MopeRaM", + }, + { + id: "NnGUNkc5Zq8", + }, + { + id: "ByxqoYgfaTc", + }, + { + id: "JopfwdVI9PM", + }, + { + id: "JzGRvFgl6XX", + }, + { + id: "R4ph8PWKReI", + }, + { + id: "PhR1PdMTzhW", + }, + { + id: "VIVevZf6pQ2", + }, + { + id: "eP4F9eB76B0", + }, + { + id: "G0ywuTVnvoj", + }, + { + id: "gh0ybckORun", + }, + { + id: "faWnwnREAkq", + }, + { + id: "PaqugoqjRIj", + }, + { + id: "tBRDdxfKbMx", + }, + { + id: "k1Y0oNqPlmy", + }, + { + id: "LkfEuHBjru3", + }, + { + id: "ReolvhEKnQ7", + }, + { + id: "guhl24YzVdM", + }, + { + id: "z234PZ30yaw", + }, + { + id: "MRePckvSGyw", + }, + { + id: "EFTcruJcNmZ", + }, + { + id: "e2M7aiZQE4e", + }, + { + id: "Vz7RM29OOsG", + }, + { + id: "kpDoH80fwdX", + }, + { + id: "dNT8lAL4zGo", + }, + { + id: "i9RXBEa9GoU", + }, + { + id: "ME2ZBDsuhqU", + }, + { + id: "JnV7u3yyjJD", + }, + { + id: "FiD5fxH9zRE", + }, + { + id: "jWDvj4X61DN", + }, + { + id: "qgi2SfJgoq1", + }, + { + id: "cWIiusmHULW", + }, + { + id: "weoL19nwuVZ", + }, + { + id: "YUPqnxcM7Nw", + }, + { + id: "DSBXsRQSXUW", + }, + { + id: "JQJjsXvHE5M", + }, + { + id: "gYkBwYHWcFb", + }, + { + id: "PWqwcBdRGIH", + }, + { + id: "fPmlxsOal96", + }, + { + id: "VImHQqBejjf", + }, + { + id: "UBZ4ww4Re1b", + }, + { + id: "al4GkB6X2X3", + }, + { + id: "RkO3q22RKYT", + }, + { + id: "e0RGds86ow6", + }, + { + id: "c78POlfGgBH", + }, + { + id: "g5ptsn0SFX8", + }, + { + id: "iE2MrXb0KHO", + }, + { + id: "JMts1T5U4D9", + }, + { + id: "c9CWZXvG3Xx", + }, + { + id: "EIV6tvzGBHw", + }, + { + id: "ThQSMOIT9Iw", + }, + { + id: "Fhzyc2hDVPT", + }, + { + id: "JYBHeUA6iMj", + }, + { + id: "hMBotMwWnU1", + }, + { + id: "X00V3yPaJ8X", + }, + { + id: "mOchMUVJPbo", + }, + { + id: "qwmh84DV65K", + }, + { + id: "IyxiFteC8xx", + }, + { + id: "h5SFcZt5G1I", + }, + { + id: "lPeZdUm9fD7", + }, + { + id: "hskJrToJM6X", + }, + { + id: "spPxq7tMKMC", + }, + { + id: "tHUYjt9cU6h", + }, + { + id: "IR1NJ1FJ5GU", + }, + { + id: "k8ZPul89UDm", + }, + { + id: "yOsdnlPvpxf", + }, + { + id: "MR9LHv3e9I3", + }, + { + id: "K00jR5dmoFZ", + }, + { + id: "hdQYFKD7y2Q", + }, + { + id: "xXYv82KlBUh", + }, + { + id: "Xk2fvz4aTBU", + }, + { + id: "ZjlSWouBQCf", + }, + { + id: "wByywkNKJ26", + }, + { + id: "C7FI0F7aHvG", + }, + { + id: "hxHaqqMaIjO", + }, + { + id: "u1zgw8xV6sX", + }, + { + id: "WT6JLfyR9lL", + }, + { + id: "yvDKjcRRQsR", + }, + { + id: "Srnpwq8jKbp", + }, + { + id: "tfreCWQXBNA", + }, + { + id: "NpHsnQ2L1oY", + }, + { + id: "DvzKyuC0G4w", + }, + { + id: "UjdFTwnem0s", + }, + { + id: "hdlaTX6GNBB", + }, + { + id: "KP40aOgSHtr", + }, + { + id: "PcADvhvcaI2", + }, + { + id: "bfuI6iKIEC5", + }, + { + id: "dczh6Jfd4no", + }, + { + id: "EjsItGPbyn0", + }, + { + id: "CMVTl4aVnhu", + }, + { + id: "hy4y80DxUAZ", + }, + { + id: "bSbZ4v2bkh4", + }, + { + id: "FGV6TAbL0eN", + }, + { + id: "xpmIgxXB50B", + }, + { + id: "O5HZTrdAIy1", + }, + { + id: "HmeNsFNJHJv", + }, + { + id: "sJ2rOC42ck6", + }, + { + id: "l8Cj9yzytP5", + }, + { + id: "ahMLVbF8Jcl", + }, + { + id: "BbZ6cIgfJOO", + }, + { + id: "WvJmBdtUGPB", + }, + { + id: "C6r62Sn2N7B", + }, + { + id: "CpZpUPY6f2O", + }, + { + id: "Fdu706gYYLa", + }, + { + id: "mXivK01oPF2", + }, + { + id: "KOExHsBref6", + }, + { + id: "l2kZRcJjomr", + }, + { + id: "pknpU6PgUEc", + }, + { + id: "df5zH1E38K6", + }, + { + id: "LJWGHj5pj2Y", + }, + { + id: "TaLIhbdFuQz", + }, + { + id: "ECadFFezuoX", + }, + { + id: "PdfmwEAa7xp", + }, + { + id: "agM9Fh6Hgpu", + }, + { + id: "v2FoTjues3L", + }, + { + id: "F13tWZ5wwDT", + }, + { + id: "TK1WrNNwWjA", + }, + { + id: "mkIugjeYSjE", + }, + { + id: "CrzNIFHpOFf", + }, + { + id: "TWdFaF5MarN", + }, + { + id: "mc3jvzpzSi4", + }, + { + id: "rwfuVQHnZJ5", + }, + { + id: "e4ySYmFeqwO", + }, + { + id: "zb00vTMZ06a", + }, + { + id: "yEU926iVAJJ", + }, + { + id: "bne6tOoPaWn", + }, + { + id: "pxY7o1Z4iRz", + }, + { + id: "Zpg7xK5Dp9V", + }, + { + id: "PPTOBEeEYho", + }, + { + id: "POtQRvBjEyX", + }, + { + id: "aJ2GlNejzg4", + }, + { + id: "xEip3dtU8bp", + }, + { + id: "X3NOrmGT8qW", + }, + { + id: "UOJlcpPnBat", + }, + { + id: "YhBJbiD5N1z", + }, + { + id: "omFDCDDd3C9", + }, + { + id: "xrSqLKQb7pT", + }, + { + id: "IN2dOk0gY1G", + }, + { + id: "RTC6vFWnDjE", + }, + { + id: "X7ZVgRPt31q", + }, + { + id: "XiJOONviAv9", + }, + { + id: "TuUmXovlC0v", + }, + { + id: "lCvWPVeh3bi", + }, + { + id: "sLlD1iFlTVA", + }, + { + id: "hQ572oBgJMj", + }, + { + id: "SgVNzw10vvi", + }, + { + id: "yTx6l9Cm6f3", + }, + { + id: "mAlVEzog6VX", + }, + { + id: "CY8cV5khn7e", + }, + { + id: "m3eyTINTgmc", + }, + { + id: "fWzvQtKZThS", + }, + { + id: "T8dxbX2PRJZ", + }, + { + id: "QvMExiAJhu6", + }, + { + id: "OZHhNP5X4q7", + }, + { + id: "nlSZ7WHPsKZ", + }, + { + id: "p97QGsi0RrM", + }, + { + id: "kLNQT4KQ9hT", + }, + { + id: "a04CZxe0PSe", + }, + { + id: "anlv4Oq9s3x", + }, + { + id: "LSt7ymrwfQX", + }, + { + id: "H97XE5Ea089", + }, + { + id: "IrTjw1nmSsU", + }, + { + id: "BugoCRnfVKz", + }, + { + id: "baGvbrgFnV4", + }, + { + id: "SzEmaH63Qe8", + }, + { + id: "Fu9vow7WzeY", + }, + { + id: "N7qnHXK5FGb", + }, + { + id: "PbN5cqV5Fut", + }, + { + id: "S2NaydvPENH", + }, + { + id: "JBU18etaAp5", + }, + { + id: "Mw1VdFy0Y1F", + }, + { + id: "qAEsKR6PbsZ", + }, + { + id: "INkmICN0I2u", + }, + { + id: "moAlVM6Y6nD", + }, + { + id: "VXHhYWYQT4f", + }, + { + id: "bPJABq7F5Iy", + }, + { + id: "oJLOlJSjBj1", + }, + { + id: "fz3mmw8l3nP", + }, + { + id: "EArqQGjNegL", + }, + { + id: "TYgzUZx9Z3r", + }, + { + id: "yGTq3sKtveY", + }, + { + id: "hgIfb6cXD79", + }, + { + id: "BtpiBwHsnpq", + }, + { + id: "lBrkUwNpNa4", + }, + { + id: "UKDrGV0OsTM", + }, + { + id: "lyONqUkY1Bq", + }, + { + id: "ApJSynsKXZO", + }, + { + id: "wj7iV08dvFq", + }, + { + id: "PeyblWrhOwL", + }, + { + id: "kHhYmHVGSPZ", + }, + { + id: "gbQ6moBp9qw", + }, + { + id: "TQ45TWWIH3t", + }, + { + id: "Vw4Uv6UPIPC", + }, + { + id: "Xybm3mlz5A5", + }, + { + id: "eJ1NCIbKFeL", + }, + { + id: "n6ttgbYwKrn", + }, + { + id: "ecZBOCaQGz6", + }, + { + id: "zv1CHdVuXXS", + }, + { + id: "YAIfiMG7VTP", + }, + { + id: "Jkn1s1tI4mN", + }, + { + id: "YCTSlOlEeEi", + }, + { + id: "rwjqr2sflz7", + }, + { + id: "Z0q0Y3GRugt", + }, + { + id: "KynKCypNiZC", + }, + { + id: "zpTlA0mecnK", + }, + { + id: "aqFXzQJiD51", + }, + { + id: "UlF2nn4N0HD", + }, + { + id: "m9zkLiqFNrV", + }, + { + id: "CMyGBztoNjM", + }, + { + id: "j17OTOxKboa", + }, + { + id: "pSvSzOPYgAL", + }, + { + id: "qiKQveJF54d", + }, + { + id: "JdqfYTIFZXN", + }, + { + id: "SSXpxYhQsqQ", + }, + { + id: "uFO5tHtFUcM", + }, + { + id: "jK5RFcBSmlU", + }, + { + id: "hKhN7mvx5qu", + }, + { + id: "jXJNr6xpVtP", + }, + { + id: "mmQ3IGBKExL", + }, + { + id: "NoTCS7xBSx5", + }, + { + id: "CYSXNa08Fj0", + }, + { + id: "D4J8YGRsVws", + }, + { + id: "LemXsoRIQwH", + }, + { + id: "DQHGtTGOP6b", + }, + { + id: "jGYT5U5qJP6", + }, + { + id: "qMABUusqGNJ", + }, + { + id: "JW3Z34Xdue4", + }, + { + id: "hZOk3ACtAsk", + }, + { + id: "nOYt1LtFSyU", + }, + { + id: "KP7MT2E1mhZ", + }, + { + id: "aCoFVWBqEP4", + }, + { + id: "QcOla8xILGP", + }, + { + id: "eRlN9uGZpGg", + }, + { + id: "GB9GcIP0RIf", + }, + { + id: "szbAJSWOXjT", + }, + { + id: "sO0s5WLpWuH", + }, + { + id: "JBhJiwqBCUa", + }, + { + id: "w92ah6dK8rd", + }, + { + id: "IWMIqLqELNm", + }, + { + id: "am6EFqHGKeU", + }, + { + id: "f1glFBoLk1L", + }, + { + id: "nKOoyTkUQV0", + }, + { + id: "Og4IrbfB6B4", + }, + { + id: "BZ6vit8Ixkc", + }, + { + id: "dyqtigUT60R", + }, + { + id: "cw0Wm1QTHRq", + }, + { + id: "zgDKc8tteWj", + }, + { + id: "hJXKU5DTju0", + }, + { + id: "ae2WPaK2mRy", + }, + { + id: "BJMWTGwuGiw", + }, + { + id: "bey7zJmGM3q", + }, + { + id: "ETRqfu74kge", + }, + { + id: "kvzdkXBxHoN", + }, + { + id: "EQQPyoukut9", + }, + { + id: "sCkFpAVwSHz", + }, + { + id: "n0HT5ZSO7yJ", + }, + { + id: "DBs6e2Oxaj1", + }, + { + id: "WQC4U29qPvk", + }, + { + id: "GMOl74xzmAE", + }, + { + id: "QpRIPul20Sb", + }, + { + id: "ix2wsUzRgWa", + }, + { + id: "abW8F723ggS", + }, + { + id: "HpFEce6vxFX", + }, + { + id: "agEKP19IUKI", + }, + { + id: "FQs34xcmpUK", + }, + { + id: "nF3UQGBmFd7", + }, + { + id: "GKbl7tNClTE", + }, + { + id: "xhyjU2SVewz", + }, + { + id: "F4HLTxnnM3I", + }, + { + id: "oV9P0VvL9Jh", + }, + { + id: "ACpurvqPMtf", + }, + { + id: "TAN6Q7vjvuk", + }, + { + id: "QPyg4am8tzw", + }, + { + id: "n4wETNZkfSr", + }, + { + id: "zY9ds4oNZxw", + }, + { + id: "ejdLY4RhIFZ", + }, + { + id: "vxa2YQRGV7I", + }, + { + id: "QltoMhOG84t", + }, + { + id: "wqr0vnmvUMj", + }, + { + id: "C3vF099iBl0", + }, + { + id: "BKVQi8fxIum", + }, + { + id: "AIJm6oHGjTi", + }, + { + id: "QFcMulIoEii", + }, + { + id: "wSCTKjMRg3K", + }, + { + id: "O3mmGiJpEiP", + }, + { + id: "wk77FIbcJnx", + }, + { + id: "z1ielwdLtPl", + }, + { + id: "a7i7UlS9t1D", + }, + { + id: "nZblzPvJ5UW", + }, + { + id: "Fnndvk0hBPM", + }, + { + id: "Dxv9BsvEZLh", + }, + { + id: "XU0jdKgql5X", + }, + { + id: "oCGj37yqeHW", + }, + { + id: "pf2M0IZNu4Q", + }, + { + id: "rpAgG9XCWhO", + }, + { + id: "xaLjxxNKGBu", + }, + { + id: "IoD93AqFTed", + }, + { + id: "GEzcv3kfDOM", + }, + { + id: "gvxZ9YpmK1v", + }, + { + id: "ORkFbgtCEh1", + }, + { + id: "fjsXLEIXfim", + }, + { + id: "T3iVyvrCpZ0", + }, + { + id: "byOPfWkK6M6", + }, + { + id: "mhs9W9luxFt", + }, + { + id: "qMbxFg9McOF", + }, + { + id: "EZduybPx6eC", + }, + { + id: "QBRQnWPRO3V", + }, + { + id: "b1F5bfb7WUR", + }, + { + id: "ZxRA0U655yW", + }, + { + id: "el8sgzyHuEe", + }, + { + id: "MNzhtYGWLVY", + }, + { + id: "HljBY2QVY53", + }, + { + id: "wEU4djGp72e", + }, + { + id: "gPfUHBl1o6J", + }, + { + id: "WVVhjx3AObr", + }, + { + id: "D0FK08nsi0g", + }, + { + id: "dTGxA9DSdEX", + }, + { + id: "EoLrHZ9URks", + }, + { + id: "o0J1lAtfZqk", + }, + { + id: "FwKJ7gYEv8U", + }, + { + id: "QpJSF4IQTAL", + }, + { + id: "Af29qBHoHHA", + }, + { + id: "pGw8wH1qJeD", + }, + { + id: "rs87nYgwbKv", + }, + { + id: "aPCH8nWJJMT", + }, + { + id: "QqAzWHtJ8VC", + }, + { + id: "nNfWAu8J87O", + }, + { + id: "O41R77wEUfv", + }, + { + id: "HMltAwIjIIe", + }, + { + id: "gsypzntLahf", + }, + { + id: "aCLUGk6eLfv", + }, + { + id: "lZdR6a6gXza", + }, + { + id: "zIJBpRLfC4n", + }, + { + id: "Ly2yY7nlRjH", + }, + { + id: "lZecPzbOsbr", + }, + { + id: "Knsr5wP8GYI", + }, + { + id: "kBpMc3uWbhN", + }, + { + id: "ojmNKvb4jAf", + }, + { + id: "FMirgBvrEAq", + }, + { + id: "rFywUKFHZxr", + }, + { + id: "KFowGOhmuSL", + }, + { + id: "nkFBms3luru", + }, + { + id: "RpRJUDOPtt7", + }, + { + id: "TGRCfJEnXJr", + }, + { + id: "hOErLhq0tXw", + }, + { + id: "GKs8hLomBsy", + }, + { + id: "XEyIRFd9pct", + }, + { + id: "XdCoH1YKZBw", + }, + { + id: "zZ8z7D3wSNM", + }, + { + id: "HcAJuXJgLTb", + }, + { + id: "VGAFxBXz16y", + }, + { + id: "dxUk7h1GyIt", + }, + { + id: "j93R5zDcuzU", + }, + { + id: "I4jWcnFmgEC", + }, + { + id: "d9iMR1MpuIO", + }, + { + id: "MKQDyajwc0E", + }, + { + id: "RndxKqQGzUl", + }, + { + id: "dgzl5jBFSk6", + }, + { + id: "dtuiqEXYa7z", + }, + { + id: "ofHgE75zePD", + }, + { + id: "xmJQN1v5LiE", + }, + { + id: "AhJfrUZqpRA", + }, + { + id: "SUb63WbnG7h", + }, + { + id: "F0jbbkyQBuj", + }, + { + id: "hjpHnHZIniP", + }, + { + id: "EkrbBkjmsbC", + }, + { + id: "Och1Y2SQiyU", + }, + { + id: "rDIJySp9eE8", + }, + { + id: "fbqAiSsFLUV", + }, + { + id: "gaoFOXYLfIJ", + }, + { + id: "XDRRlz2vVbX", + }, + { + id: "ri7jVJXey9A", + }, + { + id: "qlB3VFc4UMH", + }, + { + id: "iuMX7cC1bK0", + }, + { + id: "V38G1q5B1t8", + }, + { + id: "L2pNGjAdjJB", + }, + { + id: "m8pRTzESbRL", + }, + { + id: "Rll4VmTDRiE", + }, + { + id: "dLblgrfLscW", + }, + { + id: "ZGLUWWvIzZE", + }, + { + id: "C3ZpWdpHuDG", + }, + { + id: "bQ1KQyVyuvv", + }, + { + id: "Wy8ad1wjlfd", + }, + { + id: "Dbn6fyCgMBV", + }, + { + id: "iPcreOldeV9", + }, + { + id: "vE6c1Y3nYnw", + }, + { + id: "Q2USZSJmcNK", + }, + { + id: "vnKb3BLUoyp", + }, + { + id: "Wr8kmywwseZ", + }, + { + id: "ARy2GG6qKx0", + }, + { + id: "ZNEXRG9L02p", + }, + { + id: "i0hJ7wfNKCR", + }, + { + id: "TV4y3CtOJ3s", + }, + { + id: "wwM3YPvBKu2", + }, + { + id: "TYEiJ6ZIHqW", + }, + { + id: "jNxOkbkY455", + }, + { + id: "vkmFz7JMhfw", + }, + { + id: "TaQ7kfd2hQs", + }, + { + id: "PIvggX3ALdP", + }, + { + id: "gowgzHWc8FT", + }, + { + id: "DZi1LydHCtD", + }, + { + id: "WIn2BE8tm0P", + }, + { + id: "lsqa3EEGHxv", + }, + { + id: "UJ80rknbJtm", + }, + { + id: "foPGXhwhlqp", + }, + { + id: "X2iNKYFI26W", + }, + { + id: "BLVKubgVxkF", + }, + { + id: "q5RI3DC3u1b", + }, + { + id: "VPWHSJjpyJj", + }, + { + id: "NvsbcAMSQxF", + }, + { + id: "dpcvWc01CeN", + }, + { + id: "DYFBf6MwWFL", + }, + { + id: "F9zWBqG5Pmi", + }, + { + id: "fPe1l06MurL", + }, + { + id: "S4eCMCTJPBj", + }, + { + id: "dbQSMpjKZZV", + }, + { + id: "S5GVdD2d3Bf", + }, + { + id: "TmCsvdJLHoX", + }, + { + id: "c5kEPNDpFdx", + }, + { + id: "VQKz6bjkd50", + }, + { + id: "SkmTDNoVzIz", + }, + { + id: "YYhpaiyEsmd", + }, + { + id: "tuOQTWUH1ax", + }, + { + id: "G4TOy4yGuFa", + }, + { + id: "wWpPWJ7tlo7", + }, + { + id: "Lbfg4szGfyn", + }, + { + id: "AzIoHy2idQw", + }, + { + id: "w7a4l3XHIgi", + }, + { + id: "calzWl8FrK5", + }, + { + id: "DLC5BmKgFCL", + }, + { + id: "IPvrsWbm0EM", + }, + { + id: "NsdUpcVYozo", + }, + { + id: "mFkrU0bpyJI", + }, + { + id: "EihevoTWn2i", + }, + { + id: "uuuqWJhEpIp", + }, + { + id: "rtF9slZoSZr", + }, + { + id: "klvjKLLdGno", + }, + { + id: "WfNSb6FE2nb", + }, + { + id: "nAKvEswLh5C", + }, + { + id: "F8W53IkegIL", + }, + { + id: "qELjt3LRkSD", + }, + { + id: "er9S4CQ9QOn", + }, + { + id: "p0wkjMFKy4r", + }, + { + id: "JsCnEwJV3jQ", + }, + { + id: "UF6K94f0zFM", + }, + { + id: "DUDHgE5DECu", + }, + { + id: "U0Rwx5aTWEQ", + }, + { + id: "E6kvtMFCIYa", + }, + { + id: "UCpFs9Ve8aU", + }, + { + id: "uXfAcKF2L3E", + }, + { + id: "VmP7a5p4Zqc", + }, + { + id: "l3dWbXKlY9e", + }, + { + id: "xLuvmLCd9RR", + }, + { + id: "D3SI8fLzweN", + }, + { + id: "sZtDiRPeUYj", + }, + { + id: "I8pqrvjpJIj", + }, + { + id: "LV2b3vaLRl1", + }, + { + id: "VshFFac9uYG", + }, + { + id: "AnXoUM1tfNT", + }, + { + id: "X2gchOnaDRc", + }, + { + id: "wZTSgnydP5I", + }, + { + id: "gWUVw8ARDEq", + }, + { + id: "dq0DcnVFNGR", + }, + { + id: "xX4lIVqF4yb", + }, + { + id: "RzFAUpfhxhb", + }, + { + id: "AWLFlPWPf2t", + }, + { + id: "cHGivPbe1rV", + }, + { + id: "UAtEKSd5QTf", + }, + { + id: "oygTu90sWvA", + }, + { + id: "HtaEyk8HLgQ", + }, + { + id: "wYLjA4vN6Y9", + }, + { + id: "VlfXTyi4gsp", + }, + { + id: "t3a8Jgy1c9R", + }, + { + id: "els7som2jwm", + }, + { + id: "lZxQjgqInzr", + }, + { + id: "dhMoBTZNcoW", + }, + { + id: "CnW6jhYnh1O", + }, + { + id: "vH5rOm0P0ut", + }, + { + id: "Pmj0jWhE4KE", + }, + { + id: "ZFvOc6I47s9", + }, + { + id: "tqWQn0wU9l4", + }, + { + id: "dr7PV4gaqyK", + }, + { + id: "pQ7ezTjaaik", + }, + { + id: "LGdq6IxjmRL", + }, + { + id: "uYG1rUdsJJi", + }, + { + id: "W9RHzTyBZDQ", + }, + { + id: "v1m7SA0NNuH", + }, + { + id: "jmrkDwROsPW", + }, + { + id: "uxWHRgYxZeh", + }, + { + id: "h7ARR5vhSLF", + }, + { + id: "J8EiZ36T6fV", + }, + { + id: "GQcsUZf81vP", + }, + { + id: "iMZihUMzH92", + }, + { + id: "ii2KMnWMx2L", + }, + { + id: "vfYblw5LxdL", + }, + { + id: "gxLOLoHyHcl", + }, + { + id: "uKNyTj9O0Oe", + }, + { + id: "ZqeYgCpP2VM", + }, + { + id: "NwGeMu9DUv2", + }, + { + id: "OQLDqdxxgX6", + }, + { + id: "Vc36hi7PkoP", + }, + { + id: "VhRX5JDVo7R", + }, + { + id: "nIXOdAExhVP", + }, + { + id: "g0MpCfAFokB", + }, + { + id: "rLaGvUnv2BF", + }, + { + id: "e2WgqiasKnD", + }, + { + id: "sY1WN6LjmAx", + }, + { + id: "pmzk0ho80aA", + }, + { + id: "yOr4gLFxp2p", + }, + { + id: "OjTS752GbZE", + }, + { + id: "ywNG86IY4Ve", + }, + { + id: "oLdmDr8baLT", + }, + { + id: "mepHuAA9l51", + }, + { + id: "xWjiTeok0Sr", + }, + { + id: "Oy39dnEWOK2", + }, + { + id: "k6lOze3vTzP", + }, + { + id: "Ro0zTlehHpg", + }, + { + id: "kIbcKauMdlW", + }, + { + id: "fyrVG90gRSN", + }, + { + id: "ML4nIEJMkHm", + }, + { + id: "JU4dWUv0Pmd", + }, + { + id: "VXrJKs8hic4", + }, + { + id: "qurlLuBdUw2", + }, + { + id: "Oa8I45tlQB3", + }, + { + id: "wxMmC45UyNw", + }, + { + id: "PIGufMYeGrZ", + }, + { + id: "HC2NlwpoXfb", + }, + { + id: "nhxC7Mph8M9", + }, + { + id: "rjNWdlvZQhg", + }, + { + id: "N6Yva6Ga2ob", + }, + { + id: "YaMjtfKVSCk", + }, + { + id: "FsPHdw5CkZI", + }, + { + id: "QkaisroplQb", + }, + { + id: "i4zWyzPSMrh", + }, + { + id: "jeasS04VBBQ", + }, + { + id: "GQpxsB7tekR", + }, + { + id: "uBKLA06Ey0t", + }, + { + id: "Zf2v0kbI7ah", + }, + { + id: "sELnI7fwEKO", + }, + { + id: "hHKKi9WNoBG", + }, + { + id: "jKOEimI0OIb", + }, + { + id: "UgYg0YW7ZIh", + }, + { + id: "KcfW8NK2Z7Y", + }, + { + id: "k6DIO9LIEk9", + }, + { + id: "vsH94z9yzVM", + }, + { + id: "BqRElDluXGa", + }, + { + id: "GfjNCGYbhNY", + }, + { + id: "FYknVPR8kUy", + }, + { + id: "USJTnOZow1K", + }, + { + id: "BzEwqabuW19", + }, + { + id: "bW22Wc00b4S", + }, + { + id: "lGqIDvuelR8", + }, + { + id: "wEGaCHYF2R4", + }, + { + id: "ElF7UA6vc7t", + }, + { + id: "RzKeCma9qb1", + }, + { + id: "YQwB39NwRW1", + }, + { + id: "f3dAOiFiysx", + }, + { + id: "IlMQTFvcq9r", + }, + { + id: "I3vRP5Bni5b", + }, + { + id: "Vszj4vZDyUs", + }, + { + id: "cjvCZFoi2Dr", + }, + { + id: "OTIM7YYULO8", + }, + { + id: "rx2jPcgpSCz", + }, + { + id: "qEAo0RFI8BB", + }, + { + id: "ZoTFLp2zdOW", + }, + { + id: "BdbhfPGpTGA", + }, + { + id: "I2xsJugrbwE", + }, + { + id: "JI5lagoUJR4", + }, + { + id: "GLppjdUQswj", + }, + { + id: "dOqQZ6trynI", + }, + { + id: "DlDuNku1b66", + }, + { + id: "mshIal30ffW", + }, + { + id: "dmd7ZqYOz46", + }, + { + id: "YE8bEIV793k", + }, + { + id: "byp7w6Xd9Df", + }, + { + id: "QoROdPmIdY1", + }, + { + id: "kKMSAINBBoh", + }, + { + id: "bW5BaqrBM4K", + }, + { + id: "vlh9UgShYdg", + }, + { + id: "mzU18N69g2X", + }, + { + id: "gLpZOjx1xOd", + }, + { + id: "c9kiQJVCeuT", + }, + { + id: "Ox0ri02ccXu", + }, + { + id: "ZR6YVkSqGp4", + }, + { + id: "lOv6IFgr6Fs", + }, + { + id: "XzJyHqWngAw", + }, + { + id: "zQpYVEyAM2t", + }, + { + id: "dZszFGdGfXk", + }, + { + id: "kcpaOwiXcpI", + }, + { + id: "KkARfEGrujF", + }, + { + id: "czlLWO6ZiMW", + }, + { + id: "YSMY6ReKm1O", + }, + { + id: "NKdsYuW27kb", + }, + { + id: "HFLrPC4Nf6q", + }, + { + id: "bPRybdN20Xm", + }, + { + id: "jMGyFA7m1Ob", + }, + { + id: "BmYyh9bZ0sr", + }, + { + id: "xVqfScSbEJM", + }, + { + id: "cxZuOFAsQBI", + }, + { + id: "EJoI3HArJ2W", + }, + { + id: "r4W2vzlmPhm", + }, + { + id: "dBD9OHJFN8u", + }, + { + id: "oiYONDJ6qz7", + }, + { + id: "WUnOTGhfQRe", + }, + { + id: "PSjKMcPGUvA", + }, + { + id: "xczhpx28kNO", + }, + { + id: "Mod8hYpQ3Ma", + }, + { + id: "gPR1x4RGbru", + }, + { + id: "eYeaOXVt039", + }, + { + id: "DxixRJsjTRR", + }, + { + id: "oTYEEpgxtgX", + }, + { + id: "sM0Us0NkSez", + }, + { + id: "p310xqwAJge", + }, + { + id: "Iu8GKS6jET3", + }, + { + id: "kzmwOrwmzbW", + }, + { + id: "m5Oezf4608z", + }, + { + id: "tyw435fDg96", + }, + { + id: "vULnao2hV5v", + }, + { + id: "y1QDBoy4iCH", + }, + { + id: "ycKFsbs3gYy", + }, + { + id: "eHGj3TIsp1l", + }, + { + id: "xKaB8tfbTzm", + }, + { + id: "Wmtbcwvb9JE", + }, + { + id: "x0aAcsVjGVG", + }, + { + id: "ciuLlgCMd5n", + }, + { + id: "uUSZoQB21WW", + }, + { + id: "Kt4ixaGIniH", + }, + { + id: "kxj58cIaKGk", + }, + { + id: "f2RU8QWiEdJ", + }, + { + id: "sIVFEyNfOg4", + }, + { + id: "rn1Njd6WQ7e", + }, + { + id: "Uc0gGJh4WdQ", + }, + { + id: "a2CrEOAsZwS", + }, + { + id: "QVIjVnhdadP", + }, + { + id: "b66n8RyCrE7", + }, + { + id: "vELbGdEphPd", + }, + { + id: "BIlBi8ZUqXU", + }, + { + id: "J6zFMI7V6xJ", + }, + { + id: "lpAPY3QOY2D", + }, + { + id: "shwrbTUmrAx", + }, + { + id: "Eey5ShuFdu2", + }, + { + id: "XPYS5UmG78a", + }, + { + id: "NAnOQYpT2v3", + }, + { + id: "KMD1hlO3JFE", + }, + { + id: "DiszpKrYNg8", + }, + { + id: "M4hyYfnb21I", + }, + { + id: "mhrDYMwGych", + }, + { + id: "SDKI1oF3nj9", + }, + { + id: "ilHa4I89d7i", + }, + { + id: "dYHcR6J7Abc", + }, + { + id: "cZI3AWM7bIa", + }, + { + id: "cFrEPBbo327", + }, + { + id: "FSzvKuWP4eS", + }, + { + id: "t40pWlXlLX9", + }, + { + id: "pYFPHYbVbvx", + }, + { + id: "jKsytwVp8OS", + }, + { + id: "p9wTDnu3tEx", + }, + { + id: "dP5TQmTvcRZ", + }, + { + id: "bqtZrXoryDF", + }, + { + id: "CNlLL1booGy", + }, + { + id: "X3D19LoA2Ij", + }, + { + id: "coPUdvGUGP3", + }, + { + id: "SHni2YastC5", + }, + { + id: "aSfF9kuNINJ", + }, + { + id: "oDAoqMWcsJQ", + }, + { + id: "kDmM5jEmXK0", + }, + { + id: "OM5nuJkMj7n", + }, + { + id: "iECNVrw4d6L", + }, + { + id: "oWkwN01B6Nf", + }, + { + id: "wGsBlwh6Zzt", + }, + { + id: "yb9pJOYyLzp", + }, + { + id: "xFHN76GRabJ", + }, + { + id: "Yo4ctSutDX0", + }, + { + id: "aIsnJuZbmVA", + }, + { + id: "l3jnkNNpoD8", + }, + { + id: "j4ldsmvrjTE", + }, + { + id: "NJolnlvYgLr", + }, + { + id: "mzsOsz0NwNY", + }, + { + id: "tEnFVk1BBEv", + }, + { + id: "tEnHQCXABkG", + }, + { + id: "Dluer5aKZmd", + }, + { + id: "xjfCBow0pdh", + }, + { + id: "Qwzs1iinAI7", + }, + { + id: "w12PJJwhEkK", + }, + { + id: "ut6pZJE1b10", + }, + { + id: "zNWXUETn6ce", + }, + { + id: "v0dXACseLuB", + }, + { + id: "CVuDPfH9adP", + }, + { + id: "Yjuj2YSbzuO", + }, + { + id: "jH1un8fVjmr", + }, + { + id: "eiyQhIiq6B8", + }, + { + id: "QSDkMI3ZHVb", + }, + { + id: "fRjipab4tIQ", + }, + { + id: "kGUxyt8hzpF", + }, + { + id: "p1117dugcct", + }, + { + id: "SvadRExYvpx", + }, + { + id: "OO10hddb0SE", + }, + { + id: "WHJeeko8o9N", + }, + { + id: "LNyTm9Nwni5", + }, + { + id: "Os6Lfw4QNcT", + }, + { + id: "PIsHZpHEzn9", + }, + { + id: "weLTzWrLXCO", + }, + { + id: "OJnbpJANbHh", + }, + { + id: "n5r4IdR25JQ", + }, + { + id: "j6Zl2qpZhgd", + }, + { + id: "Gsnp20ValtV", + }, + { + id: "Fja9YiCxaGn", + }, + { + id: "JLKGG67z7oj", + }, + { + id: "tm90emjVcPi", + }, + { + id: "GPR07SjIMNl", + }, + { + id: "DwEfz1MN7Z5", + }, + { + id: "qjboFI0irVu", + }, + { + id: "IlnqGuxfQAw", + }, + { + id: "u3B5RqJuDAP", + }, + { + id: "zztUpkj96gc", + }, + { + id: "Osmj7KfUlrZ", + }, + { + id: "IiC3TA08F8V", + }, + { + id: "meaUCG7XimL", + }, + { + id: "AI85d4oFRyK", + }, + { + id: "jHtXQo5UYtL", + }, + { + id: "yLLgphtsgMa", + }, + { + id: "ho26229Td1I", + }, + { + id: "S9BZ2FDmhpH", + }, + { + id: "cr0hjPlp4QE", + }, + { + id: "D3oZZXtXjNk", + }, + { + id: "w3mBVfrWhXl", + }, + { + id: "PNdayccdNqs", + }, + { + id: "u9wACZdnnNn", + }, + { + id: "vuWtipcge5e", + }, + { + id: "LdCzrlFXSZ6", + }, + { + id: "wfhTwCcGWfz", + }, + { + id: "lnAYMiASnj7", + }, + { + id: "b7YDjQ6DBzt", + }, + { + id: "qiI48uDJtzq", + }, + { + id: "lMhlxJL0DIn", + }, + { + id: "xuk02oLk12O", + }, + { + id: "yuEsMxPps5z", + }, + { + id: "w9FJ9oAdFys", + }, + { + id: "gXAbBadYQSQ", + }, + { + id: "VTFUHIKkEKt", + }, + { + id: "bljCgu8PfV9", + }, + { + id: "d5TeV3FtYB3", + }, + { + id: "KH7LkPHm5k5", + }, + { + id: "g8upMTyEZGZ", + }, + { + id: "mCfmHR3PQzc", + }, + { + id: "HWjrSuoNPte", + }, + { + id: "m4suCjvR0Hy", + }, + { + id: "HV8RTzgcFH3", + }, + { + id: "CTIjpYuOfto", + }, + { + id: "JrSIoCOdTH2", + }, + { + id: "c17T6PNyIqX", + }, + { + id: "BoOqUEdaztk", + }, + { + id: "SUQ79lxHpDv", + }, + { + id: "fvbZsIWC5PZ", + }, + { + id: "Mi4dWRtfIOC", + }, + { + id: "q1qhDrIElrR", + }, + { + id: "ueUTpWZE3IC", + }, + { + id: "hGalwSiElh2", + }, + { + id: "vGV0p4gP5on", + }, + { + id: "JiCwXiLnQ1w", + }, + { + id: "p9KfD6eaRvu", + }, + { + id: "xw4Bzx4bLqh", + }, + { + id: "UQAZucrwwmm", + }, + { + id: "PzribgWYmPy", + }, + { + id: "KfUCAQoOIae", + }, + { + id: "ctfiYW0ePJ8", + }, + { + id: "pMEnu7BjqMz", + }, + { + id: "qTd47nsMoQn", + }, + { + id: "z10oLuMLhng", + }, + { + id: "XJ9CPEET8nz", + }, + { + id: "FRkITWYb9oD", + }, + { + id: "cJ7omISg7gG", + }, + { + id: "AMmRrk24PME", + }, + { + id: "J30SIG4ROT8", + }, + { + id: "pB1wIv0ih9M", + }, + { + id: "H5kqKK3bZMJ", + }, + { + id: "vjVkzYeSzpG", + }, + { + id: "nAH0uNc3b5f", + }, + { + id: "mL3UjzzQN5D", + }, + { + id: "r1I94XfbSBX", + }, + { + id: "B0IIlxDym76", + }, + { + id: "AWEzRXCSmYp", + }, + { + id: "FupvWBUFXr7", + }, + { + id: "Qc9lf4VM9bD", + }, + { + id: "Ltgs94mfeWq", + }, + { + id: "pc9pwq4cSNF", + }, + { + id: "OzrLhULKTvy", + }, + { + id: "aRXfvyonenP", + }, + { + id: "FqKVs7kYJg7", + }, + { + id: "yzyTRoBQBtr", + }, + { + id: "wB4tSXlryyO", + }, + { + id: "nv65aTD6Qzg", + }, + { + id: "tPEwONuAeAc", + }, + { + id: "gaOSAjPM07w", + }, + { + id: "VruuGsc1oVh", + }, + { + id: "lwmXBt6k0JT", + }, + { + id: "M7phBZQCjQc", + }, + { + id: "TbmzGYnMAsP", + }, + { + id: "HzN8AhyCR1V", + }, + { + id: "NYvIHCSOFaz", + }, + { + id: "kIZcDOtYRbO", + }, + { + id: "ae2K7lJ7hA2", + }, + { + id: "YLSb0oR14M8", + }, + { + id: "cJwpswYfRkt", + }, + { + id: "baxbG2rMvaI", + }, + { + id: "vlmZCCRuUxh", + }, + { + id: "RJEZLKOrp4e", + }, + { + id: "YOC7ohJ3HUg", + }, + { + id: "r5WWF9WDzoa", + }, + { + id: "ScBZT01BDyw", + }, + { + id: "QlCIp2S9NHs", + }, + { + id: "KtwEaQjnQ9z", + }, + { + id: "UlgEReuUPM4", + }, + { + id: "HOgWkpYH3KB", + }, + { + id: "hJrRl1znK7u", + }, + { + id: "LFpl1falVZi", + }, + { + id: "BPUf7eVuS1v", + }, + { + id: "nAy0YQmzZ1D", + }, + { + id: "uymjACQV8J7", + }, + { + id: "Zz4Vmg1i7mN", + }, + { + id: "ts1QGabzcYw", + }, + { + id: "uQhGaLpMMoh", + }, + { + id: "jv1xvOC4VcU", + }, + { + id: "WxtkBmuVGTX", + }, + { + id: "Uo4cyJwAhTW", + }, + { + id: "avwP02MD1P4", + }, + { + id: "hPHBEamfR9r", + }, + { + id: "qIRCo0MfuGb", + }, + { + id: "KXSqt7jv6DU", + }, + { + id: "pRg7dkjqNPc", + }, + { + id: "spz1nZ1VIYX", + }, + { + id: "ESghrfHAgQ0", + }, + { + id: "cM2BKSrj9F9", + }, + { + id: "zrX32H9sf55", + }, + { + id: "qHM0SCRfeKu", + }, + { + id: "rohYGuO7b2I", + }, + { + id: "jsW3dmtjV8M", + }, + { + id: "F3LMRR29sKE", + }, + { + id: "IQHQNoqd4nx", + }, + { + id: "Qw7c6Ckb0XC", + }, + { + id: "XE9k2CrZlS2", + }, + { + id: "Q5pPVaZBdF0", + }, + { + id: "KbO0JnhiMwl", + }, + { + id: "HxTPIXpHK2J", + }, + { + id: "lfA2tW7PLt6", + }, + { + id: "VBsTsEbzGPI", + }, + { + id: "cEYYXIWidyb", + }, + { + id: "O63vIA5MVn6", + }, + { + id: "M17B9ve1RUv", + }, + { + id: "aSnKB1sWaz4", + }, + { + id: "oNhx6y8wjOL", + }, + { + id: "YnWHcyaUx1U", + }, + { + id: "Wd4Apo7jsQX", + }, + { + id: "UMR5Y436O0F", + }, + { + id: "lRjySFLPOvV", + }, + { + id: "kSb9WbodZd7", + }, + { + id: "wyq4M1nzdh5", + }, + { + id: "A5Cb4E3bwzS", + }, + { + id: "ZZYbPIT34Xp", + }, + { + id: "ojHQOYnQp5f", + }, + { + id: "XJcrabyKTPv", + }, + { + id: "uSdfZnGdrrP", + }, + { + id: "cg52sYUwBf0", + }, + { + id: "kWjl2ct0ELu", + }, + { + id: "KwSj4DlRWAm", + }, + { + id: "fXOca0kyjxj", + }, + { + id: "Uwcj0mz78BV", + }, + { + id: "aZDsMrQFXbC", + }, + { + id: "yuTyqZbSguv", + }, + { + id: "NWOvvlkEQAr", + }, + { + id: "V8KusxnqYbH", + }, + { + id: "dpde2Qfmr9A", + }, + { + id: "MThDfZ8kLrW", + }, + { + id: "TgeZ5TBh38t", + }, + { + id: "lLyWhh4v6XJ", + }, + { + id: "BiSz8ng2H4N", + }, + { + id: "gGv9ATEs68L", + }, + { + id: "NXTfAHdVqXj", + }, + { + id: "cHYqyMzoZqF", + }, + { + id: "bqaUcGiZTDI", + }, + { + id: "lNVfti2VHOX", + }, + { + id: "KVcTmvHWZtq", + }, + { + id: "tRuRgsBkMBC", + }, + { + id: "OynYyQiFu82", + }, + { + id: "tdhB1JXYBx2", + }, + { + id: "yE9HDrKG67N", + }, + { + id: "iq8oNsM9ra5", + }, + { + id: "mVIHzvqRIyv", + }, + { + id: "axzvT9Ilziq", + }, + { + id: "syDzCfKOGBE", + }, + { + id: "Fj9jDQMcBqf", + }, + { + id: "QybF2Ku5Ozu", + }, + { + id: "XLq4SbnoBHy", + }, + { + id: "GixhLOGj4xL", + }, + { + id: "WCPMuBOvpVT", + }, + { + id: "Fp7mrXIFhKM", + }, + { + id: "qo9G4Mee6fh", + }, + { + id: "FAZVf4rx0QR", + }, + { + id: "gfWvbbgdjoS", + }, + { + id: "PRSH45Enj2c", + }, + { + id: "wicmjKI3xiP", + }, + { + id: "JAv2gkP4MJT", + }, + { + id: "j62ikvjGr2n", + }, + { + id: "VNAPHh6SyJJ", + }, + ], + userGroupAccesses: [ + { + access: "rwr-----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-r-----", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-r-----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-rw----", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-r-----", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + ], + programSections: [], + attributeValues: [], + programStages: [ + { + id: "hgpXE2JX97x", + }, + ], + userAccesses: [ + { + access: "r-rw----", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-r-----", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + }, + ], + categoryOptionCombos: [ + { + lastUpdated: "2017-05-10T17:53:55.158", + code: "default", + created: "2017-05-10T17:53:55.157", + name: "default", + id: "Xr12mI7VPn3", + ignoreApproval: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "Y7fcspgsU43", + }, + ], + }, + ], + programStages: [ + { + lastUpdated: "2021-03-01T11:52:49.333", + id: "hgpXE2JX97x", + created: "2016-06-08T13:38:09.797", + name: "BU02 - Register", + allowGenerateNextVisit: false, + executionDateLabel: "Date of initial clinical examination / Date d'examen clinique initial", + preGenerateUID: false, + publicAccess: "--------", + openAfterEnrollment: false, + repeatable: false, + featureType: "NONE", + remindCompleted: false, + displayGenerateEventBox: false, + generatedByEnrollmentDate: false, + validationStrategy: "ON_UPDATE_AND_INSERT", + autoGenerateEvent: true, + sortOrder: 1, + hideDueDate: false, + blockEntryForm: false, + enableUserAssignment: false, + minDaysFromStart: 0, + program: { + id: "lAu94BiaY5s", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "eK26I7dRbC4", + }, + notificationTemplates: [], + programStageDataElements: [ + { + lastUpdated: "2021-03-01T11:32:51.937", + id: "X0M4oNWjsTH", + created: "2016-06-08T13:43:40.011", + displayInReports: true, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 0, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "mwIgH1XXf6p", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.938", + id: "Oic1IVxpgq9", + created: "2016-06-08T13:43:40.046", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 1, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "J19avh4dgzs", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.935", + id: "ik9ISTmQ2Gf", + created: "2016-06-08T13:43:40.069", + displayInReports: true, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 2, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "Z8W89lDV4IL", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.933", + id: "SS8ELfQ7k8Q", + created: "2016-06-08T13:43:40.080", + displayInReports: true, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 3, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "HAt5fbygnrg", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.934", + id: "tI9OLIqrPrq", + created: "2016-06-08T13:43:40.090", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 4, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "xkt9nkHj5CA", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.936", + id: "ikP103Fn9Sm", + created: "2016-06-08T13:43:40.105", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 5, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "RETdv2kznbH", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.933", + id: "xiLmnCvUPdf", + created: "2016-06-08T13:43:40.117", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 6, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "QzAHATV8EWv", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.938", + id: "SoMCsw5q49F", + created: "2016-06-08T13:43:40.128", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 7, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "nidn593FWAF", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.935", + id: "uiXy4u4OWjX", + created: "2016-06-08T13:43:40.141", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 8, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "mTyzapAF9iT", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.937", + id: "KWGF449seo2", + created: "2016-06-08T13:43:40.152", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 9, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "qJOXKn3wSLS", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.934", + id: "aOPTA1pWe9Q", + created: "2016-06-08T13:43:40.167", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 10, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "qafL6BdLAkH", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.938", + id: "wyoMSLO3Yth", + created: "2016-06-08T13:43:40.179", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 11, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "GqDsjatLQXl", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.936", + id: "VlNK0nFtRoW", + created: "2016-06-08T13:43:40.194", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 12, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "QEFiXRZu7jY", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.935", + id: "fFRvBwrKPbL", + created: "2016-06-08T13:43:40.207", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 13, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "Sieb79556d6", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.934", + id: "CRNrasJPwQn", + created: "2016-06-08T13:43:40.221", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 14, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "PRaonbusSOU", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.934", + id: "bab7K5xD28E", + created: "2016-06-08T13:43:40.234", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 15, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "UY4A4oRdvqT", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.937", + id: "oWiZUXFOL0K", + created: "2016-06-08T13:43:40.247", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 16, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "j9OfhXT92Ej", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.936", + id: "sHKURVMWYuK", + created: "2016-06-08T13:43:40.263", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 17, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "TqqxE4hmd6Q", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.934", + id: "MHgGCjWZytP", + created: "2016-06-08T13:43:40.276", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 18, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "UCXRQtdD8K5", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.935", + id: "jEkBHzTLrbh", + created: "2016-06-08T13:43:40.290", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 19, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "UwC7RVH9Bwv", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.937", + id: "secyJOzy4J4", + created: "2016-06-08T13:43:40.305", + displayInReports: true, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 20, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "DHmAP1MjEoK", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.937", + id: "K4wQtB3HmdB", + created: "2016-11-30T01:47:34.226", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 23, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "o3F666LPvuM", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.937", + id: "VhzvUNRlsZR", + created: "2016-09-13T16:48:18.116", + displayInReports: true, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 24, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "IcCc2qu4DnR", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.937", + id: "HF4KB6yBSBu", + created: "2016-09-13T16:48:18.132", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 25, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "ffvtB32AWOF", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.936", + id: "ZbGhzG2pAxz", + created: "2016-11-02T23:17:46.433", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 26, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "adfHPJQRI3C", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.937", + id: "I7uqIgj34yA", + created: "2016-11-10T21:00:23.945", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 27, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "wiZbIU6sFG5", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.934", + id: "DUy9Sosd4t0", + created: "2016-11-10T21:00:24.035", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 28, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "dRoQ0J5dKuO", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.936", + id: "SIZDdeAClue", + created: "2016-11-10T21:00:24.048", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 29, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "pUzlgt7peZT", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.934", + id: "rPHoXZ87SHA", + created: "2016-11-10T21:00:24.060", + displayInReports: true, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 30, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "JAyZaIKj2zv", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.935", + id: "SrbZNYPXNB7", + created: "2016-11-10T21:03:54.212", + displayInReports: true, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 31, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "rWFQhbrnfMD", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.936", + id: "BlmMBSUevF0", + created: "2018-05-14T12:40:54.197", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 32, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "ZGCDiz5fZhb", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.935", + id: "f1OrYy2hEuL", + created: "2018-05-14T21:47:54.944", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 33, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "DAPNB0WxKMH", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.934", + id: "IOnR5EK74dX", + created: "2018-10-01T16:30:29.283", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: true, + sortOrder: 34, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "kzgD7nD4qLI", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.933", + id: "S8raF2aCPal", + created: "2020-01-14T21:28:13.551", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 36, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "LJHNsKzZ8Mg", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.938", + id: "XfbM7NmxzRh", + created: "2020-01-14T21:28:13.553", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 37, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "Q7dOlqe54eh", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.934", + id: "A1ouDbnrJ2K", + created: "2020-01-14T21:28:13.553", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 38, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "bTwp4cKNjgZ", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.937", + id: "E66yBUG6gTG", + created: "2020-01-14T21:28:13.551", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 38, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "gc8rKk6Hax6", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.936", + id: "wljGO43myNe", + created: "2020-01-14T21:28:13.552", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 39, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "PMlpZH7wYON", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.935", + id: "haxC12SZsvs", + created: "2020-01-14T21:28:13.554", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 40, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "KcYECFOPVpR", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.936", + id: "D6GevHoIeUZ", + created: "2020-01-14T21:28:13.553", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 41, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "e8XmDDvKCT1", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.934", + id: "AHdDAWvCDhC", + created: "2020-01-14T21:28:13.550", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 42, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "YrSJMlEJWEC", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.935", + id: "N3nkAIkavnF", + created: "2020-01-14T21:28:13.552", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 43, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "XyGxsyiIy4p", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.937", + id: "NtXysyvaAJZ", + created: "2020-01-14T21:28:13.553", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 44, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "uNdVSTX6lSE", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.937", + id: "AFGlVbgoLHS", + created: "2020-01-14T21:28:13.553", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 45, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "xIo6fsgpmdN", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.935", + id: "GT8JlUaUein", + created: "2020-01-14T23:53:14.411", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 46, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "BYPbyk5W7SL", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.936", + id: "p8M6Bz8SPDH", + created: "2020-01-15T00:22:45.728", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 46, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "VYGsfmL36PY", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.935", + id: "zI45THkcblV", + created: "2020-01-15T01:14:08.815", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 47, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "silWE44JpaQ", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.936", + id: "rq4keDCBetL", + created: "2020-01-16T00:22:51.423", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 48, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "ggwHn45jtgh", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + { + lastUpdated: "2021-03-01T11:32:51.938", + id: "uY2T46apQBY", + created: "2021-03-01T11:32:51.938", + displayInReports: false, + skipSynchronization: false, + externalAccess: false, + renderOptionsAsRadio: false, + allowFutureDate: false, + compulsory: false, + allowProvidedElsewhere: false, + sortOrder: 49, + favorite: false, + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + programStage: { + id: "hgpXE2JX97x", + }, + dataElement: { + id: "NzJkoIvwyCh", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + }, + ], + translations: [], + userGroupAccesses: [ + { + access: "r-rw----", + userGroupUid: "cT8WhjLqmH9", + displayName: "SS_NTD_Skin_Yaws_Surv_Global_Entry", + id: "cT8WhjLqmH9", + }, + { + access: "r-r-----", + userGroupUid: "IPzz6wlkIp0", + displayName: "NTD_SKIN_MYC_HQ", + id: "IPzz6wlkIp0", + }, + { + access: "r-r-----", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-r-----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-rw----", + userGroupUid: "bzuIPO5zQPV", + displayName: "SS_NTD_SKIN_BU_Event_Entry", + id: "bzuIPO5zQPV", + }, + { + access: "r-r-----", + userGroupUid: "cy0qXsDxzxe", + displayName: "SS_NTD_LSH_VL_LabLog_View", + id: "cy0qXsDxzxe", + }, + { + access: "r-r-----", + userGroupUid: "YWgdwKzbsnN", + displayName: "SS_NTD_LSH_VL_Event_View", + id: "YWgdwKzbsnN", + }, + { + access: "r-r-----", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-rw----", + userGroupUid: "I95k8bm5q5J", + displayName: "SS_NTD_LSH_SUPPLY_DispatchHQ_Entry", + id: "I95k8bm5q5J", + }, + { + access: "rwr-----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-rw----", + userGroupUid: "IsbhpWFqxOx", + displayName: "SS_NTD_Skin_MYC_GlSurv_Entry", + id: "IsbhpWFqxOx", + }, + { + access: "rwrw----", + userGroupUid: "r4gcKCyB5fF", + displayName: "NTD_LSH_VL_PHC", + id: "r4gcKCyB5fF", + }, + { + access: "r-r-----", + userGroupUid: "DRlUpjkyeT9", + displayName: "SS_NTD_SKIN_MYC_GlSurv_View", + id: "DRlUpjkyeT9", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-rw----", + userGroupUid: "AKCiUSICdUT", + displayName: "SS_NTD_LSH_VL_Event_Entry", + id: "AKCiUSICdUT", + }, + { + access: "r-rw----", + userGroupUid: "TbGA9fMJpCR", + displayName: "SS_NTD_LSH_VL_LabLog_Entry", + id: "TbGA9fMJpCR", + }, + { + access: "r-r-----", + userGroupUid: "KZ2hDNFMcvB", + displayName: "SS_NTD_LSH_SUPPLY_DispatchHQ_View", + id: "KZ2hDNFMcvB", + }, + { + access: "rwr-----", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-r-----", + userGroupUid: "UQe9YTumaCV", + displayName: "SS_NTD_SKIN_BU_Event_View", + id: "UQe9YTumaCV", + }, + { + access: "r-r-----", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "r-r-----", + userGroupUid: "peFZC729hMn", + displayName: "SS_NTD_Skin_Yaws_Surv_Global_View", + id: "peFZC729hMn", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-rw----", + displayName: "Duplicator Event", + id: "UlXOWwGGx7W", + userUid: "UlXOWwGGx7W", + }, + { + access: "r-r-----", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + programStageSections: [ + { + id: "JuoTOHBrYjD", + }, + { + id: "WKQvNhjIme6", + }, + { + id: "UaLdvwjiwJ4", + }, + { + id: "lA5R8jpglUg", + }, + { + id: "XoBIzGaZOLn", + }, + { + id: "bfQc4NoPHD9", + }, + { + id: "kmERl23mQ8R", + }, + { + id: "AJDiEfldKyX", + }, + ], + }, + ], + options: [ + { + code: "Op_Country_VEN", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Venezuela (Bolivarian Republic of)", + id: "JEYcfbIKDqM", + sortOrder: 240, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_XOD", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Rodrigues", + id: "H8AEpkxvjRU", + sortOrder: 177, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_RUS", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Russian Federation", + id: "y0ZlulciMOf", + sortOrder: 179, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_TUR", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Turkey", + id: "aewMRLmf9a9", + sortOrder: 223, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Partially healed", + created: "2019-06-05T07:42:44.563", + lastUpdated: "2020-11-20T12:44:52.663", + name: "Partially healed", + id: "Bp5pucqpTey", + sortOrder: 2, + optionSet: { + id: "tGr5pbgz67Z", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_QAT", + created: "2016-07-04T14:36:48.739", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Qatar", + id: "mKpPeqR2hX2", + sortOrder: 173, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_ETH", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Ethiopia", + id: "bdZkKddbme4", + sortOrder: 73, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_AFG", + created: "2016-07-04T14:36:48.721", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Afghanistan", + id: "GNF8jdbZ8Dw", + sortOrder: 3, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_MDG", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Madagascar", + id: "EvekRRBnMx4", + sortOrder: 127, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "1", + created: "2017-10-24T12:08:13.319", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Yes", + id: "CDIYMO9r2pv", + sortOrder: 1, + optionSet: { + id: "mJKvd2WXQtp", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Oui", + }, + ], + }, + { + code: "Op_Country_MOZ", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Mozambique", + id: "cDIdNAHmPrE", + sortOrder: 145, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_LKA", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Sri Lanka", + id: "boiuNkaV65n", + sortOrder: 205, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_ARM", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Armenia", + id: "idhYV7lcUgH", + sortOrder: 12, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_CIV", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Cote d'Ivoire", + id: "FjJGgqd4e0t", + sortOrder: 54, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_PRI", + created: "2016-07-04T14:36:48.739", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Puerto Rico", + id: "kRFzU19Xd1Y", + sortOrder: 172, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_SMR", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "San Marino", + id: "X1rvZAaWg66", + sortOrder: 188, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_PAN", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Panama", + id: "FjYmkLvW8hG", + sortOrder: 164, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_XX6", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Germany, Former Democratic Republic", + id: "htZ89VAlt02", + sortOrder: 85, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_GMB", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Gambia", + id: "afoGJejzdk9", + sortOrder: 82, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_NPL", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Nepal", + id: "X9nQoyVwrsn", + sortOrder: 149, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_ZWE", + created: "2016-07-04T14:36:48.754", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Zimbabwe", + id: "XObEvb5qGAA", + sortOrder: 248, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_PSE", + created: "2016-07-04T14:36:48.754", + lastUpdated: "2021-04-29T19:44:45.085", + name: "West Bank and Gaza Strip", + id: "u6kafve6PQR", + sortOrder: 244, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_MLT", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Malta", + id: "i7A3r980S0D", + sortOrder: 132, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_MNG", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Mongolia", + id: "rtFuIPE4rvK", + sortOrder: 141, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Referred", + created: "2019-06-05T07:40:39.023", + lastUpdated: "2020-11-26T15:59:21.153", + name: "Referred ", + id: "jtEMRBZkuHe", + sortOrder: 2, + optionSet: { + id: "ESSQcpsmBse", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Référé", + }, + ], + }, + { + code: "Died", + created: "2019-06-05T07:41:25.688", + lastUpdated: "2020-11-26T15:59:21.153", + name: "Died", + id: "i2FNFG2CgtO", + sortOrder: 4, + optionSet: { + id: "ESSQcpsmBse", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Mort", + }, + ], + }, + { + code: "Op_Country_LBY", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Libya", + id: "Pm4Jv8Hp8kE", + sortOrder: 123, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_LVA", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Latvia", + id: "ULrEOBUJNtC", + sortOrder: 119, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_PHL", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Philippines", + id: "UyeM42XQdUL", + sortOrder: 168, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_ATG", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Antigua and Barbuda", + id: "cQkGLAeVhei", + sortOrder: 10, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_LBN", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Lebanon", + id: "whL5no7kcff", + sortOrder: 120, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_VNM", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Viet Nam", + id: "cMsUdHzYjEm", + sortOrder: 241, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_DJI", + created: "2016-07-04T14:36:48.725", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Djibouti", + id: "dA1bzDuyJpa", + sortOrder: 64, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_GUF", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "French Guiana", + id: "LBzfnDqxl0M", + sortOrder: 79, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_Unknown", + created: "2016-07-04T14:36:48.721", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Country Unknown", + id: "ROD72U5e1KY", + sortOrder: 2, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_BHR", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Bahrain", + id: "yNiomNqisdT", + sortOrder: 18, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_BWA", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Botswana", + id: "eoBbae6v8Is", + sortOrder: 30, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_XX1", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "China: Province of Taiwan only", + id: "oN6N4VVymmD", + sortOrder: 48, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_NZL", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "New Zealand", + id: "kxbQFgx63UI", + sortOrder: 153, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_CPV", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Cabo Verde", + id: "eWVs9rhuRhl", + sortOrder: 37, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_SDF", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Sudan (former)", + id: "RfNF6JV3ecp", + sortOrder: 207, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_COD", + created: "2016-07-04T14:36:48.725", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Democratic Republic of the Congo", + id: "C4WPfBbbyLg", + sortOrder: 62, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_SLB", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Solomon Islands", + id: "AIx354YR3oy", + sortOrder: 200, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_KEN", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Kenya", + id: "SAmZtKTfG80", + sortOrder: 114, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_UZB", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Uzbekistan", + id: "QkFFXvco1QM", + sortOrder: 238, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_BRA", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Brazil", + id: "XysXrwrAdcb", + sortOrder: 31, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_KAZ", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Kazakhstan", + id: "G4eMnJNlEhT", + sortOrder: 113, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_NER", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Niger", + id: "tzhv86drYJH", + sortOrder: 155, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_SRB", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Serbia", + id: "WmpDHvUrndV", + sortOrder: 192, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_SYC", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Seychelles", + id: "IWYV2nhwswl", + sortOrder: 194, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_BEN", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Benin", + id: "yIswGPbNEZk", + sortOrder: 24, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_FRO", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Faroe Islands", + id: "cI94C2PcXsS", + sortOrder: 75, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_PLW", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Palau", + id: "hr3HqQmzN7f", + sortOrder: 163, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_ARE", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "United Arab Emirates", + id: "UftyLoueGB8", + sortOrder: 229, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Not done", + created: "2019-05-20T09:58:31.063", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Not done", + id: "ktd2pbc0DJl", + sortOrder: 4, + optionSet: { + id: "vQBOhNnE09a", + }, + style: { + icon: "no_positive", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Non effectue", + }, + { + property: "NAME", + locale: "fr", + value: "Non effectué", + }, + ], + }, + { + code: "Op_Country_BFA", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Burkina Faso", + id: "ftPDQflDhP4", + sortOrder: 35, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_CYP", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Cyprus", + id: "FaU1a7FxQGn", + sortOrder: 58, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_SHN", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Saint Helena", + id: "UxsQKwqAuGh", + sortOrder: 182, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_GRD", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Grenada", + id: "sZJBFcxVY8g", + sortOrder: 92, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_IND", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "India", + id: "TA7D8hfDnL6", + sortOrder: 103, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_SVK", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Slovakia", + id: "xPe8txtq1S7", + sortOrder: 198, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_BGR", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Bulgaria", + id: "UkW0Ae3paRK", + sortOrder: 34, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_DEU", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Germany", + id: "A4mupXkA7Tk", + sortOrder: 84, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_JAM", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Jamaica", + id: "C5Ly52gvu3w", + sortOrder: 110, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Healed", + created: "2019-06-05T07:40:23.311", + lastUpdated: "2020-11-26T15:59:21.153", + name: "Healed", + id: "Vir718Xtmot", + sortOrder: 1, + optionSet: { + id: "ESSQcpsmBse", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Guéri", + }, + ], + }, + { + code: "Op_Country_LUX", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Luxembourg", + id: "erOhrWyHhDY", + sortOrder: 126, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_NIU", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Niue", + id: "NBcbgJQuPq8", + sortOrder: 157, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_COM", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Comoros", + id: "ZtNH7EW51t0", + sortOrder: 50, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_SOM", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Somalia", + id: "ejSCE1PrzIR", + sortOrder: 201, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_GNQ", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Equatorial Guinea", + id: "oXpUVu6DhB2", + sortOrder: 70, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Unknown", + created: "2019-06-19T02:05:29.853", + lastUpdated: "2020-11-26T15:59:21.154", + name: "Unknown", + id: "kj4jM9bi8MB", + sortOrder: 4, + optionSet: { + id: "Al6DsS3DTve", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Ne sait pas", + }, + ], + }, + { + code: "Op_Country_DNK", + created: "2016-07-04T14:36:48.725", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Denmark", + id: "dZcbeWdMWsZ", + sortOrder: 63, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_WLF", + created: "2016-07-04T14:36:48.754", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Wallis and Futuna Islands", + id: "E3kChU0S6Ty", + sortOrder: 243, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_GBR", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "United Kingdom of Great Britain and Northern Ireland", + id: "eHHU7uow2mi", + sortOrder: 230, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_BRN", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Brunei Darussalam", + id: "g4TjSILnkWf", + sortOrder: 33, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_ISL", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Iceland", + id: "yDeHDMclb90", + sortOrder: 102, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_ANT", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Netherlands Antilles", + id: "FiPEiArokkj", + sortOrder: 151, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_KHM", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Cambodia", + id: "ekwPeN3y8hn", + sortOrder: 38, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_MSR", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Montserrat", + id: "HIoE2KG4A61", + sortOrder: 143, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_MDA", + created: "2016-07-04T14:36:48.739", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Republic of Moldova", + id: "aOpMFzlaTp0", + sortOrder: 175, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_BU_Tx_Other", + created: "2016-09-25T15:42:09.607", + lastUpdated: "2020-11-26T14:22:19.724", + name: "Other AB", + id: "s914v1OKfcW", + sortOrder: 3, + optionSet: { + id: "cYVMBWrU2Pi", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_AND", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Andorra", + id: "aaXQWSasFYh", + sortOrder: 7, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_CUB", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Cuba", + id: "X7tLQ18rhaG", + sortOrder: 56, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_COL", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Colombia", + id: "mQGGbSz6cee", + sortOrder: 49, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_CZE", + created: "2016-07-04T14:36:48.725", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Czech Republic", + id: "Rb24lhnATCV", + sortOrder: 59, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_TLS", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Timor-Leste", + id: "HepCKGVZOF9", + sortOrder: 217, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_MMR", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Myanmar", + id: "DwOOv26iA48", + sortOrder: 146, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_GUY", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Guyana", + id: "ielTPI84eJZ", + sortOrder: 98, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "LTFU", + created: "2019-06-05T07:43:31.598", + lastUpdated: "2020-11-20T12:44:52.663", + name: "Lost-to-follow-up", + id: "Nz4Cw1ckLD2", + sortOrder: 5, + optionSet: { + id: "tGr5pbgz67Z", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_GRC", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Greece", + id: "YkDHxJoSdxP", + sortOrder: 90, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_MWI", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Malawi", + id: "hK6W9ljkGqw", + sortOrder: 128, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_NFK", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Norfolk Island", + id: "g3iNcMjOKf2", + sortOrder: 158, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_BRB", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Barbados", + id: "Kfq910gLIPA", + sortOrder: 20, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_X12", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.084", + name: "United Kingdom, Scotland", + id: "GkfStXJBJqs", + sortOrder: 233, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_BIH", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Bosnia and Herzegovina", + id: "J38ZkiquJmy", + sortOrder: 29, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_BDI", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Burundi", + id: "N6LwQ834t7C", + sortOrder: 36, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_MUS", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Mauritius", + id: "nh1m0TLoIh8", + sortOrder: 136, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_CMR", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Cameroon", + id: "fVGpda6m2J1", + sortOrder: 39, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Referred", + created: "2019-06-05T07:43:04.892", + lastUpdated: "2020-11-20T12:44:52.663", + name: "Referred", + id: "y9unlLhGO4k", + sortOrder: 3, + optionSet: { + id: "tGr5pbgz67Z", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_NCL", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "New Caledonia", + id: "rM46cgyO8rb", + sortOrder: 152, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_PCN", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Pitcairn Island", + id: "XXEL9RuJPCO", + sortOrder: 169, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_CRI", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Costa Rica", + id: "DIMY2GI3N0D", + sortOrder: 53, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_JPN", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Japan", + id: "cBKW7YJr4rO", + sortOrder: 111, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_COG", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Congo", + id: "fSwZ2dQsngS", + sortOrder: 51, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_KWT", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Kuwait", + id: "x0psf8EdDge", + sortOrder: 116, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_UGA", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Uganda", + id: "aKJBQ499p7T", + sortOrder: 227, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_MLI", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Mali", + id: "xyem51RudNi", + sortOrder: 131, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_FLK", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Falkland Islands (Malvinas)", + id: "rmlWP6qawBg", + sortOrder: 74, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_HTI", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Haiti", + id: "eT6EbUJF8xK", + sortOrder: 99, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_TKM", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Turkmenistan", + id: "NEuSYMjN31a", + sortOrder: 224, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_ASM", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "American Samoa", + id: "RgllCEY0K6B", + sortOrder: 6, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_THA", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Thailand", + id: "DOHMCSDIbCb", + sortOrder: 214, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "New", + created: "2019-06-19T02:04:20.481", + lastUpdated: "2020-11-26T15:59:21.154", + name: "New case", + id: "qVOty3cF2WA", + sortOrder: 1, + optionSet: { + id: "Al6DsS3DTve", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Nouveau cas", + }, + ], + }, + { + code: "Op_Country_PRK", + created: "2016-07-04T14:36:48.725", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Democratic People's Republic of Korea", + id: "LhTmzpsK3Be", + sortOrder: 61, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_SDN", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Sudan", + id: "DcGZ6Rn7qle", + sortOrder: 206, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Gender_Unknown", + created: "2016-07-04T14:36:48.721", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Unknown", + id: "DL8exJ3mxUX", + sortOrder: 3, + optionSet: { + id: "apzFCMWeffA", + }, + style: { + icon: "question_circle_positive", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Ne sait pas", + }, + ], + }, + { + code: "Op_Country_BMU", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Bermuda", + id: "qwwz0vNXMD3", + sortOrder: 25, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_ERI", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Eritrea", + id: "jh3zGJQi06D", + sortOrder: 71, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_GHA", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Ghana", + id: "oTNU8h07Q7x", + sortOrder: 88, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_SYR", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Syrian Arab Republic", + id: "Mm43urCbMp9", + sortOrder: 212, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_NOR", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Norway", + id: "vKiKgfvmaOs", + sortOrder: 160, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_ROU", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Romania", + id: "PHh2qZ7KS7X", + sortOrder: 178, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_RWA", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Rwanda", + id: "D82B1UTMfPL", + sortOrder: 180, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_MHL", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Marshall Islands", + id: "BbVCIp24olr", + sortOrder: 133, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_HKG", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "China, Hong Kong Special Administrative Region", + id: "Ksv0YWONey8", + sortOrder: 46, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_TUN", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Tunisia", + id: "UPJI4u2Zpao", + sortOrder: 222, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_BOL", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Bolivia (Plurinational State of)", + id: "oPg7wRipLh4", + sortOrder: 27, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_BEL", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Belgium", + id: "EaE88cArPz5", + sortOrder: 22, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_AUS", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Australia", + id: "KAJ7p4zcnJt", + sortOrder: 14, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_GEO", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Georgia", + id: "wumaFN6DN2W", + sortOrder: 83, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_PRT", + created: "2016-07-04T14:36:48.739", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Portugal", + id: "j12hkmb7DHr", + sortOrder: 171, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Positive", + created: "2019-05-20T09:57:54.719", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Positive", + id: "PThinVriWjI", + sortOrder: 1, + optionSet: { + id: "vQBOhNnE09a", + }, + style: { + color: "#ef2222", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Positive", + }, + { + property: "NAME", + locale: "fr", + value: "Positif", + }, + ], + }, + { + code: "Op_Country_GLP", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Guadeloupe", + id: "y8urVZCHd1T", + sortOrder: 93, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_VUT", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Vanuatu", + id: "XnUtsN4s1HS", + sortOrder: 239, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Tx_complete_stop", + created: "2017-01-12T02:07:25.647", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Treatment stopped for medical reasons", + id: "YDDAfmgEMih", + sortOrder: 2, + optionSet: { + id: "TqJC6mhsOv6", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Traitement arrêté pour raisons médicales", + }, + ], + }, + { + code: "Op_Country_NGA", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Nigeria", + id: "Gyn24NJMikB", + sortOrder: 156, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_ALB", + created: "2016-07-04T14:36:48.721", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Albania", + id: "vRVl3O76lyn", + sortOrder: 4, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_BU_Tx_Rifam_Clar", + created: "2016-09-25T15:41:29.326", + lastUpdated: "2020-11-26T14:22:19.726", + name: "Rifampicin (10 mg/kg once daily) + Clarithromycin (7.5 mg/kg twice daily)", + id: "MuopyHevUQ8", + sortOrder: 2, + optionSet: { + id: "cYVMBWrU2Pi", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_SEN", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Senegal", + id: "vyw2jtfU39q", + sortOrder: 191, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_ZMB", + created: "2016-07-04T14:36:48.754", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Zambia", + id: "InEQETgtfSJ", + sortOrder: 247, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_NRU", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Nauru", + id: "otegwIeNezj", + sortOrder: 148, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_TZA", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.084", + name: "United Republic of Tanzania", + id: "Vz0KVAbfhRy", + sortOrder: 234, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_VIR", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Virgin Islands (USA)", + id: "Ba3mM6jHWLo", + sortOrder: 242, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_HRV", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Croatia", + id: "Q3JNcuoJx0i", + sortOrder: 55, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_USA", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.084", + name: "United States of America", + id: "WPZOE5WQJB9", + sortOrder: 235, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_XX7", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Germany, Former Federal Republic", + id: "gHRFa39BQfS", + sortOrder: 86, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_LTU", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Lithuania", + id: "bukRn9nzytv", + sortOrder: 125, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_SXM", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Sint Maarten (Dutch part)", + id: "VUldg1jCLBU", + sortOrder: 197, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_X10", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.084", + name: "United Kingdom, England and Wales", + id: "oPuTQ7Y5qMi", + sortOrder: 231, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_TUV", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Tuvalu", + id: "T6sKm7b1Iev", + sortOrder: 226, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_AIA", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Anguilla", + id: "sdGbRbHMjfM", + sortOrder: 9, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_EGY", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Egypt", + id: "OJ0DFyJMUOR", + sortOrder: 68, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_XX5", + created: "2016-07-04T14:36:48.725", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Czechoslovakia, Former", + id: "X6K4a7H6wDk", + sortOrder: 60, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_WSM", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Samoa", + id: "R3xI52BxTKZ", + sortOrder: 187, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_URY", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Uruguay", + id: "Iop94Prp34o", + sortOrder: 236, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_ISR", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Israel", + id: "aKXIbWkLKMT", + sortOrder: 108, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_LBR", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Liberia", + id: "QFaAj7RqyAm", + sortOrder: 122, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_SWE", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Sweden", + id: "iDEdgaPkpce", + sortOrder: 210, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_LSO", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Lesotho", + id: "WFTrDt1MKFN", + sortOrder: 121, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_SLV", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "El Salvador", + id: "mOkzdx2h0SG", + sortOrder: 69, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Recurrent", + created: "2020-01-15T00:50:39.619", + lastUpdated: "2020-11-26T15:59:21.154", + name: "Recurrent/Relapse", + id: "w9Ve9MgDnPI", + sortOrder: 2, + optionSet: { + id: "Al6DsS3DTve", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Recurrent/Rechute", + }, + ], + }, + { + code: "Op_Country_ME1", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "The former state union Serbia and Montenegro", + id: "odQjRlU11Fy", + sortOrder: 215, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_FRA", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "France", + id: "kGIuN6tjNZI", + sortOrder: 78, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_YEM", + created: "2016-07-04T14:36:48.754", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Yemen", + id: "jVvKs0pcKlP", + sortOrder: 245, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_MYS", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Malaysia", + id: "zjI336whk3I", + sortOrder: 129, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_MTQ", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Martinique", + id: "KeMEEipyNOm", + sortOrder: 134, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_BLZ", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Belize", + id: "sFfFUiIkgDi", + sortOrder: 23, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_SLE", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Sierra Leone", + id: "H0I6K4ARBWm", + sortOrder: 195, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_IDN", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Indonesia", + id: "cSqaO8XLuNi", + sortOrder: 104, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_KNA", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Saint Kitts and Nevis", + id: "eh5c1MmXn8n", + sortOrder: 183, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Pending", + created: "2019-05-20T09:58:18.074", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Pending", + id: "XfXIcYn2wZB", + sortOrder: 3, + optionSet: { + id: "vQBOhNnE09a", + }, + style: { + color: "#fbb77f", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "En attente", + }, + ], + }, + { + code: "Op_Country_SAU", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Saudi Arabia", + id: "OaWk0B8LtgK", + sortOrder: 190, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Gender_Female", + created: "2016-07-04T14:36:48.721", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Female", + id: "M0BoqSns1KA", + sortOrder: 1, + optionSet: { + id: "apzFCMWeffA", + }, + style: { + icon: "woman_positive", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Femme", + }, + ], + }, + { + code: "Op_Country_BLR", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Belarus", + id: "eTIA3EPkyY4", + sortOrder: 21, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_PAK", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Pakistan", + id: "Ps7iJKJcqb8", + sortOrder: 162, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_SGP", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Singapore", + id: "qWdvoHjEe3v", + sortOrder: 196, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_BHS", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Bahamas", + id: "Rbwa1KlOCgs", + sortOrder: 17, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_MCO", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Monaco", + id: "EkjCgj5oboN", + sortOrder: 140, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_MDV", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Maldives", + id: "taFo3wtW5Eg", + sortOrder: 130, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_UKR", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Ukraine", + id: "So5Bmn1i2r2", + sortOrder: 228, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_LIE", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Liechtenstein", + id: "PP1n12Xmd4T", + sortOrder: 124, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_GAB", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Gabon", + id: "o3fBa5sIh8Q", + sortOrder: 81, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_GTM", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Guatemala", + id: "iQ3o79B3Rte", + sortOrder: 95, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_SCG", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Serbia and Montenegro, Former", + id: "aF9IHLadpWc", + sortOrder: 193, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Category_III", + created: "2019-06-05T07:46:06.721", + lastUpdated: "2020-11-26T15:59:21.153", + name: "Category III", + id: "Q9P2sPWVRfP", + sortOrder: 3, + optionSet: { + id: "nF2JkM7IXth", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Categorie III", + }, + ], + }, + { + code: "Op_YesNo_No", + created: "2016-07-04T14:36:48.721", + lastUpdated: "2021-04-29T19:44:45.085", + name: "No", + id: "oq0sE3HHt7O", + sortOrder: 2, + optionSet: { + id: "vDeP0h2cO2n", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_Other", + created: "2016-07-04T14:36:48.721", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Other country", + id: "rpYKUF2SUbF", + sortOrder: 1, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_PYF", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "French Polynesia", + id: "LXpaR05sYo1", + sortOrder: 80, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_HUN", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Hungary", + id: "RU3idIirhku", + sortOrder: 101, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_JOR", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Jordan", + id: "y6bDnL6k4A9", + sortOrder: 112, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Categroy_U", + created: "2019-06-05T07:46:23.813", + lastUpdated: "2020-11-26T15:59:21.153", + name: "Category unknown", + id: "JbKYZp1CAIa", + sortOrder: 4, + optionSet: { + id: "nF2JkM7IXth", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Categorie inconnue", + }, + ], + }, + { + code: "Op_Country_FIN", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Finland", + id: "l4T2wiKbQUL", + sortOrder: 77, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_TKL", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Tokelau", + id: "hOBEs8WJceb", + sortOrder: 219, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_IRN", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Iran (Islamic Republic of)", + id: "h3NVEPvY7io", + sortOrder: 105, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_SSD", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "South Sudan", + id: "tFp489Mt4rO", + sortOrder: 203, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_CYM", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Cayman Islands", + id: "nF2ZeKjSsf6", + sortOrder: 41, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Died", + created: "2019-06-05T07:43:21.317", + lastUpdated: "2020-11-20T12:44:52.663", + name: "Died", + id: "wMfa0vuPDQz", + sortOrder: 4, + optionSet: { + id: "tGr5pbgz67Z", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_ECU", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Ecuador", + id: "s54dxecMtMv", + sortOrder: 67, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_SVN", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Slovenia", + id: "aLAfEob7jZh", + sortOrder: 199, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_PRY", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Paraguay", + id: "QBJvSnKk1uW", + sortOrder: 166, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_CUW", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Curacao", + id: "vk3eaLsdOlS", + sortOrder: 57, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_AGO", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Angola", + id: "E1e60DQj7ER", + sortOrder: 8, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_TGO", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Togo", + id: "E4Ihgx3j6z1", + sortOrder: 218, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_TCD", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Chad", + id: "PTQq9HoYV7h", + sortOrder: 43, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_LAO", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Lao People's Democratic Republic", + id: "toz6mYv2HYF", + sortOrder: 118, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_CHL", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Chile", + id: "jxyr8IWOLiN", + sortOrder: 44, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_PNG", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Papua New Guinea", + id: "mxwaApcX2QJ", + sortOrder: 165, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_POL", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Poland", + id: "pBZQqnOre43", + sortOrder: 170, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_MRT", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Mauritania", + id: "FbfNBXab6GY", + sortOrder: 135, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_XX8", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Germany, West Berlin", + id: "Cq9V6QqCNme", + sortOrder: 87, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_YesNo_Yes", + created: "2016-07-04T14:36:48.721", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Yes", + id: "PHv5RMoDR3I", + sortOrder: 1, + optionSet: { + id: "vDeP0h2cO2n", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_DMA", + created: "2016-07-04T14:36:48.725", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Dominica", + id: "KkPkhg9dyZS", + sortOrder: 65, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_CHE", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Switzerland", + id: "qkBlV5zXEbg", + sortOrder: 211, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_PER", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Peru", + id: "REll9OOAWVM", + sortOrder: 167, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_FSM", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Micronesia (Federated States of)", + id: "hfkGnSUY6US", + sortOrder: 139, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_SWZ", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Eswatini", + id: "HN0RT0Kv1mD", + sortOrder: 209, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_GIN", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Guinea", + id: "X9j8yAE8jR1", + sortOrder: 96, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Retreatment", + created: "2019-06-19T02:05:49.689", + lastUpdated: "2020-11-26T15:59:21.154", + name: "Retreatment", + id: "fHwmBRPO12f", + sortOrder: 3, + optionSet: { + id: "Al6DsS3DTve", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Re-traitement", + }, + ], + }, + { + code: "Op_Country_KGZ", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Kyrgyzstan", + id: "MHhH9Uf7Rj5", + sortOrder: 117, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_TTO", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Trinidad and Tobago", + id: "qoefJ5oz2kr", + sortOrder: 221, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_REU", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Reunion", + id: "ByOnLinEgi8", + sortOrder: 176, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_BGD", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Bangladesh", + id: "bDDw1zZn6H4", + sortOrder: 19, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_VCT", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Saint Vincent and the Grenadines", + id: "sEucrpuANOo", + sortOrder: 186, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Tx_complete_unknown", + created: "2017-01-12T02:07:56.408", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Treatment completion unknown", + id: "TaiTS6k5ivC", + sortOrder: 4, + optionSet: { + id: "TqJC6mhsOv6", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Ne sait pas", + }, + ], + }, + { + code: "Op_Country_VGB", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "British Virgin Islands", + id: "LaqvuIL8pST", + sortOrder: 32, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_FJI", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Fiji", + id: "TIVtt9En4eU", + sortOrder: 76, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "9", + created: "2017-10-24T12:08:13.319", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Unknown", + id: "WBd1cXQvxhx", + sortOrder: 3, + optionSet: { + id: "mJKvd2WXQtp", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Ne sait pas", + }, + ], + }, + { + code: "Op_Country_LCA", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Saint Lucia", + id: "yxRTRFzIdMC", + sortOrder: 184, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_GIB", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Gibraltar", + id: "HUm42tSwG8f", + sortOrder: 89, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_TCA", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Turks and Caicos Islands", + id: "evtYWLkx81g", + sortOrder: 225, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_ABW", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Aruba", + id: "YINMRPJJN5V", + sortOrder: 13, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Unknown", + created: "2019-05-20T09:59:15.560", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Unknown", + id: "RG6QTAyr0lY", + sortOrder: 5, + optionSet: { + id: "vQBOhNnE09a", + }, + style: { + icon: "question_circle_positive", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Ne sait pas", + }, + ], + }, + { + code: "Op_Country_BTN", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Bhutan", + id: "mdKnXxpQ0LQ", + sortOrder: 26, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_NIC", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Nicaragua", + id: "PDWVapGBjI8", + sortOrder: 154, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_GNB", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Guinea-Bissau", + id: "pGnTV1cqwc0", + sortOrder: 97, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_ZAF", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "South Africa", + id: "h6dADh5Zx6g", + sortOrder: 202, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_X13", + created: "2016-07-04T14:36:48.754", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Yugoslavia, Former", + id: "fTISV70dLXk", + sortOrder: 246, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_IRL", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Ireland", + id: "GAyjbdM621v", + sortOrder: 107, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_ITA", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Italy", + id: "JY1pHQtniXy", + sortOrder: 109, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "2", + created: "2017-10-24T12:08:13.319", + lastUpdated: "2021-04-29T19:44:45.085", + name: "No", + id: "Vu05B3MCtV2", + sortOrder: 2, + optionSet: { + id: "mJKvd2WXQtp", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Non", + }, + ], + }, + { + code: "Op_BU_Tx_Rifam_Strepto", + created: "2016-09-25T15:41:13.619", + lastUpdated: "2020-11-26T14:22:19.727", + name: "Rifampicin (10 mg/kg once daily) + Streptomycin (15 mg/kg once daily)", + id: "AzJhPoyTFg8", + sortOrder: 1, + optionSet: { + id: "cYVMBWrU2Pi", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Tx_complete_defaulter", + created: "2017-01-12T02:07:40.177", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Defaulter", + id: "AsAN6YZCEGh", + sortOrder: 3, + optionSet: { + id: "TqJC6mhsOv6", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Abandon", + }, + ], + }, + { + code: "Op_Gender_Male", + created: "2016-07-04T14:36:48.721", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Male", + id: "FFuAh3CgxqV", + sortOrder: 2, + optionSet: { + id: "apzFCMWeffA", + }, + style: { + icon: "man_positive", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Homme", + }, + ], + }, + { + code: "Op_Country_CHN", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "China", + id: "WJW9ptUoJ3A", + sortOrder: 45, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_KOR", + created: "2016-07-04T14:36:48.739", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Republic of Korea", + id: "J88eOGKY9Na", + sortOrder: 174, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_COK", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Cook Islands", + id: "iIyvPvW311F", + sortOrder: 52, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_AUT", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Austria", + id: "R9eRZscHOto", + sortOrder: 15, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_HND", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Honduras", + id: "uRNwaxhc5Tx", + sortOrder: 100, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_OMN", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Oman", + id: "owGF3JqsoAA", + sortOrder: 161, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_MAC", + created: "2016-07-04T14:36:48.724", + lastUpdated: "2021-04-29T19:44:45.084", + name: "China, Macao Special Administrative Region", + id: "tiH4Rvkr1AU", + sortOrder: 47, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_SPM", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Saint Pierre and Miquelon", + id: "rdwbewfVXxn", + sortOrder: 185, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_CAN", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Canada", + id: "sZjbQs6bl0o", + sortOrder: 40, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Category_II", + created: "2019-06-05T07:45:51.559", + lastUpdated: "2020-11-26T15:59:21.153", + name: "Category II", + id: "TQIAxf467mJ", + sortOrder: 2, + optionSet: { + id: "nF2JkM7IXth", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Categorie II", + }, + ], + }, + { + code: "Category_I", + created: "2019-06-05T07:45:32.676", + lastUpdated: "2020-11-26T15:59:21.153", + name: "Category I", + id: "B1dtYYHplC2", + sortOrder: 1, + optionSet: { + id: "nF2JkM7IXth", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Categorie I", + }, + ], + }, + { + code: "Op_Country_MKD", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "The former Yugoslav republic of Macedonia", + id: "MXH9qJlmiHj", + sortOrder: 216, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_DZA", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Algeria", + id: "OPp0jE41c71", + sortOrder: 5, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_MEX", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Mexico", + id: "sYu5WdUFxxx", + sortOrder: 138, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_SUR", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Suriname", + id: "NkdCgJPQtjw", + sortOrder: 208, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_DOM", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Dominican Republic", + id: "Snabf2xuq8j", + sortOrder: 66, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_GUM", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Guam", + id: "bzazWy2jvpr", + sortOrder: 94, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_YesNo_Unknown", + created: "2016-07-04T14:36:48.721", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Unknown", + id: "do7Z43P6VB8", + sortOrder: 3, + optionSet: { + id: "vDeP0h2cO2n", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_IRQ", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Iraq", + id: "oKQ4Km493KI", + sortOrder: 106, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_NAM", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Namibia", + id: "MpAktPYMf90", + sortOrder: 147, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_CAF", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Central African Republic", + id: "QkKjW5DH4u9", + sortOrder: 42, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_TJK", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Tajikistan", + id: "VyBTcplZkJQ", + sortOrder: 213, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_STP", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Sao Tome and Principe", + id: "LsGOICl7YIw", + sortOrder: 189, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_AZE", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Azerbaijan", + id: "kTOG6zPV8n8", + sortOrder: 16, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_ARG", + created: "2016-07-04T14:36:48.722", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Argentina", + id: "st3MnmCFpzF", + sortOrder: 11, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_KIR", + created: "2016-07-04T14:36:48.728", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Kiribati", + id: "RTgnQw3zAy6", + sortOrder: 115, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Completely healed", + created: "2019-06-05T07:42:34.447", + lastUpdated: "2020-11-20T12:44:52.663", + name: "Complety healed", + id: "p4hdUBmGKQE", + sortOrder: 1, + optionSet: { + id: "tGr5pbgz67Z", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_X11", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.084", + name: "United Kingdom, Northern Ireland", + id: "ywkstElBpo1", + sortOrder: 232, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_TON", + created: "2016-07-04T14:36:48.742", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Tonga", + id: "Rke3037hiuV", + sortOrder: 220, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_XX9", + created: "2016-07-04T14:36:48.743", + lastUpdated: "2021-04-29T19:44:45.084", + name: "USSR, Former", + id: "q5u0ehHpFgt", + sortOrder: 237, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_MNP", + created: "2016-07-04T14:36:48.731", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Northern Mariana Islands", + id: "P0fL0rvUSn7", + sortOrder: 159, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "LTFU", + created: "2019-06-05T07:41:10.854", + lastUpdated: "2020-11-26T15:59:21.153", + name: "Lost-to-follow-up", + id: "FeBILAXpi53", + sortOrder: 3, + optionSet: { + id: "ESSQcpsmBse", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Perdu de vue", + }, + ], + }, + { + code: "Op_Country_XX4", + created: "2016-07-04T14:36:48.740", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Ryu Kyu Islands", + id: "RN3bZeeFEbl", + sortOrder: 181, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_MYT", + created: "2016-07-04T14:36:48.729", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Mayotte", + id: "cL4OmqIczsH", + sortOrder: 137, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_GRL", + created: "2016-07-04T14:36:48.727", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Greenland", + id: "jGbV0Ne53W5", + sortOrder: 91, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_NLD", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Netherlands", + id: "ATcSjkUG9QV", + sortOrder: 150, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Tx_complete_yes", + created: "2017-01-12T02:07:11.352", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Treatment completed", + id: "yeYDY2bogxs", + sortOrder: 1, + optionSet: { + id: "TqJC6mhsOv6", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Traitement complété", + }, + ], + }, + { + code: "Op_Country_EST", + created: "2016-07-04T14:36:48.726", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Estonia", + id: "cqfa35jkUEd", + sortOrder: 72, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_MAR", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Morocco", + id: "DjVJE4YFp6g", + sortOrder: 144, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_BES", + created: "2016-07-04T14:36:48.723", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Bonaire, Saint Eustatius and Saba", + id: "O8O4CpJVYOD", + sortOrder: 28, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_ESP", + created: "2016-07-04T14:36:48.741", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Spain", + id: "z6RCpgOD0ve", + sortOrder: 204, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Op_Country_MNE", + created: "2016-07-04T14:36:48.730", + lastUpdated: "2021-04-29T19:44:45.084", + name: "Montenegro", + id: "OcaAwln2R11", + sortOrder: 142, + optionSet: { + id: "gUyghXvtx1M", + }, + attributeValues: [], + translations: [], + }, + { + code: "Negative", + created: "2019-05-20T09:58:05.446", + lastUpdated: "2021-04-29T19:44:45.085", + name: "Negative", + id: "ADcYKbV8BWA", + sortOrder: 2, + optionSet: { + id: "vQBOhNnE09a", + }, + style: { + color: "#4ae769", + }, + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Negatif", + }, + { + property: "NAME", + locale: "fr", + value: "Negative", + }, + ], + }, + ], + categoryOptions: [ + { + code: "default", + created: "2017-05-10T17:53:55.138", + lastUpdated: "2018-07-27T16:09:07.425", + name: "default", + id: "Y7fcspgsU43", + shortName: "default", + publicAccess: "rwrw----", + user: { + id: "eK26I7dRbC4", + }, + userGroupAccesses: [], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [], + }, + ], + }, + dataset1: { + categoryCombos: [ + { + code: "ADMIN_DUTY_CC_SERVER_INSTANCES", + created: "2019-09-07T16:20:01.763", + lastUpdated: "2021-02-15T17:20:34.920", + name: "ADMIN_DUTY_CC_SERVER_INSTANCES", + id: "Fkyud1WKXWo", + dataDimensionType: "DISAGGREGATION", + publicAccess: "--------", + skipTotal: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + translations: [], + userAccesses: [], + categories: [ + { + id: "dL4wpziK7qW", + }, + ], + }, + { + code: "default", + created: "2017-05-10T17:53:55.156", + lastUpdated: "2019-02-20T16:22:55.336", + name: "default", + id: "JzvGfLYkX17", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + skipTotal: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "eK26I7dRbC4", + }, + userGroupAccesses: [], + translations: [], + userAccesses: [], + categories: [ + { + id: "DMyxTSpvKOp", + }, + ], + }, + ], + optionSets: [ + { + code: "ADMIN_DUTY_OS_EXECUTION", + created: "2019-09-07T16:25:48.068", + lastUpdated: "2021-02-15T17:20:34.822", + name: "ADMIN_DUTY_OS_EXECUTION", + id: "YFZsozOszeV", + publicAccess: "--------", + version: 6, + valueType: "TEXT", + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [], + options: [ + { + id: "SE6Aj9WR7dD", + }, + { + id: "rLojINCgwbi", + }, + { + id: "Fk33B9detC3", + }, + ], + }, + { + code: "ADMIN_DUTY_OS_ASSIGNEE", + created: "2019-09-07T16:03:06.414", + lastUpdated: "2021-02-15T17:20:34.822", + name: "ADMIN_DUTY_OS_ASSIGNEE", + id: "wsWZHTuG77p", + publicAccess: "--------", + version: 7, + valueType: "TEXT", + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [], + options: [ + { + id: "fKLt8V7YHct", + }, + { + id: "visof66qA5i", + }, + { + id: "wfetyLNtn4V", + }, + ], + }, + ], + categoryOptionCombos: [ + { + lastUpdated: "2021-02-15T17:20:34.945", + created: "2019-09-10T16:35:30.534", + name: "WHO_MALARIA", + id: "SvcP5ROAff3", + ignoreApproval: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "RkYSGG4MNhT", + }, + ], + }, + { + lastUpdated: "2017-05-10T17:53:55.158", + code: "default", + created: "2017-05-10T17:53:55.157", + name: "default", + id: "Xr12mI7VPn3", + ignoreApproval: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "Y7fcspgsU43", + }, + ], + }, + { + lastUpdated: "2021-02-15T17:20:34.945", + created: "2019-09-07T16:20:01.809", + name: "WHO_TRAINING", + id: "qpRs0fsxSeB", + ignoreApproval: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "buv02XljUjE", + }, + ], + }, + { + lastUpdated: "2021-02-15T17:20:34.945", + created: "2019-09-10T16:35:30.521", + name: "WHO_PREPROD-VIS", + id: "jnNy9wEOvyu", + ignoreApproval: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "OgGW61Izy8Y", + }, + ], + }, + { + lastUpdated: "2021-02-15T17:20:34.945", + created: "2019-09-10T16:35:30.507", + name: "WHO_DEV-CONT", + id: "JhrMD8OMFyf", + ignoreApproval: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "BclrlHiDxv1", + }, + ], + }, + { + lastUpdated: "2021-02-15T17:20:34.945", + created: "2019-09-07T16:20:01.807", + name: "WHO_PROD", + id: "hHIs5QYHbQP", + ignoreApproval: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "rhGywpV4vXF", + }, + ], + }, + { + lastUpdated: "2021-02-15T17:20:34.945", + created: "2019-09-07T16:20:01.804", + name: "WHO_PREPROD", + id: "irkK9eyChrC", + ignoreApproval: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "QllodPhxVeb", + }, + ], + }, + { + lastUpdated: "2021-02-15T17:20:34.945", + created: "2020-09-30T17:50:25.933", + name: "WHO_PREPROD_CONT", + id: "jXGgFnnjHAW", + ignoreApproval: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "BnkWfh38wMf", + }, + ], + }, + { + lastUpdated: "2021-02-15T17:20:34.945", + created: "2019-09-07T16:20:01.797", + name: "WHO_DEV", + id: "YkqDSFqJw7G", + ignoreApproval: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "jFwR5mUrvAM", + }, + ], + }, + ], + options: [ + { + code: "ADMIN_DUTY_OS_ASSIGNEE_EST", + created: "2019-09-07T16:03:30.022", + lastUpdated: "2021-02-15T17:20:34.796", + name: "EyeSeeTea", + id: "fKLt8V7YHct", + sortOrder: 1, + optionSet: { + id: "wsWZHTuG77p", + }, + attributeValues: [], + translations: [], + }, + { + code: "ADMIN_DUTY_OS_EXECUTION_MANUAL", + created: "2019-09-07T16:26:21.011", + lastUpdated: "2021-02-15T17:20:34.796", + name: "Manual", + id: "rLojINCgwbi", + sortOrder: 2, + optionSet: { + id: "YFZsozOszeV", + }, + attributeValues: [], + translations: [], + }, + { + code: "ADMIN_DUTY_OS_EXECUTION_NOT_EXECUTED", + created: "2019-09-07T16:26:11.003", + lastUpdated: "2021-02-15T17:20:34.796", + name: "Not executed", + id: "SE6Aj9WR7dD", + sortOrder: 1, + optionSet: { + id: "YFZsozOszeV", + }, + attributeValues: [], + translations: [], + }, + { + code: "ADMIN_DUTY_OS_ASSIGNEE_RAMON", + created: "2019-09-07T16:04:34.499", + lastUpdated: "2021-02-15T17:20:34.796", + name: "Ramon Jiménez Pomareta", + id: "wfetyLNtn4V", + sortOrder: 3, + optionSet: { + id: "wsWZHTuG77p", + }, + attributeValues: [], + translations: [], + }, + { + code: "ADMIN_DUTY_OS_ASSIGNEE_PETAR", + created: "2019-09-07T16:04:00.726", + lastUpdated: "2021-02-15T17:20:34.796", + name: "Petar Jovanovic", + id: "visof66qA5i", + sortOrder: 2, + optionSet: { + id: "wsWZHTuG77p", + }, + attributeValues: [], + translations: [], + }, + { + code: "ADMIN_DUTY_OS_EXECUTION_AUTOMATED", + created: "2019-09-07T16:26:31.328", + lastUpdated: "2021-02-15T17:20:34.796", + name: "Automated", + id: "Fk33B9detC3", + sortOrder: 3, + optionSet: { + id: "YFZsozOszeV", + }, + attributeValues: [], + translations: [], + }, + ], + sections: [ + { + code: "ADMIN_DUTY_SECTION_STATS", + created: "2019-09-07T16:09:38.592", + lastUpdated: "2021-02-15T17:20:35.130", + name: "Platform statistics", + id: "d6i3UcpWuBG", + sortOrder: 8, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + dataSet: { + id: "FnYgTt843G2", + }, + greyedFields: [], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [], + }, + { + code: "ADMIN_DUTY_SECTION_GENERAL", + created: "2019-09-07T16:08:14.045", + lastUpdated: "2021-02-15T17:20:35.127", + name: "General", + id: "FAiD9yYVNUD", + sortOrder: 1, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + dataSet: { + id: "FnYgTt843G2", + }, + greyedFields: [], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [ + { + id: "DZmTHrT9JPg", + }, + { + id: "XtznMFZssKc", + }, + { + id: "EvRMsyVW63b", + }, + ], + }, + { + code: "ADMIN_DUTY_SECTION_SERVER_ANALYTICS_MIDNIGHT", + created: "2019-09-07T16:09:01.724", + lastUpdated: "2021-02-15T17:20:35.129", + name: "Server analytics", + id: "aTewMAn9H4J", + sortOrder: 3, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + dataSet: { + id: "FnYgTt843G2", + }, + greyedFields: [ + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "Dx70nNMP3mB.SvcP5ROAff3", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_MALARIA", + externalAccess: false, + dimensionItem: "Dx70nNMP3mB.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "SvcP5ROAff3", + }, + dataElement: { + id: "Dx70nNMP3mB", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "crQfKtNHSHB.SvcP5ROAff3", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_MALARIA", + externalAccess: false, + dimensionItem: "crQfKtNHSHB.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "SvcP5ROAff3", + }, + dataElement: { + id: "crQfKtNHSHB", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "mjDgqDPsT4J.SvcP5ROAff3", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_MALARIA", + externalAccess: false, + dimensionItem: "mjDgqDPsT4J.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "SvcP5ROAff3", + }, + dataElement: { + id: "mjDgqDPsT4J", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "Dx70nNMP3mB.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "Dx70nNMP3mB.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu", + }, + dataElement: { + id: "Dx70nNMP3mB", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "tHGRW9Zwyxh.SvcP5ROAff3", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_MALARIA", + externalAccess: false, + dimensionItem: "tHGRW9Zwyxh.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "SvcP5ROAff3", + }, + dataElement: { + id: "tHGRW9Zwyxh", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "tHGRW9Zwyxh.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "tHGRW9Zwyxh.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu", + }, + dataElement: { + id: "tHGRW9Zwyxh", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "CTbBS3ArglV.SvcP5ROAff3", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_MALARIA", + externalAccess: false, + dimensionItem: "CTbBS3ArglV.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "SvcP5ROAff3", + }, + dataElement: { + id: "CTbBS3ArglV", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "mjDgqDPsT4J.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "mjDgqDPsT4J.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_RUN WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu", + }, + dataElement: { + id: "mjDgqDPsT4J", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "qpgGXrkTrgj.SvcP5ROAff3", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_MALARIA", + externalAccess: false, + dimensionItem: "qpgGXrkTrgj.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "SvcP5ROAff3", + }, + dataElement: { + id: "qpgGXrkTrgj", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "qpgGXrkTrgj.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "qpgGXrkTrgj.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_LOGS WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu", + }, + dataElement: { + id: "qpgGXrkTrgj", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "crQfKtNHSHB.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "crQfKtNHSHB.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu", + }, + dataElement: { + id: "crQfKtNHSHB", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.432", + id: "CTbBS3ArglV.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.432", + name: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "CTbBS3ArglV.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu", + }, + dataElement: { + id: "CTbBS3ArglV", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + ], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [ + { + id: "mjDgqDPsT4J", + }, + { + id: "CTbBS3ArglV", + }, + { + id: "crQfKtNHSHB", + }, + { + id: "tHGRW9Zwyxh", + }, + { + id: "Dx70nNMP3mB", + }, + { + id: "qpgGXrkTrgj", + }, + ], + }, + { + created: "2021-02-12T11:43:21.147", + lastUpdated: "2021-02-22T17:38:52.011", + name: "Metadata reports", + id: "SHHYEsdT55c", + sortOrder: 7, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + dataSet: { + id: "FnYgTt843G2", + }, + greyedFields: [ + { + lastUpdated: "2021-09-29T06:00:52.438", + id: "BLlpSeTreIO.SvcP5ROAff3", + created: "2021-09-29T06:00:52.438", + name: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_MALARIA", + externalAccess: false, + dimensionItem: "BLlpSeTreIO.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "SvcP5ROAff3", + }, + dataElement: { + id: "BLlpSeTreIO", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.438", + id: "BLlpSeTreIO.qpRs0fsxSeB", + created: "2021-09-29T06:00:52.438", + name: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_TRAINING", + shortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_TRAINING", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_TRAINING", + displayShortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_TRAINING", + externalAccess: false, + dimensionItem: "BLlpSeTreIO.qpRs0fsxSeB", + displayFormName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_TRAINING", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "qpRs0fsxSeB", + }, + dataElement: { + id: "BLlpSeTreIO", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.438", + id: "BLlpSeTreIO.hHIs5QYHbQP", + created: "2021-09-29T06:00:52.438", + name: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_PROD", + shortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_PROD", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_PROD", + displayShortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_PROD", + externalAccess: false, + dimensionItem: "BLlpSeTreIO.hHIs5QYHbQP", + displayFormName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_PROD", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "hHIs5QYHbQP", + }, + dataElement: { + id: "BLlpSeTreIO", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.438", + id: "BLlpSeTreIO.jXGgFnnjHAW", + created: "2021-09-29T06:00:52.438", + name: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_PREPROD_CONT", + shortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_PREPROD_CONT", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_PREPROD_CONT", + displayShortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_PREPROD_CONT", + externalAccess: false, + dimensionItem: "BLlpSeTreIO.jXGgFnnjHAW", + displayFormName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_PREPROD_CONT", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "jXGgFnnjHAW", + }, + dataElement: { + id: "BLlpSeTreIO", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.438", + id: "BLlpSeTreIO.JhrMD8OMFyf", + created: "2021-09-29T06:00:52.438", + name: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_DEV-CONT", + shortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_DEV-CONT", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_DEV-CONT", + displayShortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS WHO_DEV-CONT", + externalAccess: false, + dimensionItem: "BLlpSeTreIO.JhrMD8OMFyf", + displayFormName: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS WHO_DEV-CONT", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "JhrMD8OMFyf", + }, + dataElement: { + id: "BLlpSeTreIO", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + ], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [ + { + id: "BLlpSeTreIO", + }, + ], + }, + { + code: "ADMIN_DUTY_SECTION_SERVER_STATUS", + created: "2019-09-07T16:08:45.341", + lastUpdated: "2021-02-15T17:20:35.128", + name: "Server status", + id: "NuxyY2XJPhZ", + sortOrder: 2, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + dataSet: { + id: "FnYgTt843G2", + }, + greyedFields: [ + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "CufSsSZAUme.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_MALARIA", + externalAccess: false, + dimensionItem: "CufSsSZAUme.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "SvcP5ROAff3", + }, + dataElement: { + id: "CufSsSZAUme", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "XrDIy4Gg3YR.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "XrDIy4Gg3YR.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu", + }, + dataElement: { + id: "XrDIy4Gg3YR", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "gfRkAIfJ2eO.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_MALARIA", + externalAccess: false, + dimensionItem: "gfRkAIfJ2eO.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "SvcP5ROAff3", + }, + dataElement: { + id: "gfRkAIfJ2eO", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "gfRkAIfJ2eO.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "gfRkAIfJ2eO.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu", + }, + dataElement: { + id: "gfRkAIfJ2eO", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "F5cEZ7QM03v.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_MALARIA", + externalAccess: false, + dimensionItem: "F5cEZ7QM03v.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "SvcP5ROAff3", + }, + dataElement: { + id: "F5cEZ7QM03v", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "RsZWioTWyYa.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "RsZWioTWyYa.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu", + }, + dataElement: { + id: "RsZWioTWyYa", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "fjMS4MkPcEQ.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_MALARIA", + externalAccess: false, + dimensionItem: "fjMS4MkPcEQ.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "SvcP5ROAff3", + }, + dataElement: { + id: "fjMS4MkPcEQ", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "RsZWioTWyYa.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_MALARIA", + externalAccess: false, + dimensionItem: "RsZWioTWyYa.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "SvcP5ROAff3", + }, + dataElement: { + id: "RsZWioTWyYa", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "CufSsSZAUme.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "CufSsSZAUme.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu", + }, + dataElement: { + id: "CufSsSZAUme", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "qoGoSfiLnbH.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_MALARIA", + externalAccess: false, + dimensionItem: "qoGoSfiLnbH.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "SvcP5ROAff3", + }, + dataElement: { + id: "qoGoSfiLnbH", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "XrDIy4Gg3YR.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_MALARIA", + externalAccess: false, + dimensionItem: "XrDIy4Gg3YR.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "SvcP5ROAff3", + }, + dataElement: { + id: "XrDIy4Gg3YR", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "fjMS4MkPcEQ.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "fjMS4MkPcEQ.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu", + }, + dataElement: { + id: "fjMS4MkPcEQ", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "K9IzaTNqEXa.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_MALARIA", + externalAccess: false, + dimensionItem: "K9IzaTNqEXa.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "SvcP5ROAff3", + }, + dataElement: { + id: "K9IzaTNqEXa", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "KOUVktXBH9W.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_MALARIA", + externalAccess: false, + dimensionItem: "KOUVktXBH9W.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "SvcP5ROAff3", + }, + dataElement: { + id: "KOUVktXBH9W", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "sFLQxZe72Ym.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "sFLQxZe72Ym.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu", + }, + dataElement: { + id: "sFLQxZe72Ym", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "F5cEZ7QM03v.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "F5cEZ7QM03v.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu", + }, + dataElement: { + id: "F5cEZ7QM03v", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "qoGoSfiLnbH.hHIs5QYHbQP", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_PROD", + shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_PROD", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_PROD", + displayShortName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_PROD", + externalAccess: false, + dimensionItem: "qoGoSfiLnbH.hHIs5QYHbQP", + displayFormName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_PROD", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "hHIs5QYHbQP", + }, + dataElement: { + id: "qoGoSfiLnbH", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "kDL0aoZKYfV.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_MALARIA", + externalAccess: false, + dimensionItem: "kDL0aoZKYfV.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "SvcP5ROAff3", + }, + dataElement: { + id: "kDL0aoZKYfV", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "sFLQxZe72Ym.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_MALARIA", + externalAccess: false, + dimensionItem: "sFLQxZe72Ym.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "SvcP5ROAff3", + }, + dataElement: { + id: "sFLQxZe72Ym", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "HaV3tXKCCnW.hHIs5QYHbQP", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_PROD", + shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_PROD", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_PROD", + displayShortName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_PROD", + externalAccess: false, + dimensionItem: "HaV3tXKCCnW.hHIs5QYHbQP", + displayFormName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_PROD", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "hHIs5QYHbQP", + }, + dataElement: { + id: "HaV3tXKCCnW", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "kDL0aoZKYfV.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "kDL0aoZKYfV.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu", + }, + dataElement: { + id: "kDL0aoZKYfV", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "BCytw0TARJ0.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_MALARIA", + externalAccess: false, + dimensionItem: "BCytw0TARJ0.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "SvcP5ROAff3", + }, + dataElement: { + id: "BCytw0TARJ0", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "HaV3tXKCCnW.SvcP5ROAff3", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_MALARIA", + externalAccess: false, + dimensionItem: "HaV3tXKCCnW.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "SvcP5ROAff3", + }, + dataElement: { + id: "HaV3tXKCCnW", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "K9IzaTNqEXa.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "K9IzaTNqEXa.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu", + }, + dataElement: { + id: "K9IzaTNqEXa", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "BCytw0TARJ0.jnNy9wEOvyu", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_PREPROD-VIS", + shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_PREPROD-VIS", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_PREPROD-VIS", + displayShortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_PREPROD-VIS", + externalAccess: false, + dimensionItem: "BCytw0TARJ0.jnNy9wEOvyu", + displayFormName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_PREPROD-VIS", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "jnNy9wEOvyu", + }, + dataElement: { + id: "BCytw0TARJ0", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.430", + id: "KOUVktXBH9W.hHIs5QYHbQP", + created: "2021-09-29T06:00:52.430", + name: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_PROD", + shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_PROD", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_PROD", + displayShortName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_PROD", + externalAccess: false, + dimensionItem: "KOUVktXBH9W.hHIs5QYHbQP", + displayFormName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_PROD", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "hHIs5QYHbQP", + }, + dataElement: { + id: "KOUVktXBH9W", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + ], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [ + { + id: "fjMS4MkPcEQ", + }, + { + id: "F5cEZ7QM03v", + }, + { + id: "kDL0aoZKYfV", + }, + { + id: "RsZWioTWyYa", + }, + { + id: "CufSsSZAUme", + }, + { + id: "gfRkAIfJ2eO", + }, + { + id: "BCytw0TARJ0", + }, + { + id: "K9IzaTNqEXa", + }, + { + id: "XrDIy4Gg3YR", + }, + { + id: "sFLQxZe72Ym", + }, + { + id: "HaV3tXKCCnW", + }, + { + id: "qoGoSfiLnbH", + }, + { + id: "KOUVktXBH9W", + }, + ], + }, + { + code: "ADMIN_DUTY_SECTION_PUBLIC_OBJECTS", + created: "2020-04-13T10:08:46.467", + lastUpdated: "2021-02-15T17:20:35.130", + name: "Public objects", + id: "flhHBsC1cUi", + sortOrder: 5, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + dataSet: { + id: "FnYgTt843G2", + }, + greyedFields: [ + { + lastUpdated: "2021-09-29T06:00:52.434", + id: "Dvx3NSCzImT.SvcP5ROAff3", + created: "2021-09-29T06:00:52.434", + name: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK WHO_MALARIA", + externalAccess: false, + dimensionItem: "Dvx3NSCzImT.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "SvcP5ROAff3", + }, + dataElement: { + id: "Dvx3NSCzImT", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.434", + id: "HF0iZZ0NqDE.SvcP5ROAff3", + created: "2021-09-29T06:00:52.434", + name: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT WHO_MALARIA", + externalAccess: false, + dimensionItem: "HF0iZZ0NqDE.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "SvcP5ROAff3", + }, + dataElement: { + id: "HF0iZZ0NqDE", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-09-29T06:00:52.434", + id: "ulfI0WDmW92.SvcP5ROAff3", + created: "2021-09-29T06:00:52.434", + name: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT WHO_MALARIA", + shortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT WHO_MALARIA", + aggregationType: "NONE", + displayName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT WHO_MALARIA", + displayShortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT WHO_MALARIA", + externalAccess: false, + dimensionItem: "ulfI0WDmW92.SvcP5ROAff3", + displayFormName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT WHO_MALARIA", + favorite: false, + dimensionItemType: "DATA_ELEMENT_OPERAND", + access: { + read: true, + update: true, + externalize: true, + delete: true, + write: true, + manage: true, + }, + categoryOptionCombo: { + id: "SvcP5ROAff3", + }, + dataElement: { + id: "ulfI0WDmW92", + }, + favorites: [], + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + ], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [ + { + id: "Dvx3NSCzImT", + }, + { + id: "HF0iZZ0NqDE", + }, + { + id: "ulfI0WDmW92", + }, + ], + }, + { + code: "ADMIN_DUTY_SECTION_COORDINATION_TASKS", + created: "2019-09-07T16:09:21.109", + lastUpdated: "2021-02-15T17:20:35.130", + name: "Coordination tasks", + id: "DCs4RcHnJVE", + sortOrder: 6, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + dataSet: { + id: "FnYgTt843G2", + }, + greyedFields: [], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [ + { + id: "nN6za0sVirK", + }, + { + id: "tCxs6EgMIo6", + }, + { + id: "lXknxysDVIL", + }, + { + id: "vde072gdxKY", + }, + { + id: "UdVGMNKksVU", + }, + { + id: "dnzBDLlnSZs", + }, + { + id: "Em7yGYvgAU3", + }, + { + id: "pPyNTfJE0PG", + }, + { + id: "wf8MI19zCzV", + }, + { + id: "bSdpvUwkRa1", + }, + { + id: "m4MjhFUcecj", + }, + { + id: "CIHmMkvNYDO", + }, + ], + }, + ], + dataElements: [ + { + code: "ADMIN_DUTY_DE_ANALYTICS_LOGS", + lastUpdated: "2021-02-15T17:20:34.973", + id: "qpgGXrkTrgj", + created: "2019-09-12T09:31:27.018", + name: "ADMIN_DUTY_DE_ANALYTICS_LOGS", + shortName: "ADMIN_DUTY_DE_ANALYTICS_LOGS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Relevant logs of the analytics run", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION", + lastUpdated: "2021-02-15T17:20:34.973", + id: "tHGRW9Zwyxh", + created: "2019-09-07T16:27:04.436", + name: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION", + shortName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TEXT", + formName: "How did the analytics run?", + zeroIsSignificant: false, + optionSet: { + id: "YFZsozOszeV", + }, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_TASKS_RESOLVED_RUN", + lastUpdated: "2021-02-15T17:20:34.972", + id: "UdVGMNKksVU", + created: "2019-09-07T16:32:08.443", + name: "ADMIN_DUTY_DE_TASKS_RESOLVED_RUN", + shortName: "ADMIN_DUTY_DE_TASKS_RESOLVED_RUN", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did you review the resolved issues on redmine?", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS", + lastUpdated: "2021-02-15T17:20:34.971", + id: "CTbBS3ArglV", + created: "2019-09-12T09:13:35.840", + name: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS", + shortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did the analytics run as per the logs? ", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_STATUS_COMMENTS", + lastUpdated: "2021-02-15T17:20:34.974", + id: "RsZWioTWyYa", + created: "2019-09-07T16:22:12.647", + name: "ADMIN_DUTY_DE_STATUS_COMMENTS", + shortName: "ADMIN_DUTY_DE_STATUS_COMMENTS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Comments about the server status", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK", + lastUpdated: "2021-02-15T17:20:34.974", + id: "Dvx3NSCzImT", + created: "2020-02-05T11:04:52.379", + name: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK", + shortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did you check the public objects?", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS", + lastUpdated: "2021-02-15T17:20:34.975", + id: "KOUVktXBH9W", + created: "2021-01-06T10:43:31.254", + name: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS", + shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Error logs on the docker instances clone", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_ANALYTICS_RUN", + lastUpdated: "2021-02-15T17:20:34.973", + id: "mjDgqDPsT4J", + created: "2019-09-07T16:24:19.762", + name: "ADMIN_DUTY_DE_ANALYTICS_RUN", + shortName: "ADMIN_DUTY_DE_ANALYTICS_RUN", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did you check the analytics status?", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS", + lastUpdated: "2021-02-15T17:20:34.974", + id: "XrDIy4Gg3YR", + created: "2019-09-16T06:14:07.937", + name: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS", + shortName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Comments on the cloning of the instances", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_TASKS_MAIL_RUN", + lastUpdated: "2021-02-15T17:20:34.975", + id: "nN6za0sVirK", + created: "2019-09-07T16:29:39.215", + name: "ADMIN_DUTY_DE_TASKS_MAIL_RUN", + shortName: "ADMIN_DUTY_DE_TASKS_MAIL_RUN", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did you check the integrated mailbox?", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_TASKS_BACKLOG_COMMENT", + lastUpdated: "2021-02-15T17:20:34.976", + id: "vde072gdxKY", + created: "2019-09-07T16:31:13.785", + name: "ADMIN_DUTY_DE_TASKS_BACKLOG_COMMENT", + shortName: "ADMIN_DUTY_DE_TASKS_BACKLOG_COMMENT", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Comments about the backlog issues on redmine", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_TASKS_MAIL_COMMENT", + lastUpdated: "2021-02-15T17:20:34.972", + id: "tCxs6EgMIo6", + created: "2019-09-07T16:30:08.001", + name: "ADMIN_DUTY_DE_TASKS_MAIL_COMMENT", + shortName: "ADMIN_DUTY_DE_TASKS_MAIL_COMMENT", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Comments about the integrated mailbox", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE", + lastUpdated: "2021-02-15T17:20:34.975", + id: "CufSsSZAUme", + created: "2019-09-16T06:11:22.559", + name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE", + shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did you check the database backup?", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS", + lastUpdated: "2021-02-15T17:20:34.974", + id: "gfRkAIfJ2eO", + created: "2019-09-16T06:12:35.695", + name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS", + shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Comments on database backup", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_TASKS_RESOLVED_COMMENT", + lastUpdated: "2021-02-15T17:20:34.974", + id: "dnzBDLlnSZs", + created: "2019-09-07T16:31:37.739", + name: "ADMIN_DUTY_DE_TASKS_RESOLVED_COMMENT", + shortName: "ADMIN_DUTY_DE_TASKS_RESOLVED_COMMENT", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Comments about the resolved issues on redmine", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS", + lastUpdated: "2021-02-15T17:20:34.976", + id: "qoGoSfiLnbH", + created: "2021-01-06T10:42:59.738", + name: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS", + shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Comments on the docker instances clone", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_TASKS_CLOSE_RUN", + lastUpdated: "2021-02-15T17:20:34.971", + id: "Em7yGYvgAU3", + created: "2019-09-07T16:33:45.824", + name: "ADMIN_DUTY_DE_TASKS_CLOSE_RUN", + shortName: "ADMIN_DUTY_DE_TASKS_CLOSE_RUN", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did you assign the issues that should be closed (30 days) on redmine?", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_STATUS_SERVER_UP", + lastUpdated: "2021-02-15T17:20:34.972", + id: "fjMS4MkPcEQ", + created: "2019-09-07T16:20:22.633", + name: "ADMIN_DUTY_DE_STATUS_SERVER_UP", + shortName: "ADMIN_DUTY_DE_STATUS_SERVER_UP", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Is the instance up and running?", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_TASKS_CHECK_PROD_ERRORS", + lastUpdated: "2021-02-15T17:20:34.972", + id: "CIHmMkvNYDO", + created: "2020-10-27T11:41:54.481", + name: "ADMIN_DUTY_DE_TASKS_CHECK_PROD_ERRORS", + shortName: "ADMIN_DUTY_DE_TASKS_CHECK_PROD_ERRORS", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did you check the prod logs errors? (only on Thursdays)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "kD52FGwJgDF", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_GENERAL_COMMENTS", + lastUpdated: "2021-02-15T17:20:34.973", + id: "XtznMFZssKc", + created: "2019-09-07T16:07:03.672", + name: "ADMIN_DUTY_DE_GENERAL_COMMENTS", + shortName: "ADMIN_DUTY_DE_GENERAL_COMMENTS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Comments of the duty day", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + lastUpdated: "2021-02-24T09:42:43.263", + id: "BLlpSeTreIO", + created: "2021-02-12T11:48:32.824", + name: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS", + shortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "rw------", + valueType: "LONG_TEXT", + formName: "Number of invalid expressions in indicators", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "kD52FGwJgDF", + }, + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT", + lastUpdated: "2021-02-15T17:20:34.974", + id: "ulfI0WDmW92", + created: "2020-02-05T11:06:05.458", + name: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT", + shortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Comments about the public objects", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS", + lastUpdated: "2021-02-15T17:20:34.972", + id: "BCytw0TARJ0", + created: "2019-09-16T06:12:04.486", + name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS", + shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Error logs on database backup", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_TASKS_CLOSE_COMMENT", + lastUpdated: "2021-02-15T17:20:34.975", + id: "pPyNTfJE0PG", + created: "2019-09-07T16:33:20.750", + name: "ADMIN_DUTY_DE_TASKS_CLOSE_COMMENT", + shortName: "ADMIN_DUTY_DE_TASKS_CLOSE_COMMENT", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Comments about the issues that should be closed (30 days) on redmine", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS", + lastUpdated: "2021-02-15T17:20:34.973", + id: "kDL0aoZKYfV", + created: "2019-09-07T16:21:58.469", + name: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS", + shortName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Failure logs", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD", + lastUpdated: "2021-02-15T17:20:34.973", + id: "crQfKtNHSHB", + created: "2019-09-12T09:26:00.926", + name: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD", + shortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did the analytics run as per the dashboard? ", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_GENERAL_ASSIGNEE", + lastUpdated: "2021-02-15T17:20:34.975", + id: "DZmTHrT9JPg", + created: "2019-09-07T16:05:25.606", + name: "ADMIN_DUTY_DE_GENERAL_ASSIGNEE", + shortName: "ADMIN_DUTY_DE_GENERAL_ASSIGNEE", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TEXT", + formName: "Assignee of the duty day", + zeroIsSignificant: false, + optionSet: { + id: "wsWZHTuG77p", + }, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_TASKS_BACKLOG_RUN", + lastUpdated: "2021-02-15T17:20:34.975", + id: "lXknxysDVIL", + created: "2019-09-07T16:30:52.035", + name: "ADMIN_DUTY_DE_TASKS_BACKLOG_RUN", + shortName: "ADMIN_DUTY_DE_TASKS_BACKLOG_RUN", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did you assign the backlog issues on redmine?", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS", + lastUpdated: "2021-02-15T17:20:34.971", + id: "sFLQxZe72Ym", + created: "2019-09-16T06:14:44.611", + name: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS", + shortName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Error logs on the cloning of the instances", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT", + lastUpdated: "2021-02-15T17:20:34.975", + id: "F5cEZ7QM03v", + created: "2019-09-07T16:21:16.224", + name: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT", + shortName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "INTEGER_ZERO_OR_POSITIVE", + formName: "Number of failures in the current day", + zeroIsSignificant: true, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_TASKS_DELETE_USERS", + lastUpdated: "2021-02-15T17:20:34.973", + id: "wf8MI19zCzV", + created: "2020-07-27T19:15:34.122", + name: "ADMIN_DUTY_DE_TASKS_DELETE_USERS", + shortName: "ADMIN_DUTY_DE_TASKS_DELETE_USERS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: + "Did you deleted all users with the suffix _TOBEDELETED? (only the FIRST duty day of each month)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_GENERAL_PENDING_TASKS", + lastUpdated: "2021-02-15T17:20:34.975", + id: "EvRMsyVW63b", + created: "2019-09-07T16:10:19.581", + name: "ADMIN_DUTY_DE_GENERAL_PENDING_TASKS", + shortName: "ADMIN_DUTY_DE_GENERAL_PENDING_TASKS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Pending tasks of the duty day", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_TASKS_RETURN_CHANNEL", + lastUpdated: "2021-02-15T17:20:34.975", + id: "m4MjhFUcecj", + created: "2021-02-08T10:13:58.780", + name: "ADMIN_DUTY_DE_TASKS_RETURN_CHANNEL", + shortName: "ADMIN_DUTY_DE_TASKS_RETURN_CHANNEL", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "rw------", + valueType: "TRUE_ONLY", + formName: + "Did you synced all the return channel metadata sync rules in prod? (only the FIRST duty day of each month after the montly backup)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "kD52FGwJgDF", + }, + translations: [], + userGroupAccesses: [], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS", + lastUpdated: "2021-02-15T17:20:34.974", + id: "Dx70nNMP3mB", + created: "2019-09-07T16:27:49.546", + name: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS", + shortName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "LONG_TEXT", + formName: "Comments about the analytics", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT", + lastUpdated: "2021-02-15T17:20:34.972", + id: "HF0iZZ0NqDE", + created: "2020-02-05T11:05:29.726", + name: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT", + shortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "NUMBER", + formName: "Number of public objects", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_TASKS_DELETE_RULES", + lastUpdated: "2021-02-15T17:20:34.974", + id: "bSdpvUwkRa1", + created: "2020-10-13T10:24:32.648", + name: "ADMIN_DUTY_DE_TASKS_DELETE_RULES", + shortName: "ADMIN_DUTY_DE_TASKS_DELETE_RULES", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: + "Did you deleted all the metadata sync rules created at least one month ago? (only the FIRST duty day of each month after the montly backup)", + zeroIsSignificant: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "kD52FGwJgDF", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE", + lastUpdated: "2021-02-15T17:20:34.972", + id: "HaV3tXKCCnW", + created: "2021-01-06T10:42:11.044", + name: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE", + shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did you check the daily docker instance clone?", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + { + code: "ADMIN_DUTY_DE_STATUS_CLONING_DONE", + lastUpdated: "2021-02-15T17:20:34.976", + id: "K9IzaTNqEXa", + created: "2019-09-16T06:15:15.566", + name: "ADMIN_DUTY_DE_STATUS_CLONING_DONE", + shortName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE", + aggregationType: "NONE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "TRUE_ONLY", + formName: "Did you check the cloning of the instance?", + zeroIsSignificant: false, + categoryCombo: { + id: "Fkyud1WKXWo", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + translations: [], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + aggregationLevels: [], + }, + ], + categoryOptions: [ + { + code: "default", + created: "2017-05-10T17:53:55.138", + lastUpdated: "2018-07-27T16:09:07.425", + name: "default", + id: "Y7fcspgsU43", + shortName: "default", + publicAccess: "rwrw----", + user: { + id: "eK26I7dRbC4", + }, + userGroupAccesses: [], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [], + }, + { + code: "ADMIN_DUTY_CO_SERVER_INSTANCES_PREPROD", + created: "2019-09-07T16:18:31.803", + lastUpdated: "2021-02-15T17:20:34.870", + name: "WHO_PREPROD", + id: "QllodPhxVeb", + shortName: "WHO_PREPROD", + publicAccess: "--------", + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [ + { + id: "H8RixfF8ugH", + }, + ], + }, + { + code: "ADMIN_DUTY_CO_SERVER_INSTANCES_TRAINING", + created: "2019-09-07T16:18:46.637", + lastUpdated: "2021-02-15T17:20:34.870", + name: "WHO_TRAINING", + id: "buv02XljUjE", + shortName: "WHO_TRAINING", + publicAccess: "--------", + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [ + { + id: "H8RixfF8ugH", + }, + ], + }, + { + code: "ADMIN_DUTY_CO_SERVER_INSTANCES_PROD", + created: "2019-09-07T16:18:16.992", + lastUpdated: "2021-02-15T17:20:34.869", + name: "WHO_PROD", + id: "rhGywpV4vXF", + shortName: "WHO_PROD", + publicAccess: "--------", + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [ + { + id: "H8RixfF8ugH", + }, + ], + }, + { + code: "ADMIN_DUTY_CO_SERVER_INSTANCES_DEV", + created: "2019-09-07T16:17:34.811", + lastUpdated: "2021-02-15T17:20:34.869", + name: "WHO_DEV", + id: "jFwR5mUrvAM", + shortName: "WHO_DEV", + publicAccess: "--------", + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [ + { + id: "H8RixfF8ugH", + }, + ], + }, + { + code: "ADMIN_DUTY_CO_SERVER_INSTANCES_MALARIA", + created: "2019-09-10T16:32:46.127", + lastUpdated: "2021-02-15T17:20:34.868", + name: "WHO_MALARIA", + id: "RkYSGG4MNhT", + shortName: "WHO_MALARIA", + publicAccess: "--------", + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [ + { + id: "H8RixfF8ugH", + }, + ], + }, + { + code: "ADMIN_DUTY_CO_SERVER_INSTANCES_DEV-CONT", + created: "2019-09-10T16:31:58.313", + lastUpdated: "2021-02-15T17:20:34.869", + name: "WHO_DEV-CONT", + id: "BclrlHiDxv1", + shortName: "WHO_DEV-CONT", + publicAccess: "--------", + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [ + { + id: "H8RixfF8ugH", + }, + ], + }, + { + code: "ADMIN_DUTY_CO_SERVER_INSTANCES_PREPROD-VIS", + created: "2019-09-10T16:32:19.140", + lastUpdated: "2021-02-15T17:20:34.869", + name: "WHO_PREPROD-VIS", + id: "OgGW61Izy8Y", + shortName: "WHO_PREPROD-VIS", + publicAccess: "--------", + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [ + { + id: "H8RixfF8ugH", + }, + ], + }, + { + code: "ADMIN_DUTY_CO_SERVER_INSTANCES_PREPROD_CONT", + created: "2020-09-30T17:19:49.347", + lastUpdated: "2021-02-15T17:20:34.870", + name: "WHO_PREPROD_CONT", + id: "BnkWfh38wMf", + shortName: "WHO_PREPROD_CONT", + publicAccess: "--------", + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "kD52FGwJgDF", + }, + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [ + { + id: "H8RixfF8ugH", + }, + ], + }, + ], + categories: [ + { + code: "ADMIN_DUTY_CAT_SERVER_INSTANCES", + created: "2019-09-07T16:19:37.984", + lastUpdated: "2021-02-08T10:15:38.975", + name: "ADMIN_DUTY_CAT_SERVER_INSTANCES", + id: "dL4wpziK7qW", + dataDimensionType: "DISAGGREGATION", + publicAccess: "--------", + dataDimension: true, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [], + categoryOptions: [ + { + id: "jFwR5mUrvAM", + }, + { + id: "BclrlHiDxv1", + }, + { + id: "buv02XljUjE", + }, + { + id: "QllodPhxVeb", + }, + { + id: "BnkWfh38wMf", + }, + { + id: "rhGywpV4vXF", + }, + { + id: "RkYSGG4MNhT", + }, + ], + }, + { + code: "default", + created: "2017-05-10T17:53:55.152", + lastUpdated: "2021-08-07T06:18:19.628", + name: "default", + id: "DMyxTSpvKOp", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + dataDimension: false, + user: { + id: "eK26I7dRbC4", + }, + userGroupAccesses: [], + attributeValues: [], + translations: [], + userAccesses: [], + categoryOptions: [ + { + id: "Y7fcspgsU43", + }, + ], + }, + ], + dataSets: [ + { + code: "ADMIN_DUTY_DS_DAILY", + lastUpdated: "2021-02-15T17:20:35.068", + id: "FnYgTt843G2", + created: "2019-09-07T16:00:31.496", + name: "ADMIN - Duty day platform administration - Daily", + shortName: "ADMIN - Duty day platform administration", + validCompleteOnly: false, + dataElementDecoration: false, + publicAccess: "--------", + notifyCompletingUser: false, + noValueRequiresComment: false, + skipOffline: false, + compulsoryFieldsCompleteOnly: false, + fieldCombinationRequired: false, + renderHorizontally: true, + renderAsTabs: true, + mobile: false, + version: 80, + openPeriodsAfterCoEndDate: 0, + timelyDays: 15, + periodType: "Daily", + openFuturePeriods: 8, + expiryDays: 0, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "s5EVHUwoFKu", + }, + dataSetElements: [ + { + dataElement: { + id: "CufSsSZAUme", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "tCxs6EgMIo6", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "m4MjhFUcecj", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "CTbBS3ArglV", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "K9IzaTNqEXa", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "XtznMFZssKc", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "wf8MI19zCzV", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "bSdpvUwkRa1", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "pPyNTfJE0PG", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "qpgGXrkTrgj", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "BCytw0TARJ0", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "ulfI0WDmW92", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "nN6za0sVirK", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "kDL0aoZKYfV", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "fjMS4MkPcEQ", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "EvRMsyVW63b", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "Em7yGYvgAU3", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "qoGoSfiLnbH", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "RsZWioTWyYa", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "tHGRW9Zwyxh", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "Dx70nNMP3mB", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "F5cEZ7QM03v", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "lXknxysDVIL", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "crQfKtNHSHB", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "dnzBDLlnSZs", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "HF0iZZ0NqDE", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "KOUVktXBH9W", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "CIHmMkvNYDO", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "DZmTHrT9JPg", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "gfRkAIfJ2eO", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "BLlpSeTreIO", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "Dvx3NSCzImT", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "XrDIy4Gg3YR", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "sFLQxZe72Ym", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "mjDgqDPsT4J", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "vde072gdxKY", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "HaV3tXKCCnW", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + { + dataElement: { + id: "UdVGMNKksVU", + }, + dataSet: { + id: "FnYgTt843G2", + }, + }, + ], + compulsoryDataElementOperands: [], + translations: [], + dataInputPeriods: [], + organisationUnits: [ + { + id: "H8RixfF8ugH", + }, + ], + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + indicators: [], + userAccesses: [], + legendSets: [], + }, + ], + }, + dataset2: { + indicators: [ + { + lastUpdated: "2021-06-01T17:25:45.769", + id: "YhT6GxOLv73", + created: "2016-11-03T18:25:35.628", + name: "BU_Female%", + shortName: "BU_Proportion of Female", + publicAccess: "--------", + description: "Proportion of female among the Buruli ulcer cases, based on summary data", + denominatorDescription: "Total number of BU cases (summary)", + numeratorDescription: "Number of female BU cases (summary)", + numerator: "#{zqv3IsyTYta.V2LdgcGgFQt}", + denominator: "#{tOpVIYrnbhk}", + annualized: false, + decimals: 1, + indicatorType: { + id: "qpi4nN8Wkvl", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "q9wZgtaDxWn", + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + lastUpdated: "2021-06-01T17:25:45.794", + id: "lBRFDEaxUDi", + created: "2016-11-03T18:25:35.628", + name: "BU_under15y_%", + shortName: "BU_Proportion under 15 years", + publicAccess: "--------", + description: + "Proportion of children under 15 years of age among the Buruli ulcer cases, based on summary data", + denominatorDescription: "Total number of BU cases (summary)", + numeratorDescription: "Number of BU cases under 15y (summary)", + numerator: "#{mBDooPcvqRy.HDXcEOGT2s1} + #{mBDooPcvqRy.DOJartWGuff}", + denominator: "#{tOpVIYrnbhk.Xr12mI7VPn3}", + annualized: false, + decimals: 1, + indicatorType: { + id: "qpi4nN8Wkvl", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "q9wZgtaDxWn", + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "BU_Ulcer%", + lastUpdated: "2021-06-01T17:25:45.777", + id: "kCS3GHdIcQ9", + created: "2016-11-03T18:25:35.628", + name: "BU_Ulcer%", + shortName: "BU_Proportion of ulcerative lesions", + publicAccess: "--------", + description: + "Proportion of Buruli ulcer cases presenting at least on ulcerative lesion, based on summary data", + denominatorDescription: "Total number of BU cases (summary)", + numeratorDescription: "Number of BU cases with ulcerative lesions (summary)", + numerator: "#{UVEjNoZCtNQ.Xr12mI7VPn3}", + denominator: "#{tOpVIYrnbhk.Xr12mI7VPn3}", + annualized: false, + decimals: 1, + indicatorType: { + id: "qpi4nN8Wkvl", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "q9wZgtaDxWn", + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "IA_BU_PCR%", + lastUpdated: "2021-06-01T17:25:45.782", + id: "UBHvHs7yeEB", + created: "2016-11-03T18:25:35.628", + name: "BU - % laboratory-confirmed cases", + shortName: "BU_% lab-confirmed cases", + publicAccess: "--------", + description: "Proportion of Buruli ulcer cases confirmed by PCR, based on summary data", + denominatorDescription: "Total number of BU cases (summary)", + numeratorDescription: "Number of BU cases confirmed by PCR (summary)", + numerator: "#{IjrtWEc8Oei.Xr12mI7VPn3}", + denominator: "#{tOpVIYrnbhk.Xr12mI7VPn3}", + annualized: false, + decimals: 1, + indicatorType: { + id: "qpi4nN8Wkvl", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "q9wZgtaDxWn", + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + { + code: "BU_ABcompleted%", + lastUpdated: "2021-06-01T17:25:45.784", + id: "fL136P7sU6J", + created: "2016-11-03T18:25:35.628", + name: "BU_ABcompleted%", + shortName: "BU_Proportion who completed AB treatment", + publicAccess: "--------", + description: "Proportion of Buruli ulcer caseswho completed AB treatment, based on summary data", + denominatorDescription: "Total number of BU cases (summary)", + numeratorDescription: "Number of BU cases who completed AB treatment (summary)", + numerator: "#{uFKSqvGwl21.Xr12mI7VPn3}", + denominator: "#{tOpVIYrnbhk.Xr12mI7VPn3}", + annualized: false, + decimals: 1, + indicatorType: { + id: "qpi4nN8Wkvl", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "q9wZgtaDxWn", + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + code: "IA_BU_JointLim_%", + lastUpdated: "2021-06-01T17:25:45.784", + id: "D8TeKh05msQ", + created: "2016-11-03T18:25:35.628", + name: "BU Joint Lim%", + shortName: "BU Joint Lim%", + publicAccess: "--------", + description: "Proportion of Buruli ulcer cases presenting joint limitation, based on summary data", + denominatorDescription: "Total number of BU cases (summary)", + numeratorDescription: "Number of BU cases with joint limitation (summary)", + numerator: "#{uhG3oatUV6j.Xr12mI7VPn3}", + denominator: "#{tOpVIYrnbhk.Xr12mI7VPn3}", + annualized: false, + decimals: 1, + indicatorType: { + id: "qpi4nN8Wkvl", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "q9wZgtaDxWn", + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + { + lastUpdated: "2021-06-01T17:25:45.775", + id: "KiSlEe9D7SZ", + created: "2016-11-03T18:25:35.628", + name: "BU_CatIII%", + shortName: "BU_Proportion of category III", + publicAccess: "--------", + description: "Proportion of Buruli ulcer cases in category III, based on summary data", + denominatorDescription: "Total number of BU cases (summary)", + numeratorDescription: "Number of BU cases in category III (summary)", + numerator: "#{OG5wWMlhrxv.c7ypRdqByt7}", + denominator: "#{tOpVIYrnbhk.Xr12mI7VPn3}", + annualized: false, + decimals: 1, + indicatorType: { + id: "qpi4nN8Wkvl", + }, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "q9wZgtaDxWn", + }, + translations: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [], + legendSets: [], + }, + ], + categoryCombos: [ + { + code: "CC_BU_Category", + created: "2016-04-06T00:52:18.593", + lastUpdated: "2020-10-30T16:12:08.683", + name: "CC Category (BU)", + id: "MeoSuM1SQ1f", + dataDimensionType: "DISAGGREGATION", + publicAccess: "--------", + skipTotal: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "q9wZgtaDxWn", + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + ], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + categories: [ + { + id: "RchPsJmL2wA", + }, + ], + }, + { + code: "CC_Gender", + created: "2016-04-11T06:05:55.442", + lastUpdated: "2021-05-04T11:59:49.283", + name: "CC Gender", + id: "VygZ6pni0XS", + dataDimensionType: "DISAGGREGATION", + publicAccess: "--------", + skipTotal: false, + lastUpdatedBy: { + id: "H4atNsEuKxP", + }, + user: { + id: "H4atNsEuKxP", + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "QUaeS1tdoLx", + displayName: "SS_NTD_LSH_AggrDataSimple_Entry", + id: "QUaeS1tdoLx", + }, + { + access: "r-------", + userGroupUid: "JusJWdDa1LM", + displayName: "SS_NTD_SBE_AggData_Entry", + id: "JusJWdDa1LM", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "H4YpPpQeKQR", + displayName: "SS_NTD_SBE_AggData_View", + id: "H4YpPpQeKQR", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo", + }, + ], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + categories: [ + { + id: "gvZZplg7PkY", + }, + ], + }, + { + code: "CC_AgeGroup", + created: "2016-04-06T00:52:18.593", + lastUpdated: "2021-03-16T16:47:21.664", + name: "CC Age Group", + id: "E0cSdwztY5K", + dataDimensionType: "DISAGGREGATION", + publicAccess: "--------", + skipTotal: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "q9wZgtaDxWn", + }, + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "OBxv9dRBkM5", + displayName: "SS_NTD_SKIN_YAWS_AggData_View", + id: "OBxv9dRBkM5", + }, + { + access: "r-------", + userGroupUid: "JusJWdDa1LM", + displayName: "SS_NTD_SBE_AggData_Entry", + id: "JusJWdDa1LM", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "r-------", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "TUL6Ftyw9j6", + displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", + id: "TUL6Ftyw9j6", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "QUaeS1tdoLx", + displayName: "SS_NTD_LSH_AggrDataSimple_Entry", + id: "QUaeS1tdoLx", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "UnTaQrY57qi", + displayName: "NTD_LSH_Monthly_Importer", + id: "UnTaQrY57qi", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + { + access: "r-------", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo", + }, + ], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + categories: [ + { + id: "J2EQ3575tpG", + }, + ], + }, + { + code: "default", + created: "2017-05-10T17:53:55.156", + lastUpdated: "2019-02-20T16:22:55.336", + name: "default", + id: "JzvGfLYkX17", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + skipTotal: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "eK26I7dRbC4", + }, + userGroupAccesses: [], + translations: [], + userAccesses: [], + categories: [ + { + id: "DMyxTSpvKOp", + }, + ], + }, + { + code: "CC_AgeGroup_BU", + created: "2016-04-06T00:52:18.593", + lastUpdated: "2020-02-26T13:11:40.288", + name: "CC Age Group (BU)", + id: "rZydwxCQsc7", + dataDimensionType: "DISAGGREGATION", + publicAccess: "--------", + skipTotal: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "q9wZgtaDxWn", + }, + userGroupAccesses: [], + translations: [], + userAccesses: [], + categories: [ + { + id: "DddEdUVkG71", + }, + ], + }, + ], + categoryOptionCombos: [ + { + lastUpdated: "2019-08-14T08:31:54.280", + created: "2016-04-06T00:52:27.829", + name: "Under 5y", + id: "HDXcEOGT2s1", + ignoreApproval: false, + lastUpdatedBy: { + id: "ilJDyuqlwDC", + }, + categoryCombo: { + id: "E0cSdwztY5K", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "vZ0WdHAROAy", + }, + ], + }, + { + lastUpdated: "2019-02-01T17:07:12.772", + created: "2017-03-13T18:09:38.688", + name: "50 y and over", + id: "g4ZnnHNE6sM", + ignoreApproval: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + categoryCombo: { + id: "rZydwxCQsc7", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "Ydd5J28bFdu", + }, + ], + }, + { + lastUpdated: "2021-01-28T21:14:15.560", + created: "2016-04-06T00:52:27.834", + name: "15 y and over", + id: "vJEPLhdauF7", + ignoreApproval: false, + lastUpdatedBy: { + id: "H4atNsEuKxP", + }, + categoryCombo: { + id: "E0cSdwztY5K", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "qAeldgH4WMr", + }, + ], + }, + { + lastUpdated: "2019-08-14T08:31:54.280", + created: "2016-09-13T18:48:18.724", + name: "Category unknown", + id: "Vcv8owxbxaN", + ignoreApproval: false, + lastUpdatedBy: { + id: "ilJDyuqlwDC", + }, + categoryCombo: { + id: "MeoSuM1SQ1f", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "msTyBF6xVJI", + }, + ], + }, + { + lastUpdated: "2021-01-28T21:14:15.560", + created: "2016-04-06T00:52:27.836", + name: "Age Unknown", + id: "kek1YXjDq70", + ignoreApproval: false, + lastUpdatedBy: { + id: "H4atNsEuKxP", + }, + categoryCombo: { + id: "E0cSdwztY5K", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "w5ItMDKuO20", + }, + ], + }, + { + lastUpdated: "2018-04-05T10:27:01.913", + created: "2018-04-05T10:27:01.913", + name: "Age Unknown", + id: "wzNLOvBy7wZ", + ignoreApproval: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + categoryCombo: { + id: "rZydwxCQsc7", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "w5ItMDKuO20", + }, + ], + }, + { + lastUpdated: "2019-08-14T08:31:54.280", + created: "2016-09-13T18:48:18.729", + name: "Cat II", + id: "j5fsvsfsaJ3", + ignoreApproval: false, + lastUpdatedBy: { + id: "ilJDyuqlwDC", + }, + categoryCombo: { + id: "MeoSuM1SQ1f", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "FMJprslIeSG", + }, + ], + }, + { + lastUpdated: "2019-02-01T17:07:12.772", + created: "2017-03-13T18:09:38.648", + name: "Under 5y", + id: "UZO2MsUMcgj", + ignoreApproval: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + categoryCombo: { + id: "rZydwxCQsc7", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "vZ0WdHAROAy", + }, + ], + }, + { + lastUpdated: "2021-04-20T20:13:21.906", + created: "2016-04-11T06:05:55.469", + name: "Gender Unknown", + id: "jNbFhhnUsQv", + ignoreApproval: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + categoryCombo: { + id: "VygZ6pni0XS", + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "Sexe inconnu", + }, + ], + attributeValues: [], + categoryOptions: [ + { + id: "NuBMsmUyzDA", + }, + ], + }, + { + lastUpdated: "2021-04-20T20:13:21.906", + created: "2016-04-11T06:05:55.472", + name: "Male", + id: "Z2hvpF7mhh7", + ignoreApproval: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + categoryCombo: { + id: "VygZ6pni0XS", + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "Homme", + }, + ], + attributeValues: [], + categoryOptions: [ + { + id: "qmsg1OVBqif", + }, + ], + }, + { + lastUpdated: "2017-05-10T17:53:55.158", + code: "default", + created: "2017-05-10T17:53:55.157", + name: "default", + id: "Xr12mI7VPn3", + ignoreApproval: false, + categoryCombo: { + id: "JzvGfLYkX17", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "Y7fcspgsU43", + }, + ], + }, + { + lastUpdated: "2019-08-14T08:31:54.280", + created: "2016-09-13T18:48:18.727", + name: "Cat I", + id: "rawZ86Q1W1k", + ignoreApproval: false, + lastUpdatedBy: { + id: "ilJDyuqlwDC", + }, + categoryCombo: { + id: "MeoSuM1SQ1f", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "OjTZlEq5DU6", + }, + ], + }, + { + lastUpdated: "2019-08-14T08:31:54.280", + created: "2016-09-13T18:48:18.731", + name: "Cat III", + id: "c7ypRdqByt7", + ignoreApproval: false, + lastUpdatedBy: { + id: "ilJDyuqlwDC", + }, + categoryCombo: { + id: "MeoSuM1SQ1f", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "rduPRxceiXM", + }, + ], + }, + { + lastUpdated: "2021-04-20T20:13:21.906", + created: "2016-04-11T06:05:55.471", + name: "Female", + id: "V2LdgcGgFQt", + ignoreApproval: false, + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + categoryCombo: { + id: "VygZ6pni0XS", + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "Femme", + }, + ], + attributeValues: [], + categoryOptions: [ + { + id: "tZftZ03eewT", + }, + ], + }, + { + lastUpdated: "2019-02-01T17:07:12.772", + created: "2017-03-13T18:09:38.677", + name: "15 to 49 y", + id: "AgIKhjS6s8v", + ignoreApproval: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + categoryCombo: { + id: "rZydwxCQsc7", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "ABOkZJOz8bn", + }, + ], + }, + { + lastUpdated: "2021-01-28T21:14:15.560", + created: "2016-04-06T00:52:27.832", + name: "5 to 14 y", + id: "DOJartWGuff", + ignoreApproval: false, + lastUpdatedBy: { + id: "H4atNsEuKxP", + }, + categoryCombo: { + id: "E0cSdwztY5K", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "ciFLFA7AiOa", + }, + ], + }, + { + lastUpdated: "2019-02-01T17:07:12.772", + created: "2017-03-13T18:09:38.666", + name: "5 to 14 y", + id: "HcDAlGa9KKf", + ignoreApproval: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + categoryCombo: { + id: "rZydwxCQsc7", + }, + translations: [], + attributeValues: [], + categoryOptions: [ + { + id: "ciFLFA7AiOa", + }, + ], + }, + ], + dataElements: [ + { + code: "BU_Lab_PCRconfirmation", + lastUpdated: "2021-03-23T09:13:34.048", + id: "IjrtWEc8Oei", + created: "2018-05-09T22:26:29.218", + name: "BU_Lab_PCRconfirmation", + shortName: "# PCR confirmed BU cases", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "INTEGER_ZERO_OR_POSITIVE", + formName: "Number of new BU cases confirmed by PCR", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "Nombre de cas confim\ufffds par PCR", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Cas confim\ufffds par PCR", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_Cl_Ulcer", + lastUpdated: "2020-10-30T16:12:07.989", + id: "UVEjNoZCtNQ", + created: "2018-05-09T22:26:29.218", + name: "BU_Cl_Ulcer", + shortName: "# BU cases with ulcerative lesions", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "--------", + description: + "An ulcer is a painless skin lesion characterized by a necrotic center, undermined edges and oedematous skin. ", + valueType: "INTEGER_ZERO_OR_POSITIVE", + formName: "Number of new BU cases with ulcerative lesions", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "ilJDyuqlwDC", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "Nombre de cas pr\ufffdsentant un ulc\ufffdre", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Nombre de nouveaux cas d'UB presentant un ulcere au diagnostic", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "# cas d'UB presentant un ulcere", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_EPI_AnnualCases", + lastUpdated: "2021-03-23T09:13:33.879", + id: "tOpVIYrnbhk", + created: "2018-05-09T22:26:29.218", + name: "BU_EPI_AnnualCases", + shortName: "# annual new BU cases", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "--------", + description: + "WHO defines a Buruli ulcer case as any person with painless nodule, papule, plaque or oedema evolving into a painless ulcer with undermined edges, often leading to invalidating sequelae in an endemic area.", + valueType: "INTEGER_ZERO_OR_POSITIVE", + formName: "Number of new BU cases diagnosed within reporting year", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Nombre annuel de cas d'ulc\ufffdre de Buruli", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "# annuel de cas d'ulcere de Buruli", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Nombre annuel de cas d'ulcere de Buruli", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: " OMS définit un cas d'ulcere de Buruli comme toute personne présentant des nodule, papule, plaque ou oedeme, sans douleur, evoluant en ulcère avec des bords minces, souvent menant à des séquelles invalidantes, dans une zone d'endémie.", + }, + { + property: "NAME", + locale: "fr", + value: "UB_EPI_Cas_Annuel", + }, + { + property: "NAME", + locale: "fr", + value: "Nombre annuel de cas d'ulc\ufffdre de Buruli", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "aDYjuZk8cXT", + displayName: "WHO NTD department", + id: "aDYjuZk8cXT", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "UnTaQrY57qi", + displayName: "NTD_LSH_Monthly_Importer", + id: "UnTaQrY57qi", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_EPI_Age", + lastUpdated: "2020-10-30T16:12:07.990", + id: "mBDooPcvqRy", + created: "2018-05-09T22:26:29.218", + name: "BU_EPI_Age", + shortName: "# BU cases (by age group)", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "INTEGER_ZERO_OR_POSITIVE", + formName: "Number of new BU cases (by age group)", + zeroIsSignificant: true, + categoryCombo: { + id: "E0cSdwztY5K", + }, + lastUpdatedBy: { + id: "ilJDyuqlwDC", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Cas d'ulc\ufffdre de Buruli (par groupe d'\ufffdge)", + }, + { + property: "NAME", + locale: "fr", + value: "Nombre de cas d'ulc\ufffdre de Buruli (par groupe d'\ufffdge)", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_Tx_ABcompletion", + lastUpdated: "2020-10-30T16:12:08.486", + id: "uFKSqvGwl21", + created: "2018-05-09T22:26:29.218", + name: "BU_Tx_ABcompletion", + shortName: "# BU cases completing antibiotics treatment", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "--------", + description: + 'Treatment consists of a combination of antibiotics and complementary treatments (under morbidity management and disability prevention/rehabilitation). Treatment guidance for health workers can be found in the WHO publication "Treatment of mycobacterium ulcerans disease (Buruli ulcer)."', + valueType: "INTEGER_ZERO_OR_POSITIVE", + formName: "Number of new BU cases completing antibiotics treatment", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "ilJDyuqlwDC", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "# cas d'UB ayant acheve traitement AB", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Nombre de nouveaux cas d'UB ayant acheve le traitement antibiotique", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Patients ayant compl\ufffdt\ufffd le traitement antibiotique", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_CL_JointLim", + lastUpdated: "2020-10-30T16:12:08.198", + id: "uhG3oatUV6j", + created: "2018-05-09T22:26:29.218", + name: "BU_Cl_JointLim", + shortName: "# BU cases with joint limitation", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "INTEGER_ZERO_OR_POSITIVE", + formName: "Number of new BU cases with joint limitation at diagnosis", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17", + }, + lastUpdatedBy: { + id: "ilJDyuqlwDC", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "NAME", + locale: "fr", + value: "Nombre de cas pr\ufffdsentant une limitation articulaire au moment du diagnostique", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "# nouveaux cas d'UB avec limitation articulaire", + }, + { + property: "NAME", + locale: "fr", + value: "BU_Cl_JointLim", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Nombre de nouveaux cas d'UB presentant une limitation articulaire au diagnostic", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Cas pr\ufffdsentant une limitation articulaire au moment du diagnostique", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_Cl_Cat", + lastUpdated: "2020-10-30T16:12:08.444", + id: "OG5wWMlhrxv", + created: "2018-05-09T22:26:29.218", + name: "BU_Cl_Cat", + shortName: "# BU cases by category", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "--------", + description: + "Category I: A single lesion 5cm or less / Category II: A single lesion 5-15cm / Category III: A single lesion more than 15 cm or multiple lesions or lesions at critical sites or osteomyelitis", + valueType: "INTEGER_ZERO_OR_POSITIVE", + formName: "Number of new BU cases by category", + zeroIsSignificant: true, + categoryCombo: { + id: "MeoSuM1SQ1f", + }, + lastUpdatedBy: { + id: "ilJDyuqlwDC", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Cas d'ulc\ufffdre de Buruli par cat\ufffdgorie", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "# cas d'UB par categorie", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Nombre de cas d'ulcere de Buruli par categorie", + }, + { + property: "NAME", + locale: "fr", + value: "Nombre de cas d'ulc\ufffdre de Buruli par cat\ufffdgorie", + }, + { + property: "NAME", + locale: "fr", + value: "Nombre de cas d'ulcere de Buruli par categorie", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Categori I: Une lésion unique de 5cm ou moins / Category II: Une lésion unique 5-15cm / Category III: Une lésion unique de plus de 15cm ou plusieurs lésions ou lesions à un site critique ou osteomyelite.", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_EPI_Gender", + lastUpdated: "2020-10-30T16:12:08.461", + id: "zqv3IsyTYta", + created: "2018-05-09T22:26:29.218", + name: "BU_EPI_Gender", + shortName: "# BU cases (by gender)", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "INTEGER_ZERO_OR_POSITIVE", + formName: "Number of new BU cases (by gender)", + zeroIsSignificant: true, + categoryCombo: { + id: "VygZ6pni0XS", + }, + lastUpdatedBy: { + id: "ilJDyuqlwDC", + }, + user: { + id: "ilJDyuqlwDC", + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "Nombre de nouveaux cas d'UB par sexe", + }, + { + property: "NAME", + locale: "fr", + value: "Nombre de cas d'ulc\ufffdre de Buruli (par genre)", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Cas d'ulc\ufffdre de Buruli (par genre)", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "# cas d'UB par sexe", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + ], + categoryOptions: [ + { + code: "default", + created: "2017-05-10T17:53:55.138", + lastUpdated: "2018-07-27T16:09:07.425", + name: "default", + id: "Y7fcspgsU43", + shortName: "default", + publicAccess: "rwrw----", + user: { + id: "eK26I7dRbC4", + }, + userGroupAccesses: [], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [], + }, + { + code: "Op_Age_5-14y", + created: "2016-03-29T21:07:01.747", + lastUpdated: "2021-04-23T17:05:15.200", + name: "5 to 14 y", + id: "ciFLFA7AiOa", + shortName: "5 to 14 y", + publicAccess: "--------", + lastUpdatedBy: { + id: "ilJDyuqlwDC", + }, + user: { + id: "H4atNsEuKxP", + }, + userGroupAccesses: [ + { + access: "r-rw----", + userGroupUid: "Mg0TXhvvXJ4", + displayName: "SS_NTD_RAB_AggData_Entry", + id: "Mg0TXhvvXJ4", + }, + { + access: "r-rw----", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "rwrw----", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-rw----", + userGroupUid: "JusJWdDa1LM", + displayName: "SS_NTD_SBE_AggData_Entry", + id: "JusJWdDa1LM", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "r-r-----", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-rw----", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-r-----", + userGroupUid: "H4YpPpQeKQR", + displayName: "SS_NTD_SBE_AggData_View", + id: "H4YpPpQeKQR", + }, + { + access: "r-------", + userGroupUid: "TUL6Ftyw9j6", + displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", + id: "TUL6Ftyw9j6", + }, + { + access: "r-r-----", + userGroupUid: "B6oADCiiW8v", + displayName: "SS_NTD_RAB_AggData_View", + id: "B6oADCiiW8v", + }, + { + access: "r-rw----", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-rw----", + userGroupUid: "PCa3h9xXkLN", + displayName: "SS_NTD_RAB_AggData_Retro_Entry", + id: "PCa3h9xXkLN", + }, + { + access: "rwrw----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "OBxv9dRBkM5", + displayName: "SS_NTD_SKIN_YAWS_AggData_View", + id: "OBxv9dRBkM5", + }, + { + access: "r-------", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA", + }, + { + access: "r-r-----", + userGroupUid: "PthCrHajHLi", + displayName: "SS_NTD_RAB_AggData_Retro_View", + id: "PthCrHajHLi", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-rw----", + userGroupUid: "QUaeS1tdoLx", + displayName: "SS_NTD_LSH_AggrDataSimple_Entry", + id: "QUaeS1tdoLx", + }, + { + access: "r-rw----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "UnTaQrY57qi", + displayName: "NTD_LSH_Monthly_Importer", + id: "UnTaQrY57qi", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-r-----", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + { + access: "rwr-----", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-r-----", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL", + }, + ], + attributeValues: [], + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "5 à 14 ans", + }, + { + property: "NAME", + locale: "fr", + value: "5 à 14 ans", + }, + ], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + organisationUnits: [], + }, + { + code: "Op_BU_Cat_II", + created: "2016-06-08T09:07:56.983", + lastUpdated: "2021-03-23T09:13:32.849", + name: "Cat II", + id: "FMJprslIeSG", + shortName: "Cat II", + publicAccess: "--------", + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "q9wZgtaDxWn", + }, + userGroupAccesses: [ + { + access: "r-rw----", + userGroupUid: "Mg0TXhvvXJ4", + displayName: "SS_NTD_RAB_AggData_Entry", + id: "Mg0TXhvvXJ4", + }, + { + access: "r-rw----", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo", + }, + { + access: "r-r-----", + userGroupUid: "IPzz6wlkIp0", + displayName: "NTD_SKIN_MYC_HQ", + id: "IPzz6wlkIp0", + }, + { + access: "rwrw----", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-r-----", + userGroupUid: "LCs79RaVi0a", + displayName: "SS_NTD_LSH_SUPPLY_MonthlyStock_Entry", + id: "LCs79RaVi0a", + }, + { + access: "rw------", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA", + }, + { + access: "r-r-----", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-r-----", + userGroupUid: "TNA9oGI43e4", + displayName: "NTD_LSH_EURO_ARM", + id: "TNA9oGI43e4", + }, + { + access: "r-rw----", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-r-----", + userGroupUid: "K40P7b1JFdc", + displayName: "NTD_EMRO", + id: "K40P7b1JFdc", + }, + { + access: "r-------", + userGroupUid: "VONeiGGohxr", + displayName: "NTD_RAB_Other", + id: "VONeiGGohxr", + }, + { + access: "r-r-----", + userGroupUid: "B6oADCiiW8v", + displayName: "SS_NTD_RAB_AggData_View", + id: "B6oADCiiW8v", + }, + { + access: "r-rw----", + userGroupUid: "TUL6Ftyw9j6", + displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", + id: "TUL6Ftyw9j6", + }, + { + access: "r-rw----", + userGroupUid: "PCa3h9xXkLN", + displayName: "SS_NTD_RAB_AggData_Retro_Entry", + id: "PCa3h9xXkLN", + }, + { + access: "r-rw----", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-r-----", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-r-----", + userGroupUid: "phezIKUxlC2", + displayName: "NTD_LSH_EMRO_SOM", + id: "phezIKUxlC2", + }, + { + access: "rwrw----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-r-----", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4", + }, + { + access: "r-r-----", + userGroupUid: "j3RfLgyvhbd", + displayName: "NTD_LSH_Country", + id: "j3RfLgyvhbd", + }, + { + access: "r-r-----", + userGroupUid: "orn5lTGFMve", + displayName: "NTD_LSH_Public", + id: "orn5lTGFMve", + }, + { + access: "r-r-----", + userGroupUid: "PthCrHajHLi", + displayName: "SS_NTD_RAB_AggData_Retro_View", + id: "PthCrHajHLi", + }, + { + access: "r-------", + userGroupUid: "pbZna7luFaM", + displayName: "NTD_RAB_OIE", + id: "pbZna7luFaM", + }, + { + access: "r-------", + userGroupUid: "Zr1fdsbkiAR", + displayName: "NTD_RAB_Official", + id: "Zr1fdsbkiAR", + }, + { + access: "r-r-----", + userGroupUid: "aDYjuZk8cXT", + displayName: "WHO NTD department", + id: "aDYjuZk8cXT", + }, + { + access: "rwr-----", + userGroupUid: "BMxt1NZML9e", + displayName: "NTD_LSH_SUPPLY_HQ", + id: "BMxt1NZML9e", + }, + { + access: "r-rw----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "K7VPSVrAYeV", + displayName: "NTD_RAB_Estimates", + id: "K7VPSVrAYeV", + }, + { + access: "r-r-----", + userGroupUid: "QUaeS1tdoLx", + displayName: "SS_NTD_LSH_AggrDataSimple_Entry", + id: "QUaeS1tdoLx", + }, + { + access: "r-rw----", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rwr-----", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK", + }, + { + access: "r-r-----", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-rw----", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "rwr-----", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-r-----", + userGroupUid: "MYa3lh5k0Yq", + displayName: "NTD_LSH_SUPPLY_HQPublished", + id: "MYa3lh5k0Yq", + }, + { + access: "r-r-----", + userGroupUid: "Fs9vCVCHjlE", + displayName: "NTD_LSH_Demo", + id: "Fs9vCVCHjlE", + }, + { + access: "r-r-----", + userGroupUid: "CoxTaSDd4Bz", + displayName: "NTD_Skin_AFRO_GHA", + id: "CoxTaSDd4Bz", + }, + { + access: "rwr-----", + userGroupUid: "I95k8bm5q5J", + displayName: "SS_NTD_LSH_SUPPLY_DispatchHQ_Entry", + id: "I95k8bm5q5J", + }, + { + access: "r-r-----", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + organisationUnits: [], + }, + { + code: "ALL_Op_Gender_Male", + created: "2016-03-29T21:07:01.529", + lastUpdated: "2021-04-20T20:13:21.844", + name: "Male", + id: "qmsg1OVBqif", + shortName: "Male", + publicAccess: "r-rw----", + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "H4atNsEuKxP", + }, + userGroupAccesses: [ + { + access: "r-rw----", + userGroupUid: "JusJWdDa1LM", + displayName: "SS_NTD_SBE_AggData_Entry", + id: "JusJWdDa1LM", + }, + ], + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Homme", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Homme", + }, + ], + userAccesses: [], + organisationUnits: [], + }, + { + code: "Op_Age_15over", + created: "2016-03-29T21:07:01.799", + lastUpdated: "2021-04-23T16:22:14.659", + name: "15 y and over", + id: "qAeldgH4WMr", + shortName: "15 y and over", + publicAccess: "--------", + lastUpdatedBy: { + id: "ilJDyuqlwDC", + }, + user: { + id: "H4atNsEuKxP", + }, + userGroupAccesses: [ + { + access: "r-rw----", + userGroupUid: "Mg0TXhvvXJ4", + displayName: "SS_NTD_RAB_AggData_Entry", + id: "Mg0TXhvvXJ4", + }, + { + access: "r-rw----", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "rwrw----", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-r-----", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "r-rw----", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "TUL6Ftyw9j6", + displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", + id: "TUL6Ftyw9j6", + }, + { + access: "r-r-----", + userGroupUid: "B6oADCiiW8v", + displayName: "SS_NTD_RAB_AggData_View", + id: "B6oADCiiW8v", + }, + { + access: "r-rw----", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-rw----", + userGroupUid: "PCa3h9xXkLN", + displayName: "SS_NTD_RAB_AggData_Retro_Entry", + id: "PCa3h9xXkLN", + }, + { + access: "rwrw----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "OBxv9dRBkM5", + displayName: "SS_NTD_SKIN_YAWS_AggData_View", + id: "OBxv9dRBkM5", + }, + { + access: "r-------", + userGroupUid: "JusJWdDa1LM", + displayName: "SS_NTD_SBE_AggData_Entry", + id: "JusJWdDa1LM", + }, + { + access: "r-------", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA", + }, + { + access: "r-r-----", + userGroupUid: "PthCrHajHLi", + displayName: "SS_NTD_RAB_AggData_Retro_View", + id: "PthCrHajHLi", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-rw----", + userGroupUid: "QUaeS1tdoLx", + displayName: "SS_NTD_LSH_AggrDataSimple_Entry", + id: "QUaeS1tdoLx", + }, + { + access: "r-rw----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "UnTaQrY57qi", + displayName: "NTD_LSH_Monthly_Importer", + id: "UnTaQrY57qi", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-r-----", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + { + access: "rwr-----", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-r-----", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL", + }, + ], + attributeValues: [], + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "15 ans +", + }, + { + property: "NAME", + locale: "fr", + value: "15 ans et plus", + }, + ], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + organisationUnits: [], + }, + { + code: "ALL_Op_Gender_Female", + created: "2016-03-29T21:07:01.625", + lastUpdated: "2021-04-20T20:13:21.844", + name: "Female", + id: "tZftZ03eewT", + shortName: "Female", + publicAccess: "r-rw----", + lastUpdatedBy: { + id: "kD52FGwJgDF", + }, + user: { + id: "H4atNsEuKxP", + }, + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA", + }, + { + access: "r-rw----", + userGroupUid: "JusJWdDa1LM", + displayName: "SS_NTD_SBE_AggData_Entry", + id: "JusJWdDa1LM", + }, + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-r-----", + userGroupUid: "H4YpPpQeKQR", + displayName: "SS_NTD_SBE_AggData_View", + id: "H4YpPpQeKQR", + }, + ], + attributeValues: [], + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Femme", + }, + { + property: "NAME", + locale: "fr", + value: "Femme", + }, + ], + userAccesses: [], + organisationUnits: [], + }, + { + code: "Op_Age_15-49y", + created: "2016-03-29T21:07:01.747", + lastUpdated: "2021-03-04T11:52:29.418", + name: "15 to 49 y", + id: "ABOkZJOz8bn", + shortName: "15 to 49 y", + publicAccess: "--------", + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "q9wZgtaDxWn", + }, + userGroupAccesses: [ + { + access: "rwrw----", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA", + }, + { + access: "r-rw----", + userGroupUid: "JusJWdDa1LM", + displayName: "SS_NTD_SBE_AggData_Entry", + id: "JusJWdDa1LM", + }, + { + access: "rwrw----", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-r-----", + userGroupUid: "H4YpPpQeKQR", + displayName: "SS_NTD_SBE_AggData_View", + id: "H4YpPpQeKQR", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [], + }, + { + code: "Op_Age_50over", + created: "2016-03-29T21:07:01.799", + lastUpdated: "2019-02-01T17:07:10.547", + name: "50 y and over", + id: "Ydd5J28bFdu", + shortName: "50 y and over", + publicAccess: "--------", + lastUpdatedBy: { + id: "eK26I7dRbC4", + }, + user: { + id: "q9wZgtaDxWn", + }, + userGroupAccesses: [], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [], + }, + { + code: "Op_BU_Cat_I", + created: "2016-06-08T09:07:56.820", + lastUpdated: "2021-03-23T09:13:32.957", + name: "Cat I", + id: "OjTZlEq5DU6", + shortName: "Cat I", + publicAccess: "--------", + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "q9wZgtaDxWn", + }, + userGroupAccesses: [ + { + access: "r-rw----", + userGroupUid: "Mg0TXhvvXJ4", + displayName: "SS_NTD_RAB_AggData_Entry", + id: "Mg0TXhvvXJ4", + }, + { + access: "r-rw----", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo", + }, + { + access: "rwrw----", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-r-----", + userGroupUid: "IPzz6wlkIp0", + displayName: "NTD_SKIN_MYC_HQ", + id: "IPzz6wlkIp0", + }, + { + access: "r-r-----", + userGroupUid: "LCs79RaVi0a", + displayName: "SS_NTD_LSH_SUPPLY_MonthlyStock_Entry", + id: "LCs79RaVi0a", + }, + { + access: "rw------", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA", + }, + { + access: "r-r-----", + userGroupUid: "TNA9oGI43e4", + displayName: "NTD_LSH_EURO_ARM", + id: "TNA9oGI43e4", + }, + { + access: "r-r-----", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-rw----", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-r-----", + userGroupUid: "K40P7b1JFdc", + displayName: "NTD_EMRO", + id: "K40P7b1JFdc", + }, + { + access: "r-------", + userGroupUid: "VONeiGGohxr", + displayName: "NTD_RAB_Other", + id: "VONeiGGohxr", + }, + { + access: "r-r-----", + userGroupUid: "B6oADCiiW8v", + displayName: "SS_NTD_RAB_AggData_View", + id: "B6oADCiiW8v", + }, + { + access: "r-rw----", + userGroupUid: "TUL6Ftyw9j6", + displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", + id: "TUL6Ftyw9j6", + }, + { + access: "r-rw----", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-rw----", + userGroupUid: "PCa3h9xXkLN", + displayName: "SS_NTD_RAB_AggData_Retro_Entry", + id: "PCa3h9xXkLN", + }, + { + access: "r-r-----", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-r-----", + userGroupUid: "phezIKUxlC2", + displayName: "NTD_LSH_EMRO_SOM", + id: "phezIKUxlC2", + }, + { + access: "rwrw----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-r-----", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4", + }, + { + access: "r-r-----", + userGroupUid: "j3RfLgyvhbd", + displayName: "NTD_LSH_Country", + id: "j3RfLgyvhbd", + }, + { + access: "r-r-----", + userGroupUid: "orn5lTGFMve", + displayName: "NTD_LSH_Public", + id: "orn5lTGFMve", + }, + { + access: "r-r-----", + userGroupUid: "PthCrHajHLi", + displayName: "SS_NTD_RAB_AggData_Retro_View", + id: "PthCrHajHLi", + }, + { + access: "r-------", + userGroupUid: "pbZna7luFaM", + displayName: "NTD_RAB_OIE", + id: "pbZna7luFaM", + }, + { + access: "r-------", + userGroupUid: "Zr1fdsbkiAR", + displayName: "NTD_RAB_Official", + id: "Zr1fdsbkiAR", + }, + { + access: "r-r-----", + userGroupUid: "aDYjuZk8cXT", + displayName: "WHO NTD department", + id: "aDYjuZk8cXT", + }, + { + access: "rwr-----", + userGroupUid: "BMxt1NZML9e", + displayName: "NTD_LSH_SUPPLY_HQ", + id: "BMxt1NZML9e", + }, + { + access: "r-rw----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-r-----", + userGroupUid: "QUaeS1tdoLx", + displayName: "SS_NTD_LSH_AggrDataSimple_Entry", + id: "QUaeS1tdoLx", + }, + { + access: "r-------", + userGroupUid: "K7VPSVrAYeV", + displayName: "NTD_RAB_Estimates", + id: "K7VPSVrAYeV", + }, + { + access: "r-rw----", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rwr-----", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK", + }, + { + access: "r-r-----", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-rw----", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "r-r-----", + userGroupUid: "MYa3lh5k0Yq", + displayName: "NTD_LSH_SUPPLY_HQPublished", + id: "MYa3lh5k0Yq", + }, + { + access: "rwr-----", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-r-----", + userGroupUid: "Fs9vCVCHjlE", + displayName: "NTD_LSH_Demo", + id: "Fs9vCVCHjlE", + }, + { + access: "r-r-----", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL", + }, + { + access: "rwr-----", + userGroupUid: "I95k8bm5q5J", + displayName: "SS_NTD_LSH_SUPPLY_DispatchHQ_Entry", + id: "I95k8bm5q5J", + }, + { + access: "r-r-----", + userGroupUid: "CoxTaSDd4Bz", + displayName: "NTD_Skin_AFRO_GHA", + id: "CoxTaSDd4Bz", + }, + ], + attributeValues: [], + translations: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + organisationUnits: [], + }, + { + code: "Op_Age_unknown", + created: "2016-03-29T21:07:01.840", + lastUpdated: "2021-04-23T16:32:11.880", + name: "Age Unknown", + id: "w5ItMDKuO20", + shortName: "Age Unknwon", + publicAccess: "--------", + lastUpdatedBy: { + id: "ilJDyuqlwDC", + }, + user: { + id: "H4atNsEuKxP", + }, + userGroupAccesses: [ + { + access: "r-rw----", + userGroupUid: "Mg0TXhvvXJ4", + displayName: "SS_NTD_RAB_AggData_Entry", + id: "Mg0TXhvvXJ4", + }, + { + access: "r-rw----", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "rwrw----", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-r-----", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "r-rw----", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-r-----", + userGroupUid: "H4YpPpQeKQR", + displayName: "SS_NTD_SBE_AggData_View", + id: "H4YpPpQeKQR", + }, + { + access: "r-------", + userGroupUid: "TUL6Ftyw9j6", + displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", + id: "TUL6Ftyw9j6", + }, + { + access: "r-r-----", + userGroupUid: "B6oADCiiW8v", + displayName: "SS_NTD_RAB_AggData_View", + id: "B6oADCiiW8v", + }, + { + access: "r-rw----", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-rw----", + userGroupUid: "PCa3h9xXkLN", + displayName: "SS_NTD_RAB_AggData_Retro_Entry", + id: "PCa3h9xXkLN", + }, + { + access: "rwrw----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "OBxv9dRBkM5", + displayName: "SS_NTD_SKIN_YAWS_AggData_View", + id: "OBxv9dRBkM5", + }, + { + access: "r-------", + userGroupUid: "JusJWdDa1LM", + displayName: "SS_NTD_SBE_AggData_Entry", + id: "JusJWdDa1LM", + }, + { + access: "r-------", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA", + }, + { + access: "r-r-----", + userGroupUid: "PthCrHajHLi", + displayName: "SS_NTD_RAB_AggData_Retro_View", + id: "PthCrHajHLi", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-rw----", + userGroupUid: "QUaeS1tdoLx", + displayName: "SS_NTD_LSH_AggrDataSimple_Entry", + id: "QUaeS1tdoLx", + }, + { + access: "r-rw----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "UnTaQrY57qi", + displayName: "NTD_LSH_Monthly_Importer", + id: "UnTaQrY57qi", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-r-----", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + { + access: "rwr-----", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-r-----", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL", + }, + ], + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Age inconnu", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Age inconnu", + }, + ], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + organisationUnits: [], + }, + { + code: "Op_Age_under5", + created: "2016-03-29T21:07:01.700", + lastUpdated: "2021-04-26T09:09:26.820", + name: "Under 5y", + id: "vZ0WdHAROAy", + shortName: "Under 5y", + publicAccess: "--------", + lastUpdatedBy: { + id: "ilJDyuqlwDC", + }, + user: { + id: "H4atNsEuKxP", + }, + userGroupAccesses: [ + { + access: "r-rw----", + userGroupUid: "Mg0TXhvvXJ4", + displayName: "SS_NTD_RAB_AggData_Entry", + id: "Mg0TXhvvXJ4", + }, + { + access: "r-rw----", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo", + }, + { + access: "rwrw----", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "r-r-----", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "r-rw----", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "TUL6Ftyw9j6", + displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", + id: "TUL6Ftyw9j6", + }, + { + access: "r-r-----", + userGroupUid: "B6oADCiiW8v", + displayName: "SS_NTD_RAB_AggData_View", + id: "B6oADCiiW8v", + }, + { + access: "r-rw----", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-rw----", + userGroupUid: "PCa3h9xXkLN", + displayName: "SS_NTD_RAB_AggData_Retro_Entry", + id: "PCa3h9xXkLN", + }, + { + access: "rwrw----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "OBxv9dRBkM5", + displayName: "SS_NTD_SKIN_YAWS_AggData_View", + id: "OBxv9dRBkM5", + }, + { + access: "r-------", + userGroupUid: "JusJWdDa1LM", + displayName: "SS_NTD_SBE_AggData_Entry", + id: "JusJWdDa1LM", + }, + { + access: "r-------", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA", + }, + { + access: "r-r-----", + userGroupUid: "PthCrHajHLi", + displayName: "SS_NTD_RAB_AggData_Retro_View", + id: "PthCrHajHLi", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-rw----", + userGroupUid: "QUaeS1tdoLx", + displayName: "SS_NTD_LSH_AggrDataSimple_Entry", + id: "QUaeS1tdoLx", + }, + { + access: "r-rw----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "UnTaQrY57qi", + displayName: "NTD_LSH_Monthly_Importer", + id: "UnTaQrY57qi", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-r-----", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + { + access: "rwr-----", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-r-----", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL", + }, + ], + attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Moins de 5 ans", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "< 5 ans", + }, + ], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + organisationUnits: [], + }, + { + code: "Op_BU_Cat_unknown", + created: "2016-09-13T18:45:25.739", + lastUpdated: "2021-04-09T10:02:51.970", + name: "Category unknown", + id: "msTyBF6xVJI", + shortName: "Category unknown", + publicAccess: "--------", + lastUpdatedBy: { + id: "ilJDyuqlwDC", + }, + user: { + id: "q9wZgtaDxWn", + }, + userGroupAccesses: [ + { + access: "r-rw----", + userGroupUid: "Mg0TXhvvXJ4", + displayName: "SS_NTD_RAB_AggData_Entry", + id: "Mg0TXhvvXJ4", + }, + { + access: "r-rw----", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo", + }, + { + access: "rwrw----", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-r-----", + userGroupUid: "IPzz6wlkIp0", + displayName: "NTD_SKIN_MYC_HQ", + id: "IPzz6wlkIp0", + }, + { + access: "r-r-----", + userGroupUid: "LCs79RaVi0a", + displayName: "SS_NTD_LSH_SUPPLY_MonthlyStock_Entry", + id: "LCs79RaVi0a", + }, + { + access: "rw------", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA", + }, + { + access: "r-r-----", + userGroupUid: "TNA9oGI43e4", + displayName: "NTD_LSH_EURO_ARM", + id: "TNA9oGI43e4", + }, + { + access: "r-r-----", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-rw----", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-r-----", + userGroupUid: "K40P7b1JFdc", + displayName: "NTD_EMRO", + id: "K40P7b1JFdc", + }, + { + access: "r-------", + userGroupUid: "VONeiGGohxr", + displayName: "NTD_RAB_Other", + id: "VONeiGGohxr", + }, + { + access: "r-r-----", + userGroupUid: "B6oADCiiW8v", + displayName: "SS_NTD_RAB_AggData_View", + id: "B6oADCiiW8v", + }, + { + access: "r-rw----", + userGroupUid: "TUL6Ftyw9j6", + displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", + id: "TUL6Ftyw9j6", + }, + { + access: "r-rw----", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-rw----", + userGroupUid: "PCa3h9xXkLN", + displayName: "SS_NTD_RAB_AggData_Retro_Entry", + id: "PCa3h9xXkLN", + }, + { + access: "r-r-----", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-r-----", + userGroupUid: "phezIKUxlC2", + displayName: "NTD_LSH_EMRO_SOM", + id: "phezIKUxlC2", + }, + { + access: "rwrw----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-r-----", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4", + }, + { + access: "r-r-----", + userGroupUid: "j3RfLgyvhbd", + displayName: "NTD_LSH_Country", + id: "j3RfLgyvhbd", + }, + { + access: "r-r-----", + userGroupUid: "orn5lTGFMve", + displayName: "NTD_LSH_Public", + id: "orn5lTGFMve", + }, + { + access: "r-r-----", + userGroupUid: "PthCrHajHLi", + displayName: "SS_NTD_RAB_AggData_Retro_View", + id: "PthCrHajHLi", + }, + { + access: "r-------", + userGroupUid: "pbZna7luFaM", + displayName: "NTD_RAB_OIE", + id: "pbZna7luFaM", + }, + { + access: "r-------", + userGroupUid: "Zr1fdsbkiAR", + displayName: "NTD_RAB_Official", + id: "Zr1fdsbkiAR", + }, + { + access: "r-r-----", + userGroupUid: "aDYjuZk8cXT", + displayName: "WHO NTD department", + id: "aDYjuZk8cXT", + }, + { + access: "rwr-----", + userGroupUid: "BMxt1NZML9e", + displayName: "NTD_LSH_SUPPLY_HQ", + id: "BMxt1NZML9e", + }, + { + access: "r-rw----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-r-----", + userGroupUid: "QUaeS1tdoLx", + displayName: "SS_NTD_LSH_AggrDataSimple_Entry", + id: "QUaeS1tdoLx", + }, + { + access: "r-------", + userGroupUid: "K7VPSVrAYeV", + displayName: "NTD_RAB_Estimates", + id: "K7VPSVrAYeV", + }, + { + access: "r-rw----", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rwr-----", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK", + }, + { + access: "r-r-----", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-rw----", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "r-r-----", + userGroupUid: "MYa3lh5k0Yq", + displayName: "NTD_LSH_SUPPLY_HQPublished", + id: "MYa3lh5k0Yq", + }, + { + access: "rwr-----", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-r-----", + userGroupUid: "Fs9vCVCHjlE", + displayName: "NTD_LSH_Demo", + id: "Fs9vCVCHjlE", + }, + { + access: "r-r-----", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL", + }, + { + access: "rwr-----", + userGroupUid: "I95k8bm5q5J", + displayName: "SS_NTD_LSH_SUPPLY_DispatchHQ_Entry", + id: "I95k8bm5q5J", + }, + { + access: "r-r-----", + userGroupUid: "CoxTaSDd4Bz", + displayName: "NTD_Skin_AFRO_GHA", + id: "CoxTaSDd4Bz", + }, + ], + attributeValues: [], + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Catégorie inconnue", + }, + { + property: "NAME", + locale: "fr", + value: "Catégorie inconnue", + }, + ], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + organisationUnits: [], + }, + { + code: "Op_BU_Cat_III", + created: "2016-06-08T09:07:57.152", + lastUpdated: "2021-03-23T09:13:33.669", + name: "Cat III", + id: "rduPRxceiXM", + shortName: "Cat III", + publicAccess: "--------", + lastUpdatedBy: { + id: "bI1uY3KuAKV", + }, + user: { + id: "q9wZgtaDxWn", + }, + userGroupAccesses: [ + { + access: "r-rw----", + userGroupUid: "Mg0TXhvvXJ4", + displayName: "SS_NTD_RAB_AggData_Entry", + id: "Mg0TXhvvXJ4", + }, + { + access: "r-rw----", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo", + }, + { + access: "r-r-----", + userGroupUid: "IPzz6wlkIp0", + displayName: "NTD_SKIN_MYC_HQ", + id: "IPzz6wlkIp0", + }, + { + access: "rwrw----", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-r-----", + userGroupUid: "LCs79RaVi0a", + displayName: "SS_NTD_LSH_SUPPLY_MonthlyStock_Entry", + id: "LCs79RaVi0a", + }, + { + access: "rw------", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA", + }, + { + access: "r-r-----", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-r-----", + userGroupUid: "TNA9oGI43e4", + displayName: "NTD_LSH_EURO_ARM", + id: "TNA9oGI43e4", + }, + { + access: "r-rw----", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-r-----", + userGroupUid: "K40P7b1JFdc", + displayName: "NTD_EMRO", + id: "K40P7b1JFdc", + }, + { + access: "r-------", + userGroupUid: "VONeiGGohxr", + displayName: "NTD_RAB_Other", + id: "VONeiGGohxr", + }, + { + access: "r-r-----", + userGroupUid: "B6oADCiiW8v", + displayName: "SS_NTD_RAB_AggData_View", + id: "B6oADCiiW8v", + }, + { + access: "r-rw----", + userGroupUid: "TUL6Ftyw9j6", + displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", + id: "TUL6Ftyw9j6", + }, + { + access: "r-rw----", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-rw----", + userGroupUid: "PCa3h9xXkLN", + displayName: "SS_NTD_RAB_AggData_Retro_Entry", + id: "PCa3h9xXkLN", + }, + { + access: "r-r-----", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-r-----", + userGroupUid: "phezIKUxlC2", + displayName: "NTD_LSH_EMRO_SOM", + id: "phezIKUxlC2", + }, + { + access: "rwrw----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-r-----", + userGroupUid: "tEOUdu1ala4", + displayName: "NTD_EURO", + id: "tEOUdu1ala4", + }, + { + access: "r-r-----", + userGroupUid: "j3RfLgyvhbd", + displayName: "NTD_LSH_Country", + id: "j3RfLgyvhbd", + }, + { + access: "r-r-----", + userGroupUid: "orn5lTGFMve", + displayName: "NTD_LSH_Public", + id: "orn5lTGFMve", + }, + { + access: "r-r-----", + userGroupUid: "PthCrHajHLi", + displayName: "SS_NTD_RAB_AggData_Retro_View", + id: "PthCrHajHLi", + }, + { + access: "r-------", + userGroupUid: "pbZna7luFaM", + displayName: "NTD_RAB_OIE", + id: "pbZna7luFaM", + }, + { + access: "r-------", + userGroupUid: "Zr1fdsbkiAR", + displayName: "NTD_RAB_Official", + id: "Zr1fdsbkiAR", + }, + { + access: "r-r-----", + userGroupUid: "aDYjuZk8cXT", + displayName: "WHO NTD department", + id: "aDYjuZk8cXT", + }, + { + access: "rwr-----", + userGroupUid: "BMxt1NZML9e", + displayName: "NTD_LSH_SUPPLY_HQ", + id: "BMxt1NZML9e", + }, + { + access: "r-rw----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-r-----", + userGroupUid: "QUaeS1tdoLx", + displayName: "SS_NTD_LSH_AggrDataSimple_Entry", + id: "QUaeS1tdoLx", + }, + { + access: "r-------", + userGroupUid: "K7VPSVrAYeV", + displayName: "NTD_RAB_Estimates", + id: "K7VPSVrAYeV", + }, + { + access: "r-rw----", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rwr-----", + userGroupUid: "sXNyAgGyHSK", + displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", + id: "sXNyAgGyHSK", + }, + { + access: "r-r-----", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-rw----", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "rwr-----", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-r-----", + userGroupUid: "Fs9vCVCHjlE", + displayName: "NTD_LSH_Demo", + id: "Fs9vCVCHjlE", + }, + { + access: "r-r-----", + userGroupUid: "MYa3lh5k0Yq", + displayName: "NTD_LSH_SUPPLY_HQPublished", + id: "MYa3lh5k0Yq", + }, + { + access: "r-r-----", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL", + }, + { + access: "rwr-----", + userGroupUid: "I95k8bm5q5J", + displayName: "SS_NTD_LSH_SUPPLY_DispatchHQ_Entry", + id: "I95k8bm5q5J", + }, + { + access: "r-r-----", + userGroupUid: "CoxTaSDd4Bz", + displayName: "NTD_Skin_AFRO_GHA", + id: "CoxTaSDd4Bz", + }, + ], attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "gfRkAIfJ2eO.jnNy9wEOvyu", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_PREPROD-VIS", - shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_PREPROD-VIS", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_PREPROD-VIS", - displayShortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_PREPROD-VIS", - externalAccess: false, - dimensionItem: "gfRkAIfJ2eO.jnNy9wEOvyu", - displayFormName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS WHO_PREPROD-VIS", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "jnNy9wEOvyu" - }, - dataElement: { - id: "gfRkAIfJ2eO" - }, - favorites: [], translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "F5cEZ7QM03v.SvcP5ROAff3", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_MALARIA", - shortName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_MALARIA", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_MALARIA", - displayShortName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_MALARIA", - externalAccess: false, - dimensionItem: "F5cEZ7QM03v.SvcP5ROAff3", - displayFormName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_MALARIA", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "SvcP5ROAff3" + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + organisationUnits: [], + }, + { + code: "ALL_Gender_9", + created: "2016-03-29T21:07:01.664", + lastUpdated: "2021-04-20T20:13:21.844", + name: "Gender Unknown", + id: "NuBMsmUyzDA", + shortName: "Gender Unknown", + publicAccess: "r-rw----", + lastUpdatedBy: { + id: "kD52FGwJgDF", }, - dataElement: { - id: "F5cEZ7QM03v" + user: { + id: "H4atNsEuKxP", }, - favorites: [], - translations: [], userGroupAccesses: [], attributeValues: [], + translations: [ + { + property: "NAME", + locale: "fr", + value: "Sexe inconnu", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "Sexe inconnu", + }, + ], userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "RsZWioTWyYa.jnNy9wEOvyu", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_PREPROD-VIS", - shortName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_PREPROD-VIS", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_PREPROD-VIS", - displayShortName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_PREPROD-VIS", - externalAccess: false, - dimensionItem: "RsZWioTWyYa.jnNy9wEOvyu", - displayFormName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_PREPROD-VIS", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "jnNy9wEOvyu" + organisationUnits: [], + }, + ], + categories: [ + { + code: "Cat_AgeGroup_BU", + created: "2016-03-29T21:07:02.275", + lastUpdated: "2019-02-01T17:07:11.316", + name: "Age group (BU)", + id: "DddEdUVkG71", + dataDimensionType: "DISAGGREGATION", + publicAccess: "--------", + dataDimension: true, + lastUpdatedBy: { + id: "eK26I7dRbC4", }, - dataElement: { - id: "RsZWioTWyYa" + user: { + id: "q9wZgtaDxWn", }, - favorites: [], - translations: [], userGroupAccesses: [], attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "fjMS4MkPcEQ.SvcP5ROAff3", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_MALARIA", - shortName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_MALARIA", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_MALARIA", - displayShortName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_MALARIA", - externalAccess: false, - dimensionItem: "fjMS4MkPcEQ.SvcP5ROAff3", - displayFormName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_MALARIA", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "SvcP5ROAff3" - }, - dataElement: { - id: "fjMS4MkPcEQ" - }, - favorites: [], translations: [], - userGroupAccesses: [], - attributeValues: [], userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "RsZWioTWyYa.SvcP5ROAff3", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_MALARIA", - shortName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_MALARIA", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_MALARIA", - displayShortName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_MALARIA", - externalAccess: false, - dimensionItem: "RsZWioTWyYa.SvcP5ROAff3", - displayFormName: "ADMIN_DUTY_DE_STATUS_COMMENTS WHO_MALARIA", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "SvcP5ROAff3" + categoryOptions: [ + { + id: "vZ0WdHAROAy", + }, + { + id: "ciFLFA7AiOa", + }, + { + id: "ABOkZJOz8bn", + }, + { + id: "Ydd5J28bFdu", + }, + { + id: "w5ItMDKuO20", + }, + ], + }, + { + code: "ALL_Gender", + created: "2016-03-29T21:07:02.329", + lastUpdated: "2021-01-28T21:14:15.503", + name: "Gender", + id: "gvZZplg7PkY", + dataDimensionType: "DISAGGREGATION", + publicAccess: "r-------", + dataDimension: true, + lastUpdatedBy: { + id: "H4atNsEuKxP", }, - dataElement: { - id: "RsZWioTWyYa" + user: { + id: "H4atNsEuKxP", }, - favorites: [], - translations: [], userGroupAccesses: [], attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "CufSsSZAUme.jnNy9wEOvyu", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_PREPROD-VIS", - shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_PREPROD-VIS", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_PREPROD-VIS", - displayShortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_PREPROD-VIS", - externalAccess: false, - dimensionItem: "CufSsSZAUme.jnNy9wEOvyu", - displayFormName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE WHO_PREPROD-VIS", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "jnNy9wEOvyu" - }, - dataElement: { - id: "CufSsSZAUme" - }, - favorites: [], translations: [], - userGroupAccesses: [], - attributeValues: [], userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "qoGoSfiLnbH.SvcP5ROAff3", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_MALARIA", - shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_MALARIA", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_MALARIA", - displayShortName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_MALARIA", - externalAccess: false, - dimensionItem: "qoGoSfiLnbH.SvcP5ROAff3", - displayFormName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_MALARIA", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "SvcP5ROAff3" + categoryOptions: [ + { + id: "qmsg1OVBqif", + }, + { + id: "tZftZ03eewT", + }, + { + id: "NuBMsmUyzDA", + }, + ], + }, + { + code: "Category (BU)", + created: "2016-09-13T18:48:07.977", + lastUpdated: "2021-03-23T09:13:34.345", + name: "Category (BU)", + id: "RchPsJmL2wA", + dataDimensionType: "DISAGGREGATION", + publicAccess: "--------", + dataDimension: true, + lastUpdatedBy: { + id: "bI1uY3KuAKV", }, - dataElement: { - id: "qoGoSfiLnbH" + user: { + id: "q9wZgtaDxWn", }, - favorites: [], - translations: [], - userGroupAccesses: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + ], attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "XrDIy4Gg3YR.SvcP5ROAff3", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_MALARIA", - shortName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_MALARIA", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_MALARIA", - displayShortName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_MALARIA", - externalAccess: false, - dimensionItem: "XrDIy4Gg3YR.SvcP5ROAff3", - displayFormName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS WHO_MALARIA", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "SvcP5ROAff3" - }, - dataElement: { - id: "XrDIy4Gg3YR" - }, - favorites: [], translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "fjMS4MkPcEQ.jnNy9wEOvyu", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_PREPROD-VIS", - shortName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_PREPROD-VIS", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_PREPROD-VIS", - displayShortName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_PREPROD-VIS", - externalAccess: false, - dimensionItem: "fjMS4MkPcEQ.jnNy9wEOvyu", - displayFormName: "ADMIN_DUTY_DE_STATUS_SERVER_UP WHO_PREPROD-VIS", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "jnNy9wEOvyu" + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + categoryOptions: [ + { + id: "msTyBF6xVJI", + }, + { + id: "OjTZlEq5DU6", + }, + { + id: "FMJprslIeSG", + }, + { + id: "rduPRxceiXM", + }, + ], + }, + { + code: "Age group", + created: "2016-03-29T21:07:02.275", + lastUpdated: "2021-03-23T09:13:34.601", + name: "Age group", + id: "J2EQ3575tpG", + dataDimensionType: "DISAGGREGATION", + publicAccess: "--------", + dataDimension: true, + lastUpdatedBy: { + id: "bI1uY3KuAKV", }, - dataElement: { - id: "fjMS4MkPcEQ" + user: { + id: "q9wZgtaDxWn", }, - favorites: [], - translations: [], - userGroupAccesses: [], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "OBxv9dRBkM5", + displayName: "SS_NTD_SKIN_YAWS_AggData_View", + id: "OBxv9dRBkM5", + }, + { + access: "r-------", + userGroupUid: "JusJWdDa1LM", + displayName: "SS_NTD_SBE_AggData_Entry", + id: "JusJWdDa1LM", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "r-------", + userGroupUid: "foOXWD4beuA", + displayName: "NTD_NZD_admin", + id: "foOXWD4beuA", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "nPPxGTmEqbL", + displayName: "SS_NTD_LSH_AggData_View", + id: "nPPxGTmEqbL", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "rw------", + userGroupUid: "Un2GLxeuVZ2", + displayName: "NTD_LSH_Admin", + id: "Un2GLxeuVZ2", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "TUL6Ftyw9j6", + displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", + id: "TUL6Ftyw9j6", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "QUaeS1tdoLx", + displayName: "SS_NTD_LSH_AggrDataSimple_Entry", + id: "QUaeS1tdoLx", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "UnTaQrY57qi", + displayName: "NTD_LSH_Monthly_Importer", + id: "UnTaQrY57qi", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "yBUSIP5IhrF", + displayName: "NTD_LSH_HQ", + id: "yBUSIP5IhrF", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + { + access: "r-------", + userGroupUid: "aAGXWv0GkMo", + displayName: "SS_NTD_LSH_AggData_Entry", + id: "aAGXWv0GkMo", + }, + ], attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "K9IzaTNqEXa.SvcP5ROAff3", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_MALARIA", - shortName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_MALARIA", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_MALARIA", - displayShortName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_MALARIA", - externalAccess: false, - dimensionItem: "K9IzaTNqEXa.SvcP5ROAff3", - displayFormName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_MALARIA", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "SvcP5ROAff3" - }, - dataElement: { - id: "K9IzaTNqEXa" - }, - favorites: [], translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "KOUVktXBH9W.SvcP5ROAff3", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_MALARIA", - shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_MALARIA", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_MALARIA", - displayShortName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_MALARIA", - externalAccess: false, - dimensionItem: "KOUVktXBH9W.SvcP5ROAff3", - displayFormName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_MALARIA", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "SvcP5ROAff3" - }, - dataElement: { - id: "KOUVktXBH9W" + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + categoryOptions: [ + { + id: "vZ0WdHAROAy", + }, + { + id: "ciFLFA7AiOa", + }, + { + id: "qAeldgH4WMr", + }, + { + id: "w5ItMDKuO20", + }, + ], + }, + { + code: "default", + created: "2017-05-10T17:53:55.152", + lastUpdated: "2021-08-07T06:18:19.628", + name: "default", + id: "DMyxTSpvKOp", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + dataDimension: false, + user: { + id: "eK26I7dRbC4", }, - favorites: [], - translations: [], userGroupAccesses: [], attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "sFLQxZe72Ym.jnNy9wEOvyu", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_PREPROD-VIS", - shortName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_PREPROD-VIS", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_PREPROD-VIS", - displayShortName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_PREPROD-VIS", - externalAccess: false, - dimensionItem: "sFLQxZe72Ym.jnNy9wEOvyu", - displayFormName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_PREPROD-VIS", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "jnNy9wEOvyu" - }, - dataElement: { - id: "sFLQxZe72Ym" - }, - favorites: [], translations: [], - userGroupAccesses: [], - attributeValues: [], userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "F5cEZ7QM03v.jnNy9wEOvyu", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_PREPROD-VIS", - shortName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_PREPROD-VIS", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_PREPROD-VIS", - displayShortName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_PREPROD-VIS", - externalAccess: false, - dimensionItem: "F5cEZ7QM03v.jnNy9wEOvyu", - displayFormName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT WHO_PREPROD-VIS", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "jnNy9wEOvyu" - }, - dataElement: { - id: "F5cEZ7QM03v" + categoryOptions: [ + { + id: "Y7fcspgsU43", + }, + ], + }, + ], + dataSets: [ + { + code: "DS_BU_minimum aggregated data_monthly", + lastUpdated: "2021-04-28T09:01:38.787", + id: "VqmVLwlbJLo", + created: "2018-02-02T18:27:19.493", + name: "BU_minimum aggregated data_monthly", + shortName: "BU_minimum aggregated data_monthly", + validCompleteOnly: false, + dataElementDecoration: false, + publicAccess: "--------", + notifyCompletingUser: false, + noValueRequiresComment: false, + description: + "This dataset enables to capture monthly core aggregated data on suspected and confirmed Buruli ulcer cases.", + skipOffline: false, + compulsoryFieldsCompleteOnly: false, + fieldCombinationRequired: false, + renderHorizontally: false, + renderAsTabs: true, + mobile: false, + version: 3, + openPeriodsAfterCoEndDate: 0, + timelyDays: 15, + periodType: "Monthly", + openFuturePeriods: 0, + expiryDays: 0, + categoryCombo: { + id: "JzvGfLYkX17", }, - favorites: [], - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "qoGoSfiLnbH.hHIs5QYHbQP", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_PROD", - shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_PROD", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_PROD", - displayShortName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_PROD", - externalAccess: false, - dimensionItem: "qoGoSfiLnbH.hHIs5QYHbQP", - displayFormName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS WHO_PROD", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "hHIs5QYHbQP" + lastUpdatedBy: { + id: "eK26I7dRbC4", }, - dataElement: { - id: "qoGoSfiLnbH" + user: { + id: "q9wZgtaDxWn", }, - favorites: [], + dataSetElements: [ + { + dataElement: { + id: "IjrtWEc8Oei", + }, + dataSet: { + id: "VqmVLwlbJLo", + }, + }, + { + dataElement: { + id: "UVEjNoZCtNQ", + }, + dataSet: { + id: "VqmVLwlbJLo", + }, + }, + { + categoryCombo: { + id: "MeoSuM1SQ1f", + }, + dataElement: { + id: "OG5wWMlhrxv", + }, + dataSet: { + id: "VqmVLwlbJLo", + }, + }, + { + dataElement: { + id: "uhG3oatUV6j", + }, + dataSet: { + id: "VqmVLwlbJLo", + }, + }, + { + dataElement: { + id: "tOpVIYrnbhk", + }, + dataSet: { + id: "VqmVLwlbJLo", + }, + }, + { + categoryCombo: { + id: "VygZ6pni0XS", + }, + dataElement: { + id: "zqv3IsyTYta", + }, + dataSet: { + id: "VqmVLwlbJLo", + }, + }, + { + dataElement: { + id: "uFKSqvGwl21", + }, + dataSet: { + id: "VqmVLwlbJLo", + }, + }, + { + categoryCombo: { + id: "rZydwxCQsc7", + }, + dataElement: { + id: "mBDooPcvqRy", + }, + dataSet: { + id: "VqmVLwlbJLo", + }, + }, + ], + compulsoryDataElementOperands: [], translations: [], - userGroupAccesses: [], + dataInputPeriods: [], + organisationUnits: [ + { + id: "rm6NgPbM6Ld", + }, + { + id: "er7MPiN3tdH", + }, + { + id: "JI5lagoUJR4", + }, + { + id: "ovruC9wzRBW", + }, + { + id: "vkXlj7ZPkGi", + }, + { + id: "LbWpsX1FJcC", + }, + { + id: "jkyBvNzcTLl", + }, + { + id: "RUCp6OaTSAD", + }, + { + id: "BmTVMvJHVBO", + }, + { + id: "U8uqyDAu5bH", + }, + { + id: "aQJQ5mijJmH", + }, + { + id: "q23bFLr2E5D", + }, + { + id: "OzjRQLn3G24", + }, + { + id: "jVqoXv7rFns", + }, + { + id: "ZvX8lXd1tYs", + }, + { + id: "KAUSOoBq5Ft", + }, + { + id: "h7ARR5vhSLF", + }, + { + id: "dpcvWc01CeN", + }, + ], + userGroupAccesses: [ + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], attributeValues: [], + indicators: [ + { + id: "YhT6GxOLv73", + }, + { + id: "lBRFDEaxUDi", + }, + { + id: "kCS3GHdIcQ9", + }, + { + id: "UBHvHs7yeEB", + }, + { + id: "fL136P7sU6J", + }, + { + id: "D8TeKh05msQ", + }, + { + id: "KiSlEe9D7SZ", + }, + ], userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "kDL0aoZKYfV.SvcP5ROAff3", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_MALARIA", - shortName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_MALARIA", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_MALARIA", - displayShortName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_MALARIA", - externalAccess: false, - dimensionItem: "kDL0aoZKYfV.SvcP5ROAff3", - displayFormName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_MALARIA", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "SvcP5ROAff3" - }, - dataElement: { - id: "kDL0aoZKYfV" + legendSets: [], + }, + ], + indicatorTypes: [ + { + lastUpdated: "2021-05-28T16:24:02.018", + created: "2016-04-06T03:28:40.088", + name: "Percent", + id: "qpi4nN8Wkvl", + number: false, + factor: 100, + lastUpdatedBy: { + id: "bI1uY3KuAKV", }, - favorites: [], translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "sFLQxZe72Ym.SvcP5ROAff3", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_MALARIA", - shortName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_MALARIA", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_MALARIA", - displayShortName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_MALARIA", - externalAccess: false, - dimensionItem: "sFLQxZe72Ym.SvcP5ROAff3", - displayFormName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS WHO_MALARIA", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "SvcP5ROAff3" + }, + ], + }, + dataset3: { + categoryCombos: [ + { + code: "default", + created: "2017-05-10T17:53:55.156", + lastUpdated: "2019-02-20T16:22:55.336", + name: "default", + id: "JzvGfLYkX17", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + skipTotal: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", }, - dataElement: { - id: "sFLQxZe72Ym" + user: { + id: "eK26I7dRbC4", }, - favorites: [], - translations: [], userGroupAccesses: [], - attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "HaV3tXKCCnW.hHIs5QYHbQP", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_PROD", - shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_PROD", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_PROD", - displayShortName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_PROD", - externalAccess: false, - dimensionItem: "HaV3tXKCCnW.hHIs5QYHbQP", - displayFormName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_PROD", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "hHIs5QYHbQP" - }, - dataElement: { - id: "HaV3tXKCCnW" - }, - favorites: [], translations: [], - userGroupAccesses: [], - attributeValues: [], userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "kDL0aoZKYfV.jnNy9wEOvyu", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_PREPROD-VIS", - shortName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_PREPROD-VIS", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_PREPROD-VIS", - displayShortName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_PREPROD-VIS", - externalAccess: false, - dimensionItem: "kDL0aoZKYfV.jnNy9wEOvyu", - displayFormName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS WHO_PREPROD-VIS", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "jnNy9wEOvyu" - }, - dataElement: { - id: "kDL0aoZKYfV" + categories: [ + { + id: "DMyxTSpvKOp", + }, + ], + }, + ], + categoryOptionCombos: [ + { + lastUpdated: "2017-05-10T17:53:55.158", + code: "default", + created: "2017-05-10T17:53:55.157", + name: "default", + id: "Xr12mI7VPn3", + ignoreApproval: false, + categoryCombo: { + id: "JzvGfLYkX17", }, - favorites: [], translations: [], - userGroupAccesses: [], attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "BCytw0TARJ0.SvcP5ROAff3", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_MALARIA", - shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_MALARIA", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_MALARIA", - displayShortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_MALARIA", - externalAccess: false, - dimensionItem: "BCytw0TARJ0.SvcP5ROAff3", - displayFormName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_MALARIA", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "SvcP5ROAff3" + categoryOptions: [ + { + id: "Y7fcspgsU43", + }, + ], + }, + ], + sections: [ + { + created: "2017-03-13T15:24:46.137", + lastUpdated: "2019-05-25T10:52:32.356", + name: "Gender distribution", + id: "QBA9xJy694a", + sortOrder: 3, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", }, - dataElement: { - id: "BCytw0TARJ0" + dataSet: { + id: "ZO0DQJePIEH", }, - favorites: [], - translations: [], - userGroupAccesses: [], + greyedFields: [], attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "HaV3tXKCCnW.SvcP5ROAff3", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_MALARIA", - shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_MALARIA", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_MALARIA", - displayShortName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_MALARIA", - externalAccess: false, - dimensionItem: "HaV3tXKCCnW.SvcP5ROAff3", - displayFormName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE WHO_MALARIA", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "SvcP5ROAff3" - }, - dataElement: { - id: "HaV3tXKCCnW" - }, - favorites: [], + indicators: [], translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "K9IzaTNqEXa.jnNy9wEOvyu", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_PREPROD-VIS", - shortName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_PREPROD-VIS", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_PREPROD-VIS", - displayShortName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_PREPROD-VIS", - externalAccess: false, - dimensionItem: "K9IzaTNqEXa.jnNy9wEOvyu", - displayFormName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE WHO_PREPROD-VIS", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "jnNy9wEOvyu" + dataElements: [ + { + id: "pjd3beNHprb", + }, + ], + }, + { + created: "2017-03-13T15:27:27.788", + lastUpdated: "2019-05-25T10:52:32.357", + name: "Age distribution", + id: "yuOz1ToZ7mR", + sortOrder: 2, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", }, - dataElement: { - id: "K9IzaTNqEXa" + dataSet: { + id: "ZO0DQJePIEH", }, - favorites: [], - translations: [], - userGroupAccesses: [], + greyedFields: [], attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "BCytw0TARJ0.jnNy9wEOvyu", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_PREPROD-VIS", - shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_PREPROD-VIS", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_PREPROD-VIS", - displayShortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_PREPROD-VIS", - externalAccess: false, - dimensionItem: "BCytw0TARJ0.jnNy9wEOvyu", - displayFormName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS WHO_PREPROD-VIS", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "jnNy9wEOvyu" - }, - dataElement: { - id: "BCytw0TARJ0" - }, - favorites: [], + indicators: [], translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.430", - id: "KOUVktXBH9W.hHIs5QYHbQP", - created: "2021-09-29T06:00:52.430", - name: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_PROD", - shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_PROD", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_PROD", - displayShortName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_PROD", - externalAccess: false, - dimensionItem: "KOUVktXBH9W.hHIs5QYHbQP", - displayFormName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS WHO_PROD", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "hHIs5QYHbQP" + dataElements: [ + { + id: "hnihvm6kXLX", + }, + ], + }, + { + created: "2017-03-13T15:26:11.163", + lastUpdated: "2019-05-25T10:52:32.357", + name: "Lab", + id: "gGk9TLyXQZO", + sortOrder: 6, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", }, - dataElement: { - id: "KOUVktXBH9W" + dataSet: { + id: "ZO0DQJePIEH", }, - favorites: [], - translations: [], - userGroupAccesses: [], + greyedFields: [], attributeValues: [], - userAccesses: [], - legendSets: [] - } - ], - attributeValues: [], - indicators: [], - translations: [], - dataElements: [ - { - id: "fjMS4MkPcEQ" - }, - { - id: "F5cEZ7QM03v" - }, - { - id: "kDL0aoZKYfV" - }, - { - id: "RsZWioTWyYa" - }, - { - id: "CufSsSZAUme" - }, - { - id: "gfRkAIfJ2eO" - }, - { - id: "BCytw0TARJ0" - }, - { - id: "K9IzaTNqEXa" - }, - { - id: "XrDIy4Gg3YR" - }, - { - id: "sFLQxZe72Ym" - }, - { - id: "HaV3tXKCCnW" - }, - { - id: "qoGoSfiLnbH" - }, - { - id: "KOUVktXBH9W" - } - ] - }, - { - code: "ADMIN_DUTY_SECTION_PUBLIC_OBJECTS", - created: "2020-04-13T10:08:46.467", - lastUpdated: "2021-02-15T17:20:35.130", - name: "Public objects", - id: "flhHBsC1cUi", - sortOrder: 5, - showRowTotals: false, - showColumnTotals: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - dataSet: { - id: "FnYgTt843G2" - }, - greyedFields: [ - { - lastUpdated: "2021-09-29T06:00:52.434", - id: "Dvx3NSCzImT.SvcP5ROAff3", - created: "2021-09-29T06:00:52.434", - name: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK WHO_MALARIA", - shortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK WHO_MALARIA", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK WHO_MALARIA", - displayShortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK WHO_MALARIA", - externalAccess: false, - dimensionItem: "Dvx3NSCzImT.SvcP5ROAff3", - displayFormName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK WHO_MALARIA", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "SvcP5ROAff3" - }, - dataElement: { - id: "Dvx3NSCzImT" - }, - favorites: [], + indicators: [], translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.434", - id: "HF0iZZ0NqDE.SvcP5ROAff3", - created: "2021-09-29T06:00:52.434", - name: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT WHO_MALARIA", - shortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT WHO_MALARIA", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT WHO_MALARIA", - displayShortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT WHO_MALARIA", - externalAccess: false, - dimensionItem: "HF0iZZ0NqDE.SvcP5ROAff3", - displayFormName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT WHO_MALARIA", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "SvcP5ROAff3" + dataElements: [ + { + id: "ijKH3KK0Etn", + }, + ], + }, + { + created: "2017-03-13T15:21:34.091", + lastUpdated: "2019-05-25T10:52:32.357", + name: "Annual cases", + id: "lCu0Onx9YBZ", + sortOrder: 1, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", }, - dataElement: { - id: "HF0iZZ0NqDE" + dataSet: { + id: "ZO0DQJePIEH", }, - favorites: [], - translations: [], - userGroupAccesses: [], + greyedFields: [], attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-09-29T06:00:52.434", - id: "ulfI0WDmW92.SvcP5ROAff3", - created: "2021-09-29T06:00:52.434", - name: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT WHO_MALARIA", - shortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT WHO_MALARIA", - aggregationType: "NONE", - displayName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT WHO_MALARIA", - displayShortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT WHO_MALARIA", - externalAccess: false, - dimensionItem: "ulfI0WDmW92.SvcP5ROAff3", - displayFormName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT WHO_MALARIA", - favorite: false, - dimensionItemType: "DATA_ELEMENT_OPERAND", - access: { - read: true, - update: true, - externalize: true, - delete: true, - write: true, - manage: true - }, - categoryOptionCombo: { - id: "SvcP5ROAff3" - }, - dataElement: { - id: "ulfI0WDmW92" - }, - favorites: [], + indicators: [], translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [], - legendSets: [] - } - ], - attributeValues: [], - indicators: [], - translations: [], - dataElements: [ - { - id: "Dvx3NSCzImT" - }, - { - id: "HF0iZZ0NqDE" - }, - { - id: "ulfI0WDmW92" - } - ] - }, - { - code: "ADMIN_DUTY_SECTION_COORDINATION_TASKS", - created: "2019-09-07T16:09:21.109", - lastUpdated: "2021-02-15T17:20:35.130", - name: "Coordination tasks", - id: "DCs4RcHnJVE", - sortOrder: 6, - showRowTotals: false, - showColumnTotals: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - dataSet: { - id: "FnYgTt843G2" - }, - greyedFields: [], - attributeValues: [], - indicators: [], - translations: [], - dataElements: [ - { - id: "nN6za0sVirK" - }, - { - id: "tCxs6EgMIo6" - }, - { - id: "lXknxysDVIL" - }, - { - id: "vde072gdxKY" - }, - { - id: "UdVGMNKksVU" - }, - { - id: "dnzBDLlnSZs" - }, - { - id: "Em7yGYvgAU3" - }, - { - id: "pPyNTfJE0PG" - }, - { - id: "wf8MI19zCzV" - }, - { - id: "bSdpvUwkRa1" - }, - { - id: "m4MjhFUcecj" - }, - { - id: "CIHmMkvNYDO" - } - ] - } - ], - dataElements: [ - { - code: "ADMIN_DUTY_DE_ANALYTICS_LOGS", - lastUpdated: "2021-02-15T17:20:34.973", - id: "qpgGXrkTrgj", - created: "2019-09-12T09:31:27.018", - name: "ADMIN_DUTY_DE_ANALYTICS_LOGS", - shortName: "ADMIN_DUTY_DE_ANALYTICS_LOGS", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "LONG_TEXT", - formName: "Relevant logs of the analytics run", - zeroIsSignificant: false, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION", - lastUpdated: "2021-02-15T17:20:34.973", - id: "tHGRW9Zwyxh", - created: "2019-09-07T16:27:04.436", - name: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION", - shortName: "ADMIN_DUTY_DE_ANALYTICS_EXECUTION", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "TEXT", - formName: "How did the analytics run?", - zeroIsSignificant: false, - optionSet: { - id: "YFZsozOszeV" - }, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_TASKS_RESOLVED_RUN", - lastUpdated: "2021-02-15T17:20:34.972", - id: "UdVGMNKksVU", - created: "2019-09-07T16:32:08.443", - name: "ADMIN_DUTY_DE_TASKS_RESOLVED_RUN", - shortName: "ADMIN_DUTY_DE_TASKS_RESOLVED_RUN", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "TRUE_ONLY", - formName: "Did you review the resolved issues on redmine?", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS", - lastUpdated: "2021-02-15T17:20:34.971", - id: "CTbBS3ArglV", - created: "2019-09-12T09:13:35.840", - name: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS", - shortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_LOGS", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "TRUE_ONLY", - formName: "Did the analytics run as per the logs? ", - zeroIsSignificant: false, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_STATUS_COMMENTS", - lastUpdated: "2021-02-15T17:20:34.974", - id: "RsZWioTWyYa", - created: "2019-09-07T16:22:12.647", - name: "ADMIN_DUTY_DE_STATUS_COMMENTS", - shortName: "ADMIN_DUTY_DE_STATUS_COMMENTS", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "LONG_TEXT", - formName: "Comments about the server status", - zeroIsSignificant: false, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK", - lastUpdated: "2021-02-15T17:20:34.974", - id: "Dvx3NSCzImT", - created: "2020-02-05T11:04:52.379", - name: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK", - shortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_CHK", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "TRUE_ONLY", - formName: "Did you check the public objects?", - zeroIsSignificant: false, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS", - lastUpdated: "2021-02-15T17:20:34.975", - id: "KOUVktXBH9W", - created: "2021-01-06T10:43:31.254", - name: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS", - shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_LOGS", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "LONG_TEXT", - formName: "Error logs on the docker instances clone", - zeroIsSignificant: false, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_ANALYTICS_RUN", - lastUpdated: "2021-02-15T17:20:34.973", - id: "mjDgqDPsT4J", - created: "2019-09-07T16:24:19.762", - name: "ADMIN_DUTY_DE_ANALYTICS_RUN", - shortName: "ADMIN_DUTY_DE_ANALYTICS_RUN", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "TRUE_ONLY", - formName: "Did you check the analytics status?", - zeroIsSignificant: false, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS", - lastUpdated: "2021-02-15T17:20:34.974", - id: "XrDIy4Gg3YR", - created: "2019-09-16T06:14:07.937", - name: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS", - shortName: "ADMIN_DUTY_DE_STATUS_CLONING_COMMENTS", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "LONG_TEXT", - formName: "Comments on the cloning of the instances", - zeroIsSignificant: false, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_TASKS_MAIL_RUN", - lastUpdated: "2021-02-15T17:20:34.975", - id: "nN6za0sVirK", - created: "2019-09-07T16:29:39.215", - name: "ADMIN_DUTY_DE_TASKS_MAIL_RUN", - shortName: "ADMIN_DUTY_DE_TASKS_MAIL_RUN", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "TRUE_ONLY", - formName: "Did you check the integrated mailbox?", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_TASKS_BACKLOG_COMMENT", - lastUpdated: "2021-02-15T17:20:34.976", - id: "vde072gdxKY", - created: "2019-09-07T16:31:13.785", - name: "ADMIN_DUTY_DE_TASKS_BACKLOG_COMMENT", - shortName: "ADMIN_DUTY_DE_TASKS_BACKLOG_COMMENT", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "LONG_TEXT", - formName: "Comments about the backlog issues on redmine", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_TASKS_MAIL_COMMENT", - lastUpdated: "2021-02-15T17:20:34.972", - id: "tCxs6EgMIo6", - created: "2019-09-07T16:30:08.001", - name: "ADMIN_DUTY_DE_TASKS_MAIL_COMMENT", - shortName: "ADMIN_DUTY_DE_TASKS_MAIL_COMMENT", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "LONG_TEXT", - formName: "Comments about the integrated mailbox", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE", - lastUpdated: "2021-02-15T17:20:34.975", - id: "CufSsSZAUme", - created: "2019-09-16T06:11:22.559", - name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE", - shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_DONE", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "TRUE_ONLY", - formName: "Did you check the database backup?", - zeroIsSignificant: false, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS", - lastUpdated: "2021-02-15T17:20:34.974", - id: "gfRkAIfJ2eO", - created: "2019-09-16T06:12:35.695", - name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS", - shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_COMMENTS", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "LONG_TEXT", - formName: "Comments on database backup", - zeroIsSignificant: false, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_TASKS_RESOLVED_COMMENT", - lastUpdated: "2021-02-15T17:20:34.974", - id: "dnzBDLlnSZs", - created: "2019-09-07T16:31:37.739", - name: "ADMIN_DUTY_DE_TASKS_RESOLVED_COMMENT", - shortName: "ADMIN_DUTY_DE_TASKS_RESOLVED_COMMENT", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "LONG_TEXT", - formName: "Comments about the resolved issues on redmine", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS", - lastUpdated: "2021-02-15T17:20:34.976", - id: "qoGoSfiLnbH", - created: "2021-01-06T10:42:59.738", - name: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS", - shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_COMMENTS", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "LONG_TEXT", - formName: "Comments on the docker instances clone", - zeroIsSignificant: false, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_TASKS_CLOSE_RUN", - lastUpdated: "2021-02-15T17:20:34.971", - id: "Em7yGYvgAU3", - created: "2019-09-07T16:33:45.824", - name: "ADMIN_DUTY_DE_TASKS_CLOSE_RUN", - shortName: "ADMIN_DUTY_DE_TASKS_CLOSE_RUN", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "TRUE_ONLY", - formName: "Did you assign the issues that should be closed (30 days) on redmine?", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_STATUS_SERVER_UP", - lastUpdated: "2021-02-15T17:20:34.972", - id: "fjMS4MkPcEQ", - created: "2019-09-07T16:20:22.633", - name: "ADMIN_DUTY_DE_STATUS_SERVER_UP", - shortName: "ADMIN_DUTY_DE_STATUS_SERVER_UP", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "TRUE_ONLY", - formName: "Is the instance up and running?", - zeroIsSignificant: false, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_TASKS_CHECK_PROD_ERRORS", - lastUpdated: "2021-02-15T17:20:34.972", - id: "CIHmMkvNYDO", - created: "2020-10-27T11:41:54.481", - name: "ADMIN_DUTY_DE_TASKS_CHECK_PROD_ERRORS", - shortName: "ADMIN_DUTY_DE_TASKS_CHECK_PROD_ERRORS", - aggregationType: "SUM", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "TRUE_ONLY", - formName: "Did you check the prod logs errors? (only on Thursdays)", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "kD52FGwJgDF" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_GENERAL_COMMENTS", - lastUpdated: "2021-02-15T17:20:34.973", - id: "XtznMFZssKc", - created: "2019-09-07T16:07:03.672", - name: "ADMIN_DUTY_DE_GENERAL_COMMENTS", - shortName: "ADMIN_DUTY_DE_GENERAL_COMMENTS", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "LONG_TEXT", - formName: "Comments of the duty day", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - lastUpdated: "2021-02-24T09:42:43.263", - id: "BLlpSeTreIO", - created: "2021-02-12T11:48:32.824", - name: "ADMIN_DUTY_DE_METADATA_REPORT_WRONG_INDICATOR_EXPRESIONS", - shortName: "ADMIN_DUTY_DE_MREPORT_WRONG_INDICATOR_EXPRESIONS", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "rw------", - valueType: "LONG_TEXT", - formName: "Number of invalid expressions in indicators", - zeroIsSignificant: false, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "kD52FGwJgDF" - }, - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT", - lastUpdated: "2021-02-15T17:20:34.974", - id: "ulfI0WDmW92", - created: "2020-02-05T11:06:05.458", - name: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT", - shortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COMMENT", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "LONG_TEXT", - formName: "Comments about the public objects", - zeroIsSignificant: false, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS", - lastUpdated: "2021-02-15T17:20:34.972", - id: "BCytw0TARJ0", - created: "2019-09-16T06:12:04.486", - name: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS", - shortName: "ADMIN_DUTY_DE_STATUS_DB_BACKUP_LOGS", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "LONG_TEXT", - formName: "Error logs on database backup", - zeroIsSignificant: false, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_TASKS_CLOSE_COMMENT", - lastUpdated: "2021-02-15T17:20:34.975", - id: "pPyNTfJE0PG", - created: "2019-09-07T16:33:20.750", - name: "ADMIN_DUTY_DE_TASKS_CLOSE_COMMENT", - shortName: "ADMIN_DUTY_DE_TASKS_CLOSE_COMMENT", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "LONG_TEXT", - formName: "Comments about the issues that should be closed (30 days) on redmine", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS", - lastUpdated: "2021-02-15T17:20:34.973", - id: "kDL0aoZKYfV", - created: "2019-09-07T16:21:58.469", - name: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS", - shortName: "ADMIN_DUTY_DE_STATUS_FAILURE_LOGS", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "LONG_TEXT", - formName: "Failure logs", - zeroIsSignificant: false, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD", - lastUpdated: "2021-02-15T17:20:34.973", - id: "crQfKtNHSHB", - created: "2019-09-12T09:26:00.926", - name: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD", - shortName: "ADMIN_DUTY_DE_ANALYTICS_CORRECTLY_DASHBOARD", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "TRUE_ONLY", - formName: "Did the analytics run as per the dashboard? ", - zeroIsSignificant: false, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_GENERAL_ASSIGNEE", - lastUpdated: "2021-02-15T17:20:34.975", - id: "DZmTHrT9JPg", - created: "2019-09-07T16:05:25.606", - name: "ADMIN_DUTY_DE_GENERAL_ASSIGNEE", - shortName: "ADMIN_DUTY_DE_GENERAL_ASSIGNEE", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "TEXT", - formName: "Assignee of the duty day", - zeroIsSignificant: false, - optionSet: { - id: "wsWZHTuG77p" - }, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_TASKS_BACKLOG_RUN", - lastUpdated: "2021-02-15T17:20:34.975", - id: "lXknxysDVIL", - created: "2019-09-07T16:30:52.035", - name: "ADMIN_DUTY_DE_TASKS_BACKLOG_RUN", - shortName: "ADMIN_DUTY_DE_TASKS_BACKLOG_RUN", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "TRUE_ONLY", - formName: "Did you assign the backlog issues on redmine?", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS", - lastUpdated: "2021-02-15T17:20:34.971", - id: "sFLQxZe72Ym", - created: "2019-09-16T06:14:44.611", - name: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS", - shortName: "ADMIN_DUTY_DE_STATUS_CLONING_LOGS", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "LONG_TEXT", - formName: "Error logs on the cloning of the instances", - zeroIsSignificant: false, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT", - lastUpdated: "2021-02-15T17:20:34.975", - id: "F5cEZ7QM03v", - created: "2019-09-07T16:21:16.224", - name: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT", - shortName: "ADMIN_DUTY_DE_STATUS_FAILURE_COUNT", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "INTEGER_ZERO_OR_POSITIVE", - formName: "Number of failures in the current day", - zeroIsSignificant: true, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_TASKS_DELETE_USERS", - lastUpdated: "2021-02-15T17:20:34.973", - id: "wf8MI19zCzV", - created: "2020-07-27T19:15:34.122", - name: "ADMIN_DUTY_DE_TASKS_DELETE_USERS", - shortName: "ADMIN_DUTY_DE_TASKS_DELETE_USERS", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "TRUE_ONLY", - formName: "Did you deleted all users with the suffix _TOBEDELETED? (only the FIRST duty day of each month)", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_GENERAL_PENDING_TASKS", - lastUpdated: "2021-02-15T17:20:34.975", - id: "EvRMsyVW63b", - created: "2019-09-07T16:10:19.581", - name: "ADMIN_DUTY_DE_GENERAL_PENDING_TASKS", - shortName: "ADMIN_DUTY_DE_GENERAL_PENDING_TASKS", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "LONG_TEXT", - formName: "Pending tasks of the duty day", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_TASKS_RETURN_CHANNEL", - lastUpdated: "2021-02-15T17:20:34.975", - id: "m4MjhFUcecj", - created: "2021-02-08T10:13:58.780", - name: "ADMIN_DUTY_DE_TASKS_RETURN_CHANNEL", - shortName: "ADMIN_DUTY_DE_TASKS_RETURN_CHANNEL", - aggregationType: "SUM", - domainType: "AGGREGATE", - publicAccess: "rw------", - valueType: "TRUE_ONLY", - formName: "Did you synced all the return channel metadata sync rules in prod? (only the FIRST duty day of each month after the montly backup)", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "kD52FGwJgDF" - }, - translations: [], - userGroupAccesses: [], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS", - lastUpdated: "2021-02-15T17:20:34.974", - id: "Dx70nNMP3mB", - created: "2019-09-07T16:27:49.546", - name: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS", - shortName: "ADMIN_DUTY_DE_ANALYTICS_COMMENTS", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "LONG_TEXT", - formName: "Comments about the analytics", - zeroIsSignificant: false, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT", - lastUpdated: "2021-02-15T17:20:34.972", - id: "HF0iZZ0NqDE", - created: "2020-02-05T11:05:29.726", - name: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT", - shortName: "ADMIN_DUTY_DE_TASKS_PUBLIC_OBJECTS_COUNT", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "NUMBER", - formName: "Number of public objects", - zeroIsSignificant: false, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_TASKS_DELETE_RULES", - lastUpdated: "2021-02-15T17:20:34.974", - id: "bSdpvUwkRa1", - created: "2020-10-13T10:24:32.648", - name: "ADMIN_DUTY_DE_TASKS_DELETE_RULES", - shortName: "ADMIN_DUTY_DE_TASKS_DELETE_RULES", - aggregationType: "SUM", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "TRUE_ONLY", - formName: "Did you deleted all the metadata sync rules created at least one month ago? (only the FIRST duty day of each month after the montly backup)", - zeroIsSignificant: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "kD52FGwJgDF" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE", - lastUpdated: "2021-02-15T17:20:34.972", - id: "HaV3tXKCCnW", - created: "2021-01-06T10:42:11.044", - name: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE", - shortName: "ADMIN_DUTY_DE_STATUS_DOCKER_DONE", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "TRUE_ONLY", - formName: "Did you check the daily docker instance clone?", - zeroIsSignificant: false, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - }, - { - code: "ADMIN_DUTY_DE_STATUS_CLONING_DONE", - lastUpdated: "2021-02-15T17:20:34.976", - id: "K9IzaTNqEXa", - created: "2019-09-16T06:15:15.566", - name: "ADMIN_DUTY_DE_STATUS_CLONING_DONE", - shortName: "ADMIN_DUTY_DE_STATUS_CLONING_DONE", - aggregationType: "NONE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "TRUE_ONLY", - formName: "Did you check the cloning of the instance?", - zeroIsSignificant: false, - categoryCombo: { - id: "Fkyud1WKXWo" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - translations: [], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [], - aggregationLevels: [] - } - ], - categoryOptions: [ - { - code: "default", - created: "2017-05-10T17:53:55.138", - lastUpdated: "2018-07-27T16:09:07.425", - name: "default", - id: "Y7fcspgsU43", - shortName: "default", - publicAccess: "rwrw----", - user: { - id: "eK26I7dRbC4" - }, - userGroupAccesses: [], - attributeValues: [], - translations: [], - userAccesses: [], - organisationUnits: [] - }, - { - code: "ADMIN_DUTY_CO_SERVER_INSTANCES_PREPROD", - created: "2019-09-07T16:18:31.803", - lastUpdated: "2021-02-15T17:20:34.870", - name: "WHO_PREPROD", - id: "QllodPhxVeb", - shortName: "WHO_PREPROD", - publicAccess: "--------", - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - userGroupAccesses: [ - { - access: "rwrw----", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - translations: [], - userAccesses: [], - organisationUnits: [ - { - id: "H8RixfF8ugH" - } - ] - }, - { - code: "ADMIN_DUTY_CO_SERVER_INSTANCES_TRAINING", - created: "2019-09-07T16:18:46.637", - lastUpdated: "2021-02-15T17:20:34.870", - name: "WHO_TRAINING", - id: "buv02XljUjE", - shortName: "WHO_TRAINING", - publicAccess: "--------", - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - userGroupAccesses: [ - { - access: "rwrw----", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - translations: [], - userAccesses: [], - organisationUnits: [ - { - id: "H8RixfF8ugH" - } - ] - }, - { - code: "ADMIN_DUTY_CO_SERVER_INSTANCES_PROD", - created: "2019-09-07T16:18:16.992", - lastUpdated: "2021-02-15T17:20:34.869", - name: "WHO_PROD", - id: "rhGywpV4vXF", - shortName: "WHO_PROD", - publicAccess: "--------", - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - userGroupAccesses: [ - { - access: "rwrw----", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - translations: [], - userAccesses: [], - organisationUnits: [ - { - id: "H8RixfF8ugH" - } - ] - }, - { - code: "ADMIN_DUTY_CO_SERVER_INSTANCES_DEV", - created: "2019-09-07T16:17:34.811", - lastUpdated: "2021-02-15T17:20:34.869", - name: "WHO_DEV", - id: "jFwR5mUrvAM", - shortName: "WHO_DEV", - publicAccess: "--------", - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - userGroupAccesses: [ - { - access: "rwrw----", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - translations: [], - userAccesses: [], - organisationUnits: [ - { - id: "H8RixfF8ugH" - } - ] - }, - { - code: "ADMIN_DUTY_CO_SERVER_INSTANCES_MALARIA", - created: "2019-09-10T16:32:46.127", - lastUpdated: "2021-02-15T17:20:34.868", - name: "WHO_MALARIA", - id: "RkYSGG4MNhT", - shortName: "WHO_MALARIA", - publicAccess: "--------", - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - userGroupAccesses: [ - { - access: "rwrw----", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - translations: [], - userAccesses: [], - organisationUnits: [ - { - id: "H8RixfF8ugH" - } - ] - }, - { - code: "ADMIN_DUTY_CO_SERVER_INSTANCES_DEV-CONT", - created: "2019-09-10T16:31:58.313", - lastUpdated: "2021-02-15T17:20:34.869", - name: "WHO_DEV-CONT", - id: "BclrlHiDxv1", - shortName: "WHO_DEV-CONT", - publicAccess: "--------", - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - userGroupAccesses: [ - { - access: "rwrw----", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - translations: [], - userAccesses: [], - organisationUnits: [ - { - id: "H8RixfF8ugH" - } - ] - }, - { - code: "ADMIN_DUTY_CO_SERVER_INSTANCES_PREPROD-VIS", - created: "2019-09-10T16:32:19.140", - lastUpdated: "2021-02-15T17:20:34.869", - name: "WHO_PREPROD-VIS", - id: "OgGW61Izy8Y", - shortName: "WHO_PREPROD-VIS", - publicAccess: "--------", - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - userGroupAccesses: [ - { - access: "rwrw----", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - translations: [], - userAccesses: [], - organisationUnits: [ - { - id: "H8RixfF8ugH" - } - ] - }, - { - code: "ADMIN_DUTY_CO_SERVER_INSTANCES_PREPROD_CONT", - created: "2020-09-30T17:19:49.347", - lastUpdated: "2021-02-15T17:20:34.870", - name: "WHO_PREPROD_CONT", - id: "BnkWfh38wMf", - shortName: "WHO_PREPROD_CONT", - publicAccess: "--------", - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "kD52FGwJgDF" - }, - userGroupAccesses: [ - { - access: "rwrw----", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - translations: [], - userAccesses: [], - organisationUnits: [ - { - id: "H8RixfF8ugH" - } - ] - } - ], - categories: [ - { - code: "ADMIN_DUTY_CAT_SERVER_INSTANCES", - created: "2019-09-07T16:19:37.984", - lastUpdated: "2021-02-08T10:15:38.975", - name: "ADMIN_DUTY_CAT_SERVER_INSTANCES", - id: "dL4wpziK7qW", - dataDimensionType: "DISAGGREGATION", - publicAccess: "--------", - dataDimension: true, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - translations: [], - userAccesses: [], - categoryOptions: [ - { - id: "jFwR5mUrvAM" - }, - { - id: "BclrlHiDxv1" - }, - { - id: "buv02XljUjE" - }, - { - id: "QllodPhxVeb" - }, - { - id: "BnkWfh38wMf" - }, - { - id: "rhGywpV4vXF" - }, - { - id: "RkYSGG4MNhT" - } - ] - }, - { - code: "default", - created: "2017-05-10T17:53:55.152", - lastUpdated: "2021-08-07T06:18:19.628", - name: "default", - id: "DMyxTSpvKOp", - dataDimensionType: "DISAGGREGATION", - publicAccess: "rw------", - dataDimension: false, - user: { - id: "eK26I7dRbC4" - }, - userGroupAccesses: [], - attributeValues: [], - translations: [], - userAccesses: [], - categoryOptions: [ - { - id: "Y7fcspgsU43" - } - ] - } - ], - dataSets: [ - { - code: "ADMIN_DUTY_DS_DAILY", - lastUpdated: "2021-02-15T17:20:35.068", - id: "FnYgTt843G2", - created: "2019-09-07T16:00:31.496", - name: "ADMIN - Duty day platform administration - Daily", - shortName: "ADMIN - Duty day platform administration", - validCompleteOnly: false, - dataElementDecoration: false, - publicAccess: "--------", - notifyCompletingUser: false, - noValueRequiresComment: false, - skipOffline: false, - compulsoryFieldsCompleteOnly: false, - fieldCombinationRequired: false, - renderHorizontally: true, - renderAsTabs: true, - mobile: false, - version: 80, - openPeriodsAfterCoEndDate: 0, - timelyDays: 15, - periodType: "Daily", - openFuturePeriods: 8, - expiryDays: 0, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "s5EVHUwoFKu" - }, - dataSetElements: [ - { - dataElement: { - id: "CufSsSZAUme" - }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "tCxs6EgMIo6" - }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "m4MjhFUcecj" - }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "CTbBS3ArglV" - }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "K9IzaTNqEXa" - }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "XtznMFZssKc" - }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "wf8MI19zCzV" - }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "bSdpvUwkRa1" - }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "pPyNTfJE0PG" - }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "qpgGXrkTrgj" - }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "BCytw0TARJ0" + dataElements: [ + { + id: "tOpVIYrnbhk", + }, + ], + }, + { + created: "2017-03-13T15:26:42.175", + lastUpdated: "2019-05-25T10:52:32.358", + name: "Treatment", + id: "VeERzaIGC16", + sortOrder: 7, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", }, dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "ulfI0WDmW92" + id: "ZO0DQJePIEH", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "nN6za0sVirK" + greyedFields: [], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [ + { + id: "fCOiZOvhlYU", + }, + ], + }, + { + created: "2017-03-13T15:25:25.396", + lastUpdated: "2019-05-25T10:52:32.358", + name: "Clinical presentation", + id: "cKWt05KOBMm", + sortOrder: 4, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", }, dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "kDL0aoZKYfV" + id: "ZO0DQJePIEH", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "fjMS4MkPcEQ" + greyedFields: [], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [ + { + id: "AD4v3ACiiXX", + }, + { + id: "gUqE2t4L5UU", + }, + { + id: "tMY0YnV1PHQ", + }, + ], + }, + { + created: "2017-03-13T15:25:48.973", + lastUpdated: "2019-05-25T10:52:32.359", + name: "Category", + id: "aEjB04cV1Wn", + sortOrder: 5, + showRowTotals: false, + showColumnTotals: false, + lastUpdatedBy: { + id: "eK26I7dRbC4", }, dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "EvRMsyVW63b" + id: "ZO0DQJePIEH", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "Em7yGYvgAU3" + greyedFields: [], + attributeValues: [], + indicators: [], + translations: [], + dataElements: [ + { + id: "lff6zDTvFi8", + }, + { + id: "ckHbEc6qoyV", + }, + { + id: "z2JQOIDlZUn", + }, + ], + }, + ], + dataElements: [ + { + code: "BU_Tx_ABcompletion_%", + lastUpdated: "2020-03-31T17:13:10.087", + id: "fCOiZOvhlYU", + created: "2017-03-12T21:49:03.996", + name: "BU_Tx_ABcompletion_%", + shortName: "% completing antibiotic treatment", + aggregationType: "AVERAGE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "PERCENTAGE", + formName: "% completing antibiotic treatment", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "qoGoSfiLnbH" + lastUpdatedBy: { + id: "eK26I7dRbC4", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "RsZWioTWyYa" + user: { + id: "eK26I7dRbC4", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "tHGRW9Zwyxh" + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "% des patients suivant un traitement antibiotique", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "% traitement AB complété", + }, + { + property: "NAME", + locale: "fr", + value: "UB_Tx_ABcompletude_%", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_EPI_AnnualCases", + lastUpdated: "2021-03-23T09:13:33.879", + id: "tOpVIYrnbhk", + created: "2018-05-09T22:26:29.218", + name: "BU_EPI_AnnualCases", + shortName: "# annual new BU cases", + aggregationType: "SUM", + domainType: "AGGREGATE", + publicAccess: "--------", + description: + "WHO defines a Buruli ulcer case as any person with painless nodule, papule, plaque or oedema evolving into a painless ulcer with undermined edges, often leading to invalidating sequelae in an endemic area.", + valueType: "INTEGER_ZERO_OR_POSITIVE", + formName: "Number of new BU cases diagnosed within reporting year", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "Dx70nNMP3mB" + lastUpdatedBy: { + id: "bI1uY3KuAKV", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "F5cEZ7QM03v" + user: { + id: "ilJDyuqlwDC", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "lXknxysDVIL" + translations: [ + { + property: "SHORT_NAME", + locale: "fr", + value: "Nombre annuel de cas d'ulc\ufffdre de Buruli", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "# annuel de cas d'ulcere de Buruli", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "Nombre annuel de cas d'ulcere de Buruli", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: " OMS définit un cas d'ulcere de Buruli comme toute personne présentant des nodule, papule, plaque ou oedeme, sans douleur, evoluant en ulcère avec des bords minces, souvent menant à des séquelles invalidantes, dans une zone d'endémie.", + }, + { + property: "NAME", + locale: "fr", + value: "UB_EPI_Cas_Annuel", + }, + { + property: "NAME", + locale: "fr", + value: "Nombre annuel de cas d'ulc\ufffdre de Buruli", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "aDYjuZk8cXT", + displayName: "WHO NTD department", + id: "aDYjuZk8cXT", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "rw------", + userGroupUid: "k1KjQJqaHpz", + displayName: "NTD_SKIN_Admin", + id: "k1KjQJqaHpz", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-------", + userGroupUid: "ZvxncLTan3w", + displayName: "NTD_SKIN_Yaws_WHO", + id: "ZvxncLTan3w", + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "UnTaQrY57qi", + displayName: "NTD_LSH_Monthly_Importer", + id: "UnTaQrY57qi", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_Cl_CatIII_%", + lastUpdated: "2020-03-31T17:13:09.841", + id: "z2JQOIDlZUn", + created: "2017-03-12T21:49:03.997", + name: "BU_Cl_CatIII_%", + shortName: "% category III", + aggregationType: "AVERAGE", + domainType: "AGGREGATE", + publicAccess: "--------", + description: + "Category III: A single lesion more than 15 cm or multiple lesions or lesions at critical sites or osteomyelitis", + valueType: "PERCENTAGE", + formName: "% category III", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "crQfKtNHSHB" + lastUpdatedBy: { + id: "eK26I7dRbC4", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "dnzBDLlnSZs" + user: { + id: "eK26I7dRbC4", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "HF0iZZ0NqDE" + translations: [ + { + property: "NAME", + locale: "fr", + value: "UB_Cl_CatIII_%", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Catégorie III: Une lésion unique de plus de 15 cm ou mulltiple lésions ou lésions au niveau d'un site critique ou ostéomyélite", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "% catégorie II", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "% catégorie III", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_Cl_JointLim_%", + lastUpdated: "2020-03-31T17:13:10.086", + id: "gUqE2t4L5UU", + created: "2017-03-12T21:49:03.997", + name: "BU_Cl_JointLim_%", + shortName: "% limitation of movement", + aggregationType: "AVERAGE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "PERCENTAGE", + formName: "% limitation of movement", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "KOUVktXBH9W" + lastUpdatedBy: { + id: "eK26I7dRbC4", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "CIHmMkvNYDO" + user: { + id: "eK26I7dRbC4", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "DZmTHrT9JPg" + translations: [ + { + property: "NAME", + locale: "fr", + value: "UB_Cl_JointLim_%", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "% limitation de mouvement", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "% limitation de mouvement", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_Cl_CatII_%", + lastUpdated: "2020-03-31T17:12:59.894", + id: "ckHbEc6qoyV", + created: "2017-03-12T21:49:03.997", + name: "BU_Cl_CatII_%", + shortName: "% category II", + aggregationType: "AVERAGE", + domainType: "AGGREGATE", + publicAccess: "--------", + description: "Category II: A single lesion 5-15cm", + valueType: "PERCENTAGE", + formName: "% category II", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "gfRkAIfJ2eO" + lastUpdatedBy: { + id: "eK26I7dRbC4", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "BLlpSeTreIO" + user: { + id: "eK26I7dRbC4", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "Dvx3NSCzImT" + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "% catégorie II", + }, + { + property: "NAME", + locale: "fr", + value: "UB_Cl_CatII_%", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "% catégorie II", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Catégorie II: Une lésion unique de 5 à 15 cm", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_EPI_U15y_%", + lastUpdated: "2020-03-31T17:13:14.697", + id: "hnihvm6kXLX", + created: "2017-03-12T21:49:03.996", + name: "BU_EPI_U15y_%", + shortName: "% children under 15 years", + aggregationType: "AVERAGE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "PERCENTAGE", + formName: "% children under 15 years", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "XrDIy4Gg3YR" + lastUpdatedBy: { + id: "eK26I7dRbC4", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "sFLQxZe72Ym" + user: { + id: "eK26I7dRbC4", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "mjDgqDPsT4J" + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "% enfants de moins de 15 ans", + }, + { + property: "NAME", + locale: "fr", + value: "UB_EPI_<15a_%", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "% moins de 15 ans", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_Cl_Ulcer_%", + lastUpdated: "2019-05-25T10:52:31.471", + id: "AD4v3ACiiXX", + created: "2017-03-12T21:49:03.997", + name: "BU_Cl_Ulcer_%", + shortName: "% ulcers", + aggregationType: "AVERAGE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "PERCENTAGE", + formName: "% ulcers", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "vde072gdxKY" + lastUpdatedBy: { + id: "eK26I7dRbC4", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "HaV3tXKCCnW" + user: { + id: "eK26I7dRbC4", }, - dataSet: { - id: "FnYgTt843G2" - } - }, - { - dataElement: { - id: "UdVGMNKksVU" + translations: [ + { + property: "NAME", + locale: "fr", + value: "UB_Cl_Ulcere_%", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "% ulcères", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "% ulcères", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_Cl_CatI_%", + lastUpdated: "2020-03-31T17:13:00.278", + id: "lff6zDTvFi8", + created: "2017-03-12T21:49:03.997", + name: "BU_Cl_CatI_%", + shortName: "% category I", + aggregationType: "AVERAGE", + domainType: "AGGREGATE", + publicAccess: "--------", + description: "Category I: A single lesion 5cm or less", + valueType: "PERCENTAGE", + formName: "% category I", + zeroIsSignificant: true, + categoryCombo: { + id: "JzvGfLYkX17", }, - dataSet: { - id: "FnYgTt843G2" - } - } - ], - compulsoryDataElementOperands: [], - translations: [], - dataInputPeriods: [], - organisationUnits: [ - { - id: "H8RixfF8ugH" - } - ], - userGroupAccesses: [ - { - access: "rwrw----", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - indicators: [], - userAccesses: [], - legendSets: [] - } - ] - }, - dataset2: { - indicators: [ - { - lastUpdated: "2021-06-01T17:25:45.769", - id: "YhT6GxOLv73", - created: "2016-11-03T18:25:35.628", - name: "BU_Female%", - shortName: "BU_Proportion of Female", - publicAccess: "--------", - description: "Proportion of female among the Buruli ulcer cases, based on summary data", - denominatorDescription: "Total number of BU cases (summary)", - numeratorDescription: "Number of female BU cases (summary)", - numerator: "#{zqv3IsyTYta.V2LdgcGgFQt}", - denominator: "#{tOpVIYrnbhk}", - annualized: false, - decimals: 1, - indicatorType: { - id: "qpi4nN8Wkvl" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "q9wZgtaDxWn" - }, - translations: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - lastUpdated: "2021-06-01T17:25:45.794", - id: "lBRFDEaxUDi", - created: "2016-11-03T18:25:35.628", - name: "BU_under15y_%", - shortName: "BU_Proportion under 15 years", - publicAccess: "--------", - description: "Proportion of children under 15 years of age among the Buruli ulcer cases, based on summary data", - denominatorDescription: "Total number of BU cases (summary)", - numeratorDescription: "Number of BU cases under 15y (summary)", - numerator: "#{mBDooPcvqRy.HDXcEOGT2s1} + #{mBDooPcvqRy.DOJartWGuff}", - denominator: "#{tOpVIYrnbhk.Xr12mI7VPn3}", - annualized: false, - decimals: 1, - indicatorType: { - id: "qpi4nN8Wkvl" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "q9wZgtaDxWn" - }, - translations: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "BU_Ulcer%", - lastUpdated: "2021-06-01T17:25:45.777", - id: "kCS3GHdIcQ9", - created: "2016-11-03T18:25:35.628", - name: "BU_Ulcer%", - shortName: "BU_Proportion of ulcerative lesions", - publicAccess: "--------", - description: "Proportion of Buruli ulcer cases presenting at least on ulcerative lesion, based on summary data", - denominatorDescription: "Total number of BU cases (summary)", - numeratorDescription: "Number of BU cases with ulcerative lesions (summary)", - numerator: "#{UVEjNoZCtNQ.Xr12mI7VPn3}", - denominator: "#{tOpVIYrnbhk.Xr12mI7VPn3}", - annualized: false, - decimals: 1, - indicatorType: { - id: "qpi4nN8Wkvl" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "q9wZgtaDxWn" - }, - translations: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "IA_BU_PCR%", - lastUpdated: "2021-06-01T17:25:45.782", - id: "UBHvHs7yeEB", - created: "2016-11-03T18:25:35.628", - name: "BU - % laboratory-confirmed cases", - shortName: "BU_% lab-confirmed cases", - publicAccess: "--------", - description: "Proportion of Buruli ulcer cases confirmed by PCR, based on summary data", - denominatorDescription: "Total number of BU cases (summary)", - numeratorDescription: "Number of BU cases confirmed by PCR (summary)", - numerator: "#{IjrtWEc8Oei.Xr12mI7VPn3}", - denominator: "#{tOpVIYrnbhk.Xr12mI7VPn3}", - annualized: false, - decimals: 1, - indicatorType: { - id: "qpi4nN8Wkvl" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "q9wZgtaDxWn" - }, - translations: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - }, - { - code: "BU_ABcompleted%", - lastUpdated: "2021-06-01T17:25:45.784", - id: "fL136P7sU6J", - created: "2016-11-03T18:25:35.628", - name: "BU_ABcompleted%", - shortName: "BU_Proportion who completed AB treatment", - publicAccess: "--------", - description: "Proportion of Buruli ulcer caseswho completed AB treatment, based on summary data", - denominatorDescription: "Total number of BU cases (summary)", - numeratorDescription: "Number of BU cases who completed AB treatment (summary)", - numerator: "#{uFKSqvGwl21.Xr12mI7VPn3}", - denominator: "#{tOpVIYrnbhk.Xr12mI7VPn3}", - annualized: false, - decimals: 1, - indicatorType: { - id: "qpi4nN8Wkvl" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "q9wZgtaDxWn" - }, - translations: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - code: "IA_BU_JointLim_%", - lastUpdated: "2021-06-01T17:25:45.784", - id: "D8TeKh05msQ", - created: "2016-11-03T18:25:35.628", - name: "BU Joint Lim%", - shortName: "BU Joint Lim%", - publicAccess: "--------", - description: "Proportion of Buruli ulcer cases presenting joint limitation, based on summary data", - denominatorDescription: "Total number of BU cases (summary)", - numeratorDescription: "Number of BU cases with joint limitation (summary)", - numerator: "#{uhG3oatUV6j.Xr12mI7VPn3}", - denominator: "#{tOpVIYrnbhk.Xr12mI7VPn3}", - annualized: false, - decimals: 1, - indicatorType: { - id: "qpi4nN8Wkvl" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "q9wZgtaDxWn" - }, - translations: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [] - }, - { - lastUpdated: "2021-06-01T17:25:45.775", - id: "KiSlEe9D7SZ", - created: "2016-11-03T18:25:35.628", - name: "BU_CatIII%", - shortName: "BU_Proportion of category III", - publicAccess: "--------", - description: "Proportion of Buruli ulcer cases in category III, based on summary data", - denominatorDescription: "Total number of BU cases (summary)", - numeratorDescription: "Number of BU cases in category III (summary)", - numerator: "#{OG5wWMlhrxv.c7ypRdqByt7}", - denominator: "#{tOpVIYrnbhk.Xr12mI7VPn3}", - annualized: false, - decimals: 1, - indicatorType: { - id: "qpi4nN8Wkvl" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "q9wZgtaDxWn" - }, - translations: [], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [], - legendSets: [] - } - ], - categoryCombos: [ - { - code: "CC_BU_Category", - created: "2016-04-06T00:52:18.593", - lastUpdated: "2020-10-30T16:12:08.683", - name: "CC Category (BU)", - id: "MeoSuM1SQ1f", - dataDimensionType: "DISAGGREGATION", - publicAccess: "--------", - skipTotal: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "q9wZgtaDxWn" - }, - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - } - ], - translations: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - categories: [ - { - id: "RchPsJmL2wA" - } - ] - }, - { - code: "CC_Gender", - created: "2016-04-11T06:05:55.442", - lastUpdated: "2021-05-04T11:59:49.283", - name: "CC Gender", - id: "VygZ6pni0XS", - dataDimensionType: "DISAGGREGATION", - publicAccess: "--------", - skipTotal: false, - lastUpdatedBy: { - id: "H4atNsEuKxP" - }, - user: { - id: "H4atNsEuKxP" - }, - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "QUaeS1tdoLx", - displayName: "SS_NTD_LSH_AggrDataSimple_Entry", - id: "QUaeS1tdoLx" - }, - { - access: "r-------", - userGroupUid: "JusJWdDa1LM", - displayName: "SS_NTD_SBE_AggData_Entry", - id: "JusJWdDa1LM" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "nPPxGTmEqbL", - displayName: "SS_NTD_LSH_AggData_View", - id: "nPPxGTmEqbL" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "H4YpPpQeKQR", - displayName: "SS_NTD_SBE_AggData_View", - id: "H4YpPpQeKQR" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "aAGXWv0GkMo", - displayName: "SS_NTD_LSH_AggData_Entry", - id: "aAGXWv0GkMo" - } - ], - translations: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - categories: [ - { - id: "gvZZplg7PkY" - } - ] - }, - { - code: "CC_AgeGroup", - created: "2016-04-06T00:52:18.593", - lastUpdated: "2021-03-16T16:47:21.664", - name: "CC Age Group", - id: "E0cSdwztY5K", - dataDimensionType: "DISAGGREGATION", - publicAccess: "--------", - skipTotal: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "q9wZgtaDxWn" - }, - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "OBxv9dRBkM5", - displayName: "SS_NTD_SKIN_YAWS_AggData_View", - id: "OBxv9dRBkM5" - }, - { - access: "r-------", - userGroupUid: "JusJWdDa1LM", - displayName: "SS_NTD_SBE_AggData_Entry", - id: "JusJWdDa1LM" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "r-------", - userGroupUid: "foOXWD4beuA", - displayName: "NTD_NZD_admin", - id: "foOXWD4beuA" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "nPPxGTmEqbL", - displayName: "SS_NTD_LSH_AggData_View", - id: "nPPxGTmEqbL" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "TUL6Ftyw9j6", - displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", - id: "TUL6Ftyw9j6" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "QUaeS1tdoLx", - displayName: "SS_NTD_LSH_AggrDataSimple_Entry", - id: "QUaeS1tdoLx" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "UnTaQrY57qi", - displayName: "NTD_LSH_Monthly_Importer", - id: "UnTaQrY57qi" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - }, - { - access: "r-------", - userGroupUid: "aAGXWv0GkMo", - displayName: "SS_NTD_LSH_AggData_Entry", - id: "aAGXWv0GkMo" - } - ], - translations: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - categories: [ - { - id: "J2EQ3575tpG" - } - ] - }, - { - code: "default", - created: "2017-05-10T17:53:55.156", - lastUpdated: "2019-02-20T16:22:55.336", - name: "default", - id: "JzvGfLYkX17", - dataDimensionType: "DISAGGREGATION", - publicAccess: "rw------", - skipTotal: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "eK26I7dRbC4" - }, - userGroupAccesses: [], - translations: [], - userAccesses: [], - categories: [ - { - id: "DMyxTSpvKOp" - } - ] - }, - { - code: "CC_AgeGroup_BU", - created: "2016-04-06T00:52:18.593", - lastUpdated: "2020-02-26T13:11:40.288", - name: "CC Age Group (BU)", - id: "rZydwxCQsc7", - dataDimensionType: "DISAGGREGATION", - publicAccess: "--------", - skipTotal: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "q9wZgtaDxWn" - }, - userGroupAccesses: [], - translations: [], - userAccesses: [], - categories: [ - { - id: "DddEdUVkG71" - } - ] - } - ], - categoryOptionCombos: [ - { - lastUpdated: "2019-08-14T08:31:54.280", - created: "2016-04-06T00:52:27.829", - name: "Under 5y", - id: "HDXcEOGT2s1", - ignoreApproval: false, - lastUpdatedBy: { - id: "ilJDyuqlwDC" - }, - categoryCombo: { - id: "E0cSdwztY5K" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "vZ0WdHAROAy" - } - ] - }, - { - lastUpdated: "2019-02-01T17:07:12.772", - created: "2017-03-13T18:09:38.688", - name: "50 y and over", - id: "g4ZnnHNE6sM", - ignoreApproval: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - categoryCombo: { - id: "rZydwxCQsc7" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "Ydd5J28bFdu" - } - ] - }, - { - lastUpdated: "2021-01-28T21:14:15.560", - created: "2016-04-06T00:52:27.834", - name: "15 y and over", - id: "vJEPLhdauF7", - ignoreApproval: false, - lastUpdatedBy: { - id: "H4atNsEuKxP" - }, - categoryCombo: { - id: "E0cSdwztY5K" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "qAeldgH4WMr" - } - ] - }, - { - lastUpdated: "2019-08-14T08:31:54.280", - created: "2016-09-13T18:48:18.724", - name: "Category unknown", - id: "Vcv8owxbxaN", - ignoreApproval: false, - lastUpdatedBy: { - id: "ilJDyuqlwDC" - }, - categoryCombo: { - id: "MeoSuM1SQ1f" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "msTyBF6xVJI" - } - ] - }, - { - lastUpdated: "2021-01-28T21:14:15.560", - created: "2016-04-06T00:52:27.836", - name: "Age Unknown", - id: "kek1YXjDq70", - ignoreApproval: false, - lastUpdatedBy: { - id: "H4atNsEuKxP" - }, - categoryCombo: { - id: "E0cSdwztY5K" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "w5ItMDKuO20" - } - ] - }, - { - lastUpdated: "2018-04-05T10:27:01.913", - created: "2018-04-05T10:27:01.913", - name: "Age Unknown", - id: "wzNLOvBy7wZ", - ignoreApproval: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - categoryCombo: { - id: "rZydwxCQsc7" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "w5ItMDKuO20" - } - ] - }, - { - lastUpdated: "2019-08-14T08:31:54.280", - created: "2016-09-13T18:48:18.729", - name: "Cat II", - id: "j5fsvsfsaJ3", - ignoreApproval: false, - lastUpdatedBy: { - id: "ilJDyuqlwDC" - }, - categoryCombo: { - id: "MeoSuM1SQ1f" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "FMJprslIeSG" - } - ] - }, - { - lastUpdated: "2019-02-01T17:07:12.772", - created: "2017-03-13T18:09:38.648", - name: "Under 5y", - id: "UZO2MsUMcgj", - ignoreApproval: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - categoryCombo: { - id: "rZydwxCQsc7" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "vZ0WdHAROAy" - } - ] - }, - { - lastUpdated: "2021-04-20T20:13:21.906", - created: "2016-04-11T06:05:55.469", - name: "Gender Unknown", - id: "jNbFhhnUsQv", - ignoreApproval: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - categoryCombo: { - id: "VygZ6pni0XS" - }, - translations: [ - { - property: "NAME", - locale: "fr", - value: "Sexe inconnu" - } - ], - attributeValues: [], - categoryOptions: [ - { - id: "NuBMsmUyzDA" - } - ] - }, - { - lastUpdated: "2021-04-20T20:13:21.906", - created: "2016-04-11T06:05:55.472", - name: "Male", - id: "Z2hvpF7mhh7", - ignoreApproval: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - categoryCombo: { - id: "VygZ6pni0XS" - }, - translations: [ - { - property: "NAME", - locale: "fr", - value: "Homme" - } - ], - attributeValues: [], - categoryOptions: [ - { - id: "qmsg1OVBqif" - } - ] - }, - { - lastUpdated: "2017-05-10T17:53:55.158", - code: "default", - created: "2017-05-10T17:53:55.157", - name: "default", - id: "Xr12mI7VPn3", - ignoreApproval: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "Y7fcspgsU43" - } - ] - }, - { - lastUpdated: "2019-08-14T08:31:54.280", - created: "2016-09-13T18:48:18.727", - name: "Cat I", - id: "rawZ86Q1W1k", - ignoreApproval: false, - lastUpdatedBy: { - id: "ilJDyuqlwDC" - }, - categoryCombo: { - id: "MeoSuM1SQ1f" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "OjTZlEq5DU6" - } - ] - }, - { - lastUpdated: "2019-08-14T08:31:54.280", - created: "2016-09-13T18:48:18.731", - name: "Cat III", - id: "c7ypRdqByt7", - ignoreApproval: false, - lastUpdatedBy: { - id: "ilJDyuqlwDC" - }, - categoryCombo: { - id: "MeoSuM1SQ1f" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "rduPRxceiXM" - } - ] - }, - { - lastUpdated: "2021-04-20T20:13:21.906", - created: "2016-04-11T06:05:55.471", - name: "Female", - id: "V2LdgcGgFQt", - ignoreApproval: false, - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - categoryCombo: { - id: "VygZ6pni0XS" - }, - translations: [ - { - property: "NAME", - locale: "fr", - value: "Femme" - } - ], - attributeValues: [], - categoryOptions: [ - { - id: "tZftZ03eewT" - } - ] - }, - { - lastUpdated: "2019-02-01T17:07:12.772", - created: "2017-03-13T18:09:38.677", - name: "15 to 49 y", - id: "AgIKhjS6s8v", - ignoreApproval: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - categoryCombo: { - id: "rZydwxCQsc7" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "ABOkZJOz8bn" - } - ] - }, - { - lastUpdated: "2021-01-28T21:14:15.560", - created: "2016-04-06T00:52:27.832", - name: "5 to 14 y", - id: "DOJartWGuff", - ignoreApproval: false, - lastUpdatedBy: { - id: "H4atNsEuKxP" - }, - categoryCombo: { - id: "E0cSdwztY5K" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "ciFLFA7AiOa" - } - ] - }, - { - lastUpdated: "2019-02-01T17:07:12.772", - created: "2017-03-13T18:09:38.666", - name: "5 to 14 y", - id: "HcDAlGa9KKf", - ignoreApproval: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - categoryCombo: { - id: "rZydwxCQsc7" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "ciFLFA7AiOa" - } - ] - } - ], - dataElements: [ - { - code: "BU_Lab_PCRconfirmation", - lastUpdated: "2021-03-23T09:13:34.048", - id: "IjrtWEc8Oei", - created: "2018-05-09T22:26:29.218", - name: "BU_Lab_PCRconfirmation", - shortName: "# PCR confirmed BU cases", - aggregationType: "SUM", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "INTEGER_ZERO_OR_POSITIVE", - formName: "Number of new BU cases confirmed by PCR", - zeroIsSignificant: true, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "NAME", - locale: "fr", - value: "Nombre de cas confim\ufffds par PCR" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Cas confim\ufffds par PCR" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_Cl_Ulcer", - lastUpdated: "2020-10-30T16:12:07.989", - id: "UVEjNoZCtNQ", - created: "2018-05-09T22:26:29.218", - name: "BU_Cl_Ulcer", - shortName: "# BU cases with ulcerative lesions", - aggregationType: "SUM", - domainType: "AGGREGATE", - publicAccess: "--------", - description: "An ulcer is a painless skin lesion characterized by a necrotic center, undermined edges and oedematous skin. ", - valueType: "INTEGER_ZERO_OR_POSITIVE", - formName: "Number of new BU cases with ulcerative lesions", - zeroIsSignificant: true, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "ilJDyuqlwDC" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "NAME", - locale: "fr", - value: "Nombre de cas pr\ufffdsentant un ulc\ufffdre" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Nombre de nouveaux cas d'UB presentant un ulcere au diagnostic" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "# cas d'UB presentant un ulcere" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_EPI_AnnualCases", - lastUpdated: "2021-03-23T09:13:33.879", - id: "tOpVIYrnbhk", - created: "2018-05-09T22:26:29.218", - name: "BU_EPI_AnnualCases", - shortName: "# annual new BU cases", - aggregationType: "SUM", - domainType: "AGGREGATE", - publicAccess: "--------", - description: "WHO defines a Buruli ulcer case as any person with painless nodule, papule, plaque or oedema evolving into a painless ulcer with undermined edges, often leading to invalidating sequelae in an endemic area.", - valueType: "INTEGER_ZERO_OR_POSITIVE", - formName: "Number of new BU cases diagnosed within reporting year", - zeroIsSignificant: true, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "Nombre annuel de cas d'ulc\ufffdre de Buruli" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "# annuel de cas d'ulcere de Buruli" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Nombre annuel de cas d'ulcere de Buruli" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: " OMS définit un cas d'ulcere de Buruli comme toute personne présentant des nodule, papule, plaque ou oedeme, sans douleur, evoluant en ulcère avec des bords minces, souvent menant à des séquelles invalidantes, dans une zone d'endémie." - }, - { - property: "NAME", - locale: "fr", - value: "UB_EPI_Cas_Annuel" - }, - { - property: "NAME", - locale: "fr", - value: "Nombre annuel de cas d'ulc\ufffdre de Buruli" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "aDYjuZk8cXT", - displayName: "WHO NTD department", - id: "aDYjuZk8cXT" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "UnTaQrY57qi", - displayName: "NTD_LSH_Monthly_Importer", - id: "UnTaQrY57qi" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_EPI_Age", - lastUpdated: "2020-10-30T16:12:07.990", - id: "mBDooPcvqRy", - created: "2018-05-09T22:26:29.218", - name: "BU_EPI_Age", - shortName: "# BU cases (by age group)", - aggregationType: "SUM", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "INTEGER_ZERO_OR_POSITIVE", - formName: "Number of new BU cases (by age group)", - zeroIsSignificant: true, - categoryCombo: { - id: "E0cSdwztY5K" - }, - lastUpdatedBy: { - id: "ilJDyuqlwDC" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "Cas d'ulc\ufffdre de Buruli (par groupe d'\ufffdge)" - }, - { - property: "NAME", - locale: "fr", - value: "Nombre de cas d'ulc\ufffdre de Buruli (par groupe d'\ufffdge)" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_Tx_ABcompletion", - lastUpdated: "2020-10-30T16:12:08.486", - id: "uFKSqvGwl21", - created: "2018-05-09T22:26:29.218", - name: "BU_Tx_ABcompletion", - shortName: "# BU cases completing antibiotics treatment", - aggregationType: "SUM", - domainType: "AGGREGATE", - publicAccess: "--------", - description: "Treatment consists of a combination of antibiotics and complementary treatments (under morbidity management and disability prevention/rehabilitation). Treatment guidance for health workers can be found in the WHO publication \"Treatment of mycobacterium ulcerans disease (Buruli ulcer).\"", - valueType: "INTEGER_ZERO_OR_POSITIVE", - formName: "Number of new BU cases completing antibiotics treatment", - zeroIsSignificant: true, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "ilJDyuqlwDC" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "# cas d'UB ayant acheve traitement AB" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Nombre de nouveaux cas d'UB ayant acheve le traitement antibiotique" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Patients ayant compl\ufffdt\ufffd le traitement antibiotique" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_CL_JointLim", - lastUpdated: "2020-10-30T16:12:08.198", - id: "uhG3oatUV6j", - created: "2018-05-09T22:26:29.218", - name: "BU_Cl_JointLim", - shortName: "# BU cases with joint limitation", - aggregationType: "SUM", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "INTEGER_ZERO_OR_POSITIVE", - formName: "Number of new BU cases with joint limitation at diagnosis", - zeroIsSignificant: true, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "ilJDyuqlwDC" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "NAME", - locale: "fr", - value: "Nombre de cas pr\ufffdsentant une limitation articulaire au moment du diagnostique" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "# nouveaux cas d'UB avec limitation articulaire" - }, - { - property: "NAME", - locale: "fr", - value: "BU_Cl_JointLim" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Nombre de nouveaux cas d'UB presentant une limitation articulaire au diagnostic" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Cas pr\ufffdsentant une limitation articulaire au moment du diagnostique" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_Cl_Cat", - lastUpdated: "2020-10-30T16:12:08.444", - id: "OG5wWMlhrxv", - created: "2018-05-09T22:26:29.218", - name: "BU_Cl_Cat", - shortName: "# BU cases by category", - aggregationType: "SUM", - domainType: "AGGREGATE", - publicAccess: "--------", - description: "Category I: A single lesion 5cm or less / Category II: A single lesion 5-15cm / Category III: A single lesion more than 15 cm or multiple lesions or lesions at critical sites or osteomyelitis", - valueType: "INTEGER_ZERO_OR_POSITIVE", - formName: "Number of new BU cases by category", - zeroIsSignificant: true, - categoryCombo: { - id: "MeoSuM1SQ1f" - }, - lastUpdatedBy: { - id: "ilJDyuqlwDC" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "Cas d'ulc\ufffdre de Buruli par cat\ufffdgorie" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "# cas d'UB par categorie" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Nombre de cas d'ulcere de Buruli par categorie" - }, - { - property: "NAME", - locale: "fr", - value: "Nombre de cas d'ulc\ufffdre de Buruli par cat\ufffdgorie" - }, - { - property: "NAME", - locale: "fr", - value: "Nombre de cas d'ulcere de Buruli par categorie" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: "Categori I: Une lésion unique de 5cm ou moins / Category II: Une lésion unique 5-15cm / Category III: Une lésion unique de plus de 15cm ou plusieurs lésions ou lesions à un site critique ou osteomyelite." - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_EPI_Gender", - lastUpdated: "2020-10-30T16:12:08.461", - id: "zqv3IsyTYta", - created: "2018-05-09T22:26:29.218", - name: "BU_EPI_Gender", - shortName: "# BU cases (by gender)", - aggregationType: "SUM", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "INTEGER_ZERO_OR_POSITIVE", - formName: "Number of new BU cases (by gender)", - zeroIsSignificant: true, - categoryCombo: { - id: "VygZ6pni0XS" - }, - lastUpdatedBy: { - id: "ilJDyuqlwDC" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "FORM_NAME", - locale: "fr", - value: "Nombre de nouveaux cas d'UB par sexe" - }, - { - property: "NAME", - locale: "fr", - value: "Nombre de cas d'ulc\ufffdre de Buruli (par genre)" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Cas d'ulc\ufffdre de Buruli (par genre)" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "# cas d'UB par sexe" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - } - ], - categoryOptions: [ - { - code: "default", - created: "2017-05-10T17:53:55.138", - lastUpdated: "2018-07-27T16:09:07.425", - name: "default", - id: "Y7fcspgsU43", - shortName: "default", - publicAccess: "rwrw----", - user: { - id: "eK26I7dRbC4" - }, - userGroupAccesses: [], - attributeValues: [], - translations: [], - userAccesses: [], - organisationUnits: [] - }, - { - code: "Op_Age_5-14y", - created: "2016-03-29T21:07:01.747", - lastUpdated: "2021-04-23T17:05:15.200", - name: "5 to 14 y", - id: "ciFLFA7AiOa", - shortName: "5 to 14 y", - publicAccess: "--------", - lastUpdatedBy: { - id: "ilJDyuqlwDC" - }, - user: { - id: "H4atNsEuKxP" - }, - userGroupAccesses: [ - { - access: "r-rw----", - userGroupUid: "Mg0TXhvvXJ4", - displayName: "SS_NTD_RAB_AggData_Entry", - id: "Mg0TXhvvXJ4" - }, - { - access: "r-rw----", - userGroupUid: "aAGXWv0GkMo", - displayName: "SS_NTD_LSH_AggData_Entry", - id: "aAGXWv0GkMo" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "rwrw----", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-rw----", - userGroupUid: "JusJWdDa1LM", - displayName: "SS_NTD_SBE_AggData_Entry", - id: "JusJWdDa1LM" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "r-r-----", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-rw----", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-r-----", - userGroupUid: "H4YpPpQeKQR", - displayName: "SS_NTD_SBE_AggData_View", - id: "H4YpPpQeKQR" - }, - { - access: "r-------", - userGroupUid: "TUL6Ftyw9j6", - displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", - id: "TUL6Ftyw9j6" - }, - { - access: "r-r-----", - userGroupUid: "B6oADCiiW8v", - displayName: "SS_NTD_RAB_AggData_View", - id: "B6oADCiiW8v" - }, - { - access: "r-rw----", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-rw----", - userGroupUid: "PCa3h9xXkLN", - displayName: "SS_NTD_RAB_AggData_Retro_Entry", - id: "PCa3h9xXkLN" - }, - { - access: "rwrw----", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "OBxv9dRBkM5", - displayName: "SS_NTD_SKIN_YAWS_AggData_View", - id: "OBxv9dRBkM5" - }, - { - access: "r-------", - userGroupUid: "foOXWD4beuA", - displayName: "NTD_NZD_admin", - id: "foOXWD4beuA" - }, - { - access: "r-r-----", - userGroupUid: "PthCrHajHLi", - displayName: "SS_NTD_RAB_AggData_Retro_View", - id: "PthCrHajHLi" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-rw----", - userGroupUid: "QUaeS1tdoLx", - displayName: "SS_NTD_LSH_AggrDataSimple_Entry", - id: "QUaeS1tdoLx" - }, - { - access: "r-rw----", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "UnTaQrY57qi", - displayName: "NTD_LSH_Monthly_Importer", - id: "UnTaQrY57qi" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-r-----", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - }, - { - access: "rwr-----", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-r-----", - userGroupUid: "nPPxGTmEqbL", - displayName: "SS_NTD_LSH_AggData_View", - id: "nPPxGTmEqbL" - } - ], - attributeValues: [], - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "5 à 14 ans" - }, - { - property: "NAME", - locale: "fr", - value: "5 à 14 ans" - } - ], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - organisationUnits: [] - }, - { - code: "Op_BU_Cat_II", - created: "2016-06-08T09:07:56.983", - lastUpdated: "2021-03-23T09:13:32.849", - name: "Cat II", - id: "FMJprslIeSG", - shortName: "Cat II", - publicAccess: "--------", - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "q9wZgtaDxWn" - }, - userGroupAccesses: [ - { - access: "r-rw----", - userGroupUid: "Mg0TXhvvXJ4", - displayName: "SS_NTD_RAB_AggData_Entry", - id: "Mg0TXhvvXJ4" - }, - { - access: "r-rw----", - userGroupUid: "aAGXWv0GkMo", - displayName: "SS_NTD_LSH_AggData_Entry", - id: "aAGXWv0GkMo" - }, - { - access: "r-r-----", - userGroupUid: "IPzz6wlkIp0", - displayName: "NTD_SKIN_MYC_HQ", - id: "IPzz6wlkIp0" - }, - { - access: "rwrw----", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-r-----", - userGroupUid: "LCs79RaVi0a", - displayName: "SS_NTD_LSH_SUPPLY_MonthlyStock_Entry", - id: "LCs79RaVi0a" - }, - { - access: "rw------", - userGroupUid: "foOXWD4beuA", - displayName: "NTD_NZD_admin", - id: "foOXWD4beuA" - }, - { - access: "r-r-----", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-r-----", - userGroupUid: "TNA9oGI43e4", - displayName: "NTD_LSH_EURO_ARM", - id: "TNA9oGI43e4" - }, - { - access: "r-rw----", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-r-----", - userGroupUid: "K40P7b1JFdc", - displayName: "NTD_EMRO", - id: "K40P7b1JFdc" - }, - { - access: "r-------", - userGroupUid: "VONeiGGohxr", - displayName: "NTD_RAB_Other", - id: "VONeiGGohxr" - }, - { - access: "r-r-----", - userGroupUid: "B6oADCiiW8v", - displayName: "SS_NTD_RAB_AggData_View", - id: "B6oADCiiW8v" - }, - { - access: "r-rw----", - userGroupUid: "TUL6Ftyw9j6", - displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", - id: "TUL6Ftyw9j6" - }, - { - access: "r-rw----", - userGroupUid: "PCa3h9xXkLN", - displayName: "SS_NTD_RAB_AggData_Retro_Entry", - id: "PCa3h9xXkLN" - }, - { - access: "r-rw----", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-r-----", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-r-----", - userGroupUid: "phezIKUxlC2", - displayName: "NTD_LSH_EMRO_SOM", - id: "phezIKUxlC2" - }, - { - access: "rwrw----", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-r-----", - userGroupUid: "tEOUdu1ala4", - displayName: "NTD_EURO", - id: "tEOUdu1ala4" - }, - { - access: "r-r-----", - userGroupUid: "j3RfLgyvhbd", - displayName: "NTD_LSH_Country", - id: "j3RfLgyvhbd" - }, - { - access: "r-r-----", - userGroupUid: "orn5lTGFMve", - displayName: "NTD_LSH_Public", - id: "orn5lTGFMve" - }, - { - access: "r-r-----", - userGroupUid: "PthCrHajHLi", - displayName: "SS_NTD_RAB_AggData_Retro_View", - id: "PthCrHajHLi" - }, - { - access: "r-------", - userGroupUid: "pbZna7luFaM", - displayName: "NTD_RAB_OIE", - id: "pbZna7luFaM" - }, - { - access: "r-------", - userGroupUid: "Zr1fdsbkiAR", - displayName: "NTD_RAB_Official", - id: "Zr1fdsbkiAR" - }, - { - access: "r-r-----", - userGroupUid: "aDYjuZk8cXT", - displayName: "WHO NTD department", - id: "aDYjuZk8cXT" - }, - { - access: "rwr-----", - userGroupUid: "BMxt1NZML9e", - displayName: "NTD_LSH_SUPPLY_HQ", - id: "BMxt1NZML9e" - }, - { - access: "r-rw----", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "K7VPSVrAYeV", - displayName: "NTD_RAB_Estimates", - id: "K7VPSVrAYeV" - }, - { - access: "r-r-----", - userGroupUid: "QUaeS1tdoLx", - displayName: "SS_NTD_LSH_AggrDataSimple_Entry", - id: "QUaeS1tdoLx" - }, - { - access: "r-rw----", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rwr-----", - userGroupUid: "sXNyAgGyHSK", - displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", - id: "sXNyAgGyHSK" - }, - { - access: "r-r-----", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-rw----", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "rwr-----", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-r-----", - userGroupUid: "MYa3lh5k0Yq", - displayName: "NTD_LSH_SUPPLY_HQPublished", - id: "MYa3lh5k0Yq" - }, - { - access: "r-r-----", - userGroupUid: "Fs9vCVCHjlE", - displayName: "NTD_LSH_Demo", - id: "Fs9vCVCHjlE" - }, - { - access: "r-r-----", - userGroupUid: "CoxTaSDd4Bz", - displayName: "NTD_Skin_AFRO_GHA", - id: "CoxTaSDd4Bz" - }, - { - access: "rwr-----", - userGroupUid: "I95k8bm5q5J", - displayName: "SS_NTD_LSH_SUPPLY_DispatchHQ_Entry", - id: "I95k8bm5q5J" - }, - { - access: "r-r-----", - userGroupUid: "nPPxGTmEqbL", - displayName: "SS_NTD_LSH_AggData_View", - id: "nPPxGTmEqbL" - } - ], - attributeValues: [], - translations: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - organisationUnits: [] - }, - { - code: "ALL_Op_Gender_Male", - created: "2016-03-29T21:07:01.529", - lastUpdated: "2021-04-20T20:13:21.844", - name: "Male", - id: "qmsg1OVBqif", - shortName: "Male", - publicAccess: "r-rw----", - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "H4atNsEuKxP" - }, - userGroupAccesses: [ - { - access: "r-rw----", - userGroupUid: "JusJWdDa1LM", - displayName: "SS_NTD_SBE_AggData_Entry", - id: "JusJWdDa1LM" - } - ], - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Homme" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Homme" - } - ], - userAccesses: [], - organisationUnits: [] - }, - { - code: "Op_Age_15over", - created: "2016-03-29T21:07:01.799", - lastUpdated: "2021-04-23T16:22:14.659", - name: "15 y and over", - id: "qAeldgH4WMr", - shortName: "15 y and over", - publicAccess: "--------", - lastUpdatedBy: { - id: "ilJDyuqlwDC" - }, - user: { - id: "H4atNsEuKxP" - }, - userGroupAccesses: [ - { - access: "r-rw----", - userGroupUid: "Mg0TXhvvXJ4", - displayName: "SS_NTD_RAB_AggData_Entry", - id: "Mg0TXhvvXJ4" - }, - { - access: "r-rw----", - userGroupUid: "aAGXWv0GkMo", - displayName: "SS_NTD_LSH_AggData_Entry", - id: "aAGXWv0GkMo" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "rwrw----", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-r-----", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "r-rw----", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "TUL6Ftyw9j6", - displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", - id: "TUL6Ftyw9j6" - }, - { - access: "r-r-----", - userGroupUid: "B6oADCiiW8v", - displayName: "SS_NTD_RAB_AggData_View", - id: "B6oADCiiW8v" - }, - { - access: "r-rw----", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-rw----", - userGroupUid: "PCa3h9xXkLN", - displayName: "SS_NTD_RAB_AggData_Retro_Entry", - id: "PCa3h9xXkLN" - }, - { - access: "rwrw----", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "OBxv9dRBkM5", - displayName: "SS_NTD_SKIN_YAWS_AggData_View", - id: "OBxv9dRBkM5" - }, - { - access: "r-------", - userGroupUid: "JusJWdDa1LM", - displayName: "SS_NTD_SBE_AggData_Entry", - id: "JusJWdDa1LM" - }, - { - access: "r-------", - userGroupUid: "foOXWD4beuA", - displayName: "NTD_NZD_admin", - id: "foOXWD4beuA" - }, - { - access: "r-r-----", - userGroupUid: "PthCrHajHLi", - displayName: "SS_NTD_RAB_AggData_Retro_View", - id: "PthCrHajHLi" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-rw----", - userGroupUid: "QUaeS1tdoLx", - displayName: "SS_NTD_LSH_AggrDataSimple_Entry", - id: "QUaeS1tdoLx" - }, - { - access: "r-rw----", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "UnTaQrY57qi", - displayName: "NTD_LSH_Monthly_Importer", - id: "UnTaQrY57qi" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-r-----", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - }, - { - access: "rwr-----", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-r-----", - userGroupUid: "nPPxGTmEqbL", - displayName: "SS_NTD_LSH_AggData_View", - id: "nPPxGTmEqbL" - } - ], - attributeValues: [], - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "15 ans +" - }, - { - property: "NAME", - locale: "fr", - value: "15 ans et plus" - } - ], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - organisationUnits: [] - }, - { - code: "ALL_Op_Gender_Female", - created: "2016-03-29T21:07:01.625", - lastUpdated: "2021-04-20T20:13:21.844", - name: "Female", - id: "tZftZ03eewT", - shortName: "Female", - publicAccess: "r-rw----", - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "H4atNsEuKxP" - }, - userGroupAccesses: [ - { - access: "rwrw----", - userGroupUid: "foOXWD4beuA", - displayName: "NTD_NZD_admin", - id: "foOXWD4beuA" - }, - { - access: "r-rw----", - userGroupUid: "JusJWdDa1LM", - displayName: "SS_NTD_SBE_AggData_Entry", - id: "JusJWdDa1LM" - }, - { - access: "rwrw----", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-r-----", - userGroupUid: "H4YpPpQeKQR", - displayName: "SS_NTD_SBE_AggData_View", - id: "H4YpPpQeKQR" - } - ], - attributeValues: [], - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "Femme" - }, - { - property: "NAME", - locale: "fr", - value: "Femme" - } - ], - userAccesses: [], - organisationUnits: [] - }, - { - code: "Op_Age_15-49y", - created: "2016-03-29T21:07:01.747", - lastUpdated: "2021-03-04T11:52:29.418", - name: "15 to 49 y", - id: "ABOkZJOz8bn", - shortName: "15 to 49 y", - publicAccess: "--------", - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "q9wZgtaDxWn" - }, - userGroupAccesses: [ - { - access: "rwrw----", - userGroupUid: "foOXWD4beuA", - displayName: "NTD_NZD_admin", - id: "foOXWD4beuA" - }, - { - access: "r-rw----", - userGroupUid: "JusJWdDa1LM", - displayName: "SS_NTD_SBE_AggData_Entry", - id: "JusJWdDa1LM" - }, - { - access: "rwrw----", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-r-----", - userGroupUid: "H4YpPpQeKQR", - displayName: "SS_NTD_SBE_AggData_View", - id: "H4YpPpQeKQR" - } - ], - attributeValues: [], - translations: [], - userAccesses: [], - organisationUnits: [] - }, - { - code: "Op_Age_50over", - created: "2016-03-29T21:07:01.799", - lastUpdated: "2019-02-01T17:07:10.547", - name: "50 y and over", - id: "Ydd5J28bFdu", - shortName: "50 y and over", - publicAccess: "--------", - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "q9wZgtaDxWn" - }, - userGroupAccesses: [], - attributeValues: [], - translations: [], - userAccesses: [], - organisationUnits: [] - }, - { - code: "Op_BU_Cat_I", - created: "2016-06-08T09:07:56.820", - lastUpdated: "2021-03-23T09:13:32.957", - name: "Cat I", - id: "OjTZlEq5DU6", - shortName: "Cat I", - publicAccess: "--------", - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "q9wZgtaDxWn" - }, - userGroupAccesses: [ - { - access: "r-rw----", - userGroupUid: "Mg0TXhvvXJ4", - displayName: "SS_NTD_RAB_AggData_Entry", - id: "Mg0TXhvvXJ4" - }, - { - access: "r-rw----", - userGroupUid: "aAGXWv0GkMo", - displayName: "SS_NTD_LSH_AggData_Entry", - id: "aAGXWv0GkMo" - }, - { - access: "rwrw----", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-r-----", - userGroupUid: "IPzz6wlkIp0", - displayName: "NTD_SKIN_MYC_HQ", - id: "IPzz6wlkIp0" - }, - { - access: "r-r-----", - userGroupUid: "LCs79RaVi0a", - displayName: "SS_NTD_LSH_SUPPLY_MonthlyStock_Entry", - id: "LCs79RaVi0a" - }, - { - access: "rw------", - userGroupUid: "foOXWD4beuA", - displayName: "NTD_NZD_admin", - id: "foOXWD4beuA" - }, - { - access: "r-r-----", - userGroupUid: "TNA9oGI43e4", - displayName: "NTD_LSH_EURO_ARM", - id: "TNA9oGI43e4" - }, - { - access: "r-r-----", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-rw----", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-r-----", - userGroupUid: "K40P7b1JFdc", - displayName: "NTD_EMRO", - id: "K40P7b1JFdc" - }, - { - access: "r-------", - userGroupUid: "VONeiGGohxr", - displayName: "NTD_RAB_Other", - id: "VONeiGGohxr" - }, - { - access: "r-r-----", - userGroupUid: "B6oADCiiW8v", - displayName: "SS_NTD_RAB_AggData_View", - id: "B6oADCiiW8v" - }, - { - access: "r-rw----", - userGroupUid: "TUL6Ftyw9j6", - displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", - id: "TUL6Ftyw9j6" - }, - { - access: "r-rw----", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-rw----", - userGroupUid: "PCa3h9xXkLN", - displayName: "SS_NTD_RAB_AggData_Retro_Entry", - id: "PCa3h9xXkLN" - }, - { - access: "r-r-----", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-r-----", - userGroupUid: "phezIKUxlC2", - displayName: "NTD_LSH_EMRO_SOM", - id: "phezIKUxlC2" - }, - { - access: "rwrw----", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-r-----", - userGroupUid: "tEOUdu1ala4", - displayName: "NTD_EURO", - id: "tEOUdu1ala4" - }, - { - access: "r-r-----", - userGroupUid: "j3RfLgyvhbd", - displayName: "NTD_LSH_Country", - id: "j3RfLgyvhbd" - }, - { - access: "r-r-----", - userGroupUid: "orn5lTGFMve", - displayName: "NTD_LSH_Public", - id: "orn5lTGFMve" - }, - { - access: "r-r-----", - userGroupUid: "PthCrHajHLi", - displayName: "SS_NTD_RAB_AggData_Retro_View", - id: "PthCrHajHLi" - }, - { - access: "r-------", - userGroupUid: "pbZna7luFaM", - displayName: "NTD_RAB_OIE", - id: "pbZna7luFaM" - }, - { - access: "r-------", - userGroupUid: "Zr1fdsbkiAR", - displayName: "NTD_RAB_Official", - id: "Zr1fdsbkiAR" - }, - { - access: "r-r-----", - userGroupUid: "aDYjuZk8cXT", - displayName: "WHO NTD department", - id: "aDYjuZk8cXT" - }, - { - access: "rwr-----", - userGroupUid: "BMxt1NZML9e", - displayName: "NTD_LSH_SUPPLY_HQ", - id: "BMxt1NZML9e" - }, - { - access: "r-rw----", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-r-----", - userGroupUid: "QUaeS1tdoLx", - displayName: "SS_NTD_LSH_AggrDataSimple_Entry", - id: "QUaeS1tdoLx" - }, - { - access: "r-------", - userGroupUid: "K7VPSVrAYeV", - displayName: "NTD_RAB_Estimates", - id: "K7VPSVrAYeV" - }, - { - access: "r-rw----", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rwr-----", - userGroupUid: "sXNyAgGyHSK", - displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", - id: "sXNyAgGyHSK" - }, - { - access: "r-r-----", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-rw----", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "r-r-----", - userGroupUid: "MYa3lh5k0Yq", - displayName: "NTD_LSH_SUPPLY_HQPublished", - id: "MYa3lh5k0Yq" - }, - { - access: "rwr-----", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-r-----", - userGroupUid: "Fs9vCVCHjlE", - displayName: "NTD_LSH_Demo", - id: "Fs9vCVCHjlE" - }, - { - access: "r-r-----", - userGroupUid: "nPPxGTmEqbL", - displayName: "SS_NTD_LSH_AggData_View", - id: "nPPxGTmEqbL" - }, - { - access: "rwr-----", - userGroupUid: "I95k8bm5q5J", - displayName: "SS_NTD_LSH_SUPPLY_DispatchHQ_Entry", - id: "I95k8bm5q5J" - }, - { - access: "r-r-----", - userGroupUid: "CoxTaSDd4Bz", - displayName: "NTD_Skin_AFRO_GHA", - id: "CoxTaSDd4Bz" - } - ], - attributeValues: [], - translations: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - organisationUnits: [] - }, - { - code: "Op_Age_unknown", - created: "2016-03-29T21:07:01.840", - lastUpdated: "2021-04-23T16:32:11.880", - name: "Age Unknown", - id: "w5ItMDKuO20", - shortName: "Age Unknwon", - publicAccess: "--------", - lastUpdatedBy: { - id: "ilJDyuqlwDC" - }, - user: { - id: "H4atNsEuKxP" - }, - userGroupAccesses: [ - { - access: "r-rw----", - userGroupUid: "Mg0TXhvvXJ4", - displayName: "SS_NTD_RAB_AggData_Entry", - id: "Mg0TXhvvXJ4" - }, - { - access: "r-rw----", - userGroupUid: "aAGXWv0GkMo", - displayName: "SS_NTD_LSH_AggData_Entry", - id: "aAGXWv0GkMo" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "rwrw----", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-r-----", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "r-rw----", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-r-----", - userGroupUid: "H4YpPpQeKQR", - displayName: "SS_NTD_SBE_AggData_View", - id: "H4YpPpQeKQR" - }, - { - access: "r-------", - userGroupUid: "TUL6Ftyw9j6", - displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", - id: "TUL6Ftyw9j6" - }, - { - access: "r-r-----", - userGroupUid: "B6oADCiiW8v", - displayName: "SS_NTD_RAB_AggData_View", - id: "B6oADCiiW8v" - }, - { - access: "r-rw----", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-rw----", - userGroupUid: "PCa3h9xXkLN", - displayName: "SS_NTD_RAB_AggData_Retro_Entry", - id: "PCa3h9xXkLN" - }, - { - access: "rwrw----", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "OBxv9dRBkM5", - displayName: "SS_NTD_SKIN_YAWS_AggData_View", - id: "OBxv9dRBkM5" - }, - { - access: "r-------", - userGroupUid: "JusJWdDa1LM", - displayName: "SS_NTD_SBE_AggData_Entry", - id: "JusJWdDa1LM" - }, - { - access: "r-------", - userGroupUid: "foOXWD4beuA", - displayName: "NTD_NZD_admin", - id: "foOXWD4beuA" - }, - { - access: "r-r-----", - userGroupUid: "PthCrHajHLi", - displayName: "SS_NTD_RAB_AggData_Retro_View", - id: "PthCrHajHLi" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-rw----", - userGroupUid: "QUaeS1tdoLx", - displayName: "SS_NTD_LSH_AggrDataSimple_Entry", - id: "QUaeS1tdoLx" - }, - { - access: "r-rw----", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "UnTaQrY57qi", - displayName: "NTD_LSH_Monthly_Importer", - id: "UnTaQrY57qi" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-r-----", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - }, - { - access: "rwr-----", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-r-----", - userGroupUid: "nPPxGTmEqbL", - displayName: "SS_NTD_LSH_AggData_View", - id: "nPPxGTmEqbL" - } - ], - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Age inconnu" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Age inconnu" - } - ], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - organisationUnits: [] - }, - { - code: "Op_Age_under5", - created: "2016-03-29T21:07:01.700", - lastUpdated: "2021-04-26T09:09:26.820", - name: "Under 5y", - id: "vZ0WdHAROAy", - shortName: "Under 5y", - publicAccess: "--------", - lastUpdatedBy: { - id: "ilJDyuqlwDC" - }, - user: { - id: "H4atNsEuKxP" - }, - userGroupAccesses: [ - { - access: "r-rw----", - userGroupUid: "Mg0TXhvvXJ4", - displayName: "SS_NTD_RAB_AggData_Entry", - id: "Mg0TXhvvXJ4" - }, - { - access: "r-rw----", - userGroupUid: "aAGXWv0GkMo", - displayName: "SS_NTD_LSH_AggData_Entry", - id: "aAGXWv0GkMo" - }, - { - access: "rwrw----", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "r-r-----", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "r-rw----", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "TUL6Ftyw9j6", - displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", - id: "TUL6Ftyw9j6" - }, - { - access: "r-r-----", - userGroupUid: "B6oADCiiW8v", - displayName: "SS_NTD_RAB_AggData_View", - id: "B6oADCiiW8v" - }, - { - access: "r-rw----", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-rw----", - userGroupUid: "PCa3h9xXkLN", - displayName: "SS_NTD_RAB_AggData_Retro_Entry", - id: "PCa3h9xXkLN" - }, - { - access: "rwrw----", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "OBxv9dRBkM5", - displayName: "SS_NTD_SKIN_YAWS_AggData_View", - id: "OBxv9dRBkM5" - }, - { - access: "r-------", - userGroupUid: "JusJWdDa1LM", - displayName: "SS_NTD_SBE_AggData_Entry", - id: "JusJWdDa1LM" - }, - { - access: "r-------", - userGroupUid: "foOXWD4beuA", - displayName: "NTD_NZD_admin", - id: "foOXWD4beuA" - }, - { - access: "r-r-----", - userGroupUid: "PthCrHajHLi", - displayName: "SS_NTD_RAB_AggData_Retro_View", - id: "PthCrHajHLi" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-rw----", - userGroupUid: "QUaeS1tdoLx", - displayName: "SS_NTD_LSH_AggrDataSimple_Entry", - id: "QUaeS1tdoLx" - }, - { - access: "r-rw----", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "UnTaQrY57qi", - displayName: "NTD_LSH_Monthly_Importer", - id: "UnTaQrY57qi" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-r-----", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - }, - { - access: "rwr-----", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-r-----", - userGroupUid: "nPPxGTmEqbL", - displayName: "SS_NTD_LSH_AggData_View", - id: "nPPxGTmEqbL" - } - ], - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Moins de 5 ans" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "< 5 ans" - } - ], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - organisationUnits: [] - }, - { - code: "Op_BU_Cat_unknown", - created: "2016-09-13T18:45:25.739", - lastUpdated: "2021-04-09T10:02:51.970", - name: "Category unknown", - id: "msTyBF6xVJI", - shortName: "Category unknown", - publicAccess: "--------", - lastUpdatedBy: { - id: "ilJDyuqlwDC" - }, - user: { - id: "q9wZgtaDxWn" - }, - userGroupAccesses: [ - { - access: "r-rw----", - userGroupUid: "Mg0TXhvvXJ4", - displayName: "SS_NTD_RAB_AggData_Entry", - id: "Mg0TXhvvXJ4" - }, - { - access: "r-rw----", - userGroupUid: "aAGXWv0GkMo", - displayName: "SS_NTD_LSH_AggData_Entry", - id: "aAGXWv0GkMo" - }, - { - access: "rwrw----", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-r-----", - userGroupUid: "IPzz6wlkIp0", - displayName: "NTD_SKIN_MYC_HQ", - id: "IPzz6wlkIp0" - }, - { - access: "r-r-----", - userGroupUid: "LCs79RaVi0a", - displayName: "SS_NTD_LSH_SUPPLY_MonthlyStock_Entry", - id: "LCs79RaVi0a" - }, - { - access: "rw------", - userGroupUid: "foOXWD4beuA", - displayName: "NTD_NZD_admin", - id: "foOXWD4beuA" - }, - { - access: "r-r-----", - userGroupUid: "TNA9oGI43e4", - displayName: "NTD_LSH_EURO_ARM", - id: "TNA9oGI43e4" - }, - { - access: "r-r-----", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-rw----", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-r-----", - userGroupUid: "K40P7b1JFdc", - displayName: "NTD_EMRO", - id: "K40P7b1JFdc" - }, - { - access: "r-------", - userGroupUid: "VONeiGGohxr", - displayName: "NTD_RAB_Other", - id: "VONeiGGohxr" - }, - { - access: "r-r-----", - userGroupUid: "B6oADCiiW8v", - displayName: "SS_NTD_RAB_AggData_View", - id: "B6oADCiiW8v" - }, - { - access: "r-rw----", - userGroupUid: "TUL6Ftyw9j6", - displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", - id: "TUL6Ftyw9j6" - }, - { - access: "r-rw----", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-rw----", - userGroupUid: "PCa3h9xXkLN", - displayName: "SS_NTD_RAB_AggData_Retro_Entry", - id: "PCa3h9xXkLN" - }, - { - access: "r-r-----", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-r-----", - userGroupUid: "phezIKUxlC2", - displayName: "NTD_LSH_EMRO_SOM", - id: "phezIKUxlC2" - }, - { - access: "rwrw----", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-r-----", - userGroupUid: "tEOUdu1ala4", - displayName: "NTD_EURO", - id: "tEOUdu1ala4" - }, - { - access: "r-r-----", - userGroupUid: "j3RfLgyvhbd", - displayName: "NTD_LSH_Country", - id: "j3RfLgyvhbd" - }, - { - access: "r-r-----", - userGroupUid: "orn5lTGFMve", - displayName: "NTD_LSH_Public", - id: "orn5lTGFMve" - }, - { - access: "r-r-----", - userGroupUid: "PthCrHajHLi", - displayName: "SS_NTD_RAB_AggData_Retro_View", - id: "PthCrHajHLi" - }, - { - access: "r-------", - userGroupUid: "pbZna7luFaM", - displayName: "NTD_RAB_OIE", - id: "pbZna7luFaM" - }, - { - access: "r-------", - userGroupUid: "Zr1fdsbkiAR", - displayName: "NTD_RAB_Official", - id: "Zr1fdsbkiAR" - }, - { - access: "r-r-----", - userGroupUid: "aDYjuZk8cXT", - displayName: "WHO NTD department", - id: "aDYjuZk8cXT" - }, - { - access: "rwr-----", - userGroupUid: "BMxt1NZML9e", - displayName: "NTD_LSH_SUPPLY_HQ", - id: "BMxt1NZML9e" - }, - { - access: "r-rw----", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-r-----", - userGroupUid: "QUaeS1tdoLx", - displayName: "SS_NTD_LSH_AggrDataSimple_Entry", - id: "QUaeS1tdoLx" - }, - { - access: "r-------", - userGroupUid: "K7VPSVrAYeV", - displayName: "NTD_RAB_Estimates", - id: "K7VPSVrAYeV" - }, - { - access: "r-rw----", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rwr-----", - userGroupUid: "sXNyAgGyHSK", - displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", - id: "sXNyAgGyHSK" - }, - { - access: "r-r-----", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-rw----", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "r-r-----", - userGroupUid: "MYa3lh5k0Yq", - displayName: "NTD_LSH_SUPPLY_HQPublished", - id: "MYa3lh5k0Yq" - }, - { - access: "rwr-----", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-r-----", - userGroupUid: "Fs9vCVCHjlE", - displayName: "NTD_LSH_Demo", - id: "Fs9vCVCHjlE" - }, - { - access: "r-r-----", - userGroupUid: "nPPxGTmEqbL", - displayName: "SS_NTD_LSH_AggData_View", - id: "nPPxGTmEqbL" - }, - { - access: "rwr-----", - userGroupUid: "I95k8bm5q5J", - displayName: "SS_NTD_LSH_SUPPLY_DispatchHQ_Entry", - id: "I95k8bm5q5J" - }, - { - access: "r-r-----", - userGroupUid: "CoxTaSDd4Bz", - displayName: "NTD_Skin_AFRO_GHA", - id: "CoxTaSDd4Bz" - } - ], - attributeValues: [], - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "Catégorie inconnue" - }, - { - property: "NAME", - locale: "fr", - value: "Catégorie inconnue" - } - ], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - organisationUnits: [] - }, - { - code: "Op_BU_Cat_III", - created: "2016-06-08T09:07:57.152", - lastUpdated: "2021-03-23T09:13:33.669", - name: "Cat III", - id: "rduPRxceiXM", - shortName: "Cat III", - publicAccess: "--------", - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "q9wZgtaDxWn" - }, - userGroupAccesses: [ - { - access: "r-rw----", - userGroupUid: "Mg0TXhvvXJ4", - displayName: "SS_NTD_RAB_AggData_Entry", - id: "Mg0TXhvvXJ4" - }, - { - access: "r-rw----", - userGroupUid: "aAGXWv0GkMo", - displayName: "SS_NTD_LSH_AggData_Entry", - id: "aAGXWv0GkMo" - }, - { - access: "r-r-----", - userGroupUid: "IPzz6wlkIp0", - displayName: "NTD_SKIN_MYC_HQ", - id: "IPzz6wlkIp0" - }, - { - access: "rwrw----", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-r-----", - userGroupUid: "LCs79RaVi0a", - displayName: "SS_NTD_LSH_SUPPLY_MonthlyStock_Entry", - id: "LCs79RaVi0a" - }, - { - access: "rw------", - userGroupUid: "foOXWD4beuA", - displayName: "NTD_NZD_admin", - id: "foOXWD4beuA" - }, - { - access: "r-r-----", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-r-----", - userGroupUid: "TNA9oGI43e4", - displayName: "NTD_LSH_EURO_ARM", - id: "TNA9oGI43e4" - }, - { - access: "r-rw----", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-r-----", - userGroupUid: "K40P7b1JFdc", - displayName: "NTD_EMRO", - id: "K40P7b1JFdc" - }, - { - access: "r-------", - userGroupUid: "VONeiGGohxr", - displayName: "NTD_RAB_Other", - id: "VONeiGGohxr" - }, - { - access: "r-r-----", - userGroupUid: "B6oADCiiW8v", - displayName: "SS_NTD_RAB_AggData_View", - id: "B6oADCiiW8v" - }, - { - access: "r-rw----", - userGroupUid: "TUL6Ftyw9j6", - displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", - id: "TUL6Ftyw9j6" - }, - { - access: "r-rw----", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-rw----", - userGroupUid: "PCa3h9xXkLN", - displayName: "SS_NTD_RAB_AggData_Retro_Entry", - id: "PCa3h9xXkLN" - }, - { - access: "r-r-----", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-r-----", - userGroupUid: "phezIKUxlC2", - displayName: "NTD_LSH_EMRO_SOM", - id: "phezIKUxlC2" - }, - { - access: "rwrw----", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-r-----", - userGroupUid: "tEOUdu1ala4", - displayName: "NTD_EURO", - id: "tEOUdu1ala4" - }, - { - access: "r-r-----", - userGroupUid: "j3RfLgyvhbd", - displayName: "NTD_LSH_Country", - id: "j3RfLgyvhbd" - }, - { - access: "r-r-----", - userGroupUid: "orn5lTGFMve", - displayName: "NTD_LSH_Public", - id: "orn5lTGFMve" - }, - { - access: "r-r-----", - userGroupUid: "PthCrHajHLi", - displayName: "SS_NTD_RAB_AggData_Retro_View", - id: "PthCrHajHLi" - }, - { - access: "r-------", - userGroupUid: "pbZna7luFaM", - displayName: "NTD_RAB_OIE", - id: "pbZna7luFaM" - }, - { - access: "r-------", - userGroupUid: "Zr1fdsbkiAR", - displayName: "NTD_RAB_Official", - id: "Zr1fdsbkiAR" - }, - { - access: "r-r-----", - userGroupUid: "aDYjuZk8cXT", - displayName: "WHO NTD department", - id: "aDYjuZk8cXT" - }, - { - access: "rwr-----", - userGroupUid: "BMxt1NZML9e", - displayName: "NTD_LSH_SUPPLY_HQ", - id: "BMxt1NZML9e" - }, - { - access: "r-rw----", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-r-----", - userGroupUid: "QUaeS1tdoLx", - displayName: "SS_NTD_LSH_AggrDataSimple_Entry", - id: "QUaeS1tdoLx" - }, - { - access: "r-------", - userGroupUid: "K7VPSVrAYeV", - displayName: "NTD_RAB_Estimates", - id: "K7VPSVrAYeV" - }, - { - access: "r-rw----", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rwr-----", - userGroupUid: "sXNyAgGyHSK", - displayName: "SS_NTD_LSH_VL_KEN_Event_Entry", - id: "sXNyAgGyHSK" - }, - { - access: "r-r-----", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-rw----", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "rwr-----", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-r-----", - userGroupUid: "Fs9vCVCHjlE", - displayName: "NTD_LSH_Demo", - id: "Fs9vCVCHjlE" - }, - { - access: "r-r-----", - userGroupUid: "MYa3lh5k0Yq", - displayName: "NTD_LSH_SUPPLY_HQPublished", - id: "MYa3lh5k0Yq" - }, - { - access: "r-r-----", - userGroupUid: "nPPxGTmEqbL", - displayName: "SS_NTD_LSH_AggData_View", - id: "nPPxGTmEqbL" - }, - { - access: "rwr-----", - userGroupUid: "I95k8bm5q5J", - displayName: "SS_NTD_LSH_SUPPLY_DispatchHQ_Entry", - id: "I95k8bm5q5J" - }, - { - access: "r-r-----", - userGroupUid: "CoxTaSDd4Bz", - displayName: "NTD_Skin_AFRO_GHA", - id: "CoxTaSDd4Bz" - } - ], - attributeValues: [], - translations: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - organisationUnits: [] - }, - { - code: "ALL_Gender_9", - created: "2016-03-29T21:07:01.664", - lastUpdated: "2021-04-20T20:13:21.844", - name: "Gender Unknown", - id: "NuBMsmUyzDA", - shortName: "Gender Unknown", - publicAccess: "r-rw----", - lastUpdatedBy: { - id: "kD52FGwJgDF" - }, - user: { - id: "H4atNsEuKxP" - }, - userGroupAccesses: [], - attributeValues: [], - translations: [ - { - property: "NAME", - locale: "fr", - value: "Sexe inconnu" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "Sexe inconnu" - } - ], - userAccesses: [], - organisationUnits: [] - } - ], - categories: [ - { - code: "Cat_AgeGroup_BU", - created: "2016-03-29T21:07:02.275", - lastUpdated: "2019-02-01T17:07:11.316", - name: "Age group (BU)", - id: "DddEdUVkG71", - dataDimensionType: "DISAGGREGATION", - publicAccess: "--------", - dataDimension: true, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "q9wZgtaDxWn" - }, - userGroupAccesses: [], - attributeValues: [], - translations: [], - userAccesses: [], - categoryOptions: [ - { - id: "vZ0WdHAROAy" - }, - { - id: "ciFLFA7AiOa" - }, - { - id: "ABOkZJOz8bn" - }, - { - id: "Ydd5J28bFdu" - }, - { - id: "w5ItMDKuO20" - } - ] - }, - { - code: "ALL_Gender", - created: "2016-03-29T21:07:02.329", - lastUpdated: "2021-01-28T21:14:15.503", - name: "Gender", - id: "gvZZplg7PkY", - dataDimensionType: "DISAGGREGATION", - publicAccess: "r-------", - dataDimension: true, - lastUpdatedBy: { - id: "H4atNsEuKxP" - }, - user: { - id: "H4atNsEuKxP" - }, - userGroupAccesses: [], - attributeValues: [], - translations: [], - userAccesses: [], - categoryOptions: [ - { - id: "qmsg1OVBqif" - }, - { - id: "tZftZ03eewT" - }, - { - id: "NuBMsmUyzDA" - } - ] - }, - { - code: "Category (BU)", - created: "2016-09-13T18:48:07.977", - lastUpdated: "2021-03-23T09:13:34.345", - name: "Category (BU)", - id: "RchPsJmL2wA", - dataDimensionType: "DISAGGREGATION", - publicAccess: "--------", - dataDimension: true, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "q9wZgtaDxWn" - }, - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - } - ], - attributeValues: [], - translations: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - categoryOptions: [ - { - id: "msTyBF6xVJI" - }, - { - id: "OjTZlEq5DU6" - }, - { - id: "FMJprslIeSG" - }, - { - id: "rduPRxceiXM" - } - ] - }, - { - code: "Age group", - created: "2016-03-29T21:07:02.275", - lastUpdated: "2021-03-23T09:13:34.601", - name: "Age group", - id: "J2EQ3575tpG", - dataDimensionType: "DISAGGREGATION", - publicAccess: "--------", - dataDimension: true, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "q9wZgtaDxWn" - }, - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "OBxv9dRBkM5", - displayName: "SS_NTD_SKIN_YAWS_AggData_View", - id: "OBxv9dRBkM5" - }, - { - access: "r-------", - userGroupUid: "JusJWdDa1LM", - displayName: "SS_NTD_SBE_AggData_Entry", - id: "JusJWdDa1LM" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "r-------", - userGroupUid: "foOXWD4beuA", - displayName: "NTD_NZD_admin", - id: "foOXWD4beuA" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "nPPxGTmEqbL", - displayName: "SS_NTD_LSH_AggData_View", - id: "nPPxGTmEqbL" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "rw------", - userGroupUid: "Un2GLxeuVZ2", - displayName: "NTD_LSH_Admin", - id: "Un2GLxeuVZ2" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "TUL6Ftyw9j6", - displayName: "SS_NTD_SKIN_YAWS_AggData_Entry", - id: "TUL6Ftyw9j6" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "QUaeS1tdoLx", - displayName: "SS_NTD_LSH_AggrDataSimple_Entry", - id: "QUaeS1tdoLx" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "UnTaQrY57qi", - displayName: "NTD_LSH_Monthly_Importer", - id: "UnTaQrY57qi" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "yBUSIP5IhrF", - displayName: "NTD_LSH_HQ", - id: "yBUSIP5IhrF" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - }, - { - access: "r-------", - userGroupUid: "aAGXWv0GkMo", - displayName: "SS_NTD_LSH_AggData_Entry", - id: "aAGXWv0GkMo" - } - ], - attributeValues: [], - translations: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - categoryOptions: [ - { - id: "vZ0WdHAROAy" - }, - { - id: "ciFLFA7AiOa" - }, - { - id: "qAeldgH4WMr" - }, - { - id: "w5ItMDKuO20" - } - ] - }, - { - code: "default", - created: "2017-05-10T17:53:55.152", - lastUpdated: "2021-08-07T06:18:19.628", - name: "default", - id: "DMyxTSpvKOp", - dataDimensionType: "DISAGGREGATION", - publicAccess: "rw------", - dataDimension: false, - user: { - id: "eK26I7dRbC4" - }, - userGroupAccesses: [], - attributeValues: [], - translations: [], - userAccesses: [], - categoryOptions: [ - { - id: "Y7fcspgsU43" - } - ] - } - ], - dataSets: [ - { - code: "DS_BU_minimum aggregated data_monthly", - lastUpdated: "2021-04-28T09:01:38.787", - id: "VqmVLwlbJLo", - created: "2018-02-02T18:27:19.493", - name: "BU_minimum aggregated data_monthly", - shortName: "BU_minimum aggregated data_monthly", - validCompleteOnly: false, - dataElementDecoration: false, - publicAccess: "--------", - notifyCompletingUser: false, - noValueRequiresComment: false, - description: "This dataset enables to capture monthly core aggregated data on suspected and confirmed Buruli ulcer cases.", - skipOffline: false, - compulsoryFieldsCompleteOnly: false, - fieldCombinationRequired: false, - renderHorizontally: false, - renderAsTabs: true, - mobile: false, - version: 3, - openPeriodsAfterCoEndDate: 0, - timelyDays: 15, - periodType: "Monthly", - openFuturePeriods: 0, - expiryDays: 0, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "q9wZgtaDxWn" - }, - dataSetElements: [ - { - dataElement: { - id: "IjrtWEc8Oei" + lastUpdatedBy: { + id: "eK26I7dRbC4", }, - dataSet: { - id: "VqmVLwlbJLo" - } - }, - { - dataElement: { - id: "UVEjNoZCtNQ" + user: { + id: "eK26I7dRbC4", }, - dataSet: { - id: "VqmVLwlbJLo" - } - }, - { + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "% catégorie I", + }, + { + property: "NAME", + locale: "fr", + value: "UB_Cl_CatI_%", + }, + { + property: "DESCRIPTION", + locale: "fr", + value: "Catégorie I: Une lésion unique de 5cm ou moins", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "% catégorie I", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_Lab_PCRconfirmation_%", + lastUpdated: "2020-03-31T17:13:02.187", + id: "ijKH3KK0Etn", + created: "2017-03-12T21:49:03.996", + name: "BU_Lab_PCRconfirmation_%", + shortName: "% PCR confirmation", + aggregationType: "AVERAGE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "PERCENTAGE", + formName: "% PCR confirmation", + zeroIsSignificant: true, categoryCombo: { - id: "MeoSuM1SQ1f" - }, - dataElement: { - id: "OG5wWMlhrxv" + id: "JzvGfLYkX17", }, - dataSet: { - id: "VqmVLwlbJLo" - } - }, - { - dataElement: { - id: "uhG3oatUV6j" + lastUpdatedBy: { + id: "eK26I7dRbC4", }, - dataSet: { - id: "VqmVLwlbJLo" - } - }, - { - dataElement: { - id: "tOpVIYrnbhk" + user: { + id: "eK26I7dRbC4", }, - dataSet: { - id: "VqmVLwlbJLo" - } - }, - { + translations: [ + { + property: "NAME", + locale: "fr", + value: "UB_Lab_PCRconfirmation_%", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "% confirmés par PCR", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "% des cas confirmés par PCR", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_EPI_Female_%", + lastUpdated: "2020-03-31T17:13:16.460", + id: "pjd3beNHprb", + created: "2017-03-12T21:49:03.996", + name: "BU_EPI_Female_%", + shortName: "% females", + aggregationType: "AVERAGE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "PERCENTAGE", + formName: "% females", + zeroIsSignificant: true, categoryCombo: { - id: "VygZ6pni0XS" + id: "JzvGfLYkX17", }, - dataElement: { - id: "zqv3IsyTYta" + lastUpdatedBy: { + id: "eK26I7dRbC4", }, - dataSet: { - id: "VqmVLwlbJLo" - } - }, - { - dataElement: { - id: "uFKSqvGwl21" + user: { + id: "eK26I7dRbC4", }, - dataSet: { - id: "VqmVLwlbJLo" - } - }, - { + translations: [ + { + property: "NAME", + locale: "fr", + value: "UB_EPI_Femme_%", + }, + { + property: "FORM_NAME", + locale: "fr", + value: "% femmes", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "% femmes", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, + { + code: "BU_Cl_LowLimb_%", + lastUpdated: "2020-03-31T17:13:06.292", + id: "tMY0YnV1PHQ", + created: "2017-03-12T21:49:03.997", + name: "BU_Cl_LowLimb_%", + shortName: "% location on lower limbs", + aggregationType: "AVERAGE", + domainType: "AGGREGATE", + publicAccess: "--------", + valueType: "PERCENTAGE", + formName: "% location on lower limbs", + zeroIsSignificant: true, categoryCombo: { - id: "rZydwxCQsc7" + id: "JzvGfLYkX17", }, - dataElement: { - id: "mBDooPcvqRy" + lastUpdatedBy: { + id: "eK26I7dRbC4", }, - dataSet: { - id: "VqmVLwlbJLo" - } - } - ], - compulsoryDataElementOperands: [], - translations: [], - dataInputPeriods: [], - organisationUnits: [ - { - id: "rm6NgPbM6Ld" - }, - { - id: "er7MPiN3tdH" - }, - { - id: "JI5lagoUJR4" - }, - { - id: "ovruC9wzRBW" - }, - { - id: "vkXlj7ZPkGi" - }, - { - id: "LbWpsX1FJcC" - }, - { - id: "jkyBvNzcTLl" - }, - { - id: "RUCp6OaTSAD" - }, - { - id: "BmTVMvJHVBO" - }, - { - id: "U8uqyDAu5bH" - }, - { - id: "aQJQ5mijJmH" - }, - { - id: "q23bFLr2E5D" - }, - { - id: "OzjRQLn3G24" - }, - { - id: "jVqoXv7rFns" - }, - { - id: "ZvX8lXd1tYs" - }, - { - id: "KAUSOoBq5Ft" - }, - { - id: "h7ARR5vhSLF" - }, - { - id: "dpcvWc01CeN" - } - ], - userGroupAccesses: [ - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - indicators: [ - { - id: "YhT6GxOLv73" - }, - { - id: "lBRFDEaxUDi" - }, - { - id: "kCS3GHdIcQ9" - }, - { - id: "UBHvHs7yeEB" - }, - { - id: "fL136P7sU6J" - }, - { - id: "D8TeKh05msQ" - }, - { - id: "KiSlEe9D7SZ" - } - ], - userAccesses: [], - legendSets: [] - } - ], - indicatorTypes: [ - { - lastUpdated: "2021-05-28T16:24:02.018", - created: "2016-04-06T03:28:40.088", - name: "Percent", - id: "qpi4nN8Wkvl", - number: false, - factor: 100, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - translations: [] - } - ] - }, - dataset3: { - categoryCombos: [ - { - code: "default", - created: "2017-05-10T17:53:55.156", - lastUpdated: "2019-02-20T16:22:55.336", - name: "default", - id: "JzvGfLYkX17", - dataDimensionType: "DISAGGREGATION", - publicAccess: "rw------", - skipTotal: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "eK26I7dRbC4" - }, - userGroupAccesses: [], - translations: [], - userAccesses: [], - categories: [ - { - id: "DMyxTSpvKOp" - } - ] - } - ], - categoryOptionCombos: [ - { - lastUpdated: "2017-05-10T17:53:55.158", - code: "default", - created: "2017-05-10T17:53:55.157", - name: "default", - id: "Xr12mI7VPn3", - ignoreApproval: false, - categoryCombo: { - id: "JzvGfLYkX17" - }, - translations: [], - attributeValues: [], - categoryOptions: [ - { - id: "Y7fcspgsU43" - } - ] - } - ], - sections: [ - { - created: "2017-03-13T15:24:46.137", - lastUpdated: "2019-05-25T10:52:32.356", - name: "Gender distribution", - id: "QBA9xJy694a", - sortOrder: 3, - showRowTotals: false, - showColumnTotals: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - dataSet: { - id: "ZO0DQJePIEH" - }, - greyedFields: [], - attributeValues: [], - indicators: [], - translations: [], - dataElements: [ - { - id: "pjd3beNHprb" - } - ] - }, - { - created: "2017-03-13T15:27:27.788", - lastUpdated: "2019-05-25T10:52:32.357", - name: "Age distribution", - id: "yuOz1ToZ7mR", - sortOrder: 2, - showRowTotals: false, - showColumnTotals: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - dataSet: { - id: "ZO0DQJePIEH" - }, - greyedFields: [], - attributeValues: [], - indicators: [], - translations: [], - dataElements: [ - { - id: "hnihvm6kXLX" - } - ] - }, - { - created: "2017-03-13T15:26:11.163", - lastUpdated: "2019-05-25T10:52:32.357", - name: "Lab", - id: "gGk9TLyXQZO", - sortOrder: 6, - showRowTotals: false, - showColumnTotals: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - dataSet: { - id: "ZO0DQJePIEH" - }, - greyedFields: [], - attributeValues: [], - indicators: [], - translations: [], - dataElements: [ - { - id: "ijKH3KK0Etn" - } - ] - }, - { - created: "2017-03-13T15:21:34.091", - lastUpdated: "2019-05-25T10:52:32.357", - name: "Annual cases", - id: "lCu0Onx9YBZ", - sortOrder: 1, - showRowTotals: false, - showColumnTotals: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - dataSet: { - id: "ZO0DQJePIEH" - }, - greyedFields: [], - attributeValues: [], - indicators: [], - translations: [], - dataElements: [ - { - id: "tOpVIYrnbhk" - } - ] - }, - { - created: "2017-03-13T15:26:42.175", - lastUpdated: "2019-05-25T10:52:32.358", - name: "Treatment", - id: "VeERzaIGC16", - sortOrder: 7, - showRowTotals: false, - showColumnTotals: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - dataSet: { - id: "ZO0DQJePIEH" - }, - greyedFields: [], - attributeValues: [], - indicators: [], - translations: [], - dataElements: [ - { - id: "fCOiZOvhlYU" - } - ] - }, - { - created: "2017-03-13T15:25:25.396", - lastUpdated: "2019-05-25T10:52:32.358", - name: "Clinical presentation", - id: "cKWt05KOBMm", - sortOrder: 4, - showRowTotals: false, - showColumnTotals: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - dataSet: { - id: "ZO0DQJePIEH" - }, - greyedFields: [], - attributeValues: [], - indicators: [], - translations: [], - dataElements: [ - { - id: "AD4v3ACiiXX" - }, - { - id: "gUqE2t4L5UU" - }, - { - id: "tMY0YnV1PHQ" - } - ] - }, - { - created: "2017-03-13T15:25:48.973", - lastUpdated: "2019-05-25T10:52:32.359", - name: "Category", - id: "aEjB04cV1Wn", - sortOrder: 5, - showRowTotals: false, - showColumnTotals: false, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - dataSet: { - id: "ZO0DQJePIEH" - }, - greyedFields: [], - attributeValues: [], - indicators: [], - translations: [], - dataElements: [ - { - id: "lff6zDTvFi8" - }, - { - id: "ckHbEc6qoyV" - }, - { - id: "z2JQOIDlZUn" - } - ] - } - ], - dataElements: [ - { - code: "BU_Tx_ABcompletion_%", - lastUpdated: "2020-03-31T17:13:10.087", - id: "fCOiZOvhlYU", - created: "2017-03-12T21:49:03.996", - name: "BU_Tx_ABcompletion_%", - shortName: "% completing antibiotic treatment", - aggregationType: "AVERAGE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "PERCENTAGE", - formName: "% completing antibiotic treatment", - zeroIsSignificant: true, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "eK26I7dRbC4" - }, - translations: [ - { - property: "FORM_NAME", - locale: "fr", - value: "% des patients suivant un traitement antibiotique" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "% traitement AB complété" - }, - { - property: "NAME", - locale: "fr", - value: "UB_Tx_ABcompletude_%" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_EPI_AnnualCases", - lastUpdated: "2021-03-23T09:13:33.879", - id: "tOpVIYrnbhk", - created: "2018-05-09T22:26:29.218", - name: "BU_EPI_AnnualCases", - shortName: "# annual new BU cases", - aggregationType: "SUM", - domainType: "AGGREGATE", - publicAccess: "--------", - description: "WHO defines a Buruli ulcer case as any person with painless nodule, papule, plaque or oedema evolving into a painless ulcer with undermined edges, often leading to invalidating sequelae in an endemic area.", - valueType: "INTEGER_ZERO_OR_POSITIVE", - formName: "Number of new BU cases diagnosed within reporting year", - zeroIsSignificant: true, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "bI1uY3KuAKV" - }, - user: { - id: "ilJDyuqlwDC" - }, - translations: [ - { - property: "SHORT_NAME", - locale: "fr", - value: "Nombre annuel de cas d'ulc\ufffdre de Buruli" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "# annuel de cas d'ulcere de Buruli" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "Nombre annuel de cas d'ulcere de Buruli" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: " OMS définit un cas d'ulcere de Buruli comme toute personne présentant des nodule, papule, plaque ou oedeme, sans douleur, evoluant en ulcère avec des bords minces, souvent menant à des séquelles invalidantes, dans une zone d'endémie." - }, - { - property: "NAME", - locale: "fr", - value: "UB_EPI_Cas_Annuel" - }, - { - property: "NAME", - locale: "fr", - value: "Nombre annuel de cas d'ulc\ufffdre de Buruli" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "aDYjuZk8cXT", - displayName: "WHO NTD department", - id: "aDYjuZk8cXT" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "rw------", - userGroupUid: "k1KjQJqaHpz", - displayName: "NTD_SKIN_Admin", - id: "k1KjQJqaHpz" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-------", - userGroupUid: "ZvxncLTan3w", - displayName: "NTD_SKIN_Yaws_WHO", - id: "ZvxncLTan3w" - }, - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "UnTaQrY57qi", - displayName: "NTD_LSH_Monthly_Importer", - id: "UnTaQrY57qi" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_Cl_CatIII_%", - lastUpdated: "2020-03-31T17:13:09.841", - id: "z2JQOIDlZUn", - created: "2017-03-12T21:49:03.997", - name: "BU_Cl_CatIII_%", - shortName: "% category III", - aggregationType: "AVERAGE", - domainType: "AGGREGATE", - publicAccess: "--------", - description: "Category III: A single lesion more than 15 cm or multiple lesions or lesions at critical sites or osteomyelitis", - valueType: "PERCENTAGE", - formName: "% category III", - zeroIsSignificant: true, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "eK26I7dRbC4" - }, - translations: [ - { - property: "NAME", - locale: "fr", - value: "UB_Cl_CatIII_%" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: "Catégorie III: Une lésion unique de plus de 15 cm ou mulltiple lésions ou lésions au niveau d'un site critique ou ostéomyélite" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "% catégorie II" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "% catégorie III" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_Cl_JointLim_%", - lastUpdated: "2020-03-31T17:13:10.086", - id: "gUqE2t4L5UU", - created: "2017-03-12T21:49:03.997", - name: "BU_Cl_JointLim_%", - shortName: "% limitation of movement", - aggregationType: "AVERAGE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "PERCENTAGE", - formName: "% limitation of movement", - zeroIsSignificant: true, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "eK26I7dRbC4" - }, - translations: [ - { - property: "NAME", - locale: "fr", - value: "UB_Cl_JointLim_%" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "% limitation de mouvement" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "% limitation de mouvement" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_Cl_CatII_%", - lastUpdated: "2020-03-31T17:12:59.894", - id: "ckHbEc6qoyV", - created: "2017-03-12T21:49:03.997", - name: "BU_Cl_CatII_%", - shortName: "% category II", - aggregationType: "AVERAGE", - domainType: "AGGREGATE", - publicAccess: "--------", - description: "Category II: A single lesion 5-15cm", - valueType: "PERCENTAGE", - formName: "% category II", - zeroIsSignificant: true, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "eK26I7dRbC4" - }, - translations: [ - { - property: "FORM_NAME", - locale: "fr", - value: "% catégorie II" - }, - { - property: "NAME", - locale: "fr", - value: "UB_Cl_CatII_%" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "% catégorie II" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: "Catégorie II: Une lésion unique de 5 à 15 cm" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_EPI_U15y_%", - lastUpdated: "2020-03-31T17:13:14.697", - id: "hnihvm6kXLX", - created: "2017-03-12T21:49:03.996", - name: "BU_EPI_U15y_%", - shortName: "% children under 15 years", - aggregationType: "AVERAGE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "PERCENTAGE", - formName: "% children under 15 years", - zeroIsSignificant: true, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "eK26I7dRbC4" - }, - translations: [ - { - property: "FORM_NAME", - locale: "fr", - value: "% enfants de moins de 15 ans" - }, - { - property: "NAME", - locale: "fr", - value: "UB_EPI_<15a_%" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "% moins de 15 ans" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_Cl_Ulcer_%", - lastUpdated: "2019-05-25T10:52:31.471", - id: "AD4v3ACiiXX", - created: "2017-03-12T21:49:03.997", - name: "BU_Cl_Ulcer_%", - shortName: "% ulcers", - aggregationType: "AVERAGE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "PERCENTAGE", - formName: "% ulcers", - zeroIsSignificant: true, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "eK26I7dRbC4" - }, - translations: [ - { - property: "NAME", - locale: "fr", - value: "UB_Cl_Ulcere_%" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "% ulcères" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "% ulcères" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_Cl_CatI_%", - lastUpdated: "2020-03-31T17:13:00.278", - id: "lff6zDTvFi8", - created: "2017-03-12T21:49:03.997", - name: "BU_Cl_CatI_%", - shortName: "% category I", - aggregationType: "AVERAGE", - domainType: "AGGREGATE", - publicAccess: "--------", - description: "Category I: A single lesion 5cm or less", - valueType: "PERCENTAGE", - formName: "% category I", - zeroIsSignificant: true, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "eK26I7dRbC4" - }, - translations: [ - { - property: "FORM_NAME", - locale: "fr", - value: "% catégorie I" - }, - { - property: "NAME", - locale: "fr", - value: "UB_Cl_CatI_%" - }, - { - property: "DESCRIPTION", - locale: "fr", - value: "Catégorie I: Une lésion unique de 5cm ou moins" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "% catégorie I" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_Lab_PCRconfirmation_%", - lastUpdated: "2020-03-31T17:13:02.187", - id: "ijKH3KK0Etn", - created: "2017-03-12T21:49:03.996", - name: "BU_Lab_PCRconfirmation_%", - shortName: "% PCR confirmation", - aggregationType: "AVERAGE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "PERCENTAGE", - formName: "% PCR confirmation", - zeroIsSignificant: true, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "eK26I7dRbC4" - }, - translations: [ - { - property: "NAME", - locale: "fr", - value: "UB_Lab_PCRconfirmation_%" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "% confirmés par PCR" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "% des cas confirmés par PCR" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_EPI_Female_%", - lastUpdated: "2020-03-31T17:13:16.460", - id: "pjd3beNHprb", - created: "2017-03-12T21:49:03.996", - name: "BU_EPI_Female_%", - shortName: "% females", - aggregationType: "AVERAGE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "PERCENTAGE", - formName: "% females", - zeroIsSignificant: true, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "eK26I7dRbC4" - }, - translations: [ - { - property: "NAME", - locale: "fr", - value: "UB_EPI_Femme_%" - }, - { - property: "FORM_NAME", - locale: "fr", - value: "% femmes" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "% femmes" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - }, - { - code: "BU_Cl_LowLimb_%", - lastUpdated: "2020-03-31T17:13:06.292", - id: "tMY0YnV1PHQ", - created: "2017-03-12T21:49:03.997", - name: "BU_Cl_LowLimb_%", - shortName: "% location on lower limbs", - aggregationType: "AVERAGE", - domainType: "AGGREGATE", - publicAccess: "--------", - valueType: "PERCENTAGE", - formName: "% location on lower limbs", - zeroIsSignificant: true, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - user: { - id: "eK26I7dRbC4" - }, - translations: [ - { - property: "FORM_NAME", - locale: "fr", - value: "% localisation membres inférieurs" - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "% membres inférieurs" - }, - { - property: "NAME", - locale: "fr", - value: "UB_Cl_MbreInf_%" - } - ], - userGroupAccesses: [ - { - access: "r-------", - userGroupUid: "n7TwFEDHiw6", - displayName: "NTD_RO", - id: "n7TwFEDHiw6" - }, - { - access: "r-------", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-------", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-------", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-------", - userGroupUid: "urN5y60pAuu", - displayName: "NTD_CH_HQ", - id: "urN5y60pAuu" - }, - { - access: "rw------", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-------", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - }, - { - access: "r-------", - userGroupUid: "UhRUGTBad7l", - displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", - id: "UhRUGTBad7l" - }, - { - access: "r-------", - userGroupUid: "GcNXOjowdL7", - displayName: "SS_NTD_CH_Healthcare_AggrData_View", - id: "GcNXOjowdL7" - } - ], - attributeValues: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [], - aggregationLevels: [] - } + user: { + id: "eK26I7dRbC4", + }, + translations: [ + { + property: "FORM_NAME", + locale: "fr", + value: "% localisation membres inférieurs", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "% membres inférieurs", + }, + { + property: "NAME", + locale: "fr", + value: "UB_Cl_MbreInf_%", + }, + ], + userGroupAccesses: [ + { + access: "r-------", + userGroupUid: "n7TwFEDHiw6", + displayName: "NTD_RO", + id: "n7TwFEDHiw6", + }, + { + access: "r-------", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-------", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-------", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-------", + userGroupUid: "urN5y60pAuu", + displayName: "NTD_CH_HQ", + id: "urN5y60pAuu", + }, + { + access: "rw------", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-------", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + { + access: "r-------", + userGroupUid: "UhRUGTBad7l", + displayName: "SS_NTD_CH_Healthcare_AggrData_Entry", + id: "UhRUGTBad7l", + }, + { + access: "r-------", + userGroupUid: "GcNXOjowdL7", + displayName: "SS_NTD_CH_Healthcare_AggrData_View", + id: "GcNXOjowdL7", + }, + ], + attributeValues: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + aggregationLevels: [], + }, ], categoryOptions: [ - { - code: "default", - created: "2017-05-10T17:53:55.138", - lastUpdated: "2018-07-27T16:09:07.425", - name: "default", - id: "Y7fcspgsU43", - shortName: "default", - publicAccess: "rwrw----", - user: { - id: "eK26I7dRbC4" - }, - userGroupAccesses: [], - attributeValues: [], - translations: [], - userAccesses: [], - organisationUnits: [] - } + { + code: "default", + created: "2017-05-10T17:53:55.138", + lastUpdated: "2018-07-27T16:09:07.425", + name: "default", + id: "Y7fcspgsU43", + shortName: "default", + publicAccess: "rwrw----", + user: { + id: "eK26I7dRbC4", + }, + userGroupAccesses: [], + attributeValues: [], + translations: [], + userAccesses: [], + organisationUnits: [], + }, ], categories: [ - { - code: "default", - created: "2017-05-10T17:53:55.152", - lastUpdated: "2021-08-07T06:18:19.628", - name: "default", - id: "DMyxTSpvKOp", - dataDimensionType: "DISAGGREGATION", - publicAccess: "rw------", - dataDimension: false, - user: { - id: "eK26I7dRbC4" - }, - userGroupAccesses: [], - attributeValues: [], - translations: [], - userAccesses: [], - categoryOptions: [ - { - id: "Y7fcspgsU43" - } - ] - } + { + code: "default", + created: "2017-05-10T17:53:55.152", + lastUpdated: "2021-08-07T06:18:19.628", + name: "default", + id: "DMyxTSpvKOp", + dataDimensionType: "DISAGGREGATION", + publicAccess: "rw------", + dataDimension: false, + user: { + id: "eK26I7dRbC4", + }, + userGroupAccesses: [], + attributeValues: [], + translations: [], + userAccesses: [], + categoryOptions: [ + { + id: "Y7fcspgsU43", + }, + ], + }, ], dataSets: [ - { - code: "BU_minimum indicators_annual", - lastUpdated: "2021-04-28T09:01:38.788", - id: "ZO0DQJePIEH", - created: "2017-03-12T21:26:28.325", - name: "BU_minimum indicators_annual", - shortName: "BU_minimum indicators_annual", - validCompleteOnly: false, - dataElementDecoration: false, - publicAccess: "--------", - notifyCompletingUser: false, - noValueRequiresComment: false, - skipOffline: false, - compulsoryFieldsCompleteOnly: false, - fieldCombinationRequired: false, - renderHorizontally: false, - renderAsTabs: true, - mobile: false, - version: 17, - openPeriodsAfterCoEndDate: 0, - timelyDays: 60, - periodType: "Yearly", - openFuturePeriods: 0, - expiryDays: 0, - categoryCombo: { - id: "JzvGfLYkX17" - }, - lastUpdatedBy: { - id: "eK26I7dRbC4" - }, - workflow: { - id: "Li5owPOqVoe" - }, - user: { - id: "M5zQapPyTZI" - }, - dataSetElements: [ - { - dataElement: { - id: "tMY0YnV1PHQ" - }, - dataSet: { - id: "ZO0DQJePIEH" - } - }, - { - dataElement: { - id: "ckHbEc6qoyV" - }, - dataSet: { - id: "ZO0DQJePIEH" - } - }, - { - dataElement: { - id: "lff6zDTvFi8" - }, - dataSet: { - id: "ZO0DQJePIEH" - } - }, - { - dataElement: { - id: "AD4v3ACiiXX" - }, - dataSet: { - id: "ZO0DQJePIEH" - } - }, - { - dataElement: { - id: "fCOiZOvhlYU" - }, - dataSet: { - id: "ZO0DQJePIEH" - } - }, - { - dataElement: { - id: "gUqE2t4L5UU" - }, - dataSet: { - id: "ZO0DQJePIEH" - } - }, - { - dataElement: { - id: "ijKH3KK0Etn" - }, - dataSet: { - id: "ZO0DQJePIEH" - } - }, - { - dataElement: { - id: "z2JQOIDlZUn" + { + code: "BU_minimum indicators_annual", + lastUpdated: "2021-04-28T09:01:38.788", + id: "ZO0DQJePIEH", + created: "2017-03-12T21:26:28.325", + name: "BU_minimum indicators_annual", + shortName: "BU_minimum indicators_annual", + validCompleteOnly: false, + dataElementDecoration: false, + publicAccess: "--------", + notifyCompletingUser: false, + noValueRequiresComment: false, + skipOffline: false, + compulsoryFieldsCompleteOnly: false, + fieldCombinationRequired: false, + renderHorizontally: false, + renderAsTabs: true, + mobile: false, + version: 17, + openPeriodsAfterCoEndDate: 0, + timelyDays: 60, + periodType: "Yearly", + openFuturePeriods: 0, + expiryDays: 0, + categoryCombo: { + id: "JzvGfLYkX17", }, - dataSet: { - id: "ZO0DQJePIEH" - } - }, - { - dataElement: { - id: "tOpVIYrnbhk" + lastUpdatedBy: { + id: "eK26I7dRbC4", }, - dataSet: { - id: "ZO0DQJePIEH" - } - }, - { - dataElement: { - id: "pjd3beNHprb" + workflow: { + id: "Li5owPOqVoe", }, - dataSet: { - id: "ZO0DQJePIEH" - } - }, - { - dataElement: { - id: "hnihvm6kXLX" + user: { + id: "M5zQapPyTZI", }, - dataSet: { - id: "ZO0DQJePIEH" - } - } - ], - compulsoryDataElementOperands: [], - translations: [ - { - property: "DESCRIPTION", - locale: "fr", - value: "Ce formulaire vise à collecter les indicateurs minimaux concernant l'ulcère de Buruli dans les pays endémiques. " - }, - { - property: "SHORT_NAME", - locale: "fr", - value: "UB_Indicateurs_Annuel" - }, - { - property: "NAME", - locale: "fr", - value: "UB_Indicateurs_Annuel" - } - ], - dataInputPeriods: [], - organisationUnits: [ - { - id: "WXGcnQWJ0Qd" - }, - { - id: "JEHwU064LAj" - }, - { - id: "ovruC9wzRBW" - }, - { - id: "LbWpsX1FJcC" - }, - { - id: "wj7iV08dvFq" - }, - { - id: "SnYHrnchKjL" - }, - { - id: "jFOZHDZpjPL" - }, - { - id: "jkyBvNzcTLl" - }, - { - id: "BmTVMvJHVBO" - }, - { - id: "EDHO4qOyY88" - }, - { - id: "I3NxIqG7bD4" - }, - { - id: "WtcZBCTspgM" - }, - { - id: "aQJQ5mijJmH" - }, - { - id: "q23bFLr2E5D" - }, - { - id: "shRXArPWh8H" - }, - { - id: "jVqoXv7rFns" - }, - { - id: "hmZE3mVAZFf" - }, - { - id: "Fi5lLVwe1Th" - }, - { - id: "KAUSOoBq5Ft" - }, - { - id: "h7ARR5vhSLF" - }, - { - id: "mhWSEv79IJW" - }, - { - id: "UJVEh0g7qOo" - }, - { - id: "rm6NgPbM6Ld" - }, - { - id: "G037PAPU5dO" - }, - { - id: "er7MPiN3tdH" - }, - { - id: "JI5lagoUJR4" - }, - { - id: "VPesUmegQpP" - }, - { - id: "EGLpIMSAWhx" - }, - { - id: "vkXlj7ZPkGi" - }, - { - id: "DzAOqCf0ots" - }, - { - id: "qbqrFLCJewu" - }, - { - id: "WC5rU5fLMzY" - }, - { - id: "ZcrjvJaYQb7" - }, - { - id: "HfVjCurKxh2" - }, - { - id: "Zav7juzGmEo" - }, - { - id: "quQpOfBIDFC" - }, - { - id: "dpcvWc01CeN" - } - ], - userGroupAccesses: [ - { - access: "rwr-----", - userGroupUid: "irooBniCRle", - displayName: "NTD admin team", - id: "irooBniCRle" - }, - { - access: "r-r-----", - userGroupUid: "XqznB7ROzB3", - displayName: "NTD_SKIN_HQ", - id: "XqznB7ROzB3" - }, - { - access: "r-r-----", - userGroupUid: "ZyQlPOL3aSD", - displayName: "NTD_SKIN_BU_HQ", - id: "ZyQlPOL3aSD" - }, - { - access: "r-rw----", - userGroupUid: "ztM3xGja5IQ", - displayName: "SS_NTD_SKIN_BU_AggData_Entry", - id: "ztM3xGja5IQ" - }, - { - access: "r-r-----", - userGroupUid: "vjGluCqWr25", - displayName: "NTD Web Portal", - id: "vjGluCqWr25" - }, - { - access: "r-r-----", - userGroupUid: "LkY2dlqepEr", - displayName: "SS_NTD_SKIN_BU_AggData_View", - id: "LkY2dlqepEr" - }, - { - access: "r-------", - userGroupUid: "UfhhwZK73Lg", - displayName: "WIDP IT team", - id: "UfhhwZK73Lg" - } - ], - attributeValues: [], - indicators: [], - userAccesses: [ - { - access: "r-------", - displayName: "NTD CHECK", - id: "xgKMFzwPLs6", - userUid: "xgKMFzwPLs6" - } - ], - legendSets: [] - } - ] - } + dataSetElements: [ + { + dataElement: { + id: "tMY0YnV1PHQ", + }, + dataSet: { + id: "ZO0DQJePIEH", + }, + }, + { + dataElement: { + id: "ckHbEc6qoyV", + }, + dataSet: { + id: "ZO0DQJePIEH", + }, + }, + { + dataElement: { + id: "lff6zDTvFi8", + }, + dataSet: { + id: "ZO0DQJePIEH", + }, + }, + { + dataElement: { + id: "AD4v3ACiiXX", + }, + dataSet: { + id: "ZO0DQJePIEH", + }, + }, + { + dataElement: { + id: "fCOiZOvhlYU", + }, + dataSet: { + id: "ZO0DQJePIEH", + }, + }, + { + dataElement: { + id: "gUqE2t4L5UU", + }, + dataSet: { + id: "ZO0DQJePIEH", + }, + }, + { + dataElement: { + id: "ijKH3KK0Etn", + }, + dataSet: { + id: "ZO0DQJePIEH", + }, + }, + { + dataElement: { + id: "z2JQOIDlZUn", + }, + dataSet: { + id: "ZO0DQJePIEH", + }, + }, + { + dataElement: { + id: "tOpVIYrnbhk", + }, + dataSet: { + id: "ZO0DQJePIEH", + }, + }, + { + dataElement: { + id: "pjd3beNHprb", + }, + dataSet: { + id: "ZO0DQJePIEH", + }, + }, + { + dataElement: { + id: "hnihvm6kXLX", + }, + dataSet: { + id: "ZO0DQJePIEH", + }, + }, + ], + compulsoryDataElementOperands: [], + translations: [ + { + property: "DESCRIPTION", + locale: "fr", + value: "Ce formulaire vise à collecter les indicateurs minimaux concernant l'ulcère de Buruli dans les pays endémiques. ", + }, + { + property: "SHORT_NAME", + locale: "fr", + value: "UB_Indicateurs_Annuel", + }, + { + property: "NAME", + locale: "fr", + value: "UB_Indicateurs_Annuel", + }, + ], + dataInputPeriods: [], + organisationUnits: [ + { + id: "WXGcnQWJ0Qd", + }, + { + id: "JEHwU064LAj", + }, + { + id: "ovruC9wzRBW", + }, + { + id: "LbWpsX1FJcC", + }, + { + id: "wj7iV08dvFq", + }, + { + id: "SnYHrnchKjL", + }, + { + id: "jFOZHDZpjPL", + }, + { + id: "jkyBvNzcTLl", + }, + { + id: "BmTVMvJHVBO", + }, + { + id: "EDHO4qOyY88", + }, + { + id: "I3NxIqG7bD4", + }, + { + id: "WtcZBCTspgM", + }, + { + id: "aQJQ5mijJmH", + }, + { + id: "q23bFLr2E5D", + }, + { + id: "shRXArPWh8H", + }, + { + id: "jVqoXv7rFns", + }, + { + id: "hmZE3mVAZFf", + }, + { + id: "Fi5lLVwe1Th", + }, + { + id: "KAUSOoBq5Ft", + }, + { + id: "h7ARR5vhSLF", + }, + { + id: "mhWSEv79IJW", + }, + { + id: "UJVEh0g7qOo", + }, + { + id: "rm6NgPbM6Ld", + }, + { + id: "G037PAPU5dO", + }, + { + id: "er7MPiN3tdH", + }, + { + id: "JI5lagoUJR4", + }, + { + id: "VPesUmegQpP", + }, + { + id: "EGLpIMSAWhx", + }, + { + id: "vkXlj7ZPkGi", + }, + { + id: "DzAOqCf0ots", + }, + { + id: "qbqrFLCJewu", + }, + { + id: "WC5rU5fLMzY", + }, + { + id: "ZcrjvJaYQb7", + }, + { + id: "HfVjCurKxh2", + }, + { + id: "Zav7juzGmEo", + }, + { + id: "quQpOfBIDFC", + }, + { + id: "dpcvWc01CeN", + }, + ], + userGroupAccesses: [ + { + access: "rwr-----", + userGroupUid: "irooBniCRle", + displayName: "NTD admin team", + id: "irooBniCRle", + }, + { + access: "r-r-----", + userGroupUid: "XqznB7ROzB3", + displayName: "NTD_SKIN_HQ", + id: "XqznB7ROzB3", + }, + { + access: "r-r-----", + userGroupUid: "ZyQlPOL3aSD", + displayName: "NTD_SKIN_BU_HQ", + id: "ZyQlPOL3aSD", + }, + { + access: "r-rw----", + userGroupUid: "ztM3xGja5IQ", + displayName: "SS_NTD_SKIN_BU_AggData_Entry", + id: "ztM3xGja5IQ", + }, + { + access: "r-r-----", + userGroupUid: "vjGluCqWr25", + displayName: "NTD Web Portal", + id: "vjGluCqWr25", + }, + { + access: "r-r-----", + userGroupUid: "LkY2dlqepEr", + displayName: "SS_NTD_SKIN_BU_AggData_View", + id: "LkY2dlqepEr", + }, + { + access: "r-------", + userGroupUid: "UfhhwZK73Lg", + displayName: "WIDP IT team", + id: "UfhhwZK73Lg", + }, + ], + attributeValues: [], + indicators: [], + userAccesses: [ + { + access: "r-------", + displayName: "NTD CHECK", + id: "xgKMFzwPLs6", + userUid: "xgKMFzwPLs6", + }, + ], + legendSets: [], + }, + ], + }, }; diff --git a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx index eeca158..9dd79bb 100644 --- a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx @@ -96,7 +96,7 @@ export const ListDependenciesStep: React.FC = ({ .flatten() .value(); - setRows(rows); + setRows(rows); setIsLoading(false); }, error => snackbar.error(error) diff --git a/yarn.lock b/yarn.lock index 694c806..5ae7854 100644 --- a/yarn.lock +++ b/yarn.lock @@ -12568,7 +12568,7 @@ lodash.once@^4.1.1: resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" integrity sha1-DdOXEhPHxW34gJd9UEyI+0cal6w= -lodash.product@^18.9.19: +lodash.product@18.9.19: version "18.9.19" resolved "https://registry.yarnpkg.com/lodash.product/-/lodash.product-18.9.19.tgz#c1f49a4b447869290a8799c29295703fda294835" integrity sha512-yPX6KO0jveBR/DjSngqvUEynWTb4oJwB8g5WseShPzX0CO8pjX1gxlR5Fo7V3E81uPDc9mEuNVw3Ah6df9uy0g== From b279766be9a9825061fa431b8931a2e9ad0e073c Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Fri, 1 Oct 2021 08:41:37 +0200 Subject: [PATCH 48/50] Misc updates --- .../bulk-apply/steps/ListDependenciesStep.tsx | 23 ++++++++----------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx index efa12bd..ee72a53 100644 --- a/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx +++ b/src/webapp/pages/bulk-apply/steps/ListDependenciesStep.tsx @@ -11,13 +11,13 @@ import AddCircleOutlineIcon from "@material-ui/icons/AddCircleOutline"; import RemoveCircleOutlineIcon from "@material-ui/icons/RemoveCircleOutline"; import _ from "lodash"; import React, { useCallback, useEffect, useMemo, useState } from "react"; -import { MetadataItem, MetadataModel, displayName } from "../../../../domain/entities/MetadataItem"; -import { ListOptions } from "../../../../domain/repositories/MetadataRepository"; +import { displayName, MetadataItem, MetadataModel } from "../../../../domain/entities/MetadataItem"; import { Ref } from "../../../../domain/entities/Ref"; +import { ListOptions } from "../../../../domain/repositories/MetadataRepository"; import i18n from "../../../../locales"; +import Dropdown, { DropdownOption } from "../../../components/dropdown/Dropdown"; import { useAppContext } from "../../../contexts/app-context"; import { MetadataSharingWizardStepProps } from "../SharingWizardSteps"; -import Dropdown, { DropdownOption } from "../../../components/dropdown/Dropdown"; export const ListDependenciesStep: React.FC = ({ builder, updateBuilder }) => { const { compositionRoot } = useAppContext(); @@ -105,16 +105,14 @@ export const ListDependenciesStep: React.FC = ({ } else { setFilteredRows(filteredRows.filter(row => row.name.includes(search))); } - // eslint-disable-next-line }, - [listOptions] + [listOptions, filteredRows, rows] ); useEffect(() => { setIsLoading(true); compositionRoot.metadata.listDependencies(builder.baseElements).run( data => { - //getting all the dependencies and saving them const rows = _(data) .mapValues((value, key) => { return value.map(item => ({ ...item, metadataType: key })); @@ -123,15 +121,14 @@ export const ListDependenciesStep: React.FC = ({ .flatten() .value(); - setRows(rows); - //getting all the possible MDTypes from the dependencies - const filterModels: DropdownOption[] = Object.keys(data).map(item => ({ + const filterModels = _.keys(data).map(item => ({ id: item as MetadataModel, - name: i18n.t(displayName[item] || ""), + name: displayName[item] ?? i18n.t("Unknown model"), })); + + setRows(rows); setFilterOptions(filterModels); - setListOptions(options => ({ ...options, model: filterModels[0]?.id || "dashboards" })); - //the filteredRows will be the only type that I show in the UI, but I want to save the rows somewhere so I don't lose them + setListOptions(options => ({ ...options, model: filterModels[0]?.id ?? "dashboards" })); setFilteredRows(rows.filter(row => row.metadataType === filterModels[0]?.id)); setIsLoading(false); }, @@ -163,7 +160,7 @@ export const ListDependenciesStep: React.FC = ({ selection={selection} rowConfig={rowConfig} filterComponents={filterComponents} - searchBoxLabel={i18n.t(`Search by name`)} + searchBoxLabel={i18n.t("Search by name")} onChangeSearch={onSearchChange} />
From 370ec908e4ae905f5a0111328370981bfe625084 Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Fri, 1 Oct 2021 20:23:48 +0200 Subject: [PATCH 49/50] Review pull request --- .../repositories/MetadataD2ApiRepository.ts | 62 ++++++++++--------- src/domain/entities/MetadataItem.ts | 4 ++ 2 files changed, 37 insertions(+), 29 deletions(-) diff --git a/src/data/repositories/MetadataD2ApiRepository.ts b/src/data/repositories/MetadataD2ApiRepository.ts index 3777d3c..2da3acf 100644 --- a/src/data/repositories/MetadataD2ApiRepository.ts +++ b/src/data/repositories/MetadataD2ApiRepository.ts @@ -2,7 +2,13 @@ import i18n from "@eyeseetea/d2-ui-components/locales"; import _ from "lodash"; import { Future, FutureData } from "../../domain/entities/Future"; import { ImportResult, ImportStats } from "../../domain/entities/ImportResult"; -import { isValidModel, MetadataModel, MetadataPayload, DataDimensionItem } from "../../domain/entities/MetadataItem"; +import { + DataDimensionItem, + isValidModel, + MetadataModel, + MetadataPayload, + Visualization, +} from "../../domain/entities/MetadataItem"; import { ListMetadataResponse, ListOptions, MetadataRepository } from "../../domain/repositories/MetadataRepository"; import { D2Api, D2ApiDefinition, MetadataResponse, Stats } from "../../types/d2-api"; import { getD2APiFromInstance } from "../../utils/d2-api"; @@ -51,16 +57,14 @@ export class MetadataD2ApiRepository implements MetadataRepository { return Future.futureMap(items, ({ model, id }) => this.fetchMetadataWithDependencies(model, id)); }) - .map(payloads => mergePayloads(payloads)) - .map(payload => removeDefaults(payload)) - .map(payload => { - const indicatorIds = checkIfIndicatorsExist(payload); - if(indicatorIds.length !== 0) { - return this.fetchMetadata(indicatorIds) - .map(indicatorPayloads => mergePayloads([indicatorPayloads, payload])) - } - else return payload; - }); + .flatMap(payloads => { + const payload = mergePayloads(payloads); + const extraIds = extractExtraDependencies(payload); + if (extraIds.length === 0) return Future.success(payload); + + return this.fetchMetadata(extraIds).map(dependencies => mergePayloads([payload, dependencies])); + }) + .map(payload => removeDefaults(payload)); } public getModelName(model: string): string { @@ -104,26 +108,26 @@ function removeDefaults(payload: MetadataPayload): MetadataPayload { return _.mapValues(payload, items => items.filter(({ code, name }) => code !== "default" && name !== "default")); } -function checkIfIndicatorsExist(payload: MetadataPayload): string[] { - if('visualizations' in payload) { - const indicatorIds = _(payload.visualizations).flatMap(items => { - return items?.dataDimensionItems.map((dataDimensionItem: DataDimensionItem) => { - if('indicator' in dataDimensionItem) { - return dataDimensionItem?.indicator?.id; - } - else if('programIndicator' in dataDimensionItem) { - return dataDimensionItem?.programIndicator?.id; - } - return; - }); - +function extractExtraDependencies(payload: MetadataPayload): string[] { + return _(payload) + .mapValues((value, key) => { + if (key === "visualizations") { + return _.flatten( + value.map((element: Visualization) => + _.flatMap(element.dataDimensionItems ?? [], (item: DataDimensionItem) => { + const indicator = item.indicator?.id; + const programIndicator = item.programIndicator?.id; + return _.compact([indicator, programIndicator]); + }) + ) + ); + } + + return []; }) - .uniq() + .values() + .flatten() .value(); - return indicatorIds; - } - else return []; - } function buildMetadataImportResult(response: MetadataResponse): ImportResult { diff --git a/src/domain/entities/MetadataItem.ts b/src/domain/entities/MetadataItem.ts index aa071e1..5b5bfff 100644 --- a/src/domain/entities/MetadataItem.ts +++ b/src/domain/entities/MetadataItem.ts @@ -45,6 +45,10 @@ export const displayName: Record = { }; export type MetadataPayload = Record; +export interface Visualization extends MetadataItem { + dataDimensionItems?: DataDimensionItem[]; +} + export interface DataDimensionItem { dataDimensionItemType: string; indicator?: Ref; From 1b913d3a7a30740883cd11e84366d8bc02abbda4 Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Fri, 1 Oct 2021 20:25:44 +0200 Subject: [PATCH 50/50] Change name --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e080b47..a13b3f3 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "sharing-settings-app", + "name": "est-sharing-settings-app", "description": "DHIS2 Sharing Settings App", "version": "0.1.0", "license": "GPL-3.0", @@ -108,7 +108,7 @@ "prepare": "husky install" }, "manifest.webapp": { - "name": "Sharing Settings App", + "name": "Sharing Settings", "description": "DHIS2 Sharing Settings App", "icons": { "48": "icon.png"