diff --git a/grafana/rmf-app/src/components/Root/PmImport.ts b/grafana/rmf-app/src/components/Root/PmImport.ts new file mode 100644 index 0000000..d90afbf --- /dev/null +++ b/grafana/rmf-app/src/components/Root/PmImport.ts @@ -0,0 +1,500 @@ +import { DATA_SOURCE_TYPE } from "../../constants"; +import metrics from '../../metrics/dds/index.json'; + +const metricMap = prepareMetricMap(); + +const DATASOURCE_DEFAULT_UID = "${datasource}"; +const DATASOURCE_MIXED = "-- Mixed --"; +const emptyDashboard = { + "annotations": { + "list": [ + { + "builtIn": 1, + "datasource": { + "type": "grafana", + "uid": "-- Grafana --" + }, + "enable": true, + "hide": true, + "iconColor": "rgba(0, 211, 255, 1)", + "name": "Annotations & Alerts", + "type": "dashboard" + } + ] + }, + "editable": true, + "fiscalYearStartMonth": 0, + "graphTooltip": 0, + "links": [], + "liveNow": false, + "panels": [], + "refresh": "", + "schemaVersion": 39, + "tags": [], + "templating": { + "list": [] + }, + "time": { + "from": "now-5m", + "to": "now" + }, + "timeRangeUpdatedDuringEditOrView": false, + "timepicker": {}, + "timezone": "", + "title": "Empty Dashboard", + "version": 1, + "weekStart": "" +} + +function getEmptyDashboard(): any { + return JSON.parse(JSON.stringify(emptyDashboard)); +} + +function prepareMetricMap() : Map { + const metricMap = new Map(); + metrics.metricList = metrics.metricList || []; + for (let i = 0; i < metrics.metricList.length; i++) { + let mle = metrics.metricList[i]; + mle.metric = mle.metric || []; + for (let j = 0; j < mle.metric.length; j++) { + let m = mle.metric[j]; + metricMap.set(m.id.toUpperCase(), {id: m.id, listtype: m.listtype || ''}); + } + } + return metricMap; +} + +interface CounterTypeInfo { + FILTER?: string; + WSCOPE_TYPE?: string; +} + +interface ProxyInfo { + TYPE?: string; + NAME?: string; + HOST?: string; + TCP_PORT?: number; + LOCALE?: string; + TIMEZONE?: string; + COMTO?: number; + XML_PORT?: number; + USE_HTTPS?: string; +} + +interface Series { + CATEGORY?: string; + CNTTYPE?: string; + DESC?: string; + FULLRESNAME?: string; + PROXYID?: string; + COLOR?: number; + COUNTER_TYPE_INFO?: CounterTypeInfo; + PROXY_INFO?: ProxyInfo; +} + +interface Frame { + X_ORIGIN?: number; + Y_ORIGIN?: number; + WIDTH?: number; + HEIGHT?: number; +} + +interface DataView { + DESC?: string; + XAXIS?: string; + CONT_ONFULL?: string; + BUFSIZE?: number; + AUTOSCALE?: string; + FRAME?: Frame; + SERIES?: Series[]; +} + +interface VarIString { + DESCR?: string; + NAME?: string; + VALUE?: string; +} + +interface VarSpace { + VAR_ISTRING?: VarIString[]; +} + +interface PerfDesk { + DESC?: string; + STARTUP?: string; + COLOR?: number; + DATAVIEW?: DataView[]; + VAR_SPACE?: VarSpace; +} + +interface ParsedData { + PERFDESK?: PerfDesk; + [key: string]: any; +} + +export function parsePmImportFile(content: string | ArrayBuffer | null): ParsedData { + if (!content) { + throw new Error("RMF PM dashboard import file is invalid"); + } + content = content.toString(); + const lines = content.split('\n'); + const result: ParsedData = {}; + const stack: any[] = [result]; + const arrayTypes = new Set(['DATAVIEW', 'SERIES', 'VAR_ISTRING']); + + for (let i = 0; i < lines.length; i++) { + const lineSrc = lines[i]; + const level = lineSrc.search(/\S|$/)/3; + const line = lineSrc.trim(); + + if (line.startsWith('[') && line.endsWith(']')) { + if (stack.length > level + 1) { + stack.splice(level + 1); + } + const sectionName = line.slice(1, -1); + const newSection: any = {}; + const parent = stack[stack.length - 1]; + + if (arrayTypes.has(sectionName)) { + if (!parent[sectionName]) { + parent[sectionName] = []; + } + parent[sectionName].push(newSection); + } else { + parent[sectionName] = newSection; + } + + stack.push(newSection); + } else if (line === '{') { + continue; + } else if (line === '}') { + stack.pop(); + } else if (line.includes('=')) { + const equalIndex = line.indexOf('='); + const key = line.slice(0, equalIndex).trim(); + let value: any = line.slice(equalIndex + 1).trim(); + + if (value.startsWith('"') && value.endsWith('"')) { + value = value.slice(1, -1); + } else if (value === 'Y' || value === 'N') { + // Keep as string + } else if (!isNaN(Number(value))) { + value = Number(value); + } + + const current = stack[stack.length - 1]; + current[key] = value; + } + } + if (Object.keys(result).length == 0) { + throw new Error("RMF PM dashboard import file is invalid"); + } + return result; +} + +export function parsePmDatasources(content: string | ArrayBuffer | null): any[] { + const parsedData = parsePmImportFile(content); + const datasources: any[] = []; + parsedData.PERFDESK = parsedData.PERFDESK || {}; + parsedData.PERFDESK.DATAVIEW = parsedData.PERFDESK.DATAVIEW || []; + for (const dataView of parsedData.PERFDESK.DATAVIEW) { + for (const series of dataView.SERIES || []) { + const proxyInfo = series.PROXY_INFO; + if (proxyInfo) { + const dsName = proxyInfo.NAME || DATA_SOURCE_TYPE; + if (!datasources.find(ds => ds.name === dsName)) { + datasources.push({ + name: dsName, + type: DATA_SOURCE_TYPE, + host: proxyInfo.HOST || '', + port: proxyInfo.XML_PORT || 8803, + https: proxyInfo.USE_HTTPS === 'YES' ? true : false, + locale: proxyInfo.LOCALE || 'en_US', + timezone: proxyInfo.TIMEZONE || 'UTC', + }); + } + } + } + } + return datasources; +} + +export function parsePmImportFileToDashboard(content: string | ArrayBuffer | null, datasourcesNameUid: Map): any { + const parsedData = parsePmImportFile(content); + parsedData.PERFDESK = parsedData.PERFDESK || {}; + parsedData.PERFDESK.DESC = parsedData.PERFDESK.DESC || "Default Dashboard Description"; + + var needDatasourceVar = false; + var dashboard = getEmptyDashboard() + + dashboard.title = parsedData.PERFDESK.DESC; + dashboard.panels = []; + var deskSize = getDeskSize(parsedData.PERFDESK) + for (const dataView of parsedData.PERFDESK.DATAVIEW || []) { + var datasource = getDataSourceFromDataView(dataView, datasourcesNameUid); + if (datasource.uid === DATASOURCE_DEFAULT_UID) { + needDatasourceVar = true; + } + dashboard.panels.push({ + type: 'barchart', + title: dataView.DESC || 'Data View', + datasource: datasource, + options: { + orientation: dataView.XAXIS === 'H' ? 'vertical' : 'horizontal', + xField: getXFieldName(dataView), + //xTickLabelRotation: 90, + xTickLabelSpacing: 70, + }, + transformations: getTransformationsFromDataView(dataView), + gridPos: getGridPosition(deskSize, dataView), + targets: dataView.SERIES?.map((series, index) => ({ + selectedVisualisationType: getVisualizationType(series), + refId: String.fromCharCode(65 + index), + datasource: getDataSourceFromProxyInfo(series.PROXY_INFO, datasourcesNameUid), + selectedQuery: getSelectedQueryFromSeries(series), + selectedResource: { + label: getSelectedResourceFromSeries(series), + value: getSelectedResourceFromSeries(series) + }, + })) || [] + }); + } + if (needDatasourceVar) { + addDatasourceVar(dashboard); + } + + return dashboard; +} + +function addDatasourceVar(dashboard: any) { + dashboard.templating.list.push({ + type: "datasource", + name: "datasource", + query: DATA_SOURCE_TYPE, + label: "Data source", + includeAll: false, + multi: false, + refresh: 1, + allowCustomValue: false, + }) +} + +function getDataSourceFromDataView(dataView: DataView | undefined, datasourcesNameUid: Map): {type: string; uid: string} { + var uniqueDatasources: Map = new Map(); + if (dataView?.SERIES) { + for (const series of dataView.SERIES) { + if (series.PROXY_INFO && series.PROXY_INFO.NAME) { + uniqueDatasources.set(series.PROXY_INFO.NAME, ''); + } + } + } + if (uniqueDatasources.size > 1) { + return { + type: 'datasource', + uid: DATASOURCE_MIXED + }; + } + if (dataView?.SERIES && dataView.SERIES.length > 0) { + return getDataSourceFromProxyInfo(dataView.SERIES[0].PROXY_INFO, datasourcesNameUid); + } + return { + type: DATA_SOURCE_TYPE, + uid: DATASOURCE_DEFAULT_UID + }; +} + +function getDataSourceFromProxyInfo(proxyInfo: ProxyInfo | undefined, datasourcesNameUid: Map): {type: string; uid: string} { + var dsName = DATASOURCE_DEFAULT_UID; + if (proxyInfo && proxyInfo.NAME) { + dsName = datasourcesNameUid.get(proxyInfo.NAME) || dsName; + } + return { + type: DATA_SOURCE_TYPE, + uid: dsName + }; +} + +function getXFieldName(dataView: DataView): string { + if (dataView?.SERIES && dataView.SERIES.length > 0) { + return getXFieldNameFromSeries(dataView.SERIES[0]); + } + return 'time'; +} + +function getXFieldNameFromSeries(series: Series): string { + var metricid = getMetricIdFromSeries(series); + if (!singleMetric(metricid)) { + return 'partition'; + } + return 'time'; +} + +function singleMetric(metricid: string): boolean { + var metricDef = findmetricById(metricid); + if (metricDef && metricDef.listtype && metricDef.listtype.trim() === '') { + return true; + } + return false; +} + +function getVisualizationType(series: Series): string { + var metricid = getMetricIdFromSeries(series); + if (singleMetric(metricid)) { + return 'TimeSeries'; + } + return 'bargauge'; +} + +function findmetricById(metricid: string): {id: string; listtype: string} | null { + return metricMap.get(metricid) || null; +} + +function getSelectedQueryFromSeries(series: Series): string { + var resource = parseSeriesResname(series.FULLRESNAME || ''); + var ulq = resource.ulq; + var type = resource.type; + var name = resource.name; + var description = parseSeriesDescription(series.DESC || ''); + var query = `${type}.${description.metricDescription} `; + + if (ulq || name || + (series.COUNTER_TYPE_INFO && (series.COUNTER_TYPE_INFO.FILTER || series.COUNTER_TYPE_INFO.WSCOPE_TYPE)) + ) { + var params: string[] = []; + if (ulq) { + params.push(`ulq=${ulq}`); + } + if (name) { + params.push(`name=${name}`); + } + if (series.COUNTER_TYPE_INFO && series.COUNTER_TYPE_INFO.FILTER) { + params.push(`filter=${prepareFilterValue(series.COUNTER_TYPE_INFO.FILTER, false)}`); + } + if (series.COUNTER_TYPE_INFO && series.COUNTER_TYPE_INFO.WSCOPE_TYPE) { + params.push(`workscope=,,${series.COUNTER_TYPE_INFO.WSCOPE_TYPE}`); + } + query += "{" + params.join(",") + "}"; + } + return query; +} + +function getMetricIdFromSeries(series: Series): string { + var query = series.CNTTYPE || ''; + query = query.replace("RMF#", "8D"); + return query.toUpperCase(); +} + +function getSelectedResourceFromSeries(series: Series): string { + var query = "id=" + getMetricIdFromSeries(series); + query += "&resource=" + (series.FULLRESNAME || ''); + if (series.COUNTER_TYPE_INFO) { + if (series.COUNTER_TYPE_INFO.FILTER) { + query += `&filter=${prepareFilterValue(series.COUNTER_TYPE_INFO.FILTER, true)}`; + } + if (series.COUNTER_TYPE_INFO.WSCOPE_TYPE) { + query += `&workscope=,,${series.COUNTER_TYPE_INFO.WSCOPE_TYPE}`; + } + } + return query; +} + +function prepareFilterValue(value: string, encode: boolean): string { + let valueTrimmed = value.trim(); + let valueParts = valueTrimmed.split(/\s*;\s*/); + let valueProcessedParts = valueParts.map(part => part.trim()).filter(part => part.length > 0); + let valueProcessed; + if (encode) { + valueProcessed = valueProcessedParts.join('%3B'); + } else { + valueProcessed = valueProcessedParts.join(';'); + } + let valueFinal = valueProcessed; + return valueFinal; +} + +function parseSeriesResname(fullresname: string): { ulq: string; name: string; type: string } { + const segments = fullresname.split(',').map(s => s.trim()); + + return { + ulq: segments[0] || '', + name: segments[1] || '', + type: segments[2] || '', + }; +} + +function parseSeriesDescription(description: string): { ulq: string; name: string; type: string; metricDescription: string } { + const parts = description.split(' - '); + const metricDescription = parts.length > 1 ? parts[1].trim() : ''; + + const leftPart = parts[0] || ''; + const segments = leftPart.split(',').map(s => s.trim()); + + return { + ulq: segments[0] || '', + name: segments[1] || '', + type: segments[2] || '', + metricDescription: metricDescription + }; +} + +function getTransformationsFromDataView(dataView: DataView): any[] { + const transformations: any[] = []; + if (dataView?.SERIES && dataView.SERIES.length > 1) { + transformations.push({ + id: "joinByField", + options: { + byField: getGroupByField(dataView), + mode: "outer" + } + }); + } + return transformations; +} + +function getGroupByField(dataView: DataView): string { + if (dataView?.SERIES && dataView.SERIES.length > 0) { + var metricid = getMetricIdFromSeries(dataView.SERIES[0]); + if (!singleMetric(metricid)) { + return 'partition'; + } + } + return 'time'; +} + +function getDeskSize(perfDesk: PerfDesk): {width: number, height: number} { + var maxX = 0; + var maxY = 0; + for (const dataView of perfDesk.DATAVIEW || []) { + var frame = dataView.FRAME; + if (frame) { + var xEnd = (frame.X_ORIGIN || 0) + (frame.WIDTH || 0); + var yEnd = (frame.Y_ORIGIN || 0) + (frame.HEIGHT || 0); + if (xEnd > maxX) { + maxX = xEnd; + } + if (yEnd > maxY) { + maxY = yEnd; + } + } + } + return {width: maxX, height: maxY}; +} + +function getGridPosition(deskSize: {width: number, height: number}, dataView: DataView): any { + const gridWidth = 24; + const gridHeight = 24; + var scaleX = gridWidth / deskSize.width; + var scaleY = gridHeight / deskSize.height; + var dwx = dataView.FRAME?.X_ORIGIN ? Math.abs(dataView.FRAME.X_ORIGIN) : 0; + var dwy = dataView.FRAME?.Y_ORIGIN ? Math.abs(dataView.FRAME.Y_ORIGIN) : 0; + var x = Math.round(dwx * scaleX); + var y = Math.round(dwy * scaleY); + var w = dataView.FRAME?.WIDTH ? Math.floor((dataView.FRAME.WIDTH) * scaleX) : 8; + var h = dataView.FRAME?.HEIGHT ? Math.floor((dataView.FRAME.HEIGHT) * scaleY) : 8; + return { + x: x, + y: y, + h: h, + w: w, + }; +} \ No newline at end of file diff --git a/grafana/rmf-app/src/components/Root/Root.tsx b/grafana/rmf-app/src/components/Root/Root.tsx index 702037b..2af990d 100644 --- a/grafana/rmf-app/src/components/Root/Root.tsx +++ b/grafana/rmf-app/src/components/Root/Root.tsx @@ -15,24 +15,28 @@ * limitations under the License. */ import React, { PureComponent } from 'react'; -import { PanelContainer, Button, TextLink, Box, Icon, Alert, InlineSwitch, Input, InlineField } from '@grafana/ui'; +import { PanelContainer, Button, TextLink, Box, Icon, Alert, InlineSwitch, Input, InlineField, DropzoneFile } from '@grafana/ui'; import { locationService, getBackendSrv, getDataSourceSrv, getAppEvents } from '@grafana/runtime'; import { AppRootProps, AppEvents } from '@grafana/data'; -import { DDS_OPEN_METRICS_DOC_URL, DATA_SOURCE_TYPE, APP_LOGO_URL, FALCON_AS_DASHBOARD, FALCON_SYS_DASHBOARD } from '../../constants'; +import { DDS_OPEN_METRICS_DOC_URL, DATA_SOURCE_TYPE, APP_LOGO_URL, FALCON_AS_DASHBOARD, FALCON_SYS_DASHBOARD, PM_LOGO_URL } from '../../constants'; import { GlobalSettings } from '../../types'; import { DASHBOARDS as DDS_DASHBOARDS } from '../../dashboards/dds'; import { DASHBOARDS as PROM_DASHBOARDS } from '../../dashboards/prometheus'; import { findFolder, deleteFolder, installDashboards, findDashboard } from './utils'; -import { FolderStatus, Operation, OperCode, OperStatus, FalconStatus } from './types'; +import { FolderStatus, Operation, OperCode, OperStatus, FalconStatus, PmStatus } from './types'; import { StatusIcon } from './StatusIcon'; import { Space } from './Space'; import { Header } from './Header'; +import { FileDropzone } from '@grafana/ui'; +import { parsePmDatasources, parsePmImportFileToDashboard } from './PmImport'; const DDS_FOLDER_UID = 'ibm-rmf-dds'; const DDS_FOLDER_NAME = 'IBM RMF (DDS)'; const PROM_FOLDER_UID = 'ibm-rmf-prometheus'; const PROM_FOLDER_NAME = 'IBM RMF (Prometheus)'; +const PM_FOLDER_UID = 'ibm-rmf-pm'; +const PM_FOLDER_NAME = 'IBM RMF (PM)'; const DATASOURCE_API = '/api/datasources'; interface Props extends AppRootProps {} @@ -41,6 +45,7 @@ interface State { dds: FolderStatus; prom: FolderStatus; falcon: FalconStatus; + pm: PmStatus; } export class Root extends PureComponent { @@ -61,7 +66,12 @@ export class Root extends PureComponent { enabled: false, asDashboard: FALCON_AS_DASHBOARD, sysDashboard: FALCON_SYS_DASHBOARD, - } + }, + pm: { + folderPath: PM_FOLDER_NAME, + installed: false, + operation: { code: OperCode.None, status: OperStatus.None }, + }, }; } @@ -73,6 +83,7 @@ export class Root extends PureComponent { try { const ddsFolderPath = await findFolder(DDS_FOLDER_UID); const promFolderPath = await findFolder(PROM_FOLDER_UID); + const pmFolderPath = await findFolder(PM_FOLDER_UID); const asDashboard = await findDashboard("Job CPU Details", ["omegamon", "zos", "lpar", "cpu"]); const sysDashboard = await findDashboard("z/OS Enterprise Overview", ["omegamon", "zos", "enterprise"]); this.setState((prevState) => ({ @@ -90,7 +101,12 @@ export class Root extends PureComponent { ...prevState.falcon, asDashboard: asDashboard !== undefined ? asDashboard : FALCON_AS_DASHBOARD, sysDashboard: sysDashboard !== undefined ? sysDashboard : FALCON_SYS_DASHBOARD, - } + }, + pm: { + ...prevState.pm, + installed: pmFolderPath !== undefined, + folderPath: pmFolderPath || PM_FOLDER_NAME, + }, })); } catch (error) { console.error('failed to update state', error); @@ -165,8 +181,71 @@ export class Root extends PureComponent { } }; + importDashboard = async (folderUid: string, operCode: OperCode, dashboards: any[]) => { + const defaultFolderName = PM_FOLDER_NAME; + + var err; + try { + if (operCode === OperCode.Reset || operCode === OperCode.Delete) { + await deleteFolder(folderUid); + } + if (operCode === OperCode.Reset || operCode === OperCode.Install) { + await installDashboards(folderUid, defaultFolderName, dashboards, {enabled: false} as FalconStatus); + } + } catch (error) { + const appEvents = getAppEvents(); + appEvents.publish({ + type: AppEvents.alertError.name, + payload: [`Unexpected error: ${error instanceof Error ? error.message : 'Unknown error'}`], + }); + err = error; + } finally { + // There seems to be no way to refresh the folder tree without reloading the page. + // When a folder deleted or created, + // it won't be visible in dashboard tree until page is reloaded. + await this.updateFolderState(); + } + if (!err) { + const appEvents = getAppEvents(); + appEvents.publish({ + type: AppEvents.alertSuccess.name, + payload: [`Dashboard imported: ${dashboards.length ? dashboards[0].title : 'Unknown'}`], + }); + } + }; + + prepareDatasources = async (content: string | ArrayBuffer | null) : Promise> => { + const datasources = await getDataSourceSrv().getList({type: DATA_SOURCE_TYPE}); + let nameUid = new Map(); + try { + const pmDatasources = parsePmDatasources(content); + for (const pmDs of pmDatasources) { + const existingDs = datasources.find(ds => ds.name === pmDs.name); + if (!existingDs) { + const { datasource } = await getBackendSrv().post(DATASOURCE_API, { + type: DATA_SOURCE_TYPE, + access: 'proxy', + name: pmDs.name, + url: `${pmDs.https ? 'https' : 'http'}://${pmDs.host}:${pmDs.port}`, + }); + nameUid.set(pmDs.name, datasource.uid); + getDataSourceSrv().reload(); + } else { + nameUid.set(pmDs.name, existingDs.uid); + } + } + } catch (error) { + const appEvents = getAppEvents(); + appEvents.publish({ + type: AppEvents.alertError.name, + payload: [`Unexpected error: ${error instanceof Error ? error.message : 'Unknown error'}`], + }); + } + return nameUid; + } + render() { - const { dds, prom, falcon } = this.state; + const { dds, prom, falcon, pm } = this.state; const isBusy = dds.operation.status === OperStatus.InProgress || prom.operation.status === OperStatus.InProgress; return ( @@ -379,6 +458,71 @@ export class Root extends PureComponent { + + + +

+ logo for IBM RMF + Import Dashboards from RMF Performance Monitoring +

+
+

+ You can import dashboards .po files. Drag and drop the files onto the drop zone below. +

+

+ Destination folder: Dashboards / {pm.folderPath} + + [UID='{PM_FOLDER_UID}'] +

+ + + + + + { + const nameUid = await this.prepareDatasources(result); + const dashboard = parsePmImportFileToDashboard(result, nameUid); + await this.importDashboard(PM_FOLDER_UID, OperCode.Install, [dashboard]); + }} fileListRenderer={(file: DropzoneFile, removeFile: (file: DropzoneFile) => void) => { + return null; + }} /> + +

+ + Note: Data sources defined in RMF PM dashboards are imported without credentials. Make sure to update the data source settings with valid credentials if corresponding DDS requires authentication. +

+
+
); } diff --git a/grafana/rmf-app/src/components/Root/types.ts b/grafana/rmf-app/src/components/Root/types.ts index 7c7aa46..8914295 100644 --- a/grafana/rmf-app/src/components/Root/types.ts +++ b/grafana/rmf-app/src/components/Root/types.ts @@ -44,4 +44,9 @@ export interface FalconStatus { enabled: boolean; asDashboard: string; sysDashboard: string; +} +export interface PmStatus { + folderPath: string; + installed: boolean; + operation: Operation; } \ No newline at end of file diff --git a/grafana/rmf-app/src/constants.ts b/grafana/rmf-app/src/constants.ts index bfce8a3..14acdcb 100644 --- a/grafana/rmf-app/src/constants.ts +++ b/grafana/rmf-app/src/constants.ts @@ -22,6 +22,7 @@ export const APP_NAME = appPluginJson.name; export const APP_DESC = appPluginJson.info.description; export const APP_LOGO = appPluginJson.info.logos.large; export const APP_LOGO_URL = `public/plugins/${appPluginJson.id}/${appPluginJson.info.logos.large}`; +export const PM_LOGO_URL = `public/plugins/${appPluginJson.id}/img/pm390.png`; export const APP_BASE_URL = `/a/${appPluginJson.id}`; export const DATA_SOURCE_TYPE = dataSourcePluginJson.id; export const DATA_SOURCE_NAME = dataSourcePluginJson.name; diff --git a/grafana/rmf-app/src/img/pm390.png b/grafana/rmf-app/src/img/pm390.png new file mode 100644 index 0000000..1013b14 Binary files /dev/null and b/grafana/rmf-app/src/img/pm390.png differ diff --git a/grafana/rmf-app/src/metrics/dds/index.json b/grafana/rmf-app/src/metrics/dds/index.json new file mode 100644 index 0000000..6e69fd5 --- /dev/null +++ b/grafana/rmf-app/src/metrics/dds/index.json @@ -0,0 +1,5923 @@ +{ + "metricList": [{ + "metric": [{ + "id": "8D4FE0", + "listtype": " " + }, { + "id": "8D5010", + "listtype": " " + }, { + "id": "8D5040", + "listtype": " " + }, { + "id": "8D5070", + "listtype": " " + }, { + "id": "8D50A0", + "listtype": " " + }, { + "id": "8D50D0", + "listtype": " " + }, { + "id": "8D5100", + "listtype": " " + }, { + "id": "8D5130", + "listtype": " " + }, { + "id": "8D5160", + "listtype": " " + }, { + "id": "8D5190", + "listtype": " " + }, { + "id": "8D51C0", + "listtype": " " + }, { + "id": "8D51F0", + "listtype": " " + }, { + "id": "8D5220", + "listtype": " " + }, { + "id": "8D5250", + "listtype": " " + }, { + "id": "8D5280", + "listtype": " " + }, { + "id": "8D52B0", + "listtype": " " + }, { + "id": "8D52E0", + "listtype": " " + }, { + "id": "8D5310", + "listtype": " " + }, { + "id": "8D5340", + "listtype": " " + }, { + "id": "8D5370", + "listtype": " " + }, { + "id": "8D5960", + "listtype": " " + }, { + "id": "8D5990", + "listtype": " " + }, { + "id": "8D59C0", + "listtype": " " + }, { + "id": "8D59F0", + "listtype": " " + }, { + "id": "8D5A20", + "listtype": " " + }, { + "id": "8D5A50", + "listtype": " " + }] + }, { + "metric": [{ + "id": "8D2370", + "listtype": "C" + }, { + "id": "8D0070", + "listtype": "C" + }, { + "id": "8D0090", + "listtype": "C" + }, { + "id": "8D4410", + "listtype": "C" + }, { + "id": "8D4430", + "listtype": "C" + }, { + "id": "8D4450", + "listtype": "C" + }, { + "id": "8D23A0", + "listtype": "C" + }, { + "id": "8D23C0", + "listtype": "C" + }, { + "id": "8D3170", + "listtype": "C" + }, { + "id": "8D31D0", + "listtype": "C" + }, { + "id": "8D23E0", + "listtype": "C" + }, { + "id": "8D2400", + "listtype": "C" + }, { + "id": "8D4490", + "listtype": "C" + }, { + "id": "8D44B0", + "listtype": "C" + }, { + "id": "8D44D0", + "listtype": "C" + }, { + "id": "8D0340", + "listtype": "U" + }, { + "id": "8D05D0", + "listtype": "U" + }] + }, { + "metric": [{ + "id": "8D0690", + "listtype": "L" + }, { + "id": "8D2800", + "listtype": "L" + }, { + "id": "8D0EC0", + "listtype": "L" + }, { + "id": "8D0340", + "listtype": "U" + }, { + "id": "8D05D0", + "listtype": "U" + }, { + "id": "8D2810", + "listtype": "U" + }, { + "id": "8D27E0", + "listtype": "U" + }, { + "id": "8D05C0", + "listtype": "U" + }] + }, { + "metric": [{ + "id": "8D2210", + "listtype": "I" + }, { + "id": "8D2260", + "listtype": "I" + }, { + "id": "8D22A0", + "listtype": "I" + }, { + "id": "8D22C0", + "listtype": "I" + }, { + "id": "8D22E0", + "listtype": "I" + }, { + "id": "8D2310", + "listtype": "I" + }] + }, { + "metric": [{ + "id": "8D2A50", + "listtype": " " + }, { + "id": "8D3000", + "listtype": " " + }, { + "id": "8D30A0", + "listtype": " " + }, { + "id": "8D2A60", + "listtype": "Q" + }, { + "id": "8D3010", + "listtype": "Q" + }, { + "id": "8D30B0", + "listtype": "Q" + }, { + "id": "8D0020", + "listtype": "V" + }, { + "id": "8D2200", + "listtype": "V" + }, { + "id": "8D2250", + "listtype": "V" + }, { + "id": "8D00D0", + "listtype": "V" + }, { + "id": "8D0230", + "listtype": "V" + }, { + "id": "8D0250", + "listtype": "V" + }, { + "id": "8D2780", + "listtype": "V" + }, { + "id": "8D0360", + "listtype": "V" + }, { + "id": "8D2A70", + "listtype": "V" + }, { + "id": "8D0440", + "listtype": "V" + }, { + "id": "8D3020", + "listtype": "V" + }, { + "id": "8D30C0", + "listtype": "V" + }, { + "id": "8D0EA0", + "listtype": "V" + }, { + "id": "8D12A0", + "listtype": "V" + }, { + "id": "8D2340", + "listtype": "V" + }, { + "id": "8D1120", + "listtype": "V" + }, { + "id": "8D12C0", + "listtype": "V" + }] + }, { + "metric": [{ + "id": "8D5E10", + "listtype": "K" + }, { + "id": "8D3080", + "listtype": "K" + }, { + "id": "8D3110", + "listtype": "K" + }, { + "id": "8D5E70", + "listtype": "K" + }, { + "id": "8D3230", + "listtype": "K" + }, { + "id": "8D6EE0", + "listtype": "K" + }, { + "id": "8D5E00", + "listtype": "R" + }, { + "id": "8D0F20", + "listtype": "R" + }, { + "id": "8D5E60", + "listtype": "R" + }, { + "id": "8D1220", + "listtype": "R" + }, { + "id": "8D6ED0", + "listtype": "R" + }] + }, { + "metric": [{ + "id": "8D6E30", + "listtype": "7" + }, { + "id": "8D6E50", + "listtype": "7" + }, { + "id": "8D6E70", + "listtype": "7" + }] + }, { + "metric": [{ + "id": "8D5E30", + "listtype": "P" + }, { + "id": "8D0F60", + "listtype": "P" + }, { + "id": "8D0FF0", + "listtype": "P" + }, { + "id": "8D1020", + "listtype": "P" + }, { + "id": "8D5E90", + "listtype": "P" + }, { + "id": "8D5F40", + "listtype": "P" + }, { + "id": "8D1240", + "listtype": "P" + }, { + "id": "8D6F00", + "listtype": "P" + }, { + "id": "8D5E20", + "listtype": "S" + }, { + "id": "8D0F50", + "listtype": "S" + }, { + "id": "8D6E80", + "listtype": "S" + }, { + "id": "8D6EB0", + "listtype": "S" + }, { + "id": "8D5E80", + "listtype": "S" + }, { + "id": "8D5F20", + "listtype": "S" + }, { + "id": "8D1230", + "listtype": "S" + }, { + "id": "8D6EF0", + "listtype": "S" + }, { + "id": "8D5E40", + "listtype": "W" + }, { + "id": "8D0F80", + "listtype": "W" + }, { + "id": "8D5EA0", + "listtype": "W" + }, { + "id": "8D1250", + "listtype": "W" + }, { + "id": "8D6F10", + "listtype": "W" + }] + }, { + "metric": [{ + "id": "8D0D30", + "listtype": " " + }, { + "id": "8D2F10", + "listtype": " " + }, { + "id": "8D0D40", + "listtype": "J" + }] + }, { + "metric": [{ + "id": "8D0370", + "listtype": " " + }, { + "id": "8D0380", + "listtype": " " + }, { + "id": "8D0390", + "listtype": " " + }, { + "id": "8D03A0", + "listtype": " " + }, { + "id": "8D03B0", + "listtype": " " + }, { + "id": "8D03C0", + "listtype": " " + }, { + "id": "8D03D0", + "listtype": " " + }, { + "id": "8D2EE0", + "listtype": " " + }, { + "id": "8D0CB0", + "listtype": " " + }, { + "id": "8D2F20", + "listtype": " " + }, { + "id": "8D2F30", + "listtype": " " + }, { + "id": "8D2FA0", + "listtype": " " + }, { + "id": "8D2FB0", + "listtype": " " + }, { + "id": "8D30F0", + "listtype": " " + }, { + "id": "8D1260", + "listtype": " " + }, { + "id": "8D1270", + "listtype": " " + }, { + "id": "8D1280", + "listtype": "J" + }] + }, { + "metric": [{ + "id": "8D39A0", + "listtype": " " + }, { + "id": "8D20A0", + "listtype": " " + }, { + "id": "8D20E0", + "listtype": " " + }, { + "id": "8D2120", + "listtype": " " + }, { + "id": "8D2160", + "listtype": " " + }, { + "id": "8D20C0", + "listtype": "M" + }, { + "id": "8D2100", + "listtype": "M" + }, { + "id": "8D2140", + "listtype": "M" + }, { + "id": "8D2180", + "listtype": "M" + }] + }, { + "metric": [{ + "id": "8D2360", + "listtype": " " + }, { + "id": "8D0060", + "listtype": " " + }, { + "id": "8D0080", + "listtype": " " + }, { + "id": "8D4400", + "listtype": " " + }, { + "id": "8D4420", + "listtype": " " + }, { + "id": "8D4440", + "listtype": " " + }, { + "id": "8D2390", + "listtype": " " + }, { + "id": "8D23B0", + "listtype": " " + }, { + "id": "8D3160", + "listtype": " " + }, { + "id": "8D31C0", + "listtype": " " + }, { + "id": "8D23D0", + "listtype": " " + }, { + "id": "8D23F0", + "listtype": " " + }, { + "id": "8D4480", + "listtype": " " + }, { + "id": "8D44A0", + "listtype": " " + }, { + "id": "8D44C0", + "listtype": " " + }] + }, { + "metric": [{ + "id": "8D4670", + "listtype": " " + }, { + "id": "8D2060", + "listtype": " " + }, { + "id": "8D4690", + "listtype": " " + }, { + "id": "8D1FF0", + "listtype": " " + }, { + "id": "8D2000", + "listtype": " " + }, { + "id": "8D2020", + "listtype": " " + }, { + "id": "8D46B0", + "listtype": " " + }, { + "id": "8D46D0", + "listtype": " " + }, { + "id": "8D46F0", + "listtype": " " + }, { + "id": "8D4710", + "listtype": " " + }, { + "id": "8D4730", + "listtype": " " + }, { + "id": "8D21A0", + "listtype": " " + }, { + "id": "8D2050", + "listtype": "M" + }, { + "id": "8D38C0", + "listtype": "M" + }, { + "id": "8D2080", + "listtype": "M" + }, { + "id": "8D20D0", + "listtype": "M" + }, { + "id": "8D2110", + "listtype": "M" + }, { + "id": "8D2150", + "listtype": "M" + }, { + "id": "8D2190", + "listtype": "M" + }, { + "id": "8D39D0", + "listtype": "T" + }, { + "id": "8D20B0", + "listtype": "T" + }, { + "id": "8D20F0", + "listtype": "T" + }, { + "id": "8D2130", + "listtype": "T" + }, { + "id": "8D2170", + "listtype": "T" + }] + }, { + "metric": [{ + "id": "8D3290", + "listtype": " " + }, { + "id": "8D24D0", + "listtype": " " + }, { + "id": "8D3270", + "listtype": " " + }, { + "id": "8D32B0", + "listtype": " " + }, { + "id": "8D1C80", + "listtype": " " + }, { + "id": "8D3910", + "listtype": " " + }, { + "id": "8D3920", + "listtype": " " + }, { + "id": "8D3930", + "listtype": " " + }, { + "id": "8D3940", + "listtype": " " + }, { + "id": "8D3950", + "listtype": " " + }, { + "id": "8D3300", + "listtype": " " + }, { + "id": "8D2540", + "listtype": " " + }, { + "id": "8D32D0", + "listtype": " " + }, { + "id": "8D3330", + "listtype": " " + }, { + "id": "8D1C70", + "listtype": " " + }, { + "id": "8D39F0", + "listtype": " " + }, { + "id": "8D1F90", + "listtype": " " + }, { + "id": "8D3A10", + "listtype": " " + }, { + "id": "8D3360", + "listtype": " " + }, { + "id": "8D3A40", + "listtype": " " + }, { + "id": "8D3380", + "listtype": " " + }, { + "id": "8D3A90", + "listtype": " " + }, { + "id": "8D33E0", + "listtype": " " + }, { + "id": "8D3AC0", + "listtype": " " + }, { + "id": "8D3420", + "listtype": " " + }, { + "id": "8D3BA0", + "listtype": " " + }, { + "id": "8D3BD0", + "listtype": " " + }, { + "id": "8D3C20", + "listtype": " " + }, { + "id": "8D3B70", + "listtype": " " + }, { + "id": "8D3C50", + "listtype": " " + }, { + "id": "8D3B20", + "listtype": " " + }, { + "id": "8D3CA0", + "listtype": " " + }, { + "id": "8D3CD0", + "listtype": " " + }, { + "id": "8D3D20", + "listtype": " " + }, { + "id": "8D3D70", + "listtype": " " + }, { + "id": "8D3D80", + "listtype": " " + }, { + "id": "8D3D90", + "listtype": " " + }, { + "id": "8D3B00", + "listtype": " " + }, { + "id": "8D3B40", + "listtype": " " + }, { + "id": "8D3C80", + "listtype": " " + }, { + "id": "8D3D50", + "listtype": " " + }, { + "id": "8D25C0", + "listtype": " " + }, { + "id": "8D3F30", + "listtype": " " + }, { + "id": "8D3F60", + "listtype": " " + }, { + "id": "8D3F90", + "listtype": " " + }, { + "id": "8D3FE0", + "listtype": " " + }, { + "id": "8D4010", + "listtype": " " + }, { + "id": "8D32A0", + "listtype": "A" + }, { + "id": "8D24E0", + "listtype": "A" + }, { + "id": "8D3280", + "listtype": "A" + }, { + "id": "8D32C0", + "listtype": "A" + }, { + "id": "8D2600", + "listtype": "A" + }, { + "id": "8D4040", + "listtype": "A" + }, { + "id": "8D4060", + "listtype": "A" + }, { + "id": "8D4080", + "listtype": "A" + }, { + "id": "8D3310", + "listtype": "A" + }, { + "id": "8D2560", + "listtype": "A" + }, { + "id": "8D32E0", + "listtype": "A" + }, { + "id": "8D3340", + "listtype": "A" + }, { + "id": "8D3400", + "listtype": "A" + }, { + "id": "8D3A00", + "listtype": "A" + }, { + "id": "8D3A20", + "listtype": "A" + }, { + "id": "8D3A50", + "listtype": "A" + }, { + "id": "8D3AA0", + "listtype": "A" + }, { + "id": "8D3AD0", + "listtype": "A" + }, { + "id": "8D3BB0", + "listtype": "A" + }, { + "id": "8D3BE0", + "listtype": "A" + }, { + "id": "8D3C30", + "listtype": "A" + }, { + "id": "8D3B80", + "listtype": "A" + }, { + "id": "8D3C60", + "listtype": "A" + }, { + "id": "8D3B30", + "listtype": "A" + }, { + "id": "8D3CB0", + "listtype": "A" + }, { + "id": "8D3CE0", + "listtype": "A" + }, { + "id": "8D3D30", + "listtype": "A" + }, { + "id": "8D40C0", + "listtype": "A" + }, { + "id": "8D4120", + "listtype": "A" + }, { + "id": "8D4180", + "listtype": "A" + }, { + "id": "8D3B10", + "listtype": "A" + }, { + "id": "8D3B50", + "listtype": "A" + }, { + "id": "8D3C90", + "listtype": "A" + }, { + "id": "8D3D60", + "listtype": "A" + }, { + "id": "8D40A0", + "listtype": "A" + }, { + "id": "8D40E0", + "listtype": "A" + }, { + "id": "8D4100", + "listtype": "A" + }, { + "id": "8D4140", + "listtype": "A" + }, { + "id": "8D4160", + "listtype": "A" + }, { + "id": "8D0040", + "listtype": "A" + }, { + "id": "8D25F0", + "listtype": "A" + }, { + "id": "8D3F40", + "listtype": "A" + }, { + "id": "8D3F70", + "listtype": "A" + }, { + "id": "8D3FA0", + "listtype": "A" + }, { + "id": "8D3FF0", + "listtype": "A" + }, { + "id": "8D4020", + "listtype": "A" + }, { + "id": "8D6490", + "listtype": "6" + }, { + "id": "8D64D0", + "listtype": "6" + }, { + "id": "8D6510", + "listtype": "6" + }, { + "id": "8D6550", + "listtype": "6" + }, { + "id": "8D6590", + "listtype": "6" + }, { + "id": "8D65D0", + "listtype": "6" + }, { + "id": "8D6610", + "listtype": "6" + }, { + "id": "8D6650", + "listtype": "6" + }, { + "id": "8D6690", + "listtype": "6" + }, { + "id": "8D66D0", + "listtype": "6" + }, { + "id": "8D6710", + "listtype": "6" + }, { + "id": "8D6750", + "listtype": "6" + }, { + "id": "8D6790", + "listtype": "6" + }, { + "id": "8D67D0", + "listtype": "6" + }, { + "id": "8D67F0", + "listtype": "6" + }, { + "id": "8D6850", + "listtype": "6" + }, { + "id": "8D6890", + "listtype": "6" + }, { + "id": "8D68D0", + "listtype": "6" + }, { + "id": "8D6910", + "listtype": "6" + }, { + "id": "8D6950", + "listtype": "6" + }, { + "id": "8D6990", + "listtype": "6" + }, { + "id": "8D69D0", + "listtype": "6" + }, { + "id": "8D6A10", + "listtype": "6" + }, { + "id": "8D6A50", + "listtype": "6" + }, { + "id": "8D6A90", + "listtype": "6" + }, { + "id": "8D6AD0", + "listtype": "6" + }, { + "id": "8D6B10", + "listtype": "6" + }, { + "id": "8D6B50", + "listtype": "6" + }, { + "id": "8D6B90", + "listtype": "6" + }, { + "id": "8D6BD0", + "listtype": "6" + }, { + "id": "8D6C10", + "listtype": "6" + }, { + "id": "8D6C50", + "listtype": "6" + }, { + "id": "8D6C90", + "listtype": "6" + }, { + "id": "8D6CD0", + "listtype": "6" + }, { + "id": "8D6D10", + "listtype": "6" + }, { + "id": "8D6D50", + "listtype": "6" + }, { + "id": "8D6D90", + "listtype": "6" + }, { + "id": "8D6DD0", + "listtype": "6" + }, { + "id": "8D6E10", + "listtype": "6" + }] + }, { + "metric": [{ + "id": "8D6470", + "listtype": "6" + }, { + "id": "8D6490", + "listtype": "6" + }, { + "id": "8D64B0", + "listtype": "6" + }, { + "id": "8D64D0", + "listtype": "6" + }, { + "id": "8D64F0", + "listtype": "6" + }, { + "id": "8D6510", + "listtype": "6" + }, { + "id": "8D6530", + "listtype": "6" + }, { + "id": "8D6550", + "listtype": "6" + }, { + "id": "8D6570", + "listtype": "6" + }, { + "id": "8D6590", + "listtype": "6" + }, { + "id": "8D65B0", + "listtype": "6" + }, { + "id": "8D65D0", + "listtype": "6" + }, { + "id": "8D65F0", + "listtype": "6" + }, { + "id": "8D6610", + "listtype": "6" + }, { + "id": "8D6630", + "listtype": "6" + }, { + "id": "8D6650", + "listtype": "6" + }, { + "id": "8D6670", + "listtype": "6" + }, { + "id": "8D6690", + "listtype": "6" + }, { + "id": "8D66B0", + "listtype": "6" + }, { + "id": "8D66D0", + "listtype": "6" + }, { + "id": "8D66F0", + "listtype": "6" + }, { + "id": "8D6710", + "listtype": "6" + }, { + "id": "8D6730", + "listtype": "6" + }, { + "id": "8D6750", + "listtype": "6" + }, { + "id": "8D6770", + "listtype": "6" + }, { + "id": "8D6790", + "listtype": "6" + }, { + "id": "8D67B0", + "listtype": "6" + }, { + "id": "8D67D0", + "listtype": "6" + }, { + "id": "8D67E0", + "listtype": "6" + }, { + "id": "8D67F0", + "listtype": "6" + }, { + "id": "8D6830", + "listtype": "6" + }, { + "id": "8D6850", + "listtype": "6" + }, { + "id": "8D6870", + "listtype": "6" + }, { + "id": "8D6890", + "listtype": "6" + }, { + "id": "8D68B0", + "listtype": "6" + }, { + "id": "8D68D0", + "listtype": "6" + }, { + "id": "8D68F0", + "listtype": "6" + }, { + "id": "8D6910", + "listtype": "6" + }, { + "id": "8D6930", + "listtype": "6" + }, { + "id": "8D6950", + "listtype": "6" + }, { + "id": "8D6970", + "listtype": "6" + }, { + "id": "8D6990", + "listtype": "6" + }, { + "id": "8D69B0", + "listtype": "6" + }, { + "id": "8D69D0", + "listtype": "6" + }, { + "id": "8D69F0", + "listtype": "6" + }, { + "id": "8D6A10", + "listtype": "6" + }, { + "id": "8D6A30", + "listtype": "6" + }, { + "id": "8D6A50", + "listtype": "6" + }, { + "id": "8D6A70", + "listtype": "6" + }, { + "id": "8D6A90", + "listtype": "6" + }, { + "id": "8D6AB0", + "listtype": "6" + }, { + "id": "8D6AD0", + "listtype": "6" + }, { + "id": "8D6AF0", + "listtype": "6" + }, { + "id": "8D6B10", + "listtype": "6" + }, { + "id": "8D6B30", + "listtype": "6" + }, { + "id": "8D6B50", + "listtype": "6" + }, { + "id": "8D6B70", + "listtype": "6" + }, { + "id": "8D6B90", + "listtype": "6" + }, { + "id": "8D6BB0", + "listtype": "6" + }, { + "id": "8D6BD0", + "listtype": "6" + }, { + "id": "8D6BF0", + "listtype": "6" + }, { + "id": "8D6C10", + "listtype": "6" + }, { + "id": "8D6C30", + "listtype": "6" + }, { + "id": "8D6C50", + "listtype": "6" + }, { + "id": "8D6C70", + "listtype": "6" + }, { + "id": "8D6C90", + "listtype": "6" + }, { + "id": "8D6CB0", + "listtype": "6" + }, { + "id": "8D6CD0", + "listtype": "6" + }, { + "id": "8D6CF0", + "listtype": "6" + }, { + "id": "8D6D10", + "listtype": "6" + }, { + "id": "8D6D30", + "listtype": "6" + }, { + "id": "8D6D50", + "listtype": "6" + }, { + "id": "8D6D70", + "listtype": "6" + }, { + "id": "8D6D90", + "listtype": "6" + }, { + "id": "8D6DB0", + "listtype": "6" + }, { + "id": "8D6DD0", + "listtype": "6" + }, { + "id": "8D6DF0", + "listtype": "6" + }, { + "id": "8D6E10", + "listtype": "6" + }] + }, { + "metric": [{ + "id": "8D6460", + "listtype": " " + }, { + "id": "8D6480", + "listtype": " " + }, { + "id": "8D64A0", + "listtype": " " + }, { + "id": "8D64C0", + "listtype": " " + }, { + "id": "8D64E0", + "listtype": " " + }, { + "id": "8D6500", + "listtype": " " + }, { + "id": "8D6520", + "listtype": " " + }, { + "id": "8D6540", + "listtype": " " + }, { + "id": "8D6560", + "listtype": " " + }, { + "id": "8D6580", + "listtype": " " + }, { + "id": "8D65A0", + "listtype": " " + }, { + "id": "8D65C0", + "listtype": " " + }, { + "id": "8D65E0", + "listtype": " " + }, { + "id": "8D6600", + "listtype": " " + }, { + "id": "8D6620", + "listtype": " " + }, { + "id": "8D6640", + "listtype": " " + }, { + "id": "8D6660", + "listtype": " " + }, { + "id": "8D6680", + "listtype": " " + }, { + "id": "8D66A0", + "listtype": " " + }, { + "id": "8D66C0", + "listtype": " " + }, { + "id": "8D66E0", + "listtype": " " + }, { + "id": "8D6700", + "listtype": " " + }, { + "id": "8D6720", + "listtype": " " + }, { + "id": "8D6740", + "listtype": " " + }, { + "id": "8D6760", + "listtype": " " + }, { + "id": "8D6780", + "listtype": " " + }, { + "id": "8D67A0", + "listtype": " " + }, { + "id": "8D67C0", + "listtype": " " + }, { + "id": "8D6800", + "listtype": " " + }, { + "id": "8D6810", + "listtype": " " + }, { + "id": "8D6820", + "listtype": " " + }, { + "id": "8D6840", + "listtype": " " + }, { + "id": "8D6860", + "listtype": " " + }, { + "id": "8D6880", + "listtype": " " + }, { + "id": "8D68A0", + "listtype": " " + }, { + "id": "8D68C0", + "listtype": " " + }, { + "id": "8D68E0", + "listtype": " " + }, { + "id": "8D6900", + "listtype": " " + }, { + "id": "8D6920", + "listtype": " " + }, { + "id": "8D6940", + "listtype": " " + }, { + "id": "8D6960", + "listtype": " " + }, { + "id": "8D6980", + "listtype": " " + }, { + "id": "8D69A0", + "listtype": " " + }, { + "id": "8D69C0", + "listtype": " " + }, { + "id": "8D69E0", + "listtype": " " + }, { + "id": "8D6A00", + "listtype": " " + }, { + "id": "8D6A20", + "listtype": " " + }, { + "id": "8D6A40", + "listtype": " " + }, { + "id": "8D6A60", + "listtype": " " + }, { + "id": "8D6A80", + "listtype": " " + }, { + "id": "8D6AA0", + "listtype": " " + }, { + "id": "8D6AC0", + "listtype": " " + }, { + "id": "8D6AE0", + "listtype": " " + }, { + "id": "8D6B00", + "listtype": " " + }, { + "id": "8D6B20", + "listtype": " " + }, { + "id": "8D6B40", + "listtype": " " + }, { + "id": "8D6B60", + "listtype": " " + }, { + "id": "8D6B80", + "listtype": " " + }, { + "id": "8D6BA0", + "listtype": " " + }, { + "id": "8D6BC0", + "listtype": " " + }, { + "id": "8D6BE0", + "listtype": " " + }, { + "id": "8D6C00", + "listtype": " " + }, { + "id": "8D6C20", + "listtype": " " + }, { + "id": "8D6C40", + "listtype": " " + }, { + "id": "8D6C60", + "listtype": " " + }, { + "id": "8D6C80", + "listtype": " " + }, { + "id": "8D6CA0", + "listtype": " " + }, { + "id": "8D6CC0", + "listtype": " " + }, { + "id": "8D6CE0", + "listtype": " " + }, { + "id": "8D6D00", + "listtype": " " + }, { + "id": "8D6D20", + "listtype": " " + }, { + "id": "8D6D40", + "listtype": " " + }, { + "id": "8D6D60", + "listtype": " " + }, { + "id": "8D6D80", + "listtype": " " + }, { + "id": "8D6DA0", + "listtype": " " + }, { + "id": "8D6DC0", + "listtype": " " + }, { + "id": "8D6DE0", + "listtype": " " + }, { + "id": "8D6E00", + "listtype": " " + }] + }, { + "metric": [{ + "id": "8D0050", + "listtype": " " + }, { + "id": "8D0410", + "listtype": " " + }, { + "id": "8D0530", + "listtype": " " + }, { + "id": "8D0BC0", + "listtype": " " + }, { + "id": "8D0C90", + "listtype": " " + }, { + "id": "8D0CE0", + "listtype": " " + }, { + "id": "8D0540", + "listtype": "J" + }, { + "id": "8D0CA0", + "listtype": "J" + }, { + "id": "8D0CF0", + "listtype": "J" + }] + }, { + "metric": [{ + "id": "8D0050", + "listtype": " " + }, { + "id": "8D0410", + "listtype": " " + }, { + "id": "8D0530", + "listtype": " " + }, { + "id": "8D0BC0", + "listtype": " " + }, { + "id": "8D0C90", + "listtype": " " + }, { + "id": "8D0CE0", + "listtype": " " + }, { + "id": "8D0540", + "listtype": "J" + }, { + "id": "8D0CA0", + "listtype": "J" + }, { + "id": "8D0CF0", + "listtype": "J" + }] + }, { + "metric": [{ + "id": "8D00E0", + "listtype": " " + }, { + "id": "8D28D0", + "listtype": "E" + }, { + "id": "8D0180", + "listtype": "J" + }, { + "id": "8D28E0", + "listtype": "K" + }, { + "id": "8D17A0", + "listtype": "P" + }, { + "id": "8D1660", + "listtype": "R" + }, { + "id": "8D1700", + "listtype": "S" + }, { + "id": "8D1840", + "listtype": "W" + }] + }, { + "metric": [{ + "id": "8D0050", + "listtype": " " + }, { + "id": "8D0410", + "listtype": " " + }, { + "id": "8D0530", + "listtype": " " + }, { + "id": "8D0BC0", + "listtype": " " + }, { + "id": "8D0C90", + "listtype": " " + }, { + "id": "8D0CE0", + "listtype": " " + }, { + "id": "8D0540", + "listtype": "J" + }, { + "id": "8D0CA0", + "listtype": "J" + }, { + "id": "8D0CF0", + "listtype": "J" + }] + }, { + "metric": [{ + "id": "8D00F0", + "listtype": " " + }, { + "id": "8D0190", + "listtype": "J" + }, { + "id": "8D28F0", + "listtype": "K" + }, { + "id": "8D17B0", + "listtype": "P" + }, { + "id": "8D1670", + "listtype": "R" + }, { + "id": "8D1710", + "listtype": "S" + }, { + "id": "8D1850", + "listtype": "W" + }] + }, { + "metric": [{ + "id": "8D00A0", + "listtype": " " + }, { + "id": "8D0170", + "listtype": " " + }, { + "id": "8D04B0", + "listtype": " " + }, { + "id": "8D1E20", + "listtype": " " + }, { + "id": "8D0680", + "listtype": " " + }, { + "id": "8D0EB0", + "listtype": " " + }, { + "id": "8D4930", + "listtype": " " + }, { + "id": "8D0E90", + "listtype": " " + }, { + "id": "8D49B0", + "listtype": " " + }, { + "id": "8D4C10", + "listtype": " " + }, { + "id": "8D2040", + "listtype": "D" + }, { + "id": "8D2090", + "listtype": "D" + }, { + "id": "8D28B0", + "listtype": "E" + }, { + "id": "8D2B20", + "listtype": "E" + }, { + "id": "8D00C0", + "listtype": "J" + }, { + "id": "8D0210", + "listtype": "J" + }, { + "id": "8D04F0", + "listtype": "J" + }, { + "id": "8D1EC0", + "listtype": "J" + }, { + "id": "8D4940", + "listtype": "J" + }, { + "id": "8D49C0", + "listtype": "J" + }, { + "id": "8D4C20", + "listtype": "J" + }, { + "id": "8D2970", + "listtype": "K" + }, { + "id": "8D2B40", + "listtype": "K" + }, { + "id": "8D2BA0", + "listtype": "K" + }, { + "id": "8D2890", + "listtype": "N" + }, { + "id": "8D2B00", + "listtype": "N" + }, { + "id": "8D1830", + "listtype": "P" + }, { + "id": "8D1CF0", + "listtype": "P" + }, { + "id": "8D1E80", + "listtype": "P" + }, { + "id": "8D16F0", + "listtype": "R" + }, { + "id": "8D1C90", + "listtype": "R" + }, { + "id": "8D1E40", + "listtype": "R" + }, { + "id": "8D1790", + "listtype": "S" + }, { + "id": "8D1CC0", + "listtype": "S" + }, { + "id": "8D1E60", + "listtype": "S" + }, { + "id": "8D18D0", + "listtype": "W" + }, { + "id": "8D1D20", + "listtype": "W" + }, { + "id": "8D1EA0", + "listtype": "W" + }] + }, { + "metric": [{ + "id": "8D0100", + "listtype": " " + }, { + "id": "8D01A0", + "listtype": "J" + }, { + "id": "8D2900", + "listtype": "K" + }, { + "id": "8D17C0", + "listtype": "P" + }, { + "id": "8D1680", + "listtype": "R" + }, { + "id": "8D1720", + "listtype": "S" + }, { + "id": "8D1860", + "listtype": "W" + }] + }, { + "metric": [{ + "id": "8D0680", + "listtype": " " + }, { + "id": "8D27F0", + "listtype": " " + }, { + "id": "8D0EB0", + "listtype": " " + }, { + "id": "8D0E90", + "listtype": " " + }, { + "id": "8D0340", + "listtype": "U" + }, { + "id": "8D05D0", + "listtype": "U" + }, { + "id": "8D2810", + "listtype": "U" + }, { + "id": "8D27E0", + "listtype": "U" + }, { + "id": "8D05C0", + "listtype": "U" + }, { + "id": "8D0020", + "listtype": "V" + }, { + "id": "8D00D0", + "listtype": "V" + }, { + "id": "8D0250", + "listtype": "V" + }, { + "id": "8D2780", + "listtype": "V" + }, { + "id": "8D0360", + "listtype": "V" + }, { + "id": "8D0440", + "listtype": "V" + }, { + "id": "8D0EA0", + "listtype": "V" + }, { + "id": "8D1120", + "listtype": "V" + }, { + "id": "8D12C0", + "listtype": "V" + }] + }, { + "metric": [{ + "id": "8D2870", + "listtype": " " + }, { + "id": "8D3670", + "listtype": " " + }, { + "id": "8D24B0", + "listtype": " " + }, { + "id": "8D3680", + "listtype": " " + }, { + "id": "8D3690", + "listtype": " " + }, { + "id": "8D36A0", + "listtype": " " + }, { + "id": "8D36B0", + "listtype": " " + }, { + "id": "8D24C0", + "listtype": " " + }, { + "id": "8D36C0", + "listtype": " " + }, { + "id": "8D36D0", + "listtype": " " + }, { + "id": "8D36E0", + "listtype": " " + }, { + "id": "8D4030", + "listtype": " " + }, { + "id": "8D4050", + "listtype": " " + }, { + "id": "8D4070", + "listtype": " " + }, { + "id": "8D38D0", + "listtype": " " + }, { + "id": "8D2510", + "listtype": " " + }, { + "id": "8D38E0", + "listtype": " " + }, { + "id": "8D38F0", + "listtype": " " + }, { + "id": "8D3900", + "listtype": " " + }, { + "id": "8D3960", + "listtype": " " + }, { + "id": "8D2530", + "listtype": " " + }, { + "id": "8D3970", + "listtype": " " + }, { + "id": "8D3980", + "listtype": " " + }, { + "id": "8D3990", + "listtype": " " + }, { + "id": "8D25A0", + "listtype": " " + }, { + "id": "8D39E0", + "listtype": " " + }, { + "id": "8D2520", + "listtype": " " + }, { + "id": "8D3A30", + "listtype": " " + }, { + "id": "8D3A80", + "listtype": " " + }, { + "id": "8D3AB0", + "listtype": " " + }, { + "id": "8D47A0", + "listtype": " " + }, { + "id": "8D47C0", + "listtype": " " + }, { + "id": "8D2490", + "listtype": " " + }, { + "id": "8D3B90", + "listtype": " " + }, { + "id": "8D3BC0", + "listtype": " " + }, { + "id": "8D3C10", + "listtype": " " + }, { + "id": "8D3B60", + "listtype": " " + }, { + "id": "8D3C40", + "listtype": " " + }, { + "id": "8D3B20", + "listtype": " " + }, { + "id": "8D2610", + "listtype": " " + }, { + "id": "8D3CC0", + "listtype": " " + }, { + "id": "8D3D10", + "listtype": " " + }, { + "id": "8D40B0", + "listtype": " " + }, { + "id": "8D4110", + "listtype": " " + }, { + "id": "8D4170", + "listtype": " " + }, { + "id": "8D3B00", + "listtype": " " + }, { + "id": "8D3B40", + "listtype": " " + }, { + "id": "8D3C70", + "listtype": " " + }, { + "id": "8D3D40", + "listtype": " " + }, { + "id": "8D4090", + "listtype": " " + }, { + "id": "8D40D0", + "listtype": " " + }, { + "id": "8D40F0", + "listtype": " " + }, { + "id": "8D4130", + "listtype": " " + }, { + "id": "8D4150", + "listtype": " " + }, { + "id": "8D4190", + "listtype": " " + }, { + "id": "8D25E0", + "listtype": " " + }, { + "id": "8D43E0", + "listtype": " " + }, { + "id": "8D4A90", + "listtype": " " + }, { + "id": "8D4AB0", + "listtype": " " + }, { + "id": "8D4530", + "listtype": " " + }, { + "id": "8D2620", + "listtype": " " + }, { + "id": "8D2630", + "listtype": " " + }, { + "id": "8D2650", + "listtype": " " + }, { + "id": "8D2660", + "listtype": " " + }, { + "id": "8D2680", + "listtype": " " + }, { + "id": "8D4460", + "listtype": " " + }, { + "id": "8D3F20", + "listtype": " " + }, { + "id": "8D3F50", + "listtype": " " + }, { + "id": "8D3F80", + "listtype": " " + }, { + "id": "8D3FD0", + "listtype": " " + }, { + "id": "8D4000", + "listtype": " " + }, { + "id": "8D4B10", + "listtype": " " + }, { + "id": "8D4B30", + "listtype": " " + }, { + "id": "8D4B70", + "listtype": " " + }, { + "id": "8D4B90", + "listtype": " " + }, { + "id": "8D4BD0", + "listtype": " " + }, { + "id": "8D4BF0", + "listtype": " " + }] + }, { + "metric": [{ + "id": "8D0160", + "listtype": " " + }, { + "id": "8D03E0", + "listtype": " " + }, { + "id": "8D0470", + "listtype": " " + }, { + "id": "8D04A0", + "listtype": " " + }, { + "id": "8D0550", + "listtype": " " + }, { + "id": "8D0620", + "listtype": " " + }, { + "id": "8D4840", + "listtype": " " + }, { + "id": "8D4870", + "listtype": " " + }, { + "id": "8D48A0", + "listtype": " " + }, { + "id": "8D48D0", + "listtype": " " + }, { + "id": "8D4900", + "listtype": " " + }, { + "id": "8D0D50", + "listtype": " " + }, { + "id": "8D0EF0", + "listtype": " " + }, { + "id": "8D1000", + "listtype": " " + }, { + "id": "8D4950", + "listtype": " " + }, { + "id": "8D4980", + "listtype": " " + }, { + "id": "8D1100", + "listtype": " " + }, { + "id": "8D5EB0", + "listtype": " " + }, { + "id": "8D4A10", + "listtype": " " + }, { + "id": "8D1200", + "listtype": " " + }, { + "id": "8D4A40", + "listtype": " " + }, { + "id": "8D28A0", + "listtype": "E" + }, { + "id": "8D2A90", + "listtype": "E" + }, { + "id": "8D2B10", + "listtype": "E" + }, { + "id": "8D0200", + "listtype": "J" + }, { + "id": "8D03F0", + "listtype": "J" + }, { + "id": "8D0480", + "listtype": "J" + }, { + "id": "8D04E0", + "listtype": "J" + }, { + "id": "8D0560", + "listtype": "J" + }, { + "id": "8D4860", + "listtype": "J" + }, { + "id": "8D4890", + "listtype": "J" + }, { + "id": "8D48C0", + "listtype": "J" + }, { + "id": "8D48F0", + "listtype": "J" + }, { + "id": "8D4920", + "listtype": "J" + }, { + "id": "8D4970", + "listtype": "J" + }, { + "id": "8D49A0", + "listtype": "J" + }, { + "id": "8D4A30", + "listtype": "J" + }, { + "id": "8D4A60", + "listtype": "J" + }, { + "id": "8D2960", + "listtype": "K" + }, { + "id": "8D2B30", + "listtype": "K" + }, { + "id": "8D2B80", + "listtype": "K" + }, { + "id": "8D2D60", + "listtype": "K" + }, { + "id": "8D2F40", + "listtype": "K" + }, { + "id": "8D3080", + "listtype": "K" + }, { + "id": "8D3110", + "listtype": "K" + }, { + "id": "8D5EF0", + "listtype": "K" + }, { + "id": "8D31A0", + "listtype": "K" + }, { + "id": "8D3230", + "listtype": "K" + }, { + "id": "8D1820", + "listtype": "P" + }, { + "id": "8D1CE0", + "listtype": "P" + }, { + "id": "8D05A0", + "listtype": "P" + }, { + "id": "8D0660", + "listtype": "P" + }, { + "id": "8D0D90", + "listtype": "P" + }, { + "id": "8D0F60", + "listtype": "P" + }, { + "id": "8D1020", + "listtype": "P" + }, { + "id": "8D5F30", + "listtype": "P" + }, { + "id": "8D1170", + "listtype": "P" + }, { + "id": "8D1240", + "listtype": "P" + }, { + "id": "8D16E0", + "listtype": "R" + }, { + "id": "8D1C60", + "listtype": "R" + }, { + "id": "8D0580", + "listtype": "R" + }, { + "id": "8D0640", + "listtype": "R" + }, { + "id": "8D0D70", + "listtype": "R" + }, { + "id": "8D0F20", + "listtype": "R" + }, { + "id": "8D5ED0", + "listtype": "R" + }, { + "id": "8D1130", + "listtype": "R" + }, { + "id": "8D1220", + "listtype": "R" + }, { + "id": "8D1780", + "listtype": "S" + }, { + "id": "8D1CB0", + "listtype": "S" + }, { + "id": "8D0590", + "listtype": "S" + }, { + "id": "8D0650", + "listtype": "S" + }, { + "id": "8D0D80", + "listtype": "S" + }, { + "id": "8D0F40", + "listtype": "S" + }, { + "id": "8D5F10", + "listtype": "S" + }, { + "id": "8D1150", + "listtype": "S" + }, { + "id": "8D1230", + "listtype": "S" + }, { + "id": "8D18C0", + "listtype": "W" + }, { + "id": "8D1D10", + "listtype": "W" + }, { + "id": "8D05B0", + "listtype": "W" + }, { + "id": "8D0670", + "listtype": "W" + }, { + "id": "8D0DA0", + "listtype": "W" + }, { + "id": "8D0F80", + "listtype": "W" + }, { + "id": "8D5F50", + "listtype": "W" + }, { + "id": "8D1190", + "listtype": "W" + }, { + "id": "8D1250", + "listtype": "W" + }, { + "id": "8D3E10", + "listtype": "2" + }, { + "id": "8D3E50", + "listtype": "2" + }, { + "id": "8D38A0", + "listtype": "3" + }, { + "id": "8D3DB0", + "listtype": "3" + }, { + "id": "8D3DC0", + "listtype": "3" + }, { + "id": "8D3DD0", + "listtype": "3" + }, { + "id": "8D3DE0", + "listtype": "3" + }, { + "id": "8D3DF0", + "listtype": "3" + }, { + "id": "8D3E30", + "listtype": "3" + }, { + "id": "8D3E60", + "listtype": "3" + }, { + "id": "8D3E80", + "listtype": "3" + }, { + "id": "8D3E90", + "listtype": "3" + }, { + "id": "8D3EB0", + "listtype": "3" + }, { + "id": "8D3660", + "listtype": "4" + }, { + "id": "8D36F0", + "listtype": "4" + }, { + "id": "8D3700", + "listtype": "4" + }, { + "id": "8D38B0", + "listtype": "4" + }, { + "id": "8D3DA0", + "listtype": "4" + }, { + "id": "8D3E70", + "listtype": "4" + }, { + "id": "8D3EA0", + "listtype": "4" + }, { + "id": "8D3EC0", + "listtype": "4" + }] + }, { + "metric": [{ + "id": "8D0110", + "listtype": " " + }, { + "id": "8D01B0", + "listtype": "J" + }, { + "id": "8D2910", + "listtype": "K" + }, { + "id": "8D17D0", + "listtype": "P" + }, { + "id": "8D1690", + "listtype": "R" + }, { + "id": "8D1730", + "listtype": "S" + }, { + "id": "8D1870", + "listtype": "W" + }] + }, { + "metric": [{ + "id": "8D4C60", + "listtype": "H" + }, { + "id": "8D4C80", + "listtype": "H" + }, { + "id": "8D5CB0", + "listtype": "H" + }, { + "id": "8D5CC0", + "listtype": "H" + }, { + "id": "8D5CE0", + "listtype": "H" + }, { + "id": "8D4CA0", + "listtype": "H" + }, { + "id": "8D4D00", + "listtype": "H" + }, { + "id": "8D4D20", + "listtype": "H" + }, { + "id": "8D4D40", + "listtype": "H" + }, { + "id": "8D4D60", + "listtype": "H" + }, { + "id": "8D4D80", + "listtype": "H" + }, { + "id": "8D4DA0", + "listtype": "H" + }, { + "id": "8D4DC0", + "listtype": "H" + }, { + "id": "8D4DE0", + "listtype": "H" + }, { + "id": "8D4E00", + "listtype": "H" + }, { + "id": "8D4E20", + "listtype": "H" + }, { + "id": "8D4E40", + "listtype": "H" + }, { + "id": "8D4E60", + "listtype": "H" + }, { + "id": "8D4E80", + "listtype": "H" + }, { + "id": "8D4EA0", + "listtype": "H" + }, { + "id": "8D5D10", + "listtype": "H" + }, { + "id": "8D5D20", + "listtype": "H" + }, { + "id": "8D5D40", + "listtype": "H" + }, { + "id": "8D5D70", + "listtype": "H" + }, { + "id": "8D5D80", + "listtype": "H" + }, { + "id": "8D5DA0", + "listtype": "H" + }, { + "id": "8D5DD0", + "listtype": "H" + }, { + "id": "8D5DE0", + "listtype": "H" + }, { + "id": "8D4EC0", + "listtype": "H" + }, { + "id": "8D4EE0", + "listtype": "H" + }, { + "id": "8D4F00", + "listtype": "H" + }, { + "id": "8D4F20", + "listtype": "H" + }, { + "id": "8D4F40", + "listtype": "H" + }, { + "id": "8D4F70", + "listtype": "H" + }, { + "id": "8D4F90", + "listtype": "H" + }, { + "id": "8D4FB0", + "listtype": "H" + }, { + "id": "8D4FD0", + "listtype": "H" + }] + }, { + "metric": [{ + "id": "8D4C50", + "listtype": " " + }, { + "id": "8D4C70", + "listtype": " " + }, { + "id": "8D5C90", + "listtype": " " + }, { + "id": "8D5CA0", + "listtype": " " + }, { + "id": "8D5CD0", + "listtype": " " + }, { + "id": "8D4C90", + "listtype": " " + }, { + "id": "8D4D10", + "listtype": " " + }, { + "id": "8D4D30", + "listtype": " " + }, { + "id": "8D4D50", + "listtype": " " + }, { + "id": "8D4D70", + "listtype": " " + }, { + "id": "8D4D90", + "listtype": " " + }, { + "id": "8D4DB0", + "listtype": " " + }, { + "id": "8D4DD0", + "listtype": " " + }, { + "id": "8D4DF0", + "listtype": " " + }, { + "id": "8D4E10", + "listtype": " " + }, { + "id": "8D4E30", + "listtype": " " + }, { + "id": "8D4E50", + "listtype": " " + }, { + "id": "8D4E70", + "listtype": " " + }, { + "id": "8D4E90", + "listtype": " " + }, { + "id": "8D5CF0", + "listtype": " " + }, { + "id": "8D5D00", + "listtype": " " + }, { + "id": "8D5D30", + "listtype": " " + }, { + "id": "8D5D50", + "listtype": " " + }, { + "id": "8D5D60", + "listtype": " " + }, { + "id": "8D5D90", + "listtype": " " + }, { + "id": "8D5DB0", + "listtype": " " + }, { + "id": "8D5DC0", + "listtype": " " + }, { + "id": "8D4EB0", + "listtype": " " + }, { + "id": "8D4ED0", + "listtype": " " + }, { + "id": "8D4EF0", + "listtype": " " + }, { + "id": "8D4F10", + "listtype": " " + }, { + "id": "8D4F30", + "listtype": " " + }, { + "id": "8D4F50", + "listtype": " " + }, { + "id": "8D4F60", + "listtype": " " + }, { + "id": "8D4F80", + "listtype": " " + }, { + "id": "8D4FA0", + "listtype": " " + }, { + "id": "8D4FC0", + "listtype": " " + }] + }, { + "metric": [{ + "id": "8D0600", + "listtype": " " + }, { + "id": "8D2750", + "listtype": " " + }, { + "id": "8D0120", + "listtype": " " + }, { + "id": "8D2790", + "listtype": " " + }, { + "id": "8D26A0", + "listtype": " " + }, { + "id": "8D04D0", + "listtype": " " + }, { + "id": "8D1E10", + "listtype": " " + }, { + "id": "8D2BF0", + "listtype": " " + }, { + "id": "8D2C00", + "listtype": " " + }, { + "id": "8D2C90", + "listtype": " " + }, { + "id": "8D2CA0", + "listtype": " " + }, { + "id": "8D4750", + "listtype": " " + }, { + "id": "8D39B0", + "listtype": " " + }, { + "id": "8D0460", + "listtype": " " + }, { + "id": "8D39C0", + "listtype": " " + }, { + "id": "8D34A0", + "listtype": " " + }, { + "id": "8D34B0", + "listtype": " " + }, { + "id": "8D3550", + "listtype": " " + }, { + "id": "8D3560", + "listtype": " " + }, { + "id": "8D3AE0", + "listtype": " " + }, { + "id": "8D0420", + "listtype": " " + }, { + "id": "8D3AF0", + "listtype": " " + }, { + "id": "8D05E0", + "listtype": " " + }, { + "id": "8D05F0", + "listtype": " " + }, { + "id": "8D2F90", + "listtype": " " + }, { + "id": "8D4500", + "listtype": " " + }, { + "id": "8D0D20", + "listtype": " " + }, { + "id": "8D4510", + "listtype": " " + }, { + "id": "8D3610", + "listtype": " " + }, { + "id": "8D4520", + "listtype": " " + }, { + "id": "8D3030", + "listtype": " " + }, { + "id": "8D30E0", + "listtype": " " + }, { + "id": "8D31F0", + "listtype": " " + }, { + "id": "8D49D0", + "listtype": " " + }, { + "id": "8D49F0", + "listtype": " " + }, { + "id": "8D3240", + "listtype": " " + }, { + "id": "8D4AD0", + "listtype": " " + }, { + "id": "8D4C30", + "listtype": " " + }, { + "id": "8D2880", + "listtype": "E" + }, { + "id": "8D2C10", + "listtype": "E" + }, { + "id": "8D2C80", + "listtype": "E" + }, { + "id": "8D2CB0", + "listtype": "E" + }, { + "id": "8D2D20", + "listtype": "E" + }, { + "id": "8D2D30", + "listtype": "E" + }, { + "id": "8D2BC0", + "listtype": "E" + }, { + "id": "8D2BD0", + "listtype": "E" + }, { + "id": "8D2BE0", + "listtype": "E" + }, { + "id": "8D34C0", + "listtype": "E" + }, { + "id": "8D3540", + "listtype": "E" + }, { + "id": "8D3570", + "listtype": "E" + }, { + "id": "8D35F0", + "listtype": "E" + }, { + "id": "8D3600", + "listtype": "E" + }, { + "id": "8D3050", + "listtype": "E" + }, { + "id": "8D3060", + "listtype": "E" + }, { + "id": "8D3040", + "listtype": "E" + }, { + "id": "8D3620", + "listtype": "E" + }, { + "id": "8D3630", + "listtype": "E" + }, { + "id": "8D3210", + "listtype": "E" + }, { + "id": "8D3220", + "listtype": "E" + }, { + "id": "8D3200", + "listtype": "E" + }, { + "id": "8D3640", + "listtype": "E" + }, { + "id": "8D3650", + "listtype": "E" + }, { + "id": "8D0610", + "listtype": "J" + }, { + "id": "8D33A0", + "listtype": "J" + }, { + "id": "8D14D0", + "listtype": "J" + }, { + "id": "8D33C0", + "listtype": "J" + }, { + "id": "8D01C0", + "listtype": "J" + }, { + "id": "8D26B0", + "listtype": "J" + }, { + "id": "8D3440", + "listtype": "J" + }, { + "id": "8D3450", + "listtype": "J" + }, { + "id": "8D3460", + "listtype": "J" + }, { + "id": "8D0510", + "listtype": "J" + }, { + "id": "8D3470", + "listtype": "J" + }, { + "id": "8D3480", + "listtype": "J" + }, { + "id": "8D3490", + "listtype": "J" + }, { + "id": "8D1EB0", + "listtype": "J" + }, { + "id": "8D2C20", + "listtype": "J" + }, { + "id": "8D2CC0", + "listtype": "J" + }, { + "id": "8D4770", + "listtype": "J" + }, { + "id": "8D34E0", + "listtype": "J" + }, { + "id": "8D3590", + "listtype": "J" + }, { + "id": "8D3070", + "listtype": "J" + }, { + "id": "8D49E0", + "listtype": "J" + }, { + "id": "8D4A00", + "listtype": "J" + }, { + "id": "8D4AE0", + "listtype": "J" + }, { + "id": "8D4C40", + "listtype": "J" + }, { + "id": "8D2920", + "listtype": "K" + }, { + "id": "8D3720", + "listtype": "K" + }, { + "id": "8D3770", + "listtype": "K" + }, { + "id": "8D37C0", + "listtype": "K" + }, { + "id": "8D3810", + "listtype": "K" + }, { + "id": "8D3860", + "listtype": "K" + }, { + "id": "8D2B50", + "listtype": "K" + }, { + "id": "8D2B90", + "listtype": "K" + }, { + "id": "8D2C40", + "listtype": "K" + }, { + "id": "8D2CE0", + "listtype": "K" + }, { + "id": "8D3500", + "listtype": "K" + }, { + "id": "8D35B0", + "listtype": "K" + }, { + "id": "8D43A0", + "listtype": "K" + }, { + "id": "8D3EE0", + "listtype": "K" + }, { + "id": "8D2830", + "listtype": "O" + }, { + "id": "8D31E0", + "listtype": "O" + }, { + "id": "8D2820", + "listtype": "P" + }, { + "id": "8D17E0", + "listtype": "P" + }, { + "id": "8D0FC0", + "listtype": "P" + }, { + "id": "8D3740", + "listtype": "P" + }, { + "id": "8D3790", + "listtype": "P" + }, { + "id": "8D37E0", + "listtype": "P" + }, { + "id": "8D3830", + "listtype": "P" + }, { + "id": "8D3880", + "listtype": "P" + }, { + "id": "8D1D00", + "listtype": "P" + }, { + "id": "8D1E70", + "listtype": "P" + }, { + "id": "8D2C60", + "listtype": "P" + }, { + "id": "8D2D00", + "listtype": "P" + }, { + "id": "8D3520", + "listtype": "P" + }, { + "id": "8D35D0", + "listtype": "P" + }, { + "id": "8D2D40", + "listtype": "P" + }, { + "id": "8D2D50", + "listtype": "P" + }, { + "id": "8D43C0", + "listtype": "P" + }, { + "id": "8D3F00", + "listtype": "P" + }, { + "id": "8D2720", + "listtype": "R" + }, { + "id": "8D16A0", + "listtype": "R" + }, { + "id": "8D27B0", + "listtype": "R" + }, { + "id": "8D3710", + "listtype": "R" + }, { + "id": "8D3760", + "listtype": "R" + }, { + "id": "8D37B0", + "listtype": "R" + }, { + "id": "8D3800", + "listtype": "R" + }, { + "id": "8D3850", + "listtype": "R" + }, { + "id": "8D1CA0", + "listtype": "R" + }, { + "id": "8D1E30", + "listtype": "R" + }, { + "id": "8D2C30", + "listtype": "R" + }, { + "id": "8D2CD0", + "listtype": "R" + }, { + "id": "8D34F0", + "listtype": "R" + }, { + "id": "8D35A0", + "listtype": "R" + }, { + "id": "8D26C0", + "listtype": "R" + }, { + "id": "8D26F0", + "listtype": "R" + }, { + "id": "8D4390", + "listtype": "R" + }, { + "id": "8D3ED0", + "listtype": "R" + }, { + "id": "8D2730", + "listtype": "S" + }, { + "id": "8D1740", + "listtype": "S" + }, { + "id": "8D27C0", + "listtype": "S" + }, { + "id": "8D3730", + "listtype": "S" + }, { + "id": "8D3780", + "listtype": "S" + }, { + "id": "8D37D0", + "listtype": "S" + }, { + "id": "8D3820", + "listtype": "S" + }, { + "id": "8D3870", + "listtype": "S" + }, { + "id": "8D1CD0", + "listtype": "S" + }, { + "id": "8D1E50", + "listtype": "S" + }, { + "id": "8D2C50", + "listtype": "S" + }, { + "id": "8D2CF0", + "listtype": "S" + }, { + "id": "8D3510", + "listtype": "S" + }, { + "id": "8D35C0", + "listtype": "S" + }, { + "id": "8D26D0", + "listtype": "S" + }, { + "id": "8D2700", + "listtype": "S" + }, { + "id": "8D43B0", + "listtype": "S" + }, { + "id": "8D3EF0", + "listtype": "S" + }, { + "id": "8D2740", + "listtype": "W" + }, { + "id": "8D1880", + "listtype": "W" + }, { + "id": "8D27D0", + "listtype": "W" + }, { + "id": "8D3750", + "listtype": "W" + }, { + "id": "8D37A0", + "listtype": "W" + }, { + "id": "8D37F0", + "listtype": "W" + }, { + "id": "8D3840", + "listtype": "W" + }, { + "id": "8D3890", + "listtype": "W" + }, { + "id": "8D1D30", + "listtype": "W" + }, { + "id": "8D1E90", + "listtype": "W" + }, { + "id": "8D2C70", + "listtype": "W" + }, { + "id": "8D2D10", + "listtype": "W" + }, { + "id": "8D3530", + "listtype": "W" + }, { + "id": "8D35E0", + "listtype": "W" + }, { + "id": "8D26E0", + "listtype": "W" + }, { + "id": "8D2710", + "listtype": "W" + }, { + "id": "8D43D0", + "listtype": "W" + }, { + "id": "8D3F10", + "listtype": "W" + }] + }, { + "metric": [{ + "id": "8D5AC0", + "listtype": " " + }, { + "id": "8D6F20", + "listtype": " " + }, { + "id": "8D6F30", + "listtype": " " + }, { + "id": "8D6F40", + "listtype": " " + }, { + "id": "8D6F50", + "listtype": " " + }, { + "id": "8D6F60", + "listtype": " " + }, { + "id": "8D6F70", + "listtype": " " + }, { + "id": "8D5B30", + "listtype": " " + }, { + "id": "8D5B40", + "listtype": " " + }, { + "id": "8D5C10", + "listtype": " " + }, { + "id": "8D5C20", + "listtype": " " + }, { + "id": "8D5A90", + "listtype": "Z" + }, { + "id": "8D5AB0", + "listtype": "Z" + }, { + "id": "8D5AE0", + "listtype": "Z" + }, { + "id": "8D5B00", + "listtype": "Z" + }, { + "id": "8D5B20", + "listtype": "Z" + }, { + "id": "8D5B60", + "listtype": "Z" + }, { + "id": "8D5B80", + "listtype": "Z" + }, { + "id": "8D5BA0", + "listtype": "Z" + }, { + "id": "8D5BC0", + "listtype": "Z" + }, { + "id": "8D5BE0", + "listtype": "Z" + }, { + "id": "8D5C00", + "listtype": "Z" + }] + }, { + "metric": [{ + "id": "8D5A80", + "listtype": " " + }, { + "id": "8D5AA0", + "listtype": " " + }, { + "id": "8D5AD0", + "listtype": " " + }, { + "id": "8D5AF0", + "listtype": " " + }, { + "id": "8D5B10", + "listtype": " " + }, { + "id": "8D5B50", + "listtype": " " + }, { + "id": "8D5B70", + "listtype": " " + }, { + "id": "8D5B90", + "listtype": " " + }, { + "id": "8D5BB0", + "listtype": " " + }, { + "id": "8D5BD0", + "listtype": " " + }, { + "id": "8D5BF0", + "listtype": " " + }] + }, { + "metric": [{ + "id": "8D0050", + "listtype": " " + }, { + "id": "8D0410", + "listtype": " " + }, { + "id": "8D0530", + "listtype": " " + }, { + "id": "8D0BC0", + "listtype": " " + }, { + "id": "8D0C90", + "listtype": " " + }, { + "id": "8D0CE0", + "listtype": " " + }, { + "id": "8D0540", + "listtype": "J" + }, { + "id": "8D0CA0", + "listtype": "J" + }, { + "id": "8D0CF0", + "listtype": "J" + }] + }, { + "metric": [{ + "id": "8D21E0", + "listtype": " " + }, { + "id": "8D2230", + "listtype": " " + }, { + "id": "8D2290", + "listtype": " " + }, { + "id": "8D22B0", + "listtype": " " + }, { + "id": "8D22D0", + "listtype": " " + }, { + "id": "8D22F0", + "listtype": " " + }, { + "id": "8D2220", + "listtype": "V" + }, { + "id": "8D2270", + "listtype": "V" + }, { + "id": "8D2320", + "listtype": "V" + }, { + "id": "8D2350", + "listtype": "V" + }] + }, { + "metric": [{ + "id": "8D0130", + "listtype": " " + }, { + "id": "8D0280", + "listtype": " " + }, { + "id": "8D02A0", + "listtype": " " + }, { + "id": "8D02C0", + "listtype": " " + }, { + "id": "8D02E0", + "listtype": " " + }, { + "id": "8D0300", + "listtype": " " + }, { + "id": "8D41A0", + "listtype": " " + }, { + "id": "8D41B0", + "listtype": " " + }, { + "id": "8D4550", + "listtype": " " + }, { + "id": "8D4560", + "listtype": " " + }, { + "id": "8D41C0", + "listtype": " " + }, { + "id": "8D5F90", + "listtype": " " + }, { + "id": "8D5C30", + "listtype": " " + }, { + "id": "8D41D0", + "listtype": " " + }, { + "id": "8D4CB0", + "listtype": " " + }, { + "id": "8D4250", + "listtype": " " + }, { + "id": "8D4210", + "listtype": " " + }, { + "id": "8D4230", + "listtype": " " + }, { + "id": "8D41F0", + "listtype": " " + }, { + "id": "8D6F80", + "listtype": " " + }, { + "id": "8D6FA0", + "listtype": " " + }, { + "id": "8D6FC0", + "listtype": " " + }, { + "id": "8D6FE0", + "listtype": " " + }, { + "id": "8D7000", + "listtype": " " + }, { + "id": "8D7020", + "listtype": " " + }, { + "id": "8D7040", + "listtype": " " + }, { + "id": "8D7060", + "listtype": " " + }, { + "id": "8D7080", + "listtype": " " + }, { + "id": "8D70A0", + "listtype": " " + }, { + "id": "8D70B0", + "listtype": " " + }, { + "id": "8D70E0", + "listtype": " " + }, { + "id": "8D7100", + "listtype": " " + }, { + "id": "8D7120", + "listtype": " " + }, { + "id": "8D42A0", + "listtype": " " + }, { + "id": "8D5C40", + "listtype": " " + }, { + "id": "8D0B60", + "listtype": " " + }, { + "id": "8D2ED0", + "listtype": " " + }, { + "id": "8D0BD0", + "listtype": " " + }, { + "id": "8D47E0", + "listtype": " " + }, { + "id": "8D4800", + "listtype": " " + }, { + "id": "8D4820", + "listtype": " " + }, { + "id": "8D0C30", + "listtype": " " + }, { + "id": "8D0CC0", + "listtype": " " + }, { + "id": "8D0D00", + "listtype": " " + }, { + "id": "8D4350", + "listtype": " " + }, { + "id": "8D4270", + "listtype": " " + }, { + "id": "8D4280", + "listtype": " " + }, { + "id": "8D4290", + "listtype": " " + }, { + "id": "8D42C0", + "listtype": " " + }, { + "id": "8D42F0", + "listtype": " " + }, { + "id": "8D42E0", + "listtype": " " + }, { + "id": "8D4570", + "listtype": " " + }, { + "id": "8D4310", + "listtype": " " + }, { + "id": "8D4CD0", + "listtype": " " + }, { + "id": "8D4620", + "listtype": " " + }, { + "id": "8D4580", + "listtype": " " + }, { + "id": "8D4630", + "listtype": " " + }, { + "id": "8D4650", + "listtype": " " + }, { + "id": "8D4640", + "listtype": " " + }, { + "id": "8D5FA0", + "listtype": " " + }, { + "id": "8D4600", + "listtype": " " + }, { + "id": "8D4590", + "listtype": " " + }, { + "id": "8D45A0", + "listtype": " " + }, { + "id": "8D45B0", + "listtype": " " + }, { + "id": "8D45D0", + "listtype": " " + }, { + "id": "8D4CF0", + "listtype": " " + }, { + "id": "8D45E0", + "listtype": " " + }, { + "id": "8D4610", + "listtype": " " + }, { + "id": "8D4660", + "listtype": " " + }, { + "id": "8D4330", + "listtype": " " + }, { + "id": "8D5C60", + "listtype": " " + }, { + "id": "8D5C70", + "listtype": " " + }, { + "id": "8D4370", + "listtype": " " + }, { + "id": "8D0ED0", + "listtype": " " + }, { + "id": "8D1030", + "listtype": " " + }, { + "id": "8D1080", + "listtype": " " + }, { + "id": "8D1270", + "listtype": " " + }, { + "id": "8D28C0", + "listtype": "E" + }, { + "id": "8D01D0", + "listtype": "J" + }, { + "id": "8D0290", + "listtype": "J" + }, { + "id": "8D02B0", + "listtype": "J" + }, { + "id": "8D02D0", + "listtype": "J" + }, { + "id": "8D02F0", + "listtype": "J" + }, { + "id": "8D0310", + "listtype": "J" + }, { + "id": "8D41E0", + "listtype": "J" + }, { + "id": "8D4CC0", + "listtype": "J" + }, { + "id": "8D4260", + "listtype": "J" + }, { + "id": "8D4220", + "listtype": "J" + }, { + "id": "8D4240", + "listtype": "J" + }, { + "id": "8D4200", + "listtype": "J" + }, { + "id": "8D6F90", + "listtype": "J" + }, { + "id": "8D6FB0", + "listtype": "J" + }, { + "id": "8D6FD0", + "listtype": "J" + }, { + "id": "8D6FF0", + "listtype": "J" + }, { + "id": "8D7010", + "listtype": "J" + }, { + "id": "8D7030", + "listtype": "J" + }, { + "id": "8D7090", + "listtype": "J" + }, { + "id": "8D70F0", + "listtype": "J" + }, { + "id": "8D7110", + "listtype": "J" + }, { + "id": "8D7130", + "listtype": "J" + }, { + "id": "8D42B0", + "listtype": "J" + }, { + "id": "8D5C50", + "listtype": "J" + }, { + "id": "8D0B70", + "listtype": "J" + }, { + "id": "8D47F0", + "listtype": "J" + }, { + "id": "8D4810", + "listtype": "J" + }, { + "id": "8D4830", + "listtype": "J" + }, { + "id": "8D0BE0", + "listtype": "J" + }, { + "id": "8D0C40", + "listtype": "J" + }, { + "id": "8D0CD0", + "listtype": "J" + }, { + "id": "8D0D10", + "listtype": "J" + }, { + "id": "8D4360", + "listtype": "J" + }, { + "id": "8D42D0", + "listtype": "J" + }, { + "id": "8D4300", + "listtype": "J" + }, { + "id": "8D4320", + "listtype": "J" + }, { + "id": "8D4CE0", + "listtype": "J" + }, { + "id": "8D45C0", + "listtype": "J" + }, { + "id": "8D45F0", + "listtype": "J" + }, { + "id": "8D4340", + "listtype": "J" + }, { + "id": "8D5C80", + "listtype": "J" + }, { + "id": "8D4380", + "listtype": "J" + }, { + "id": "8D0EE0", + "listtype": "J" + }, { + "id": "8D1090", + "listtype": "J" + }, { + "id": "8D1280", + "listtype": "J" + }, { + "id": "8D2930", + "listtype": "K" + }, { + "id": "8D29E0", + "listtype": "K" + }, { + "id": "8D29F0", + "listtype": "K" + }, { + "id": "8D2A00", + "listtype": "K" + }, { + "id": "8D2A10", + "listtype": "K" + }, { + "id": "8D2A20", + "listtype": "K" + }, { + "id": "8D2EC0", + "listtype": "K" + }, { + "id": "8D2EF0", + "listtype": "K" + }, { + "id": "8D2F00", + "listtype": "K" + }, { + "id": "8D3120", + "listtype": "K" + }, { + "id": "8D17F0", + "listtype": "P" + }, { + "id": "8D1900", + "listtype": "P" + }, { + "id": "8D1940", + "listtype": "P" + }, { + "id": "8D1980", + "listtype": "P" + }, { + "id": "8D19C0", + "listtype": "P" + }, { + "id": "8D1A00", + "listtype": "P" + }, { + "id": "8D0BA0", + "listtype": "P" + }, { + "id": "8D0C10", + "listtype": "P" + }, { + "id": "8D0C70", + "listtype": "P" + }, { + "id": "8D1060", + "listtype": "P" + }, { + "id": "8D16B0", + "listtype": "R" + }, { + "id": "8D18E0", + "listtype": "R" + }, { + "id": "8D1920", + "listtype": "R" + }, { + "id": "8D1960", + "listtype": "R" + }, { + "id": "8D19A0", + "listtype": "R" + }, { + "id": "8D19E0", + "listtype": "R" + }, { + "id": "8D0B80", + "listtype": "R" + }, { + "id": "8D0BF0", + "listtype": "R" + }, { + "id": "8D0C50", + "listtype": "R" + }, { + "id": "8D1040", + "listtype": "R" + }, { + "id": "8D1750", + "listtype": "S" + }, { + "id": "8D18F0", + "listtype": "S" + }, { + "id": "8D1930", + "listtype": "S" + }, { + "id": "8D1970", + "listtype": "S" + }, { + "id": "8D19B0", + "listtype": "S" + }, { + "id": "8D19F0", + "listtype": "S" + }, { + "id": "8D0B90", + "listtype": "S" + }, { + "id": "8D0C00", + "listtype": "S" + }, { + "id": "8D0C60", + "listtype": "S" + }, { + "id": "8D1050", + "listtype": "S" + }, { + "id": "8D1890", + "listtype": "W" + }, { + "id": "8D1910", + "listtype": "W" + }, { + "id": "8D1950", + "listtype": "W" + }, { + "id": "8D1990", + "listtype": "W" + }, { + "id": "8D19D0", + "listtype": "W" + }, { + "id": "8D1A10", + "listtype": "W" + }, { + "id": "8D0BB0", + "listtype": "W" + }, { + "id": "8D0C20", + "listtype": "W" + }, { + "id": "8D0C80", + "listtype": "W" + }, { + "id": "8D1070", + "listtype": "W" + }] + }, { + "metric": [{ + "id": "8D0140", + "listtype": " " + }, { + "id": "8D01E0", + "listtype": "J" + }, { + "id": "8D2940", + "listtype": "K" + }, { + "id": "8D1800", + "listtype": "P" + }, { + "id": "8D16C0", + "listtype": "R" + }, { + "id": "8D1760", + "listtype": "S" + }, { + "id": "8D18A0", + "listtype": "W" + }] + }, { + "metric": [{ + "id": "8D0160", + "listtype": " " + }, { + "id": "8D1A20", + "listtype": " " + }, { + "id": "8D1A80", + "listtype": " " + }, { + "id": "8D1AE0", + "listtype": " " + }, { + "id": "8D1B40", + "listtype": " " + }, { + "id": "8D1BA0", + "listtype": " " + }, { + "id": "8D1C00", + "listtype": " " + }, { + "id": "8D04A0", + "listtype": " " + }, { + "id": "8D1D40", + "listtype": " " + }, { + "id": "8D1DB0", + "listtype": " " + }, { + "id": "8D0550", + "listtype": " " + }, { + "id": "8D1ED0", + "listtype": " " + }, { + "id": "8D1F30", + "listtype": " " + }, { + "id": "8D0620", + "listtype": " " + }, { + "id": "8D0680", + "listtype": " " + }, { + "id": "8D0D50", + "listtype": " " + }, { + "id": "8D0E40", + "listtype": " " + }, { + "id": "8D5DF0", + "listtype": " " + }, { + "id": "8D0EB0", + "listtype": " " + }, { + "id": "8D0F00", + "listtype": " " + }, { + "id": "8D0FA0", + "listtype": " " + }, { + "id": "8D0E90", + "listtype": " " + }, { + "id": "8D0FE0", + "listtype": " " + }, { + "id": "8D1000", + "listtype": " " + }, { + "id": "8D10A0", + "listtype": " " + }, { + "id": "8D5E50", + "listtype": " " + }, { + "id": "8D1110", + "listtype": " " + }, { + "id": "8D5EC0", + "listtype": " " + }, { + "id": "8D11B0", + "listtype": " " + }, { + "id": "8D5F70", + "listtype": " " + }, { + "id": "8D11D0", + "listtype": " " + }, { + "id": "8D1FB0", + "listtype": " " + }, { + "id": "8D11F0", + "listtype": " " + }, { + "id": "8D1200", + "listtype": " " + }, { + "id": "8D3310", + "listtype": "A" + }, { + "id": "8D2560", + "listtype": "A" + }, { + "id": "8D32E0", + "listtype": "A" + }, { + "id": "8D3340", + "listtype": "A" + }, { + "id": "8D3400", + "listtype": "A" + }, { + "id": "8D25B0", + "listtype": "A" + }, { + "id": "8D47B0", + "listtype": "A" + }, { + "id": "8D47D0", + "listtype": "A" + }, { + "id": "8D24A0", + "listtype": "A" + }, { + "id": "8D25F0", + "listtype": "A" + }, { + "id": "8D43F0", + "listtype": "A" + }, { + "id": "8D4AA0", + "listtype": "A" + }, { + "id": "8D4AC0", + "listtype": "A" + }, { + "id": "8D4540", + "listtype": "A" + }, { + "id": "8D2640", + "listtype": "A" + }, { + "id": "8D2670", + "listtype": "A" + }, { + "id": "8D2690", + "listtype": "A" + }, { + "id": "8D4470", + "listtype": "A" + }, { + "id": "8D4B20", + "listtype": "A" + }, { + "id": "8D4B40", + "listtype": "A" + }, { + "id": "8D4B80", + "listtype": "A" + }, { + "id": "8D4BA0", + "listtype": "A" + }, { + "id": "8D4BE0", + "listtype": "A" + }, { + "id": "8D4C00", + "listtype": "A" + }, { + "id": "8D2760", + "listtype": "B" + }, { + "id": "8D27A0", + "listtype": "B" + }, { + "id": "8D2A30", + "listtype": "B" + }, { + "id": "8D2A80", + "listtype": "B" + }, { + "id": "8D4760", + "listtype": "B" + }, { + "id": "8D2420", + "listtype": "B" + }, { + "id": "8D2440", + "listtype": "B" + }, { + "id": "8D2460", + "listtype": "B" + }, { + "id": "8D34D0", + "listtype": "B" + }, { + "id": "8D3580", + "listtype": "B" + }, { + "id": "8D2480", + "listtype": "B" + }, { + "id": "8D4850", + "listtype": "B" + }, { + "id": "8D4880", + "listtype": "B" + }, { + "id": "8D48B0", + "listtype": "B" + }, { + "id": "8D48E0", + "listtype": "B" + }, { + "id": "8D4910", + "listtype": "B" + }, { + "id": "8D4960", + "listtype": "B" + }, { + "id": "8D4990", + "listtype": "B" + }, { + "id": "8D4A20", + "listtype": "B" + }, { + "id": "8D4A50", + "listtype": "B" + }, { + "id": "8D0070", + "listtype": "C" + }, { + "id": "8D0090", + "listtype": "C" + }, { + "id": "8D2040", + "listtype": "D" + }, { + "id": "8D2090", + "listtype": "D" + }, { + "id": "8D4680", + "listtype": "F" + }, { + "id": "8D2070", + "listtype": "F" + }, { + "id": "8D46A0", + "listtype": "F" + }, { + "id": "8D2010", + "listtype": "F" + }, { + "id": "8D2030", + "listtype": "F" + }, { + "id": "8D46C0", + "listtype": "F" + }, { + "id": "8D46E0", + "listtype": "F" + }, { + "id": "8D4700", + "listtype": "F" + }, { + "id": "8D4720", + "listtype": "F" + }, { + "id": "8D4740", + "listtype": "F" + }, { + "id": "8D21B0", + "listtype": "F" + }, { + "id": "8D4FF0", + "listtype": "G" + }, { + "id": "8D5000", + "listtype": "G" + }, { + "id": "8D5020", + "listtype": "G" + }, { + "id": "8D5030", + "listtype": "G" + }, { + "id": "8D5050", + "listtype": "G" + }, { + "id": "8D5060", + "listtype": "G" + }, { + "id": "8D5080", + "listtype": "G" + }, { + "id": "8D5090", + "listtype": "G" + }, { + "id": "8D50B0", + "listtype": "G" + }, { + "id": "8D50C0", + "listtype": "G" + }, { + "id": "8D50E0", + "listtype": "G" + }, { + "id": "8D50F0", + "listtype": "G" + }, { + "id": "8D5110", + "listtype": "G" + }, { + "id": "8D5120", + "listtype": "G" + }, { + "id": "8D5140", + "listtype": "G" + }, { + "id": "8D5150", + "listtype": "G" + }, { + "id": "8D5170", + "listtype": "G" + }, { + "id": "8D5180", + "listtype": "G" + }, { + "id": "8D51A0", + "listtype": "G" + }, { + "id": "8D51B0", + "listtype": "G" + }, { + "id": "8D51D0", + "listtype": "G" + }, { + "id": "8D51E0", + "listtype": "G" + }, { + "id": "8D5200", + "listtype": "G" + }, { + "id": "8D5210", + "listtype": "G" + }, { + "id": "8D5230", + "listtype": "G" + }, { + "id": "8D5240", + "listtype": "G" + }, { + "id": "8D5260", + "listtype": "G" + }, { + "id": "8D5270", + "listtype": "G" + }, { + "id": "8D5290", + "listtype": "G" + }, { + "id": "8D52A0", + "listtype": "G" + }, { + "id": "8D52C0", + "listtype": "G" + }, { + "id": "8D52D0", + "listtype": "G" + }, { + "id": "8D52F0", + "listtype": "G" + }, { + "id": "8D5300", + "listtype": "G" + }, { + "id": "8D5320", + "listtype": "G" + }, { + "id": "8D5330", + "listtype": "G" + }, { + "id": "8D5350", + "listtype": "G" + }, { + "id": "8D5360", + "listtype": "G" + }, { + "id": "8D5380", + "listtype": "G" + }, { + "id": "8D5390", + "listtype": "G" + }, { + "id": "8D5970", + "listtype": "G" + }, { + "id": "8D5980", + "listtype": "G" + }, { + "id": "8D59A0", + "listtype": "G" + }, { + "id": "8D59B0", + "listtype": "G" + }, { + "id": "8D59D0", + "listtype": "G" + }, { + "id": "8D59E0", + "listtype": "G" + }, { + "id": "8D5A00", + "listtype": "G" + }, { + "id": "8D5A10", + "listtype": "G" + }, { + "id": "8D5A30", + "listtype": "G" + }, { + "id": "8D5A40", + "listtype": "G" + }, { + "id": "8D5A60", + "listtype": "G" + }, { + "id": "8D5A70", + "listtype": "G" + }, { + "id": "8D2960", + "listtype": "K" + }, { + "id": "8D2980", + "listtype": "K" + }, { + "id": "8D2990", + "listtype": "K" + }, { + "id": "8D29A0", + "listtype": "K" + }, { + "id": "8D29B0", + "listtype": "K" + }, { + "id": "8D29C0", + "listtype": "K" + }, { + "id": "8D29D0", + "listtype": "K" + }, { + "id": "8D2B30", + "listtype": "K" + }, { + "id": "8D2B60", + "listtype": "K" + }, { + "id": "8D2B70", + "listtype": "K" + }, { + "id": "8D2B80", + "listtype": "K" + }, { + "id": "8D2BB0", + "listtype": "K" + }, { + "id": "8D7F60", + "listtype": "K" + }, { + "id": "8D2D60", + "listtype": "K" + }, { + "id": "8D2F40", + "listtype": "K" + }, { + "id": "8D5E10", + "listtype": "K" + }, { + "id": "8D2FC0", + "listtype": "K" + }, { + "id": "8D3080", + "listtype": "K" + }, { + "id": "8D3100", + "listtype": "K" + }, { + "id": "8D3110", + "listtype": "K" + }, { + "id": "8D5E70", + "listtype": "K" + }, { + "id": "8D3130", + "listtype": "K" + }, { + "id": "8D5F00", + "listtype": "K" + }, { + "id": "8D31B0", + "listtype": "K" + }, { + "id": "8D3230", + "listtype": "K" + }, { + "id": "8D6EE0", + "listtype": "K" + }, { + "id": "8D0690", + "listtype": "L" + }, { + "id": "8D0EC0", + "listtype": "L" + }, { + "id": "8D1650", + "listtype": "M" + }, { + "id": "8D0220", + "listtype": "M" + }, { + "id": "8D1A70", + "listtype": "M" + }, { + "id": "8D1AD0", + "listtype": "M" + }, { + "id": "8D1B30", + "listtype": "M" + }, { + "id": "8D1B90", + "listtype": "M" + }, { + "id": "8D1BF0", + "listtype": "M" + }, { + "id": "8D1C50", + "listtype": "M" + }, { + "id": "8D0400", + "listtype": "M" + }, { + "id": "8D0490", + "listtype": "M" + }, { + "id": "8D0520", + "listtype": "M" + }, { + "id": "8D1DA0", + "listtype": "M" + }, { + "id": "8D1E00", + "listtype": "M" + }, { + "id": "8D0570", + "listtype": "M" + }, { + "id": "8D1F20", + "listtype": "M" + }, { + "id": "8D1F80", + "listtype": "M" + }, { + "id": "8D0450", + "listtype": "M" + }, { + "id": "8D2410", + "listtype": "M" + }, { + "id": "8D2430", + "listtype": "M" + }, { + "id": "8D2450", + "listtype": "M" + }, { + "id": "8D2470", + "listtype": "M" + }, { + "id": "8D0630", + "listtype": "M" + }, { + "id": "8D7050", + "listtype": "M" + }, { + "id": "8D7070", + "listtype": "M" + }, { + "id": "8D70C0", + "listtype": "M" + }, { + "id": "8D70D0", + "listtype": "M" + }, { + "id": "8D0D60", + "listtype": "M" + }, { + "id": "8D0F10", + "listtype": "M" + }, { + "id": "8D1FA0", + "listtype": "M" + }, { + "id": "8D1210", + "listtype": "M" + }, { + "id": "8D1FE0", + "listtype": "M" + }, { + "id": "8D53B0", + "listtype": "M" + }, { + "id": "8D53D0", + "listtype": "M" + }, { + "id": "8D53F0", + "listtype": "M" + }, { + "id": "8D5410", + "listtype": "M" + }, { + "id": "8D5430", + "listtype": "M" + }, { + "id": "8D5450", + "listtype": "M" + }, { + "id": "8D5470", + "listtype": "M" + }, { + "id": "8D5490", + "listtype": "M" + }, { + "id": "8D54B0", + "listtype": "M" + }, { + "id": "8D54D0", + "listtype": "M" + }, { + "id": "8D54F0", + "listtype": "M" + }, { + "id": "8D5510", + "listtype": "M" + }, { + "id": "8D5530", + "listtype": "M" + }, { + "id": "8D5550", + "listtype": "M" + }, { + "id": "8D5570", + "listtype": "M" + }, { + "id": "8D5590", + "listtype": "M" + }, { + "id": "8D55B0", + "listtype": "M" + }, { + "id": "8D55D0", + "listtype": "M" + }, { + "id": "8D55F0", + "listtype": "M" + }, { + "id": "8D5610", + "listtype": "M" + }, { + "id": "8D5630", + "listtype": "M" + }, { + "id": "8D5650", + "listtype": "M" + }, { + "id": "8D5670", + "listtype": "M" + }, { + "id": "8D5690", + "listtype": "M" + }, { + "id": "8D56B0", + "listtype": "M" + }, { + "id": "8D56D0", + "listtype": "M" + }, { + "id": "8D56F0", + "listtype": "M" + }, { + "id": "8D5710", + "listtype": "M" + }, { + "id": "8D5730", + "listtype": "M" + }, { + "id": "8D5750", + "listtype": "M" + }, { + "id": "8D5770", + "listtype": "M" + }, { + "id": "8D5790", + "listtype": "M" + }, { + "id": "8D57B0", + "listtype": "M" + }, { + "id": "8D57D0", + "listtype": "M" + }, { + "id": "8D57F0", + "listtype": "M" + }, { + "id": "8D5810", + "listtype": "M" + }, { + "id": "8D5830", + "listtype": "M" + }, { + "id": "8D5850", + "listtype": "M" + }, { + "id": "8D5870", + "listtype": "M" + }, { + "id": "8D5890", + "listtype": "M" + }, { + "id": "8D58B0", + "listtype": "M" + }, { + "id": "8D58D0", + "listtype": "M" + }, { + "id": "8D58F0", + "listtype": "M" + }, { + "id": "8D5910", + "listtype": "M" + }, { + "id": "8D5930", + "listtype": "M" + }, { + "id": "8D5950", + "listtype": "M" + }, { + "id": "8D2890", + "listtype": "N" + }, { + "id": "8D2B00", + "listtype": "N" + }, { + "id": "8D1820", + "listtype": "P" + }, { + "id": "8D1A50", + "listtype": "P" + }, { + "id": "8D1AB0", + "listtype": "P" + }, { + "id": "8D1B10", + "listtype": "P" + }, { + "id": "8D1B70", + "listtype": "P" + }, { + "id": "8D1BD0", + "listtype": "P" + }, { + "id": "8D1C30", + "listtype": "P" + }, { + "id": "8D1CE0", + "listtype": "P" + }, { + "id": "8D1D80", + "listtype": "P" + }, { + "id": "8D1DE0", + "listtype": "P" + }, { + "id": "8D05A0", + "listtype": "P" + }, { + "id": "8D1F00", + "listtype": "P" + }, { + "id": "8D1F60", + "listtype": "P" + }, { + "id": "8D0660", + "listtype": "P" + }, { + "id": "8D0D90", + "listtype": "P" + }, { + "id": "8D5E30", + "listtype": "P" + }, { + "id": "8D0E70", + "listtype": "P" + }, { + "id": "8D0F70", + "listtype": "P" + }, { + "id": "8D0FB0", + "listtype": "P" + }, { + "id": "8D2380", + "listtype": "P" + }, { + "id": "8D0FF0", + "listtype": "P" + }, { + "id": "8D1010", + "listtype": "P" + }, { + "id": "8D1020", + "listtype": "P" + }, { + "id": "8D5E90", + "listtype": "P" + }, { + "id": "8D10D0", + "listtype": "P" + }, { + "id": "8D5F40", + "listtype": "P" + }, { + "id": "8D1180", + "listtype": "P" + }, { + "id": "8D5F80", + "listtype": "P" + }, { + "id": "8D11C0", + "listtype": "P" + }, { + "id": "8D11E0", + "listtype": "P" + }, { + "id": "8D1240", + "listtype": "P" + }, { + "id": "8D6F00", + "listtype": "P" + }, { + "id": "8D16E0", + "listtype": "R" + }, { + "id": "8D1A30", + "listtype": "R" + }, { + "id": "8D1A90", + "listtype": "R" + }, { + "id": "8D1AF0", + "listtype": "R" + }, { + "id": "8D1B50", + "listtype": "R" + }, { + "id": "8D1BB0", + "listtype": "R" + }, { + "id": "8D1C10", + "listtype": "R" + }, { + "id": "8D1C60", + "listtype": "R" + }, { + "id": "8D1D60", + "listtype": "R" + }, { + "id": "8D1DC0", + "listtype": "R" + }, { + "id": "8D0580", + "listtype": "R" + }, { + "id": "8D1EE0", + "listtype": "R" + }, { + "id": "8D1F40", + "listtype": "R" + }, { + "id": "8D0640", + "listtype": "R" + }, { + "id": "8D0D70", + "listtype": "R" + }, { + "id": "8D5E00", + "listtype": "R" + }, { + "id": "8D0E50", + "listtype": "R" + }, { + "id": "8D0F30", + "listtype": "R" + }, { + "id": "8D5E60", + "listtype": "R" + }, { + "id": "8D10B0", + "listtype": "R" + }, { + "id": "8D5EE0", + "listtype": "R" + }, { + "id": "8D1140", + "listtype": "R" + }, { + "id": "8D1220", + "listtype": "R" + }, { + "id": "8D6ED0", + "listtype": "R" + }, { + "id": "8D1780", + "listtype": "S" + }, { + "id": "8D1A40", + "listtype": "S" + }, { + "id": "8D1AA0", + "listtype": "S" + }, { + "id": "8D1B00", + "listtype": "S" + }, { + "id": "8D1B60", + "listtype": "S" + }, { + "id": "8D1BC0", + "listtype": "S" + }, { + "id": "8D1C20", + "listtype": "S" + }, { + "id": "8D1CB0", + "listtype": "S" + }, { + "id": "8D1D70", + "listtype": "S" + }, { + "id": "8D1DD0", + "listtype": "S" + }, { + "id": "8D0590", + "listtype": "S" + }, { + "id": "8D1EF0", + "listtype": "S" + }, { + "id": "8D1F50", + "listtype": "S" + }, { + "id": "8D0650", + "listtype": "S" + }, { + "id": "8D0D80", + "listtype": "S" + }, { + "id": "8D5E20", + "listtype": "S" + }, { + "id": "8D0E60", + "listtype": "S" + }, { + "id": "8D0F50", + "listtype": "S" + }, { + "id": "8D6E80", + "listtype": "S" + }, { + "id": "8D6EB0", + "listtype": "S" + }, { + "id": "8D5E80", + "listtype": "S" + }, { + "id": "8D10C0", + "listtype": "S" + }, { + "id": "8D5F20", + "listtype": "S" + }, { + "id": "8D1160", + "listtype": "S" + }, { + "id": "8D1FC0", + "listtype": "S" + }, { + "id": "8D1FD0", + "listtype": "S" + }, { + "id": "8D1230", + "listtype": "S" + }, { + "id": "8D6EF0", + "listtype": "S" + }, { + "id": "8D39D0", + "listtype": "T" + }, { + "id": "8D20B0", + "listtype": "T" + }, { + "id": "8D20F0", + "listtype": "T" + }, { + "id": "8D2130", + "listtype": "T" + }, { + "id": "8D2170", + "listtype": "T" + }, { + "id": "8D0340", + "listtype": "U" + }, { + "id": "8D05D0", + "listtype": "U" + }, { + "id": "8D0020", + "listtype": "V" + }, { + "id": "8D00D0", + "listtype": "V" + }, { + "id": "8D0250", + "listtype": "V" + }, { + "id": "8D0360", + "listtype": "V" + }, { + "id": "8D0440", + "listtype": "V" + }, { + "id": "8D0EA0", + "listtype": "V" + }, { + "id": "8D12A0", + "listtype": "V" + }, { + "id": "8D1120", + "listtype": "V" + }, { + "id": "8D12C0", + "listtype": "V" + }, { + "id": "8D18C0", + "listtype": "W" + }, { + "id": "8D1A60", + "listtype": "W" + }, { + "id": "8D1AC0", + "listtype": "W" + }, { + "id": "8D1B20", + "listtype": "W" + }, { + "id": "8D1B80", + "listtype": "W" + }, { + "id": "8D1BE0", + "listtype": "W" + }, { + "id": "8D1C40", + "listtype": "W" + }, { + "id": "8D1D10", + "listtype": "W" + }, { + "id": "8D1D90", + "listtype": "W" + }, { + "id": "8D1DF0", + "listtype": "W" + }, { + "id": "8D05B0", + "listtype": "W" + }, { + "id": "8D1F10", + "listtype": "W" + }, { + "id": "8D1F70", + "listtype": "W" + }, { + "id": "8D0670", + "listtype": "W" + }, { + "id": "8D0DA0", + "listtype": "W" + }, { + "id": "8D5E40", + "listtype": "W" + }, { + "id": "8D0E80", + "listtype": "W" + }, { + "id": "8D0F90", + "listtype": "W" + }, { + "id": "8D5EA0", + "listtype": "W" + }, { + "id": "8D10E0", + "listtype": "W" + }, { + "id": "8D5F60", + "listtype": "W" + }, { + "id": "8D11A0", + "listtype": "W" + }, { + "id": "8D1250", + "listtype": "W" + }, { + "id": "8D6F10", + "listtype": "W" + }, { + "id": "8D3320", + "listtype": "X" + }, { + "id": "8D2550", + "listtype": "X" + }, { + "id": "8D32F0", + "listtype": "X" + }, { + "id": "8D3350", + "listtype": "X" + }, { + "id": "8D3410", + "listtype": "X" + }, { + "id": "8D33D0", + "listtype": "X" + }, { + "id": "8D3370", + "listtype": "X" + }, { + "id": "8D3390", + "listtype": "X" + }, { + "id": "8D33F0", + "listtype": "X" + }, { + "id": "8D3430", + "listtype": "X" + }, { + "id": "8D25D0", + "listtype": "X" + }, { + "id": "8D3E00", + "listtype": "1" + }, { + "id": "8D3E40", + "listtype": "1" + }, { + "id": "8D3E10", + "listtype": "2" + }, { + "id": "8D3E50", + "listtype": "2" + }, { + "id": "8D38A0", + "listtype": "3" + }, { + "id": "8D3DB0", + "listtype": "3" + }, { + "id": "8D3DC0", + "listtype": "3" + }, { + "id": "8D3DD0", + "listtype": "3" + }, { + "id": "8D3DE0", + "listtype": "3" + }, { + "id": "8D3DF0", + "listtype": "3" + }, { + "id": "8D3E30", + "listtype": "3" + }, { + "id": "8D3E60", + "listtype": "3" + }, { + "id": "8D3E80", + "listtype": "3" + }, { + "id": "8D3E90", + "listtype": "3" + }, { + "id": "8D3EB0", + "listtype": "3" + }, { + "id": "8D3660", + "listtype": "4" + }, { + "id": "8D36F0", + "listtype": "4" + }, { + "id": "8D3700", + "listtype": "4" + }, { + "id": "8D38B0", + "listtype": "4" + }, { + "id": "8D3DA0", + "listtype": "4" + }, { + "id": "8D3E70", + "listtype": "4" + }, { + "id": "8D3EA0", + "listtype": "4" + }, { + "id": "8D3EC0", + "listtype": "4" + }, { + "id": "8D3E20", + "listtype": "5" + }, { + "id": "8D6470", + "listtype": "6" + }, { + "id": "8D6490", + "listtype": "6" + }, { + "id": "8D64B0", + "listtype": "6" + }, { + "id": "8D64D0", + "listtype": "6" + }, { + "id": "8D64F0", + "listtype": "6" + }, { + "id": "8D6510", + "listtype": "6" + }, { + "id": "8D6530", + "listtype": "6" + }, { + "id": "8D6550", + "listtype": "6" + }, { + "id": "8D6570", + "listtype": "6" + }, { + "id": "8D6590", + "listtype": "6" + }, { + "id": "8D65B0", + "listtype": "6" + }, { + "id": "8D65D0", + "listtype": "6" + }, { + "id": "8D65F0", + "listtype": "6" + }, { + "id": "8D6610", + "listtype": "6" + }, { + "id": "8D6630", + "listtype": "6" + }, { + "id": "8D6650", + "listtype": "6" + }, { + "id": "8D6670", + "listtype": "6" + }, { + "id": "8D6690", + "listtype": "6" + }, { + "id": "8D66B0", + "listtype": "6" + }, { + "id": "8D66D0", + "listtype": "6" + }, { + "id": "8D66F0", + "listtype": "6" + }, { + "id": "8D6710", + "listtype": "6" + }, { + "id": "8D6730", + "listtype": "6" + }, { + "id": "8D6750", + "listtype": "6" + }, { + "id": "8D6770", + "listtype": "6" + }, { + "id": "8D6790", + "listtype": "6" + }, { + "id": "8D67B0", + "listtype": "6" + }, { + "id": "8D67D0", + "listtype": "6" + }, { + "id": "8D67E0", + "listtype": "6" + }, { + "id": "8D67F0", + "listtype": "6" + }, { + "id": "8D6830", + "listtype": "6" + }, { + "id": "8D6850", + "listtype": "6" + }, { + "id": "8D6870", + "listtype": "6" + }, { + "id": "8D6890", + "listtype": "6" + }, { + "id": "8D68B0", + "listtype": "6" + }, { + "id": "8D68D0", + "listtype": "6" + }, { + "id": "8D68F0", + "listtype": "6" + }, { + "id": "8D6910", + "listtype": "6" + }, { + "id": "8D6930", + "listtype": "6" + }, { + "id": "8D6950", + "listtype": "6" + }, { + "id": "8D6970", + "listtype": "6" + }, { + "id": "8D6990", + "listtype": "6" + }, { + "id": "8D69B0", + "listtype": "6" + }, { + "id": "8D69D0", + "listtype": "6" + }, { + "id": "8D69F0", + "listtype": "6" + }, { + "id": "8D6A10", + "listtype": "6" + }, { + "id": "8D6A30", + "listtype": "6" + }, { + "id": "8D6A50", + "listtype": "6" + }, { + "id": "8D6A70", + "listtype": "6" + }, { + "id": "8D6A90", + "listtype": "6" + }, { + "id": "8D6AB0", + "listtype": "6" + }, { + "id": "8D6AD0", + "listtype": "6" + }, { + "id": "8D6AF0", + "listtype": "6" + }, { + "id": "8D6B10", + "listtype": "6" + }, { + "id": "8D6B30", + "listtype": "6" + }, { + "id": "8D6B50", + "listtype": "6" + }, { + "id": "8D6B70", + "listtype": "6" + }, { + "id": "8D6B90", + "listtype": "6" + }, { + "id": "8D6BB0", + "listtype": "6" + }, { + "id": "8D6BD0", + "listtype": "6" + }, { + "id": "8D6BF0", + "listtype": "6" + }, { + "id": "8D6C10", + "listtype": "6" + }, { + "id": "8D6C30", + "listtype": "6" + }, { + "id": "8D6C50", + "listtype": "6" + }, { + "id": "8D6C70", + "listtype": "6" + }, { + "id": "8D6C90", + "listtype": "6" + }, { + "id": "8D6CB0", + "listtype": "6" + }, { + "id": "8D6CD0", + "listtype": "6" + }, { + "id": "8D6CF0", + "listtype": "6" + }, { + "id": "8D6D10", + "listtype": "6" + }, { + "id": "8D6D30", + "listtype": "6" + }, { + "id": "8D6D50", + "listtype": "6" + }, { + "id": "8D6D70", + "listtype": "6" + }, { + "id": "8D6D90", + "listtype": "6" + }, { + "id": "8D6DB0", + "listtype": "6" + }, { + "id": "8D6DD0", + "listtype": "6" + }, { + "id": "8D6DF0", + "listtype": "6" + }, { + "id": "8D6E10", + "listtype": "6" + }, { + "id": "8D6E30", + "listtype": "7" + }, { + "id": "8D6E50", + "listtype": "7" + }, { + "id": "8D6E70", + "listtype": "7" + }] + }, { + "metric": [{ + "id": "8D0010", + "listtype": " " + }, { + "id": "8D21F0", + "listtype": " " + }, { + "id": "8D2240", + "listtype": " " + }, { + "id": "8D00B0", + "listtype": " " + }, { + "id": "8D0170", + "listtype": " " + }, { + "id": "8D0240", + "listtype": " " + }, { + "id": "8D2770", + "listtype": " " + }, { + "id": "8D0350", + "listtype": " " + }, { + "id": "8D2A40", + "listtype": " " + }, { + "id": "8D0430", + "listtype": " " + }, { + "id": "8D04C0", + "listtype": " " + }, { + "id": "8D2280", + "listtype": " " + }, { + "id": "8D21C0", + "listtype": " " + }, { + "id": "8D21D0", + "listtype": " " + }, { + "id": "8D2FF0", + "listtype": " " + }, { + "id": "8D3090", + "listtype": " " + }, { + "id": "8D0E90", + "listtype": " " + }, { + "id": "8D1290", + "listtype": " " + }, { + "id": "8D2300", + "listtype": " " + }, { + "id": "8D30D0", + "listtype": " " + }, { + "id": "8D2330", + "listtype": " " + }, { + "id": "8D10F0", + "listtype": " " + }, { + "id": "8D12B0", + "listtype": " " + }, { + "id": "8D0210", + "listtype": "J" + }, { + "id": "8D0500", + "listtype": "J" + }] + }, { + "metric": [{ + "id": "8D5E10", + "listtype": "K" + }, { + "id": "8D3080", + "listtype": "K" + }, { + "id": "8D3110", + "listtype": "K" + }, { + "id": "8D5E70", + "listtype": "K" + }, { + "id": "8D3230", + "listtype": "K" + }, { + "id": "8D6EE0", + "listtype": "K" + }, { + "id": "8D5E30", + "listtype": "P" + }, { + "id": "8D0F60", + "listtype": "P" + }, { + "id": "8D0FF0", + "listtype": "P" + }, { + "id": "8D1020", + "listtype": "P" + }, { + "id": "8D5E90", + "listtype": "P" + }, { + "id": "8D5F40", + "listtype": "P" + }, { + "id": "8D1240", + "listtype": "P" + }, { + "id": "8D6F00", + "listtype": "P" + }, { + "id": "8D5E00", + "listtype": "R" + }, { + "id": "8D0F20", + "listtype": "R" + }, { + "id": "8D5E60", + "listtype": "R" + }, { + "id": "8D1220", + "listtype": "R" + }, { + "id": "8D6ED0", + "listtype": "R" + }, { + "id": "8D5E20", + "listtype": "S" + }, { + "id": "8D0F50", + "listtype": "S" + }, { + "id": "8D6E80", + "listtype": "S" + }, { + "id": "8D6EB0", + "listtype": "S" + }, { + "id": "8D5E80", + "listtype": "S" + }, { + "id": "8D5F20", + "listtype": "S" + }, { + "id": "8D1230", + "listtype": "S" + }, { + "id": "8D6EF0", + "listtype": "S" + }, { + "id": "8D5E40", + "listtype": "W" + }, { + "id": "8D0F80", + "listtype": "W" + }, { + "id": "8D5EA0", + "listtype": "W" + }, { + "id": "8D1250", + "listtype": "W" + }, { + "id": "8D6F10", + "listtype": "W" + }, { + "id": "8D6E30", + "listtype": "7" + }, { + "id": "8D6E50", + "listtype": "7" + }, { + "id": "8D6E70", + "listtype": "7" + }] + }, { + "metric": [{ + "id": "8D5DF0", + "listtype": " " + }, { + "id": "8D0EF0", + "listtype": " " + }, { + "id": "8D6E90", + "listtype": " " + }, { + "id": "8D5E50", + "listtype": " " + }, { + "id": "8D1200", + "listtype": " " + }, { + "id": "8D6EC0", + "listtype": " " + }] + }, { + "metric": [{ + "id": "8D5DF0", + "listtype": " " + }, { + "id": "8D0EF0", + "listtype": " " + }, { + "id": "8D5E50", + "listtype": " " + }, { + "id": "8D1200", + "listtype": " " + }, { + "id": "8D6EC0", + "listtype": " " + }, { + "id": "8D5E10", + "listtype": "K" + }, { + "id": "8D3080", + "listtype": "K" + }, { + "id": "8D6EA0", + "listtype": "K" + }, { + "id": "8D5E70", + "listtype": "K" + }, { + "id": "8D3230", + "listtype": "K" + }, { + "id": "8D6EE0", + "listtype": "K" + }] + }, { + "metric": [{ + "id": "8D6E20", + "listtype": " " + }, { + "id": "8D6E40", + "listtype": " " + }, { + "id": "8D6E60", + "listtype": " " + }] + }, { + "metric": [{ + "id": "8D5DF0", + "listtype": " " + }, { + "id": "8D0EF0", + "listtype": " " + }, { + "id": "8D0FE0", + "listtype": " " + }, { + "id": "8D1000", + "listtype": " " + }, { + "id": "8D5E50", + "listtype": " " + }, { + "id": "8D5EC0", + "listtype": " " + }, { + "id": "8D1200", + "listtype": " " + }, { + "id": "8D6EC0", + "listtype": " " + }] + }, { + "metric": [{ + "id": "8D5DF0", + "listtype": " " + }, { + "id": "8D0EF0", + "listtype": " " + }, { + "id": "8D0FE0", + "listtype": " " + }, { + "id": "8D1000", + "listtype": " " + }, { + "id": "8D5E50", + "listtype": " " + }, { + "id": "8D5EC0", + "listtype": " " + }, { + "id": "8D1200", + "listtype": " " + }, { + "id": "8D6EC0", + "listtype": " " + }, { + "id": "8D5E30", + "listtype": "P" + }, { + "id": "8D0F60", + "listtype": "P" + }, { + "id": "8D0FF0", + "listtype": "P" + }, { + "id": "8D1020", + "listtype": "P" + }, { + "id": "8D5E90", + "listtype": "P" + }, { + "id": "8D5F40", + "listtype": "P" + }, { + "id": "8D1240", + "listtype": "P" + }, { + "id": "8D6F00", + "listtype": "P" + }] + }, { + "metric": [{ + "id": "8D5DF0", + "listtype": " " + }, { + "id": "8D0EF0", + "listtype": " " + }, { + "id": "8D5E50", + "listtype": " " + }, { + "id": "8D1200", + "listtype": " " + }, { + "id": "8D6EC0", + "listtype": " " + }, { + "id": "8D5E30", + "listtype": "P" + }, { + "id": "8D0F60", + "listtype": "P" + }, { + "id": "8D0FF0", + "listtype": "P" + }, { + "id": "8D1020", + "listtype": "P" + }, { + "id": "8D5E90", + "listtype": "P" + }, { + "id": "8D5F40", + "listtype": "P" + }, { + "id": "8D1240", + "listtype": "P" + }, { + "id": "8D6F00", + "listtype": "P" + }, { + "id": "8D5E20", + "listtype": "S" + }, { + "id": "8D0F50", + "listtype": "S" + }, { + "id": "8D6E80", + "listtype": "S" + }, { + "id": "8D6EB0", + "listtype": "S" + }, { + "id": "8D5E80", + "listtype": "S" + }, { + "id": "8D5F20", + "listtype": "S" + }, { + "id": "8D1230", + "listtype": "S" + }, { + "id": "8D6EF0", + "listtype": "S" + }] + }, { + "metric": [{ + "id": "8D0150", + "listtype": " " + }, { + "id": "8D01F0", + "listtype": "J" + }, { + "id": "8D2950", + "listtype": "K" + }, { + "id": "8D1810", + "listtype": "P" + }, { + "id": "8D16D0", + "listtype": "R" + }, { + "id": "8D1770", + "listtype": "S" + }, { + "id": "8D18B0", + "listtype": "W" + }] + }, { + "metric": [{ + "id": "8D53A0", + "listtype": " " + }, { + "id": "8D53C0", + "listtype": " " + }, { + "id": "8D53E0", + "listtype": " " + }, { + "id": "8D5400", + "listtype": " " + }, { + "id": "8D5420", + "listtype": " " + }, { + "id": "8D5440", + "listtype": " " + }, { + "id": "8D5460", + "listtype": " " + }, { + "id": "8D5480", + "listtype": " " + }, { + "id": "8D54A0", + "listtype": " " + }, { + "id": "8D54C0", + "listtype": " " + }, { + "id": "8D54E0", + "listtype": " " + }, { + "id": "8D5500", + "listtype": " " + }, { + "id": "8D5520", + "listtype": " " + }, { + "id": "8D5540", + "listtype": " " + }, { + "id": "8D5560", + "listtype": " " + }, { + "id": "8D5580", + "listtype": " " + }, { + "id": "8D55A0", + "listtype": " " + }, { + "id": "8D55C0", + "listtype": " " + }, { + "id": "8D55E0", + "listtype": " " + }, { + "id": "8D5600", + "listtype": " " + }, { + "id": "8D5620", + "listtype": " " + }, { + "id": "8D5640", + "listtype": " " + }, { + "id": "8D5660", + "listtype": " " + }, { + "id": "8D5680", + "listtype": " " + }, { + "id": "8D56A0", + "listtype": " " + }, { + "id": "8D56C0", + "listtype": " " + }, { + "id": "8D56E0", + "listtype": " " + }, { + "id": "8D5700", + "listtype": " " + }, { + "id": "8D5720", + "listtype": " " + }, { + "id": "8D5740", + "listtype": " " + }, { + "id": "8D5760", + "listtype": " " + }, { + "id": "8D5780", + "listtype": " " + }, { + "id": "8D57A0", + "listtype": " " + }, { + "id": "8D57C0", + "listtype": " " + }, { + "id": "8D57E0", + "listtype": " " + }, { + "id": "8D5800", + "listtype": " " + }, { + "id": "8D5820", + "listtype": " " + }, { + "id": "8D5840", + "listtype": " " + }, { + "id": "8D5860", + "listtype": " " + }, { + "id": "8D5880", + "listtype": " " + }, { + "id": "8D58A0", + "listtype": " " + }, { + "id": "8D58C0", + "listtype": " " + }, { + "id": "8D58E0", + "listtype": " " + }, { + "id": "8D5900", + "listtype": " " + }, { + "id": "8D5920", + "listtype": " " + }, { + "id": "8D5940", + "listtype": " " + }, { + "id": "8D5000", + "listtype": "G" + }, { + "id": "8D5030", + "listtype": "G" + }, { + "id": "8D5060", + "listtype": "G" + }, { + "id": "8D5090", + "listtype": "G" + }, { + "id": "8D50C0", + "listtype": "G" + }, { + "id": "8D50F0", + "listtype": "G" + }, { + "id": "8D5120", + "listtype": "G" + }, { + "id": "8D5150", + "listtype": "G" + }, { + "id": "8D5180", + "listtype": "G" + }, { + "id": "8D51B0", + "listtype": "G" + }, { + "id": "8D51E0", + "listtype": "G" + }, { + "id": "8D5210", + "listtype": "G" + }, { + "id": "8D5240", + "listtype": "G" + }, { + "id": "8D5270", + "listtype": "G" + }, { + "id": "8D52A0", + "listtype": "G" + }, { + "id": "8D52D0", + "listtype": "G" + }, { + "id": "8D5300", + "listtype": "G" + }, { + "id": "8D5330", + "listtype": "G" + }, { + "id": "8D5360", + "listtype": "G" + }, { + "id": "8D5390", + "listtype": "G" + }, { + "id": "8D5980", + "listtype": "G" + }, { + "id": "8D59B0", + "listtype": "G" + }, { + "id": "8D59E0", + "listtype": "G" + }, { + "id": "8D5A10", + "listtype": "G" + }, { + "id": "8D5A40", + "listtype": "G" + }, { + "id": "8D5A70", + "listtype": "G" + }] + }] +} \ No newline at end of file